[Transaction] kaia_getRawTransactionByBlockNumberAndIndex
GetRawTransactionByBlockNumberAndIndex returns the bytes of the transaction for the given block number and index.
JSONRPC: kaia_getRawTransactionByBlockNumberAndIndex
Request
- application/json
Body
Array [
- IntegerBlockNumber
- HexadecimalBlockNumber
- BlockTag
- BlockHash
]
params
undefined[]
required
BlockNumberOrHashOrTag
object
oneOf
the block number with type integer
number
the block number with type hexadecimal
string
the block tag [latest, pending, earliest]
string
the block hash
string
TransactionIndex hex
The transaction index position.
Responses
- 200
Returns the bytes of the transaction for the given block number and index.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result string
Hex representation of some bytes
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "0x0"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io/kaia/getRawTransactionByBlockNumberAndIndex' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "kaia_getRawTransactionByBlockNumberAndIndex",
"id": 1,
"jsonrpc": "2.0",
"params": ["0x27", "0x0"]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "kaia_getRawTransactionByBlockNumberAndIndex",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x27",
"0x0"
]
}'
ResponseClear