Parameters
chainId
string
default: "8217"
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: "kaia_getProof"
required
JSON-RPC method name.
Parameters: [address, storageKeys, block parameter]. Positional parameters for kaia_getProof: params[0]: The address.params[1]: Hex-encoded storage slot keys to prove.params[2]: Block identifier. Can be an integer block number or a string tag: “latest”, “earliest”, or “pending”.
Returns
A trace call consisting of a transaction object and an array of trace types. Legacy transaction (pre-EIP-2718). Legacy transaction (pre-EIP-2718). 32 Bytes - hash of the transaction.
Quantity - (optional) Integer of a nonce. This allows you to overwrite your own pending transactions that use the same nonce.
32 Bytes - hash of the block where this transaction was included. Null when pending.
Block number where this transaction was included. Null when pending. The transaction’s index position in the block. Null when pending.
20 Bytes - The address the transaction is sent from.
20 Bytes - The address the transaction is directed to. (Optional when creating new contract)
Quantity - (optional) Integer of the value sent with this transaction.
Quantity - (optional) Integer of the gas price used for each paid gas.
Quantity - (optional) Integer of the gas provided for the transaction execution. (eth_call consumes zero gas)
The data sent along with the transaction.
The standardised V field of the signature.
The standardised V field of the signature (0 or 1). Only applicable to legacy transactions.
The R field of the signature.
Public key of the signer.
The chain id of the transaction, if any.
Conditional submission of the transaction. Can be an object with a block number ({ block: 1 }), a UTC timestamp in seconds ({ time: 1491290692 }), or null. UTC timestamp condition in seconds
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId= 8217 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "kaia_getProof",
"params": [
"",
[],
0
]
}'
{
"jsonrpc" : "2.0" ,
"id" : 1 ,
"result" : []
}