unlock-and-migrate-superfluid-tokens
Transfer Superfluid tokens to a new validator by unlocking and migrating them using a BIP-39 mnemonic, lock ID, and new validator address with specified minimum token amounts.
Instructions
Unlock and migrate Superfluid tokens to new validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
lockId | Yes | Lock ID of the superfluid tokens | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
newValAddr | Yes | New validator address to migrate to | |
tokenOutMins | Yes | Minimum token amounts to receive after migration |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"lockId": {
"description": "Lock ID of the superfluid tokens",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"newValAddr": {
"description": "New validator address to migrate to",
"type": "string"
},
"tokenOutMins": {
"description": "Minimum token amounts to receive after migration",
"items": {
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"mnemonic",
"lockId",
"newValAddr",
"tokenOutMins"
],
"type": "object"
}