Parameters
chainId
string
default:"1001"
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_decodeAccountKey"
required
JSON-RPC method name.
Parameters: [encodedAccountKey].Positional parameters for kaia_decodeAccountKey:params[]: RLP-encoded account key string.
Returns
Decoded account key information.
Account key type identifier.
Key payload and associated metadata.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1001 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "kaia_decodeAccountKey",
"params": [
"0x02f8..."
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}