このページは英語からの機械翻訳を使用しており、誤りや不明瞭な表現が含まれている可能性があります。最も正確な情報については、オリジナルの英語版をご覧ください。頻繁な更新のため、一部のコンテンツはオリジナルの英語になっている可能性があります。Crowdinでの取り組みに参加して、このページの翻訳改善にご協力ください。 (Crowdin translation page, Contributing guide)
[Account] eth_getTransactionCount
Returns the number of transactions sent from an address.
JSONRPC: eth_getTransactionCount
Request
- application/json
Body
Array [
- IntegerBlockNumber
- HexadecimalBlockNumber
- BlockTag
- BlockHash
]
params
undefined[]
Address 20-byte DATA
Address
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
Responses
- 200
Integer of the number of transactions send from this address.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result hex
Integer of the number of transactions send from this address.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": "0x1"
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "eth_getTransactionCount",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x413ba0e5f6f00664598b5c80042b1308f4ff1408",
"latest"
]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "eth_getTransactionCount",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0xc94770007dda54cF92009BFF0dE90c06F603a09f",
"latest"
]
}'
ResponseClear