cosmos.superfluid.lockAndDelegate
An account locked their tokens, and delegated to a validator.
Schema
Field | Required | Data type | Explanation | Example |
---|---|---|---|---|
__type | Yes | string | Always "cosmos.superfluid.lockAndDelegate" . | "cosmos.superfluid.lockAndDelegate" |
blockchain | Yes | string | The blockchain this transaction was executed on. This field will have one of the values in the ID column where the Ecosystem column's value is Cosmos. | "juno" |
txHash | Yes | string | The transaction's hash. | "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8" |
isSuccessful | Yes | boolean | Whether the transaction succeeded or failed. | true |
memo | Yes | string | A note the user added while making the transaction. Maybe be empty ("" ). | "I owed you 1.5 ATOM since you paid for lunch." |
sender | Yes | string | Account's address | "bitsong1jv4r79zsfkg3m3mdafg4uxyxg4z9fn3u8kjmh2" |
validatorAddress | Yes | string` | Validator's address | "osmovaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6t4agt" |
tokens | Yes | array of token s | Tokens locked |
token
Field | Required | Data type | Explanation | Example |
---|---|---|---|---|
denomination | Yes | string | "uatom" | |
quantity | Yes | string | "100" |
Example
{
"__type": "cosmos.superfluid.lockAndDelegate",
"blockchain": "juno",
"txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
"isSuccessful": true,
"memo": "",
"sender": "bitsong1jv4r79zsfkg3m3mdafg4uxyxg4z9fn3u8kjmh2",
"validatorAddress": "osmovaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6t4agt",
"tokens": [
{
"denomination": "uatom",
"quantity": "100"
},
{
"denomination": "uosmo",
"quantity": "200"
}
]
}