parity_pendingTransactions

Returns a list of transactions currently in the queue.

Parameters:

  1. limit - (optional) The max amount of transactions to return. If there should be no limit and filter is specified, this value must be null.

  2. filter - (optional) Filter transactions.

    • from: - The address the transaction is sent from.

      • eq: Address - equal to

    • to: - The address the transaction is directed to.

      • eq: Address - equal to

      • action: Value - Set to contract_creation for contract creation transactions.

    • gas: - Integer of the gas provided by the transaction.

      • eq: Quantity - equal to

      • gt: Quantity - greater than

      • lt: Quantity - lesser than

    • gasPrice: - Integer of the gas price used by the transaction.

      • eq: Quantity - equal to

      • gt: Quantity - greater than

      • lt: Quantity - lesser than

    • value: - Integer of the value sent with the transaction.

      • eq: Quantity - equal to

      • gt: Quantity - greater than

      • lt: Quantity - lesser than

    • nonce: - Integer of a nonce.

      • eq: Quantity - equal to

      • gt: Quantity - greater than

      • lt: Quantity - lesser than

Note that only one operator for each filter type can be used.

Returns:

Code Examples:

Last updated