Skip to main content

klay_getAccountKey RPC Method

Returns the account key of the Externally Owned Account (EOA) of a given address. If the account has AccountKeyLegacy or the account of the given address is a Smart Contract Account, it will return an empty key value.

Updated on
Aug 7, 2024

klay_getAccountKey RPC Method

Parameters

address
string
REQUIRED
The address of the account being queried
BlockNumberOrHashOrTag
string
REQUIRED
The block number in integer, block hash or block tag(earliest and latest)

Returns

keyType
integer
An integer value indicating account key type
key
object
An account key object
Request
1
curl https://docs-demo.kaia-kairos.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{
5
"method": "klay_getAccountKey",
6
"id": 1,
7
"jsonrpc": "2.0",
8
"params": [
9
"0x5b70c66bc2758f12cb8ab2c19e0f3bfb9a407d5d",
10
"latest"
11
]
12
}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free