txpool_content

Returns a list of pending and queued transactions.

This method will use 500 Compute Units.


Parameters

None

Returns

A map of arrays of pending and queued transactions with the following fields:

  • blockHash - Hash of block the transaction is in, null since its pending

  • blockNumber - hexadecimal block number of the block the transaction is in, null since pending

  • from - Address of the sender

  • gas - The total amount of gas used in the transaction

  • gasPrice - The total amount in wei the sender is willing to pay for the transaction

  • maxFeePerGas - The maximum amount of gas willing to be paid for the transaction

  • maxPriorityFeePerGas - The maximum amount of gas to be included as a tip to the miner

  • hash - Hash of the transaction

  • input - Encoded transaction input data

  • nonce - Number of transactions the sender has sent till now

  • v - hexadecimal ECDSA recovery id

  • r - ECDSA signature r

  • s - ECDSA signature s

  • to - Address of the receiver

  • transactionIndex - hexadecimal integer of the transactions index position in the block, null since pending

  • type - A number between 0 and 0x7f, for a total of 128 possible transaction types.

  • value - hexadecimal value transferred

Last updated

Was this helpful?