Saltar al contenido principal

cfx_getTransactionByHash

Get transaction by its hash.

curl --request POST \
--url https://main.confluxrpc.com \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"params": ["0x0000000000000000000000000000000000000000000000000000000000000000"],
"method": "cfx_getTransactionByHash"
}'

Params

tx_hash required

Schema
type : string
Pattern : ^0x[0-9,a-f,A-F]{64}$

Result

Schema
type : object
  • accessList accessList
    type : array
    • items[x] CfxAccessListItem
      type : object
      • address address
        type : string
        Pattern : ^(NET\d+|CFX|CFXTEST)(:TYPE\..*|):[ABCDEFGHJKMNPRSTUVWXYZ0123456789]{42}$
      • storageKeys storageKeys
        type : array
        • items[x] H256
          type : string
          Pattern : ^0x[0-9,a-f,A-F]{64}$
  • blockHash blockHash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • chainId chainId
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • contractCreated contractCreated
    type : string
    Pattern : ^(NET\d+|CFX|CFXTEST)(:TYPE\..*|):[ABCDEFGHJKMNPRSTUVWXYZ0123456789]{42}$
  • data data
    type : string
    Pattern : ^0x[0-9a-f]*$
  • epochHeight epochHeight
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • from from
    type : string
    Pattern : ^(NET\d+|CFX|CFXTEST)(:TYPE\..*|):[ABCDEFGHJKMNPRSTUVWXYZ0123456789]{42}$
  • gas gas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • gasPrice gasPrice
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • hash hash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • maxFeePerGas maxFeePerGas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • maxPriorityFeePerGas maxPriorityFeePerGas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • nonce nonce
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • r r
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • s s
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • space space
    type : string
    Possible values : 
    • native
    • ethereum
  • status status
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • storageLimit storageLimit
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • to to
    type : string
    Pattern : ^(NET\d+|CFX|CFXTEST)(:TYPE\..*|):[ABCDEFGHJKMNPRSTUVWXYZ0123456789]{42}$
  • transactionIndex transactionIndex
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • transactionType transactionType
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • v v
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • value value
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • yParity yParity
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$

Examples

Request

curl -X POST --data \
'{
"jsonrpc": "2.0",
"id": 1,
"method": "cfx_getTransactionByHash",
"params": [
"0x0000000000000000000000000000000000000000000000000000000000000000"
]
}' \
-H "Content-Type: application/json" \
localhost:12539

Response

null