GetTxnBodiesForTxBlock
Returns the validated transactions (in verbose form) included within a specified final transaction block.
Example Request
- cURL
- node.js
- java
- python
- go
curl -d '{
"id": "1",
"jsonrpc": "2.0",
"method": "GetTxnBodiesForTxBlock",
"params": ["2"]
}' -H "Content-Type: application/json" -X POST "https://api.zilliqa.com/"
Example Response
{
"id": "1",
"jsonrpc": "2.0",
"result": [
{
"ID": "562432bc45c14c788c43c469756453375cbe80cc9c1bc30fa0dfbe77e4220221",
"amount": "1",
"gasLimit": "1",
"gasPrice": "1000000000",
"nonce": "1",
"receipt": {
"cumulative_gas": "1",
"epoch_num": "2",
"success": true
},
"senderPubKey": "0x03393C256D33127CE18FC3646EC88FCE62DBF661300B4017E2FE57E8023B55BCFE",
"signature": "0xCC12816DCE156FECFA1D6EF129D13FA2A5677E159CDF0CAFADF2CD33FBA0D239EE1284D4083BFBA4B895B97419FE78AB249C99AA7A7B7F314F17D353F44E784D",
"toAddr": "b07065cfde6060ad36af3913c65bfb04211608d1",
"version": "131073"
},
{
"ID": "9ebc07e3e15b08dd82b2f2d57eead1b7dea4d06bef33364bbec5f80fc1d1d130",
"amount": "2",
"gasLimit": "1",
"gasPrice": "1000000000",
"nonce": "2",
"receipt": {
"cumulative_gas": "1",
"epoch_num": "2",
"success": true
},
"senderPubKey": "0x03393C256D33127CE18FC3646EC88FCE62DBF661300B4017E2FE57E8023B55BCFE",
"signature": "0x846D90B698B4739979AB8B7F25BDEE5125A36447770D4AC6386606ACD25704747B38DEDE85F0AD26A663F0863199CA336109EB080A6354BB7CC3683C8FC47796",
"toAddr": "b07065cfde6060ad36af3913c65bfb04211608d1",
"version": "131073"
}
]
}
HTTP Request
Chain(s) | URL(s) |
---|---|
Zilliqa mainnet | https://api.zilliqa.com/ |
Developer testnet | https://dev-api.zilliqa.com/ |
Local testnet | http://localhost:4201/ |
Isolated server | https://zilliqa-isolated-server.zilliqa.com/ |
Arguments
Parameter | Type | Required | Description |
---|---|---|---|
id | string | Required | "1" |
jsonrpc | string | Required | "2.0" |
method | string | Required | "GetTxnBodiesForTxBlock" |
params | string | Required | Specifed TX block number to return. Example: "2" |