Download OpenAPI specification:Download
This API provides reporting staking data on various protocols as well as network wide data, staking transaction crafting features and so on.
In order to use the Kiln API, you must first get an API token from your Kiln dashboard (applications section). If you don't have access to our dashboard, please get in touch at hello@kiln.fi.
Once you have your API token, you can set it as a bearer token in your HTTP request headers, and target the Kiln API endpoint with the current MAJOR version of the API as a prefix to routes:
curl "https://api.kiln.fi/v1/..." -H "Authorization: Bearer $KILN_API_TOKEN"If you need a development environment, please reach out to hello@kiln.fi to have a specific access to our testnet environment and dedicated API endpoint.
Versions of the Kiln API use MAJOR.MINOR.PATCH where:
Kiln considers the following changes to be backward compatible:
Non-breaking changes may be introduced in our API and subject to modification before being officialy communicated and documented here. Your application should not depend on them until part of this specification. The preview Kiln API specifications with upcoming and experimental new features can be found here.
Manage your Kiln accounts. Accounts are like folders in which you can organize your stakes or clients' stakes. An account can contain stakes on multiple protocols.
{- "data": [
- {
- "created_at": "2023-02-06T21:48:11.038Z",
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "name": "account name",
- "description": "account description"
}
]
}
Create a new account in your organization
Account to create
name required | string [ 1 .. 100 ] characters Account name |
description required | string [ 0 .. 500 ] characters Account description |
{- "name": "name",
- "description": "description"
}
{- "data": {
- "created_at": "2023-02-06T21:48:11.038Z",
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "name": "account name",
- "description": "account description"
}
}
Retrieve an account in your organization
id required | string <uuid> Example: 92f5bfd4-ea38-4824-84f7-686eddff5539 Account id |
{- "data": {
- "created_at": "2023-02-06T21:48:11.038Z",
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "name": "account name",
- "description": "account description"
}
}
Update an account in your organization
id required | string <uuid> Example: 92f5bfd4-ea38-4824-84f7-686eddff5539 Account id |
Account to update
name required | string [ 1 .. 100 ] characters Account name |
description required | string [ 0 .. 500 ] characters Account description |
{- "name": "name",
- "description": "description"
}
{- "data": {
- "created_at": "2023-02-06T21:48:11.038Z",
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "name": "account name",
- "description": "account description"
}
}
Delete an account in your organization
id required | string <uuid> Example: 92f5bfd4-ea38-4824-84f7-686eddff5539 Account id |
{- "data": {
- "created_at": "2023-02-06T21:48:11.038Z",
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "name": "account name",
- "description": "account description"
}
}
Retrieve an account asset portfolio. USD balances are calculated based on recent asset prices. We use CoinGecko API to retrieve asset prices.
id required | string <uuid> Example: 92f5bfd4-ea38-4824-84f7-686eddff5539 Account id |
{- "data": {
- "total_balance_usd": 182981229.16751668,
- "total_rewards_usd": 4526.16751668,
- "total_stakes": 56,
- "total_active_stakes": 52,
- "protocols": [
- {
- "token": "eth",
- "name": "Ethereum",
- "total_stakes": 12,
- "total_active_stakes": 10,
- "total_balance": {
- "amount_usd": 10896.4568,
- "amount": 1896.4563
}, - "total_rewards": {
- "amount_usd": 10896.4568,
- "amount": 1896.4568
}, - "balance_share_percent": 42.59,
- "rewards_share_percent": 42.59
}
]
}
}
Retrieve an organization asset portfolio. USD balances are calculated based on recent asset prices. We use CoinGecko API to retrieve asset prices.
id required | string <uuid> Example: 92f5bfd4-ea38-4824-84f7-686eddff5539 Organization id |
{- "data": {
- "total_balance_usd": 182981229.16751668,
- "total_rewards_usd": 4526.16751668,
- "total_stakes": 56,
- "total_active_stakes": 52,
- "protocols": [
- {
- "token": "eth",
- "name": "Ethereum",
- "total_stakes": 12,
- "total_active_stakes": 10,
- "total_balance": {
- "amount_usd": 10896.4568,
- "amount": 1896.4563
}, - "total_rewards": {
- "amount_usd": 10896.4568,
- "amount": 1896.4568
}, - "balance_share_percent": 42.59,
- "rewards_share_percent": 42.59
}
]
}
}
Get the status of Ethereum stakes
validators | Array of strings Example: validators=0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412 Comma-separated list of validators addresses |
wallets | Array of strings Example: wallets=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of wallets addresses |
proxies | Array of strings Example: proxies=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of proxy-contract addresses |
validator_indexes | Array of integers Example: validator_indexes=1 Comma-separated list of validators' consensus layer indexes |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
current_page | integer >= 1 Example: current_page=1 Current page to look-up entries. If not specified, pagination is disabled |
page_size | integer [ 1 .. 100 ] Default: 25 Example: page_size=1 Number of entries to list per page. Only used when |
filter_states | Array of strings Example: filter_states=deposit_in_progress,pending_initialized Comma-separated list of states to filter on (see |
{- "data": [
- {
- "validator_address": "0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412",
- "validator_index": "1",
- "state": "active_ongoing",
- "activated_at": "2023-01-14T01:13:59Z",
- "activated_epoch": 174049,
- "delegated_at": "2023-01-14T01:13:59Z",
- "delegated_block": 16397387,
- "deposit_tx_sender": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "execution_fee_recipient": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "withdrawal_credentials": "010000000000000000000000e1f4acc0affb36a805474e3b6ab786738c6900a2",
- "effective_balance": "32000000000000000000",
- "balance": "32076187808000000000",
- "consensus_rewards": "76187808000000000",
- "execution_rewards": "0",
- "rewards": "76187808000000000",
- "gross_apy": 3.407,
- "is_kiln": "true",
- "updated_at": "2023-01-14T01:13:59Z"
}
]
}
Link ETH stakes to a Kiln account
Stakes to create
required | Array of objects |
account_id required | string Kiln Account ID |
{- "stakes": [
- {
- "validator": "0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412"
}
], - "account_id": "92f5bfd4-ea38-4824-84f7-686eddff5539"
}
{- "data": {
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "tags": [
- "tag1"
], - "metadata": { },
- "protocol": "ethereum",
- "created_at": "2023-02-06T21:48:11.038Z",
- "updated_at": "2023-02-06T21:48:11.038Z"
}
}
Get historical rewards by day of Ethereum stakes
validators | Array of strings Example: validators=0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412 Comma-separated list of validators addresses |
wallets | Array of strings Example: wallets=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of wallets addresses |
proxies | Array of strings Example: proxies=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of proxy-contract addresses |
validator_indexes | Array of integers Example: validator_indexes=1 Comma-separated list of validators' consensus layer indexes |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
start_date | string <date> Example: start_date=2023-01-10 Get rewards from this date (YYYY-MM-DD) |
end_date | string <date> Example: end_date=2023-01-20 Get rewards to this date (YYYY-MM-DD) |
{- "data": [
- {
- "date": "2023-01-15",
- "consensus_rewards": "2988504000000000",
- "execution_rewards": "0",
- "rewards": "2988504000000000",
- "stake_balance": "64000000000000000000",
- "gross_apy": 3.407,
- "cl_apy": 3.407,
- "el_apy": 0
}
]
}
Get the operations of Ethereum stakes
validators | Array of strings Example: validators=0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412 Comma-separated list of validators addresses |
wallets | Array of strings Example: wallets=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of wallets addresses |
proxies | Array of strings Example: proxies=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of proxy-contract addresses |
validator_indexes | Array of integers Example: validator_indexes=1 Comma-separated list of validators' consensus layer indexes |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "type": "deposit",
- "time": "2023-01-14T01:13:59Z",
- "validator_address": "0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412",
- "validator_index": 1,
- "tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "tx_sender": "0x41bf25fc8c52d292bd66d3bcecd8a919ecb9ef88",
- "tx_gas_used": "2700999916653262",
- "tx_effective_gas_price": "1499997889",
- "proxies": [
- "0x1e68238cE926DEC62b3FBC99AB06eB1D85CE0270",
- "0x43244f90814b31dec250de24df5bb023eB1D85CE"
], - "block": 15955054,
- "block_base_fee": "7",
- "withdrawal_credentials": "010000000000000000000000e1f4acc0affb36a805474e3b6ab786738c6900a2",
- "amount": "32000000000000000000000"
}
]
}
{- "data": {
- "network_gross_apy": 4.5,
- "supply_staked_percent": 12.4,
- "eth_price_usd": 2000,
- "estimated_entry_time_seconds": 3600,
- "estimated_exit_time_seconds": 3600,
- "estimated_withdrawal_time_seconds": 3600
}
}
Create Ethereum native validation keys on Kiln's infrastructure.
Ethereum keys to generate
account_id required | string <uuid> Kiln Account ID to stake into. |
withdrawal_address required | string Ethereum withdrawal address used for the withdrawals credentials of the validators.
This is the address that will receive consensus rewards.
BLS format is not supported.
This address is used as the execution-layer fee-recipient unless |
fee_recipient_address | string Ethereum fee-recipient address for execution rewards.
Uses the |
number required | number [ 1 .. 150 ] Number of validator keys to generate. You can generate up to 150 keys at once. |
format | string Default: "batch_deposit" extensible-enum: ["cli_deposit","batch_deposit"] Response format. Use |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "withdrawal_address": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "fee_recipient_address": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "number": 1,
- "format": "cli_deposit"
}
{- "data": [
- {
- "format": "cli_deposit",
- "pubkey": "8f36e2f4e921b1ed5ce9c94f21e1f26a748ac4e0c57f0d8973e7d576a2f8953b87dd86300de718238de23b1fecb19db5",
- "withdrawal_credentials": "010000000000000000000000e1f4acc0affb36a805474e3b6ab786738c6900a2",
- "amount": 32000000000,
- "signature": "b7947eabf631d4772c4014a9fec2ecac2c15fc5175ad83023bbdfc9e6618cb8e78829231477c060bc9339482058ff195141f2aeb801c0329a1a4afebd7e76ce0ba1d9d88f8820d052836a79d59aea673db9eb5009db4a4f6e04fb7ffbdbdd604",
- "deposit_message_root": "65db6ae73c6465311a7acf2cd8a2863eececf09901872550639f0d8f6c1876f5",
- "deposit_data_root": "9b74cccf3a3c501374179be4bb6f505c4b40da41c205a101db3342a8df0af2dd",
- "fork_version": "00000000",
- "network_name": "mainnet",
- "deposit_cli_version": "2.2.0"
}
]
}
Create Ethereum validation keys for the Kiln On-Chain
smart-contract suite. This route is for Ethereum operators
only of the Kiln On-Chain smart-contract. Use /v1/eth/keys
if you want to use classic native staking.
Ethereum keys to generate
account_id required | string <uuid> Kiln Account ID to stake into. |
number required | number [ 1 .. 150 ] Number of validator keys to generate. You can generate up to 150 keys at once. |
fee_recipient_contract_address | string Kiln V1 Smart-contract that will handle the dispatch of fees. |
staking_contract_address | string Kiln V1 Smart-contract used to stake generated keys. |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "number": 1,
- "fee_recipient_contract_address": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "staking_contract_address": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2"
}
{- "data": [
- {
- "format": "cli_deposit",
- "pubkey": "8f36e2f4e921b1ed5ce9c94f21e1f26a748ac4e0c57f0d8973e7d576a2f8953b87dd86300de718238de23b1fecb19db5",
- "withdrawal_credentials": "010000000000000000000000e1f4acc0affb36a805474e3b6ab786738c6900a2",
- "amount": 32000000000,
- "signature": "b7947eabf631d4772c4014a9fec2ecac2c15fc5175ad83023bbdfc9e6618cb8e78829231477c060bc9339482058ff195141f2aeb801c0329a1a4afebd7e76ce0ba1d9d88f8820d052836a79d59aea673db9eb5009db4a4f6e04fb7ffbdbdd604",
- "deposit_message_root": "65db6ae73c6465311a7acf2cd8a2863eececf09901872550639f0d8f6c1876f5",
- "deposit_data_root": "9b74cccf3a3c501374179be4bb6f505c4b40da41c205a101db3342a8df0af2dd",
- "fork_version": "00000000",
- "network_name": "mainnet",
- "deposit_cli_version": "2.2.0"
}
]
}
Create Ethereum validation keys for the Kiln vSuite
smart-contract suite. This route is for Ethereum operators
only of the Kiln vSuite smart-contract. Use /v1/eth/keys
if
you want to use classic native staking.
Ethereum keys to generate on withdrawal channel 0 of the vSuite contract
account_id required | string <uuid> Kiln Account ID to stake into. |
number required | number [ 1 .. 150 ] Number of validator keys to generate. You can generate up to 150 keys at once. |
factory_contract_address | string Smart-Contract address on the Ethereum execution layer of the Kiln vSuite Factory. |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "number": 1,
- "factory_contract_address": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2"
}
{- "data": [
- {
- "format": "cli_deposit",
- "pubkey": "8f36e2f4e921b1ed5ce9c94f21e1f26a748ac4e0c57f0d8973e7d576a2f8953b87dd86300de718238de23b1fecb19db5",
- "withdrawal_credentials": "010000000000000000000000e1f4acc0affb36a805474e3b6ab786738c6900a2",
- "amount": 32000000000,
- "signature": "b7947eabf631d4772c4014a9fec2ecac2c15fc5175ad83023bbdfc9e6618cb8e78829231477c060bc9339482058ff195141f2aeb801c0329a1a4afebd7e76ce0ba1d9d88f8820d052836a79d59aea673db9eb5009db4a4f6e04fb7ffbdbdd604",
- "deposit_message_root": "65db6ae73c6465311a7acf2cd8a2863eececf09901872550639f0d8f6c1876f5",
- "deposit_data_root": "9b74cccf3a3c501374179be4bb6f505c4b40da41c205a101db3342a8df0af2dd",
- "fork_version": "00000000",
- "network_name": "mainnet",
- "deposit_cli_version": "2.2.0"
}
]
}
Generates an Ethereum EIP 1559 stake transaction
Transaction to craft
account_id required | string <uuid> Kiln Account ID to stake into |
wallet required | string Wallet to stake from and be used as a withdrawal credentials in the deposit. Losing access to this wallet will result in losing the stake. |
amount_wei required | string Amount to stake in WEI (must be a multiple of "32000000000000000000") |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "amount_wei": "32000000000000000000"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc",
- "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852",
- "contract_call_data": "0xca0bfcce0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000309696c02ec4dbb99f714e26ff1acdf6b258d36dcbad7b8b549553bc99b94ea639cd247f31683564995afd48568c1b6edd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020010000000000000000000000bc86717bad3f8ccf86d2882a6bc351c94580a994000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060a3869da2ed5cc558f016d59fc5ceb0cac28e58743836aa3cf146221f1ef0b959e3cc5c589e05e171f1473596aadf36411767ad92edaae421ba0291bd7568267b3faabc3ab6ed9ddfc048ea6640370977f16f4f626a0e567a11ba25acdc520bb000000000000000000000000000000000000000000000000000000000000000012dd65914dda46639df6344701de54ac3ebe34a4b230262d3017fcd6c29954452",
- "amount_wei": "32000000000000000000",
- "nonce": 1,
- "gas_limit": 140244,
- "max_priority_fee_per_gas_wei": "2000000000",
- "max_fee_per_gas_wei": "383687469748",
- "chain_id": 1
}
}
Prepare an Ethereum transaction for broadcasting. It takes a serialized transaction and its signatures and returns a serialized signed transaction that can be broadcasted.
Transaction to prepare
unsigned_tx_serialized required | string Unsigned serialized transaction |
r required | string r part of the ECDSA signature in hex |
s required | string s part of the ECDSA signature in hex |
v required | number v part of the ECDSA signature (0 or 1) |
{- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc",
- "r": "de28e9efee4c8de422a3c64bfaaee11a32f7cf12bdd3f00dcce41a79fe776c65",
- "s": "3f233eb69495fa4741ad28ef0ba40612bacaf08331fd76041c371f5a2ecc2ab5",
- "v": 0
}
{- "data": {
- "signed_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Broadcasts a signed Ethereum transaction
Transaction to broadcast
tx_serialized required | string Signed serialized transaction |
{- "tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
{- "data": {
- "tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94"
}
}
Get the status of an Ethereum transaction
tx_hash required | string Example: tx_hash=0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94 Hash of the transaction |
{- "data": {
- "status": "success",
- "receipt": {
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber": 8608123,
- "contractAddress": null,
- "cumulativeGasUsed": 8180146,
- "effectiveGasPrice": 27391741855,
- "from": "0x9ce658155a6f05fe4aef83b7fa8f431d5e8ccb55",
- "gasUsed": 70098,
- "logs": [
- {
- "address": "0xff50ed3d0ec03aC01D4C79aAd74928BFF48a7b2b",
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber": 8608123,
- "data": "0x00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003093b5ae8053213154d099ed7fc99f571a0c8124601f8a59540335c7c35e0b40aad7b033f84af365185c04812acab257460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200100000000000000000000009ce658155a6f05fe4aef83b7fa8f431d5e8ccb550000000000000000000000000000000000000000000000000000000000000008004059730700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000609395a07d5e7eb073725049ecba8144d850b7a1a58f603fd1fc12049d32c98db47e3d81608074bca20ccdcc94f7f4767d0d6b852edf4f6231532f33242e64d0617ac93465bc4cdabe9cebf0abe6d169830fcf375b28c0641487e5f86df2875a970000000000000000000000000000000000000000000000000000000000000008ecce030000000000000000000000000000000000000000000000000000000000",
- "logIndex": 150,
- "removed": false,
- "topics": [
- "0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5"
], - "transactionHash": "0x25f259a770539a4be99f972620b74219d67cd990d245bcc8d8ad5cddeaa37375",
- "transactionIndex": 33,
- "id": "log_4115d183"
}, - {
- "address": "0x5FaDfdb7eFffd3B4AA03f0F29d9200Cf5F191F31",
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber": 8608123,
- "data": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003093b5ae8053213154d099ed7fc99f571a0c8124601f8a59540335c7c35e0b40aad7b033f84af365185c04812acab257460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200100000000000000000000009ce658155a6f05fe4aef83b7fa8f431d5e8ccb55",
- "logIndex": 151,
- "removed": false,
- "topics": [
- "0x737feedde71ce80c08f73125e4350b001be2dfb6a00fb455086c2b0a514cdfac"
], - "transactionHash": "0x25f259a770539a4be99f972620b74219d67cd990d245bcc8d8ad5cddeaa37375",
- "transactionIndex": 33,
- "id": "log_b4bb5ff7"
}
], - "logsBloom": "0x00000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000008000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000008000000000000000000000000000000400000000000000000000000020000000000000000000000000040000000000000000000000000000020000000000000000000000000000000000000000000000000004000000000000000000000000000000000000008000000000000000000000004",
- "status": true,
- "to": "0x5fadfdb7efffd3b4aa03f0f29d9200cf5f191f31",
- "transactionHash": "0x25f259a770539a4be99f972620b74219d67cd990d245bcc8d8ad5cddeaa37375",
- "transactionIndex": 33,
- "type": "0x2"
}
}
}
Generates an Excel report sheet for your stakes and rewards
validators | Array of strings Example: validators=0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412 Comma-separated list of validators addresses |
wallets | Array of strings Example: wallets=0xe1f4acc0affB36a805474e3b6ab786738C6900A2 Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
Get encrypted exit message for a validator. This route is available only on-deman, please reach out to contact@kiln.fi.
validators | Array of strings Example: validators=0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412 Comma-separated list of validators addresses |
{- "data": [
- {
- "validator_address": "0x95373bcf8e2c64e1c373a6e534c002f210adbcc84c5abda3b6306677e171430ae50781a51c9f579a47622e334dba2412",
- "gpg_public_key": "Hubert Bonisseur de La Bath (hubert) <hubert@kiln.fi>",
- "payload": "-----BEGIN PGP MESSAGE-----\n\nhQEMAw2MqHavoVh9AQf/f5paxAuOB25SlXqKmLea0yHJBXnwuMuByfDZbXOBe4mD\niXz4ZJakeKGLbeJ/pP3Nwtu9vnIagQKF0YVNmrenkt8bL1jo/B6r34ycGIat/+GX\n1dc3GxyOBxju2q4JMe5chXdR4HXX3uU9QaynD24D5tsFgTxGM2I8JqV6BXEXgbBZ\nMXqtAjBcYd+krE1w135fuEYA6Nb/89QjLPcWXk92aS1K0WC39iAZxPsa7nyuhvRg\ndGXGQX+RrJ8jHAS4a074C3eAB3wCecvDk9d+FoUI3kaczUd4Ew7vUY0FX55oO60N\nqZxA5VwSHTfoH4fNPINeKr4Dx1mVLNcNM3z5qWcA6NKaAQak+arCnAYhLFCg/ydh\nzEcEWW1ebI4Ab3aweR17jme2I+XoWEwIBtUX7op6K7RUb3x9cBdGy4PDw6syBQJ3\nLExv8qZ43F9u0hD8UizpYQZESduT3x+To1/UQ3qBILuq2yszWaXP/kav1+fafLNb\nyEuHE2EoB27vDv6hSpwlDrXesGoMCc5NlAZBLnWiUcwzu2X19ASWnBSAmQ==\n=9AeP\n-----END PGP MESSAGE-----\n",
- "updated_at": "2023-01-14T01:13:59Z"
}
]
}
Get the status of Tezos stakes
wallets | Array of strings Example: wallets=tz1VZ4iC4wzTR7iK2Q7PoQGVDAojuY42fDxD Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "stake_address": "tz1VZ4iC4wzTR7iK2Q7PoQGVDAojuY42fDxD",
- "baker_address": "tz2FCNBrERXtaTtNX6iimR1UJ5JSDxvdHM93",
- "state": "active",
- "activated_at": "2023-01-14T01:13:59Z",
- "activated_cycle": 542,
- "delegated_at": "2023-01-14T01:13:59Z",
- "delegated_cycle": 542,
- "delegated_block": "16397387",
- "undelegated_at": "2023-01-14T01:13:59Z",
- "undelegated_cycle": 542,
- "balance": "32076187808000000000",
- "wallet_balance": "32076187808000000000",
- "rewards": "76187808000000000",
- "gross_apy": 3.407,
- "updated_at": "2023-01-14T01:13:59Z"
}
]
}
Get historical rewards of Tezos stakes
wallets | Array of strings Example: wallets=tz1VZ4iC4wzTR7iK2Q7PoQGVDAojuY42fDxD Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
format | string extensible-enum: ["daily","cycle"] The format of the response. Defaults to daily |
start_date | string <date> Example: start_date=2023-01-10 Get rewards from this date (YYYY-MM-DD) |
end_date | string <date> Example: end_date=2023-01-20 Get rewards to this date (YYYY-MM-DD) |
start_cycle | number Example: start_cycle=542 The cycle from which we want to fetch rewards. Must be used with format=cycle |
end_cycle | number Example: end_cycle=542 The cycle until which we want to fetch rewards. Must be used with format=cycle |
{- "data": [
- {
- "date": "2023-01-15",
- "rewards": "27098488",
- "active_balance": "420000000000",
- "gross_apy": 3.42
}
]
}
Get historical operations of Tezos stakes
wallets | Array of strings Example: wallets=tz1VZ4iC4wzTR7iK2Q7PoQGVDAojuY42fDxD Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "type": "delegate",
- "date": "2023-01-14T01:13:59Z",
- "staker_address": "tz1QQZKGt3ouyd7x8JUDwcvRyxzsmD7CFbMd",
- "baker_address": "tz3btDQsDkqq2G7eBdrrLqetaAfLVw6BnPez",
- "operation": "opLq44uJLP7f3V3zCVDCDgXayV3CQLGqihdoAYtMnXLW4f1q2fb",
- "operation_gas_used": "10",
- "baker_fee": "42",
- "block": 1342,
- "amount": "420000"
}
]
}
{- "data": {
- "nb_validators": 402,
- "network_gross_apy": 4.5,
- "supply_staked_percent": 12.4,
- "updated_at": "2023-01-14T01:13:59Z",
- "xtz_price_usd": 3.5
}
}
Generates an Excel report sheet for your stakes and rewards
wallets | Array of strings Example: wallets=tz1VZ4iC4wzTR7iK2Q7PoQGVDAojuY42fDxD Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
Generates a delegation transaction on Tezos
Transaction to craft
account_id required | string <uuid> Kiln Account ID to stake into |
wallet required | string Wallet that you wish to delegate from |
baker_address required | string Baker address to delegate to. |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "wallet": "tz1QQZKGt3ouyd7x8JUDwcvRyxzsmD7CFbMd",
- "baker_address": "tz3btDQsDkqq2G7eBdrrLqetaAfLVw6BnPez"
}
{- "data": {
- "unsigned_tx_hash": "7383fbcd64c1d95c92b5ebee44a569f15e557a773b6d733ab7bb4e3ce98de812",
- "unsigned_tx_serialized": "aef6da4e377364f07c2aa460d7148a8971dab767417b541fa473b2d8e038974f6e00566eaa0198f3df9230489abd1a64f5ef9b98b270940ac4cb9807f44e00ff00344c5e59a1de5370e1cee5d2fcf706a649bba15b",
- "unsigned_tx": {
- "branch": "BM3LZcG2SNz2DCWVGAAvT3gd8Vc17dS649CG6o9PhwJjmpUTptA",
- "contents": [
- {
- "kind": "delegation",
- "source": "tz1TX3Nh6h6js1VxXCuQ7rAF7LoGpd81FSw3",
- "fee": "1300",
- "counter": "15082948",
- "gas_limit": "10100",
- "storage_limit": "0",
- "delegate": "tz1QQZKGt3ouyd7x8JUDwcvRyxzsmD7CFbMd"
}
]
}
}
}
Generates an undelegate transaction on Tezos
Transaction to craft
wallet required | string Wallet that you wish to undelegate |
{- "wallet": "tz1QQZKGt3ouyd7x8JUDwcvRyxzsmD7CFbMd"
}
{- "data": {
- "unsigned_tx_hash": "7383fbcd64c1d95c92b5ebee44a569f15e557a773b6d733ab7bb4e3ce98de812",
- "unsigned_tx_serialized": "aef6da4e377364f07c2aa460d7148a8971dab767417b541fa473b2d8e038974f6e00566eaa0198f3df9230489abd1a64f5ef9b98b270940ac4cb9807f44e00ff00344c5e59a1de5370e1cee5d2fcf706a649bba15b",
- "unsigned_tx": {
- "branch": "BM3LZcG2SNz2DCWVGAAvT3gd8Vc17dS649CG6o9PhwJjmpUTptA",
- "contents": [
- {
- "kind": "delegation",
- "source": "tz1TX3Nh6h6js1VxXCuQ7rAF7LoGpd81FSw3",
- "fee": "1300",
- "counter": "15082948",
- "gas_limit": "10100",
- "storage_limit": "0",
- "delegate": "tz1QQZKGt3ouyd7x8JUDwcvRyxzsmD7CFbMd"
}
]
}
}
}
Prepare a Tezos transaction for broadcasting. It takes a serialized transaction and its signatures and returns a serialized signed transaction that can be broadcasted.
Transaction to prepare
unsigned_tx_serialized required | string Unsigned serialized transaction |
signature required | string Transaction signature in hex |
{- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc",
- "signature": "de28e9efee4c8de422a3c64bfaaee11a32f7cf12bdd3f00dcce41a79fe776c65"
}
{- "data": {
- "signed_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Broadcasts a signed Tezos transaction
Transaction to broadcast
tx_serialized required | string Signed serialized transaction |
{- "tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
{- "data": {
- "tx_hash": "oo3UAUpr685s3F7Fmc2ry8KHo4vdWGKo7LeimesAg56NBd6sDjs"
}
}
Get the status of a Tezos transaction
tx_hash required | string Example: tx_hash=0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94 Hash of the transaction |
block_number required | string Example: block_number=2344324 Block number in which the transaction was included |
{- "data": {
- "status": "applied",
- "receipt": {
- "protocol": "PtMumbai2TmsJHNGRkD8v8YDbtao7BLUC3wjASn1inAKLFCjaH1",
- "chain_id": "NetXnHfVqm9iesp",
- "hash": "op2Gu3xpBifNmj1dD88gwFdXuN4HT7EiqPcaERPCdyf48nYwZa9",
- "branch": "BMUmBJ3CSxDdzEUUYuS47DNHDv8ayxyMh12zSWZ7hKzYtv8Ny7S",
- "contents": [
- {
- "kind": "transaction",
- "source": "tz3TMbNR6YcMmRvXpssLi7wNr7RrBKsgruYU",
- "fee": "10277",
- "counter": "15413092",
- "gas_limit": "100000",
- "storage_limit": "30",
- "amount": "0",
- "destination": "KT1VbeN9etQe5c2b6EAFfCZVaSTpiieHj5u1",
- "parameters": {
- "entrypoint": "tick",
- "value": {
- "string": "tzBTC/EURL"
}
}, - "metadata": {
- "balance_updates": [
- {
- "kind": "contract",
- "contract": "tz3TMbNR6YcMmRvXpssLi7wNr7RrBKsgruYU",
- "change": "-10277",
- "origin": "block"
}, - {
- "kind": "accumulator",
- "category": "block fees",
- "change": "10277",
- "origin": "block"
}
], - "operation_result": {
- "status": "applied",
- "storage": {
- "prim": "Pair",
- "args": [
- [
- {
- "prim": "Pair",
- "args": [
- {
- "prim": "Pair",
- "args": [
- {
- "bytes": "0000b9ba1078c3324ee4e0162c28cbda4765c6518d21"
}, - {
- "prim": "Pair",
- "args": [
- [
- {
- "prim": "Elt",
- "args": [
- {
- "string": "tzBTC/EURL"
}, - {
- "int": "2078"
}
]
}, - {
- "prim": "Elt",
- "args": [
- {
- "string": "tzBTC/USDT"
}, - {
- "int": "2079"
}
]
}
], - {
- "int": "288949"
}
]
}
]
}, - {
- "prim": "Pair",
- "args": [
- {
- "int": "600"
}, - {
- "int": "10000"
}
]
}
]
}, - {
- "prim": "Pair",
- "args": [
- {
- "bytes": "0000b28066369a8ed09ba9d3d47f19598440266013f0"
}, - {
- "int": "63"
}
]
}, - {
- "int": "10"
}, - {
- "int": "288950"
}
], - {
- "prim": "Pair",
- "args": [
- {
- "prim": "Pair",
- "args": [
- {
- "prim": "Pair",
- "args": [
- {
- "int": "288951"
}, - {
- "int": "1"
}
]
}, - {
- "prim": "Pair",
- "args": [
- {
- "int": "288952"
}, - [
- {
- "prim": "Elt",
- "args": [
- {
- "string": "tzBTC/EURL"
}, - [
- [
- {
- "prim": "Pair",
- "args": [
- [
- {
- "int": "0"
}, - {
- "string": "tzBTC"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "019f8e6d69a501e050b36807de00fdc3f694dda39000"
}
]
}, - {
- "int": "8"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA1.2 token"
}
]
}
], - {
- "int": "1"
}
]
}, - {
- "int": "0"
}, - {
- "string": "EURL"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "01dcb37511b08da5f8d794b690c7ad6a03206af75200"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
], - {
- "bytes": "01334d567a3617a22597eb783a65b04630e97c7fd600"
}, - {
- "string": "BTC-EUR"
}, - {
- "int": "6"
}, - {
- "prim": "False"
}
]
]
}, - {
- "prim": "Elt",
- "args": [
- {
- "string": "tzBTC/USDT"
}, - [
- [
- {
- "prim": "Pair",
- "args": [
- [
- {
- "int": "0"
}, - {
- "string": "tzBTC"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "019f8e6d69a501e050b36807de00fdc3f694dda39000"
}
]
}, - {
- "int": "8"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA1.2 token"
}
]
}
], - {
- "int": "1"
}
]
}, - {
- "int": "0"
}, - {
- "string": "USDT"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "015dfb31bce51b9f71200fab36654d50cd877ef39500"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
], - {
- "bytes": "01334d567a3617a22597eb783a65b04630e97c7fd600"
}, - {
- "string": "BTC-USDT"
}, - {
- "int": "6"
}, - {
- "prim": "False"
}
]
]
}
]
]
}
]
}, - [
- {
- "prim": "Elt",
- "args": [
- {
- "string": "EURL"
}, - [
- {
- "int": "0"
}, - {
- "string": "EURL"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "01dcb37511b08da5f8d794b690c7ad6a03206af75200"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
]
]
}, - {
- "prim": "Elt",
- "args": [
- {
- "string": "USDT"
}, - [
- {
- "int": "0"
}, - {
- "string": "USDT"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "015dfb31bce51b9f71200fab36654d50cd877ef39500"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
]
]
}, - {
- "prim": "Elt",
- "args": [
- {
- "string": "tzBTC"
}, - [
- {
- "int": "0"
}, - {
- "string": "tzBTC"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "019f8e6d69a501e050b36807de00fdc3f694dda39000"
}
]
}, - {
- "int": "8"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA1.2 token"
}
]
}
]
]
}
]
]
}
]
}, - "balance_updates": [
- {
- "kind": "contract",
- "contract": "tz3TMbNR6YcMmRvXpssLi7wNr7RrBKsgruYU",
- "change": "-2500",
- "origin": "block"
}, - {
- "kind": "burned",
- "category": "storage fees",
- "change": "2500",
- "origin": "block"
}
], - "consumed_milligas": "6668844",
- "storage_size": "1231820",
- "paid_storage_size_diff": "10",
- "lazy_storage_diff": [
- {
- "kind": "big_map",
- "id": "288952",
- "diff": {
- "action": "update",
- "updates": [ ]
}
}, - {
- "kind": "big_map",
- "id": "288951",
- "diff": {
- "action": "update",
- "updates": [
- {
- "key_hash": "exprv54v2iFYQ5fHRM2GLzRgZKHpf3suvC9jyke2F3TcFwDxExPRjB",
- "key": {
- "string": "tzBTC/EURL"
}, - "value": {
- "prim": "Pair",
- "args": [
- [
- {
- "prim": "Pair",
- "args": [
- [
- {
- "int": "0"
}, - {
- "string": "tzBTC"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "019f8e6d69a501e050b36807de00fdc3f694dda39000"
}
]
}, - {
- "int": "8"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA1.2 token"
}
]
}
], - {
- "int": "1"
}
]
}, - {
- "int": "0"
}, - {
- "string": "EURL"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "01dcb37511b08da5f8d794b690c7ad6a03206af75200"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
], - {
- "prim": "Pair",
- "args": [
- {
- "prim": "Pair",
- "args": [
- {
- "int": "2664904905100"
}, - {
- "int": "10000000000"
}
]
}, - {
- "int": "1683299700"
}
]
}
]
}
}
]
}
}, - {
- "kind": "big_map",
- "id": "288950",
- "diff": {
- "action": "update",
- "updates": [ ]
}
}, - {
- "kind": "big_map",
- "id": "288949",
- "diff": {
- "action": "update",
- "updates": [
- {
- "key_hash": "exprtX5LinYF4NkttwZC7Y6eqfXT38Dxq1KBV1ctmQAfzsGb1G3nap",
- "key": {
- "int": "2078"
}, - "value": [
- {
- "int": "2078"
}, - {
- "prim": "Left",
- "args": [
- {
- "prim": "Right",
- "args": [
- {
- "prim": "Pair",
- "args": [
- {
- "int": "1683299741"
}, - {
- "int": "1683299141"
}
]
}
]
}
]
}, - [
- {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}, - {
- "int": "0"
}
], - [
- {
- "int": "0"
}, - {
- "string": "tzBTC"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "019f8e6d69a501e050b36807de00fdc3f694dda39000"
}
]
}, - {
- "int": "8"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA1.2 token"
}
]
}
], - {
- "int": "0"
}, - {
- "string": "EURL"
}, - {
- "prim": "Some",
- "args": [
- {
- "bytes": "01dcb37511b08da5f8d794b690c7ad6a03206af75200"
}
]
}, - {
- "int": "6"
}, - {
- "prim": "Some",
- "args": [
- {
- "string": "FA2 token"
}
]
}
]
}
]
}
}
]
}
}
}
], - "signature": "sigaYuApxhkynr4VUasNY6GsSstUvVrcoS84VHtXv6V5e5Fmoqg17oEEsf5Vpahjrx1EFuPhnm4BnPwrxVyXrqh71uhG5Tf7"
}
}
}
Get the status of Solana stakes
stake_accounts | Array of strings Example: stake_accounts=5XUx8ZHPWSKdwfkPWHSTKco3okpHV7zEPccsQAxQzc9f Comma-separated list of stake addresses |
wallets | Array of strings Example: wallets=EHrKMrVsNNqBjYuKbuzf5rJZcu89dg5cwdRduMdSE557 Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "stake_account": "3sfokk2DFsd88ujd8sfa9slsdf99kjnFJksdf",
- "vote_account": "6hNweZvzTudTuprZrAXb1A9grKvVG6xgjyvdJUqAMk78",
- "withdraw_pubkey": "4wdr76KJTFgH68YtGddmnF45WdD8LMv9eLsdf",
- "state": "active",
- "activated_at": "2023-01-14T01:13:59Z",
- "activated_epoch": 150,
- "deactivated_at": "2023-01-14T01:13:59Z",
- "deactivated_epoch": 150,
- "balance": "1000000000",
- "rewards": "1000000000",
- "net_apy": 3.407,
- "updated_at": "2023-01-14T01:13:59Z"
}
]
}
Create Solana stakes and linked them to a Kiln account
Stakes to create
required | Array of objects |
account_id required | string Kiln Account ID |
{- "stakes": [
- {
- "stakeAccount": "3sfokk2DFsd88ujd8sfa9slsdf99kjnFJksdf",
- "balance": 1000000
}
], - "account_id": "92f5bfd4-ea38-4824-84f7-686eddff5539"
}
{- "data": {
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "tags": [
- "tag1"
], - "metadata": { },
- "protocol": "ethereum",
- "created_at": "2023-02-06T21:48:11.038Z",
- "updated_at": "2023-02-06T21:48:11.038Z"
}
}
Get historical rewards of Solana stakes
stake_accounts | Array of strings Example: stake_accounts=5XUx8ZHPWSKdwfkPWHSTKco3okpHV7zEPccsQAxQzc9f Comma-separated list of stake addresses |
wallets | Array of strings Example: wallets=EHrKMrVsNNqBjYuKbuzf5rJZcu89dg5cwdRduMdSE557 Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
start_date | string <date> Example: start_date=2023-01-10 Get rewards from this date (YYYY-MM-DD) |
end_date | string <date> Example: end_date=2023-01-20 Get rewards to this date (YYYY-MM-DD) |
format | string extensible-enum: ["daily","epoch"] The format of the response. Defaults to daily |
start_epoch | number Example: start_epoch=542 The epoch from which we want to fetch rewards. Must be used with format=epoch |
end_epoch | number Example: end_epoch=542 The epoch until which we want to fetch rewards. Must be used with format=epoch |
{- "data": [
- {
- "epoch": 120,
- "epoch_ts": "2023-01-14T01:13:59Z",
- "rewards": "1000",
- "active_balance": "1000",
- "net_apy": 3.407
}
]
}
Get the operations of Solana stakes
stake_accounts | Array of strings Example: stake_accounts=5XUx8ZHPWSKdwfkPWHSTKco3okpHV7zEPccsQAxQzc9f Comma-separated list of stake addresses |
wallets | Array of strings Example: wallets=EHrKMrVsNNqBjYuKbuzf5rJZcu89dg5cwdRduMdSE557 Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "type": "create_account_with_seed",
- "time": "2023-01-14T01:13:59Z",
- "tx_hash": "2cHnbnyJnP6vffL3iR2pN8va6fxXWEdnYAr9nwM7d3VowDXSxw3B541DR294fHgomK81SQdSHdskhKUCWUKQPHie",
- "tx_fee": "1000",
- "tx_memo": "kiln_memo",
- "block": 1000,
- "stake_account": "3sfokk2DFsd88ujd8sfa9slsdf99kjnFJksdf",
- "amount": "1000",
- "stake_authority": "4wdr76KJTFgH68YtGddmnF45WdD8LMv9eLsdf"
}
]
}
{- "data": {
- "network_gross_apy": 4.5,
- "supply_staked_percent": 12.4,
- "nb_validators": 402,
- "sol_price_usd": 3.5,
- "updated_at": "2023-01-14T01:13:59Z"
}
}
Get reports on Solana staking
stake_accounts | Array of strings Example: stake_accounts=5XUx8ZHPWSKdwfkPWHSTKco3okpHV7zEPccsQAxQzc9f Comma-separated list of stake addresses |
wallets | Array of strings Example: wallets=EHrKMrVsNNqBjYuKbuzf5rJZcu89dg5cwdRduMdSE557 Comma-separated list of wallets addresses |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
format | string extensible-enum: ["daily","epoch"] The format of the response. Defaults to daily |
Craft a stake transaction. This results in a new stake account created with the amount given.
Stake transaction to create
account_id required | string Kiln Account ID |
wallet required | string Wallet address |
amount_lamports required | string Amount in lamports (minimum value must be 10000001) |
vote_account_address required | string Vote account address |
memo | string Custom message to send as a memo in the transaction |
{- "account_id": "d3f1b917-72b1-4982-a4dd-93fce579a708",
- "wallet": "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "amount_lamports": "1000000000000000",
- "vote_account_address": "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "memo": "custom message"
}
{- "data": {
- "unsigned_tx_hash": "0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx": {
- "header": {
- "numRequiredSignatures": 3,
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "2sAwSXUrNW9PfaX6joGy62QAfmhHGnxpM7CYGNF7qdPX",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "HCAcHiKdfbnfZk6rgnrWxeCBxavYxcWWo7JLsQqwDquU",
- "instructions": [
- {
- "programIdIndex": 4,
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P"
}, - {
- "programIdIndex": 4,
- "accounts": [
- 0,
- 1
], - "data": "11111255HrbrzNKE34jJbWojuhKCCFF5BqruMbtEe7CY3fPCMjUHYn7uEDqFavZELT1boD"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh"
}
], - "indexToProgramIds": { }
}
}
}
Craft a deactivate stake account transaction.
Stake to deactivate
stake_account required | string Stake account address |
wallet required | string Wallet address |
{- "stake_account": "3M7sFDMdUxfNNSmKk2ZmDKgKJFzuLvxpuXKDTLRGXpcK",
- "wallet": "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9"
}
{- "data": {
- "unsigned_tx_hash": "0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx": {
- "header": {
- "numRequiredSignatures": 3,
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "2sAwSXUrNW9PfaX6joGy62QAfmhHGnxpM7CYGNF7qdPX",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "HCAcHiKdfbnfZk6rgnrWxeCBxavYxcWWo7JLsQqwDquU",
- "instructions": [
- {
- "programIdIndex": 4,
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P"
}, - {
- "programIdIndex": 4,
- "accounts": [
- 0,
- 1
], - "data": "11111255HrbrzNKE34jJbWojuhKCCFF5BqruMbtEe7CY3fPCMjUHYn7uEDqFavZELT1boD"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh"
}
], - "indexToProgramIds": { }
}
}
}
Craft a withdraw stake transaction.
Stake to withdraw
stake_account required | string Stake account address |
wallet required | string Wallet address |
amount_lamports | string Amount in lamports |
{- "stake_account": "3M7sFDMdUxfNNSmKk2ZmDKgKJFzuLvxpuXKDTLRGXpcK",
- "wallet": "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "amount_lamports": "1000000000000000"
}
{- "data": {
- "unsigned_tx_hash": "0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx": {
- "header": {
- "numRequiredSignatures": 3,
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "2sAwSXUrNW9PfaX6joGy62QAfmhHGnxpM7CYGNF7qdPX",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "HCAcHiKdfbnfZk6rgnrWxeCBxavYxcWWo7JLsQqwDquU",
- "instructions": [
- {
- "programIdIndex": 4,
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P"
}, - {
- "programIdIndex": 4,
- "accounts": [
- 0,
- 1
], - "data": "11111255HrbrzNKE34jJbWojuhKCCFF5BqruMbtEe7CY3fPCMjUHYn7uEDqFavZELT1boD"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh"
}
], - "indexToProgramIds": { }
}
}
}
Craft a merge stakes transaction.
Stakes to merge
stake_account_source required | string Stake account address |
stake_account_destination required | string Stake account address |
wallet required | string Wallet address |
{- "stake_account_source": "HQQkoFXHz1XemQHFhC3mN1CGdfH8Pokw2DfFUmwZCRWb",
- "stake_account_destination": "GyPnKF88P8c3jESicELWLrxAmeF9PoaKzqYGREDuEAMx",
- "wallet": "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9"
}
{- "data": {
- "unsigned_tx_hash": "0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx": {
- "header": {
- "numRequiredSignatures": 3,
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "2sAwSXUrNW9PfaX6joGy62QAfmhHGnxpM7CYGNF7qdPX",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "HCAcHiKdfbnfZk6rgnrWxeCBxavYxcWWo7JLsQqwDquU",
- "instructions": [
- {
- "programIdIndex": 4,
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P"
}, - {
- "programIdIndex": 4,
- "accounts": [
- 0,
- 1
], - "data": "11111255HrbrzNKE34jJbWojuhKCCFF5BqruMbtEe7CY3fPCMjUHYn7uEDqFavZELT1boD"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh"
}
], - "indexToProgramIds": { }
}
}
}
Craft a solana split stake transaction
Stake to split
account_id required | string Kiln Account ID |
stake_account required | string Stake account address |
wallet required | string Wallet address |
amount_lamports required | string Amount in lamports |
{- "account_id": "d3f1b917-72b1-4982-a4dd-93fce579a708",
- "stake_account": "GyPnKF88P8c3jESicELWLrxAmeF9PoaKzqYGREDuEAMx",
- "wallet": "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "amount_lamports": "200000000"
}
{- "data": {
- "unsigned_tx_hash": "0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "unsigned_tx": {
- "header": {
- "numRequiredSignatures": 3,
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "2sAwSXUrNW9PfaX6joGy62QAfmhHGnxpM7CYGNF7qdPX",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "HCAcHiKdfbnfZk6rgnrWxeCBxavYxcWWo7JLsQqwDquU",
- "instructions": [
- {
- "programIdIndex": 4,
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P"
}, - {
- "programIdIndex": 4,
- "accounts": [
- 0,
- 1
], - "data": "11111255HrbrzNKE34jJbWojuhKCCFF5BqruMbtEe7CY3fPCMjUHYn7uEDqFavZELT1boD"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w"
}, - {
- "programIdIndex": 6,
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh"
}
], - "indexToProgramIds": { }
}
}
}
Prepare an unsigned transaction for broadcast by adding signatures to it
Transaction to sign
unsigned_tx_serialized required | string Hex encoded unsigned transaction |
signatures required | Array of strings Hex encoded signatures |
{- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "signatures": [
- "c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e"
]
}
{- "data": {
- "signed_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000"
}
}
Broadcast a serialized signed transaction to the blockchain
Signed transaction to broadcast
tx_serialized required | string Hex encoded signed transaction |
{- "tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000"
}
{- "data": {
- "tx_hash": "sV6dgQyxByL66t9uTPmffitncWNmnkR8oEC1gQ29jPrKFHm9TkMGvS3TgcQeNz9pSN7913aPXe6MMHFS4xqTafL"
}
}
Get the status of a transaction
tx_hash required | string Example: tx_hash=0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94 Hash of the transaction |
{- "data": {
- "status": "success",
- "receipt": {
- "blockTime": 1676916194,
- "meta": {
- "computeUnitsConsumed": 0,
- "err": null,
- "fee": 15000,
- "innerInstructions": [ ],
- "loadedAddresses": {
- "readonly": [ ],
- "writable": [ ]
}, - "logMessages": [
- "Program 11111111111111111111111111111111 invoke [1]",
- "Program 11111111111111111111111111111111 success",
- "Program 11111111111111111111111111111111 invoke [1]",
- "Program 11111111111111111111111111111111 success",
- "Program Stake11111111111111111111111111111111111111 invoke [1]",
- "Program Stake11111111111111111111111111111111111111 success",
- "Program Stake11111111111111111111111111111111111111 invoke [1]",
- "Program Stake11111111111111111111111111111111111111 success"
], - "postBalances": [
- 1587335720,
- 200000000,
- 1979975000,
- 10000000,
- 1,
- 7292994607,
- 1,
- 960480,
- 1169280,
- 42706560,
- 1009200,
- 114979200
], - "postTokenBalances": [ ],
- "preBalances": [
- 1787350720,
- 0,
- 1979975000,
- 10000000,
- 1,
- 7292994607,
- 1,
- 960480,
- 1169280,
- 42706560,
- 1009200,
- 114979200
], - "preTokenBalances": [ ],
- "rewards": [ ],
- "status": {
- "Ok": null
}
}, - "slot": 197065694,
- "transaction": {
- "message": {
- "header": {
- "numReadonlySignedAccounts": 1,
- "numReadonlyUnsignedAccounts": 8,
- "numRequiredSignatures": 3
}, - "accountKeys": [
- "4icse2mPXNgyxxn11tVM7sTnSqDqwJSEzdnaCQnRzvA9",
- "8qcpEjkWRi7LuZL4oQARDNTMVUwLQyakuno2syEMLsBi",
- "6WwYZH8zdqF7kELtRfo1yAnvD1wvXwTg4m1jBhUCqC68",
- "HoAGnvTdp4Qgrq3NWtNQFS6FixasBhLqui23Seq7riSw",
- "11111111111111111111111111111111",
- "FwR3PbjS5iyqzLiLugrBqKSa5EKZ4vK9SKs7eQXtT59f",
- "Stake11111111111111111111111111111111111111",
- "StakeConfig11111111111111111111111111111111",
- "SysvarC1ock11111111111111111111111111111111",
- "SysvarRecentB1ockHashes11111111111111111111",
- "SysvarRent111111111111111111111111111111111",
- "SysvarStakeHistory1111111111111111111111111"
], - "recentBlockhash": "4emvYWMe99WbtKFHmtv5gEUYi9HfVnmQyf5Y7ccCEpWR",
- "instructions": [
- {
- "accounts": [
- 3,
- 9,
- 2
], - "data": "6vx8P",
- "programIdIndex": 4
}, - {
- "accounts": [
- 0,
- 1
], - "data": "111112cxUqMWZDxCrGjkHwTWjy7bQNEqgy3xB2LZ8vt9NjVisJzdYK3W8eRceiR2k9CjMy",
- "programIdIndex": 4
}, - {
- "accounts": [
- 1,
- 10
], - "data": "1111BNVhr29wy4CUDfmP3ysWa9GUZMwYaMaAp9JVWCAzhqZ78HhuLB7fgzVCHGpmMQg4sJMrzXVvT3BxhUBDvroCMCJ5sKhVwNWL2phXwqXEH6mKiVgsJwPG3iKFVxiQoPLBXFx7Vv9USNmuAMcTWz6tvYb2w",
- "programIdIndex": 6
}, - {
- "accounts": [
- 1,
- 5,
- 8,
- 11,
- 7,
- 0
], - "data": "3xyZh",
- "programIdIndex": 6
}
], - "indexToProgramIds": { }
}, - "signatures": [
- "569uGMNQR4vVeukdSTmLtrzs5ZSiAFTk3tPTBavJjZ1H7b3be2EB8ZjRcfhTA6gBApien2tbJgKYayDVtRKFRfUu",
- "3hSgNRnKero2XogfU6Dk3jDXrEMmknNaoPbW4dJ6BHCkDUV5J5rr5iRRdaAtoVLvat7QMox7qpanMu6fqUAUvs3w",
- "5djumEdbCJEAPxJk2r9FybpDLnSy4uazGbgP3EmtQrMQMW4edQrhb1nYK3aJtgf5svMtSXSgKoFho4tUxVAbZSUn"
]
}
}
}
}
Get the status of ATOM stakes. Units are in uATOM (10⁻⁶ ATOM). All stakes active after Theta v7 (12/04/2022) are available.
validators | Array of strings Example: validators=cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 Comma-separated list of validators addresses, these addresses are matched with the corresponding delegator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
delegators | Array of strings Example: delegators=cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl Comma-separated list of delegator addresses, these addresses are matched with the corresponding validator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "validator_address": "cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2",
- "delegator_address": "cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl",
- "delegated_at": "2023-06-16T03:13:23.058547Z",
- "delegated_block": 15739267,
- "undelegated_at": "2023-07-14T03:56:13.561156Z",
- "undelegated_block": 16126416,
- "rewards": "735573808534727891000000",
- "available_rewards": "36748808534727891000000",
- "balance": "6300000000000000000000000",
- "net_apy": 5.76,
- "state": "active",
- "updated_at": "2023-01-14T01:13:59Z"
}
]
}
Link an ATOM stake to a Kiln account
Stakes to create
required | Array of objects |
account_id required | string Kiln Account ID |
{- "stakes": [
- {
- "stakeId": "cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2_cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl",
- "balance": 1000000
}
], - "account_id": "92f5bfd4-ea38-4824-84f7-686eddff5539"
}
{- "data": {
- "id": "92f5bfd4-ea38-4824-84f7-686eddff5539",
- "tags": [
- "tag1"
], - "metadata": { },
- "protocol": "ethereum",
- "created_at": "2023-02-06T21:48:11.038Z",
- "updated_at": "2023-02-06T21:48:11.038Z"
}
}
Get historical rewards by day of ATOM stakes. Units are in uATOM (10⁻⁶ ATOM). Only daily breakdowns after 13/04/2022 (Theta v7) are available.
validators | Array of strings Example: validators=cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 Comma-separated list of validators addresses, these addresses are matched with the corresponding delegator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
delegators | Array of strings Example: delegators=cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl Comma-separated list of delegator addresses, these addresses are matched with the corresponding validator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
start_date | string <date> Example: start_date=2023-01-10 Get rewards from this date (YYYY-MM-DD) |
end_date | string <date> Example: end_date=2023-01-20 Get rewards to this date (YYYY-MM-DD) |
{- "data": [
- {
- "date": "2023-01-15",
- "rewards": "3575891083876864200000",
- "balance": "6300000000000000000000000",
- "net_apy": 20.76
}
]
}
Get the operations of ATOM stakes. Units are in uATOM (10⁻⁶ ATOM). All operations after Theta v7 (12/04/2022) are available.
validators | Array of strings Example: validators=cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 Comma-separated list of validators addresses, these addresses are matched with the corresponding delegator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
delegators | Array of strings Example: delegators=cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl Comma-separated list of delegator addresses, these addresses are matched with the corresponding validator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
{- "data": [
- {
- "type": "staking.MsgDelegate",
- "time": "2023-06-22T15:35:01.892644Z",
- "block": 15828207,
- "tx_hash": "7DBC7C481A9A28961BDDF5BCDD47217A126EC0497017908453D71FACA9FA3506",
- "tx_gas_used": "186733",
- "message_index": 0,
- "validator_address": "cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2",
- "delegator_address": "cosmos1hz9ew395caudqtynfwry0mxxw9jyvngkw255l5",
- "amount": "3000000",
- "withdraw_rewards": "10841"
}
]
}
Get reports on Cosmos staking
delegators | Array of strings Example: delegators=cosmos1mfdn23y2ydnp6j3l3f8rw6r2gzazrmprgxn5xl Comma-separated list of delegator addresses, these addresses are matched with the corresponding validator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
validators | Array of strings Example: validators=cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 Comma-separated list of validators addresses, these addresses are matched with the corresponding delegator addresses. To fetch a specific stake, pass your wallet address and the validator address as parameters. |
accounts | Array of strings <uuid> [ items <uuid > ] Example: accounts=b7177fd2-fbb3-479f-aa92-db9fb16e229f Comma-separated list of Kiln accounts identifiers |
Generates a delegate transaction on Cosmos
Transaction to craft
account_id required | string <uuid> Kiln Account ID to stake into |
pubkey required | string Wallet compressed or uncompressed public key, this is different than the wallet address |
validator required | string Validator address |
amount_uatom required | string Amount to stake in uATOM |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "validator": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9",
- "amount_uatom": "1000000000000000000000000"
}
{- "data": {
- "unsigned_tx_hash": "b6ce1c8185416ce7d42a8c39566a9a2b6b2361a55c04a1dba3dd7445a0e1e364",
- "tx_body": "0a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d120731303030303030",
- "tx_auth_info": "0a2c0a2a0a28636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a716561746576120a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e6165726539",
- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "message": {
- "typeUrl": "/cosmos.staking.v1beta1.MsgDelegate",
- "value": {
- "delegatorAddress": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev",
- "validatorAddress": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9",
- "amount": {
- "denom": "uatom",
- "amount": "1000000"
}
}
}, - "fee": {
- "amount": [
- {
- "denom": "uatom",
- "amount": "5000"
}
], - "gas": "200000"
}
}
}
Generates a withdraw rewards transaction on Cosmos
Transaction to craft
pubkey required | string Wallet compressed public key, this is different than the wallet address |
validator required | string Validator address |
{- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "validator": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9"
}
{- "data": {
- "unsigned_tx_hash": "b6ce1c8185416ce7d42a8c39566a9a2b6b2361a55c04a1dba3dd7445a0e1e364",
- "tx_body": "0a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d120731303030303030",
- "tx_auth_info": "0a2c0a2a0a28636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a716561746576120a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e6165726539",
- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "message": {
- "typeUrl": "/cosmos.staking.v1beta1.MsgDelegate",
- "value": {
- "delegatorAddress": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev",
- "validatorAddress": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9",
- "amount": {
- "denom": "uatom",
- "amount": "1000000"
}
}
}, - "fee": {
- "amount": [
- {
- "denom": "uatom",
- "amount": "5000"
}
], - "gas": "200000"
}
}
}
Generates an undelegate transaction on Cosmos
Transaction to craft
pubkey required | string Wallet compressed public key, this is different than the wallet address |
validator required | string Validator address |
amount_uatom | string Amount to unstake in uATOM. Omit to unstake all the delegated amount |
{- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "validator": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9",
- "amount_uatom": "1000000000000000000000000"
}
{- "data": {
- "unsigned_tx_hash": "b6ce1c8185416ce7d42a8c39566a9a2b6b2361a55c04a1dba3dd7445a0e1e364",
- "tx_body": "0a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d120731303030303030",
- "tx_auth_info": "0a2c0a2a0a28636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a716561746576120a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e6165726539",
- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "message": {
- "typeUrl": "/cosmos.staking.v1beta1.MsgDelegate",
- "value": {
- "delegatorAddress": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev",
- "validatorAddress": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9",
- "amount": {
- "denom": "uatom",
- "amount": "1000000"
}
}
}, - "fee": {
- "amount": [
- {
- "denom": "uatom",
- "amount": "5000"
}
], - "gas": "200000"
}
}
}
Prepare an unsigned transaction for broadcast by adding signatures to it
Transaction to prepare
pubkey required | string Wallet compressed public key, this is different than the wallet address |
tx_body required | string Transaction body serialized in hex |
tx_auth_info required | string Transaction auth info serialized in hex |
signature required | string Transaction signature serialized in hex |
{- "pubkey": "039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f46",
- "tx_body": "0a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d120731303030303030",
- "tx_auth_info": "0a2c0a2a0a28636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a716561746576120a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e6165726539",
- "signature": "191f87a54dceafb6ab9a5f112a13444ca37e49a029e531bb21301fd72e9d390304c763cca5a9760a631dc85705dd6b08b50f5fff7d5de8d73b2cebd1f4c3b6a0"
}
{- "data": {
- "signed_tx_serialized": "0aa1010a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d12073130303030303012670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a21039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f4612040a020801182012130a0d0a057561746f6d12043530303010e0a7121a40191f87a54dceafb6ab9a5f112a13444ca37e49a029e531bb21301fd72e9d390304c763cca5a9760a631dc85705dd6b08b50f5fff7d5de8d73b2cebd1f4c3b6a0"
}
}
Broadcast a signed transaction to the Cosmos network
Transaction to broadcast
tx_serialized required | string Signed transaction serialized in hex |
{- "tx_serialized": "0aa1010a9e010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512770a2d636f736d6f733139633966646834383876716a636c6c74777036386a6d3530796477796833366a7165617465761234636f736d6f7376616c6f706572313679733065673933356d6b71706b79646b6766636a39616765326175386c39366e61657265391a100a057561746f6d12073130303030303012670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a21039ce47b2a813d13876131a9c3be77e8c4afa49e948744abbee11f939e2a420f4612040a020801182012130a0d0a057561746f6d12043530303010e0a7121a40191f87a54dceafb6ab9a5f112a13444ca37e49a029e531bb21301fd72e9d390304c763cca5a9760a631dc85705dd6b08b50f5fff7d5de8d73b2cebd1f4c3b6a0"
}
{- "data": {
- "tx_hash": "2B4F732E12D5D5AF1F907AD03B199167A718EDC6201DE5713143AB80990420CB"
}
}
Get the status of a transaction
tx_hash required | string Example: tx_hash=2B4F732E12D5D5AF1F907AD03B199167A718EDC6201DE5713143AB80990420CB Hash of the transaction |
{- "data": {
- "status": "success",
- "receipt": {
- "height": 16007296,
- "txIndex": 0,
- "hash": "2B4F732E12D5D5AF1F907AD03B199167A718EDC6201DE5713143AB80990420CB",
- "code": 0,
- "events": [
- {
- "type": "coin_spent",
- "attributes": [
- {
- "key": "spender",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}, - {
- "key": "amount",
- "value": "5000uatom"
}
]
}, - {
- "type": "coin_received",
- "attributes": [
- {
- "key": "receiver",
- "value": "cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta"
}, - {
- "key": "amount",
- "value": "5000uatom"
}
]
}, - {
- "type": "transfer",
- "attributes": [
- {
- "key": "recipient",
- "value": "cosmos17xpfvakm2amg962yls6f84z3kell8c5lserqta"
}, - {
- "key": "sender",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}, - {
- "key": "amount",
- "value": "5000uatom"
}
]
}, - {
- "type": "message",
- "attributes": [
- {
- "key": "sender",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}
]
}, - {
- "type": "tx",
- "attributes": [
- {
- "key": "fee",
- "value": "5000uatom"
}, - {
- "key": "fee_payer",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}
]
}, - {
- "type": "tx",
- "attributes": [
- {
- "key": "acc_seq",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev/33"
}
]
}, - {
- "type": "tx",
- "attributes": [
- {
- "key": "signature",
- "value": "GR+HpU3Or7arml8RKhNETKN+SaAp5TG7ITAf1y6dOQMEx2PMpal2CmMdyFcF3WsItQ9f/31d6Nc7LOvR9MO2oA=="
}
]
}, - {
- "type": "message",
- "attributes": [
- {
- "key": "action",
- "value": "/cosmos.staking.v1beta1.MsgDelegate"
}
]
}, - {
- "type": "coin_spent",
- "attributes": [
- {
- "key": "spender",
- "value": "cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl"
}, - {
- "key": "amount",
- "value": "5uatom"
}
]
}, - {
- "type": "coin_received",
- "attributes": [
- {
- "key": "receiver",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}, - {
- "key": "amount",
- "value": "5uatom"
}
]
}, - {
- "type": "transfer",
- "attributes": [
- {
- "key": "recipient",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}, - {
- "key": "sender",
- "value": "cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl"
}, - {
- "key": "amount",
- "value": "5uatom"
}
]
}, - {
- "type": "message",
- "attributes": [
- {
- "key": "sender",
- "value": "cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl"
}
]
}, - {
- "type": "withdraw_rewards",
- "attributes": [
- {
- "key": "amount",
- "value": "5uatom"
}, - {
- "key": "validator",
- "value": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9"
}
]
}, - {
- "type": "coin_spent",
- "attributes": [
- {
- "key": "spender",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}, - {
- "key": "amount",
- "value": "100000uatom"
}
]
}, - {
- "type": "coin_received",
- "attributes": [
- {
- "key": "receiver",
- "value": "cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh"
}, - {
- "key": "amount",
- "value": "100000uatom"
}
]
}, - {
- "type": "delegate",
- "attributes": [
- {
- "key": "validator",
- "value": "cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9"
}, - {
- "key": "amount",
- "value": "100000uatom"
}, - {
- "key": "new_shares",
- "value": "100000.000000000000000000"
}
]
}, - {
- "type": "message",
- "attributes": [
- {
- "key": "module",
- "value": "staking"
}, - {
- "key": "sender",
- "value": "cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev"
}
]
}
], - "rawLog": "[{\"events\":[{\"type\":\"coin_received\",\"attributes\":[{\"key\":\"receiver\",\"value\":\"cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev\"},{\"key\":\"amount\",\"value\":\"5uatom\"},{\"key\":\"receiver\",\"value\":\"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh\"},{\"key\":\"amount\",\"value\":\"100000uatom\"}]},{\"type\":\"coin_spent\",\"attributes\":[{\"key\":\"spender\",\"value\":\"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl\"},{\"key\":\"amount\",\"value\":\"5uatom\"},{\"key\":\"spender\",\"value\":\"cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev\"},{\"key\":\"amount\",\"value\":\"100000uatom\"}]},{\"type\":\"delegate\",\"attributes\":[{\"key\":\"validator\",\"value\":\"cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9\"},{\"key\":\"amount\",\"value\":\"100000uatom\"},{\"key\":\"new_shares\",\"value\":\"100000.000000000000000000\"}]},{\"type\":\"message\",\"attributes\":[{\"key\":\"action\",\"value\":\"/cosmos.staking.v1beta1.MsgDelegate\"},{\"key\":\"sender\",\"value\":\"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl\"},{\"key\":\"module\",\"value\":\"staking\"},{\"key\":\"sender\",\"value\":\"cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev\"}]},{\"type\":\"transfer\",\"attributes\":[{\"key\":\"recipient\",\"value\":\"cosmos19c9fdh488vqjclltwp68jm50ydwyh36jqeatev\"},{\"key\":\"sender\",\"value\":\"cosmos1jv65s3grqf6v6jl3dp4t6c9t9rk99cd88lyufl\"},{\"key\":\"amount\",\"value\":\"5uatom\"}]},{\"type\":\"withdraw_rewards\",\"attributes\":[{\"key\":\"amount\",\"value\":\"5uatom\"},{\"key\":\"validator\",\"value\":\"cosmosvaloper16ys0eg935mkqpkydkgfcj9age2au8l96naere9\"}]}]}]",
- "tx": {
- "0": 10,
- "1": 160,
- "2": 1,
- "3": 10,
- "4": 157,
- "5": 1,
- "6": 10,
- "7": 35,
- "8": 47,
- "9": 99,
- "10": 111,
- "11": 115,
- "12": 109,
- "13": 111,
- "14": 115,
- "15": 46,
- "16": 115,
- "17": 116,
- "18": 97,
- "19": 107,
- "20": 105,
- "21": 110,
- "22": 103,
- "23": 46,
- "24": 118,
- "25": 49,
- "26": 98,
- "27": 101,
- "28": 116,
- "29": 97,
- "30": 49,
- "31": 46,
- "32": 77,
- "33": 115,
- "34": 103,
- "35": 68,
- "36": 101,
- "37": 108,
- "38": 101,
- "39": 103,
- "40": 97,
- "41": 116,
- "42": 101,
- "43": 18,
- "44": 118,
- "45": 10,
- "46": 45,
- "47": 99,
- "48": 111,
- "49": 115,
- "50": 109,
- "51": 111,
- "52": 115,
- "53": 49,
- "54": 57,
- "55": 99,
- "56": 57,
- "57": 102,
- "58": 100,
- "59": 104,
- "60": 52,
- "61": 56,
- "62": 56,
- "63": 118,
- "64": 113,
- "65": 106,
- "66": 99,
- "67": 108,
- "68": 108,
- "69": 116,
- "70": 119,
- "71": 112,
- "72": 54,
- "73": 56,
- "74": 106,
- "75": 109,
- "76": 53,
- "77": 48,
- "78": 121,
- "79": 100,
- "80": 119,
- "81": 121,
- "82": 104,
- "83": 51,
- "84": 54,
- "85": 106,
- "86": 113,
- "87": 101,
- "88": 97,
- "89": 116,
- "90": 101,
- "91": 118,
- "92": 18,
- "93": 52,
- "94": 99,
- "95": 111,
- "96": 115,
- "97": 109,
- "98": 111,
- "99": 115,
- "100": 118,
- "101": 97,
- "102": 108,
- "103": 111,
- "104": 112,
- "105": 101,
- "106": 114,
- "107": 49,
- "108": 54,
- "109": 121,
- "110": 115,
- "111": 48,
- "112": 101,
- "113": 103,
- "114": 57,
- "115": 51,
- "116": 53,
- "117": 109,
- "118": 107,
- "119": 113,
- "120": 112,
- "121": 107,
- "122": 121,
- "123": 100,
- "124": 107,
- "125": 103,
- "126": 102,
- "127": 99,
- "128": 106,
- "129": 57,
- "130": 97,
- "131": 103,
- "132": 101,
- "133": 50,
- "134": 97,
- "135": 117,
- "136": 56,
- "137": 108,
- "138": 57,
- "139": 54,
- "140": 110,
- "141": 97,
- "142": 101,
- "143": 114,
- "144": 101,
- "145": 57,
- "146": 26,
- "147": 15,
- "148": 10,
- "149": 5,
- "150": 117,
- "151": 97,
- "152": 116,
- "153": 111,
- "154": 109,
- "155": 18,
- "156": 6,
- "157": 49,
- "158": 48,
- "159": 48,
- "160": 48,
- "161": 48,
- "162": 48,
- "163": 18,
- "164": 103,
- "165": 10,
- "166": 80,
- "167": 10,
- "168": 70,
- "169": 10,
- "170": 31,
- "171": 47,
- "172": 99,
- "173": 111,
- "174": 115,
- "175": 109,
- "176": 111,
- "177": 115,
- "178": 46,
- "179": 99,
- "180": 114,
- "181": 121,
- "182": 112,
- "183": 116,
- "184": 111,
- "185": 46,
- "186": 115,
- "187": 101,
- "188": 99,
- "189": 112,
- "190": 50,
- "191": 53,
- "192": 54,
- "193": 107,
- "194": 49,
- "195": 46,
- "196": 80,
- "197": 117,
- "198": 98,
- "199": 75,
- "200": 101,
- "201": 121,
- "202": 18,
- "203": 35,
- "204": 10,
- "205": 33,
- "206": 3,
- "207": 156,
- "208": 228,
- "209": 123,
- "210": 42,
- "211": 129,
- "212": 61,
- "213": 19,
- "214": 135,
- "215": 97,
- "216": 49,
- "217": 169,
- "218": 195,
- "219": 190,
- "220": 119,
- "221": 232,
- "222": 196,
- "223": 175,
- "224": 164,
- "225": 158,
- "226": 148,
- "227": 135,
- "228": 68,
- "229": 171,
- "230": 190,
- "231": 225,
- "232": 31,
- "233": 147,
- "234": 158,
- "235": 42,
- "236": 66,
- "237": 15,
- "238": 70,
- "239": 18,
- "240": 4,
- "241": 10,
- "242": 2,
- "243": 8,
- "244": 1,
- "245": 24,
- "246": 33,
- "247": 18,
- "248": 19,
- "249": 10,
- "250": 13,
- "251": 10,
- "252": 5,
- "253": 117,
- "254": 97,
- "255": 116,
- "256": 111,
- "257": 109,
- "258": 18,
- "259": 4,
- "260": 53,
- "261": 48,
- "262": 48,
- "263": 48,
- "264": 16,
- "265": 224,
- "266": 167,
- "267": 18,
- "268": 26,
- "269": 64,
- "270": 25,
- "271": 31,
- "272": 135,
- "273": 165,
- "274": 77,
- "275": 206,
- "276": 175,
- "277": 182,
- "278": 171,
- "279": 154,
- "280": 95,
- "281": 17,
- "282": 42,
- "283": 19,
- "284": 68,
- "285": 76,
- "286": 163,
- "287": 126,
- "288": 73,
- "289": 160,
- "290": 41,
- "291": 229,
- "292": 49,
- "293": 187,
- "294": 33,
- "295": 48,
- "296": 31,
- "297": 215,
- "298": 46,
- "299": 157,
- "300": 57,
- "301": 3,
- "302": 4,
- "303": 199,
- "304": 99,
- "305": 204,
- "306": 165,
- "307": 169,
- "308": 118,
- "309": 10,
- "310": 99,
- "311": 29,
- "312": 200,
- "313": 87,
- "314": 5,
- "315": 221,
- "316": 107,
- "317": 8,
- "318": 181,
- "319": 15,
- "320": 95,
- "321": 255,
- "322": 125,
- "323": 93,
- "324": 232,
- "325": 215,
- "326": 59,
- "327": 44,
- "328": 235,
- "329": 209,
- "330": 244,
- "331": 195,
- "332": 182,
- "333": 160
}, - "gasUsed": 167798,
- "gasWanted": 300000
}
}
}
Generates a delegate transaction on Cardano
Transaction to craft
account_id required | string <uuid> Kiln Account ID to stake into |
wallet required | string Wallet that you wish to delegate from |
pool_id required | string Pool id to delegate to |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "wallet": "addr1q8rmz6kk2te6z2p44l2uvjgmf5cj5r6l0nwnw6xqk4srnlr5kh8wvl8mw3na7m3fd2py8n3zqs6ueqe0gwcuf9a77z9sxdz9xr",
- "pool_id": "pool10rdglgh4pzvkf936p2m669qzarr9dusrhmmz9nultm3uvq4eh5k"
}
{- "data": {
- "unsigned_tx_hash": "ea62bc381a2d8fc338f24634674a168fdc8f1a09b978f24f026041f4e00c876f",
- "unsigned_tx_serialized": "84a500818258203d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e100018182583900491a1d0747fa91f319625e39076232ad4cc274e3257f345ced82dbb2a8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b1b0000000255928400021a000493e0031a01ad4330048282008200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b83028200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b581ce54d5f9340218a9816cafafc92dc3d5212b6d149ce75e9637cbcd7e0a0f5f6",
- "inputs": [
- {
- "transaction_id": "3d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e1",
- "index": 0
}
]
}
}
Generates a withdraw rewards transaction on Cardano
Transaction to craft
wallet required | string Wallet that you wish to withdraw rewards to |
amount_lovelace | string Optional amount of rewards to withdraw in lovelace. 1 ADA = 1,000,000 lovelace. If omitted, all available rewards will be withdrawn. |
{- "wallet": "addr1q8rmz6kk2te6z2p44l2uvjgmf5cj5r6l0nwnw6xqk4srnlr5kh8wvl8mw3na7m3fd2py8n3zqs6ueqe0gwcuf9a77z9sxdz9xr",
- "amount_lovelace": "1000000"
}
{- "data": {
- "unsigned_tx_hash": "ea62bc381a2d8fc338f24634674a168fdc8f1a09b978f24f026041f4e00c876f",
- "unsigned_tx_serialized": "84a500818258203d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e100018182583900491a1d0747fa91f319625e39076232ad4cc274e3257f345ced82dbb2a8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b1b0000000255928400021a000493e0031a01ad4330048282008200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b83028200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b581ce54d5f9340218a9816cafafc92dc3d5212b6d149ce75e9637cbcd7e0a0f5f6",
- "inputs": [
- {
- "transaction_id": "3d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e1",
- "index": 0
}
]
}
}
Generates an undelegate transaction on Cardano
Transaction to craft
wallet required | string Wallet that you wish to undelegate |
{- "wallet": "addr1q8rmz6kk2te6z2p44l2uvjgmf5cj5r6l0nwnw6xqk4srnlr5kh8wvl8mw3na7m3fd2py8n3zqs6ueqe0gwcuf9a77z9sxdz9xr"
}
{- "data": {
- "unsigned_tx_hash": "ea62bc381a2d8fc338f24634674a168fdc8f1a09b978f24f026041f4e00c876f",
- "unsigned_tx_serialized": "84a500818258203d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e100018182583900491a1d0747fa91f319625e39076232ad4cc274e3257f345ced82dbb2a8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b1b0000000255928400021a000493e0031a01ad4330048282008200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b83028200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b581ce54d5f9340218a9816cafafc92dc3d5212b6d149ce75e9637cbcd7e0a0f5f6",
- "inputs": [
- {
- "transaction_id": "3d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e1",
- "index": 0
}
]
}
}
Prepare an unsigned transaction for broadcast by adding signatures to it
Transaction to prepare
unsigned_tx_serialized required | string Unsigned serialized transaction |
required | Array of objects Signed messages |
{- "unsigned_tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000",
- "signed_messages": null
}
{- "data": {
- "signed_tx_serialized": "84a500818258203d244a2821a0cb32df614cf4380e6c6e0114bc7c734cfa2a3940498ad86865e100018182583900491a1d0747fa91f319625e39076232ad4cc274e3257f345ced82dbb2a8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b1b0000000255928400021a000493e0031a01ad4330048282008200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b83028200581ca8565045c49103b521a3827ff64b98889350a22fa9a0b5ccf72b279b581ce54d5f9340218a9816cafafc92dc3d5212b6d149ce75e9637cbcd7e0a0f5f6"
}
}
Broadcast a signed transaction to the Cardano network
Transaction to broadcast
tx_serialized required | string Signed serialized transaction |
{- "tx_serialized": "0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b2b5ef76d483b695bc3b954d9a372ca5f744e00279c8578bc4268d570b701a037fac575ae16bb3ba5702b8d5bd9930953453e2d628368f83a11ab5896d20bbcae0b4a119860afd99da20f3462ba15d8bd1528d73724b83e8cc4cee00787df28a181783c264113ef1870bae5a90987fc5cfcdffaddf23c7dcfd7585c13d10b0301080c373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e1bb5f70b4d3ae65feb6d20587f62ccc8d5e720e99abe3d4415972bbf74a8a88a51f5f3871e65b84cc393458d0f23a413184cf2bb7093ae4e2c99d55b39a575c5f98e3135fcb53e71e6fafcb4da3a3cc36af1c76a1a7e72aa12eae1346d724c6c00000000000000000000000000000000000000000000000000000000000000004792650d1e9a4fe99721617c7d47c8712c14c20a76bf043368c6528c9090531a06a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc00000000006a1d817a502050b680791e6ce6db88e1e5b7150f61fc6790a4eb4d10000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000006a7d517192c568ee08a845f73d29788cf035c3145b21ab344d8062ea940000006a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a0000000006a7d517193584d0feed9bb3431d13206be544281b57b8566cc5375ff4000000f0973e76495f3ffc65798a529de5cba4ec7f47f17669c9fa256923f099a1cda304040303090204040000000402000134000000000080c6a47e8d0300c80000000000000006a1d8179137542a983437bdfe2a7ab2557f535c8a78722b68a49dc0000000000602010a7400000000373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e373c6f8e84c6822a9f87035f65cccf899eef3fcdee61077041a93e1805bab24e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006060105080b07000402000000"
}
{- "data": {
- "tx_hash": "7f12d9eacd762d130838289397480e495db0fd268bd3be4fd55c74a74fd8372d"
}
}
Get the status of a transaction
tx_hash required | string Example: tx_hash=7f12d9eacd762d130838289397480e495db0fd268bd3be4fd55c74a74fd8372d Hash of the transaction |
{- "data": {
- "status": "success",
- "receipt": {
- "hash": "20082206aadbbb2dfded4afc9346831c5bd3a6a3f8a75f59dbe6166c05e918f6",
- "block": "2612449e345ec0f58aae05c693a09943f599592e28eedec70ee8c1a4f3d1e834",
- "block_height": 660450,
- "block_time": 1677170968,
- "slot": 21487768,
- "index": 1,
- "output_amount": [
- {
- "unit": "lovelace",
- "quantity": "10027100000"
}
], - "fees": "300000",
- "deposit": "2000000",
- "size": 429,
- "invalid_before": null,
- "invalid_hereafter": "21494910",
- "utxo_count": 2,
- "withdrawal_count": 0,
- "mir_cert_count": 0,
- "delegation_count": 1,
- "stake_cert_count": 1,
- "pool_update_count": 0,
- "pool_retire_count": 0,
- "asset_mint_or_burn_count": 0,
- "redeemer_count": 0,
- "valid_contract": true
}
}
}
Generates an approve transaction to allow a smart contract to spend MATIC tokens on behalf of the user
Transaction to craft
wallet required | string Wallet address to approve |
contract required | string Contract address that needs approval |
amount_wei | string Optional amount to approve in WEI. If not specified, an infinite amount will be approved |
{- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "contract": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "amount_wei": "32000000000000000000"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Generates a buy voucher transaction to buy shares from a validator
Transaction to craft
account_id required | string <uuid> Kiln Account ID to stake into |
wallet required | string Wallet address |
amount_wei required | string Amount of MATIC to stake in WEI |
validator_share_proxy_address required | string Contract address of the validator share proxy contract |
{- "account_id": "b7177fd2-fbb3-479f-aa92-db9fb16e229f",
- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "amount_wei": "32000000000000000000",
- "validator_share_proxy_address": "0xD14a87025109013B0a2354a775cB335F926Af65A"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Generates a sell voucher transaction to sell shares from a validator. Your token then enter a 3/4 days (80 checkpoints) unbonding period.
Transaction to craft
wallet required | string Wallet address |
amount_wei required | string Amount of MATIC to sell in WEI |
validator_share_proxy_address required | string Contract address of the validator share proxy contract |
{- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "amount_wei": "32000000000000000000",
- "validator_share_proxy_address": "0xD14a87025109013B0a2354a775cB335F926Af65A"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Generates an unstakeClaimTokens transaction to withdraw unbonded tokens back to your wallet
Transaction to craft
wallet required | string Wallet address |
validator_share_proxy_address required | string Contract address of the validator share proxy contract |
{- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "validator_share_proxy_address": "0xD14a87025109013B0a2354a775cB335F926Af65A"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Generates a withdraw rewards transaction to withdraw available rewards to your wallet
Transaction to craft
wallet required | string Wallet address |
validator_share_proxy_address required | string Contract address of the validator share proxy contract |
{- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "validator_share_proxy_address": "0xD14a87025109013B0a2354a775cB335F926Af65A"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Generates a restake rewards transaction to restake available rewards to the given validator
Transaction to craft
wallet required | string Wallet address |
validator_share_proxy_address required | string Contract address of the validator share proxy contract |
{- "wallet": "0xe1f4acc0affB36a805474e3b6ab786738C6900A2",
- "validator_share_proxy_address": "0xD14a87025109013B0a2354a775cB335F926Af65A"
}
{- "data": {
- "unsigned_tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94",
- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Prepare a transaction for broadcasting. It takes a serialized transaction and its signatures and returns a serialized signed transaction that can be broadcasted.
Transaction to prepare
unsigned_tx_serialized required | string Unsigned serialized transaction |
r required | string r part of the ECDSA signature in hex |
s required | string s part of the ECDSA signature in hex |
v required | number v part of the ECDSA signature (0 or 1) |
{- "unsigned_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc",
- "r": "de28e9efee4c8de422a3c64bfaaee11a32f7cf12bdd3f00dcce41a79fe776c65",
- "s": "3f233eb69495fa4741ad28ef0ba40612bacaf08331fd76041c371f5a2ecc2ab5",
- "v": 0
}
{- "data": {
- "signed_tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
}
Broadcasts a signed transaction to the Ethereum network
Transaction to broadcast
tx_serialized required | string Signed serialized transaction |
{- "tx_serialized": "0x20a40259b763d549dfa1c082776a036dd8dabbe8b5e32ee721be017512dc"
}
{- "data": {
- "tx_hash": "0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94"
}
}
Get the status of a transaction on the Ethereum network
tx_hash required | string Example: tx_hash=0x43244f90814b31dec250de24df5bb023a338790c1d5a39244cf1064cf6d98c94 Hash of the transaction |
{- "data": {
- "status": "success",
- "receipt": {
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber": 8608123,
- "contractAddress": null,
- "cumulativeGasUsed": 8180146,
- "effectiveGasPrice": 27391741855,
- "from": "0x9ce658155a6f05fe4aef83b7fa8f431d5e8ccb55",
- "gasUsed": 70098,
- "logs": [
- {
- "address": "0xff50ed3d0ec03aC01D4C79aAd74928BFF48a7b2b",
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber": 8608123,
- "data": "0x00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003093b5ae8053213154d099ed7fc99f571a0c8124601f8a59540335c7c35e0b40aad7b033f84af365185c04812acab257460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200100000000000000000000009ce658155a6f05fe4aef83b7fa8f431d5e8ccb550000000000000000000000000000000000000000000000000000000000000008004059730700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000609395a07d5e7eb073725049ecba8144d850b7a1a58f603fd1fc12049d32c98db47e3d81608074bca20ccdcc94f7f4767d0d6b852edf4f6231532f33242e64d0617ac93465bc4cdabe9cebf0abe6d169830fcf375b28c0641487e5f86df2875a970000000000000000000000000000000000000000000000000000000000000008ecce030000000000000000000000000000000000000000000000000000000000",
- "logIndex": 150,
- "removed": false,
- "topics": [
- "0x649bbc62d0e31342afea4e5cd82d4049e7e1ee912fc0889aa790803be39038c5"
], - "transactionHash": "0x25f259a770539a4be99f972620b74219d67cd990d245bcc8d8ad5cddeaa37375",
- "transactionIndex": 33,
- "id": "log_4115d183"
}, - {
- "address": "0x5FaDfdb7eFffd3B4AA03f0F29d9200Cf5F191F31",
- "blockHash": "0x54a0603e3f39e5d358623c8cd86a628a2999c993c1bdd6e547c45632784bd1d7",
- "blockNumber":