Parameters
chainId
string
default: "sui"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default: "2.0"
required
JSON-RPC version.
method
string
default: "sui_multiGetTransactionBlocks"
required
JSON-RPC method name.
Retrieve multiple transaction blocks by digest. Positional parameters for sui_multiGetTransactionBlocks: params[0]: List of transaction digests.params[1]: Optional settings to configure the returned transaction block fields.
Returns
Array of detailed transaction block responses. A transaction block and metadata. Digest hash of the transaction block.
Transaction input data if requested.
Raw BCS-encoded SenderSignedData, if enabled.
Execution effects of the transaction.
Events emitted by the transaction. Object state changes triggered by the transaction. Balance changes due to the transaction. Checkpoint number where the transaction was finalized.
Whether the node has locally confirmed execution.
Unix timestamp in milliseconds.
Errors associated with the transaction. Raw effect logs if requested.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=sui \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "sui_multiGetTransactionBlocks",
"params": [
[
"EMqJqkQip6UaTkdff493ewAQNHGQFJwXDDn6m9CTgZzo",
"Hn3B25vTQNTFAdThFkWvfkiAAUZxzwTaj4uEengu1ACX",
"9vLSG9a4QcLcMdG1xCu6FRdXAjWWqvJHoHBCJfPMKkR9"
],
{
"showInput": true,
"showRawInput": false,
"showEffects": true,
"showEvents": true,
"showObjectChanges": false,
"showBalanceChanges": false,
"showRawEffects": false
}
]
}'
{
"jsonrpc" : "2.0" ,
"id" : 1 ,
"result" : []
}