lock-and-superfluid-delegate
Lock LP tokens and delegate them via Superfluid in a single transaction on Osmosis, simplifying participation in staking and liquidity provision.
Instructions
Lock LP tokens and immediately delegate via Superfluid in one transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coins | Yes | LP tokens to lock and delegate | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
valAddr | Yes | Validator address to delegate to |
Input Schema (JSON Schema)
{
"properties": {
"coins": {
"description": "LP tokens to lock and delegate",
"items": {
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
},
"type": "array"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"valAddr": {
"description": "Validator address to delegate to",
"type": "string"
}
},
"required": [
"mnemonic",
"coins",
"valAddr"
],
"type": "object"
}