ibc-transfer
Transfer tokens across blockchain networks using Inter-Blockchain Communication (IBC). Input mnemonic, source channel, token details, and recipient address to execute cross-chain transfers on Osmosis.
Instructions
Transfer tokens across chains using IBC
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transfer memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
receiver | Yes | Recipient address on destination chain | |
sourceChannel | Yes | Source channel ID (e.g., 'channel-0' for Cosmos Hub) | |
sourcePort | No | Source port (usually 'transfer') | transfer |
timeoutHeight | No | Timeout height for the transfer | |
timeoutTimestamp | No | Timeout timestamp in nanoseconds (0 to disable) | |
token | Yes | Token to transfer |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transfer memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"receiver": {
"description": "Recipient address on destination chain",
"type": "string"
},
"sourceChannel": {
"description": "Source channel ID (e.g., 'channel-0' for Cosmos Hub)",
"type": "string"
},
"sourcePort": {
"default": "transfer",
"description": "Source port (usually 'transfer')",
"type": "string"
},
"timeoutHeight": {
"description": "Timeout height for the transfer",
"properties": {
"revisionHeight": {
"type": "string"
},
"revisionNumber": {
"type": "string"
}
},
"type": "object"
},
"timeoutTimestamp": {
"description": "Timeout timestamp in nanoseconds (0 to disable)",
"type": "string"
},
"token": {
"description": "Token to transfer",
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
}
},
"required": [
"mnemonic",
"sourceChannel",
"token",
"receiver"
],
"type": "object"
}