Phương thức RPC getTransactionCount

Trả về số lượng Giao dịch hiện tại từ sổ cái

$ curl https://api.devnet.solana.com -s -X \
> POST -H "Content-Type: application/json" -d '
> {
> "jsonrpc": "2.0",
> "id": 1,
> "method": "getTransactionCount",
> "params": [
> {
> "commitment": "finalized"
> }
> ]
> }
> '

params

objectoptional

Đối tượng cấu hình chứa các trường sau:

result

Response
{
"jsonrpc": "2.0",
"result": 268,
"id": 1
}
u64

Số lượng Giao dịch hiện tại từ sổ cái

Is this page helpful?