unlock-period-lock
Release tokens from a completed lock period on the Osmosis blockchain by providing a mnemonic phrase and lock ID. Automatically estimates gas or allows custom settings for the transaction.
Instructions
Unlock tokens from a completed lock period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
id | Yes | Lock ID to unlock | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"id": {
"description": "Lock ID to unlock",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
}
},
"required": [
"mnemonic",
"id"
],
"type": "object"
}