QIE Blockchain Docs
  • QIE Blockchain
  • Fundamental Topics
    • How can i add QIE to Metamask?
    • What is Blockchain?
    • What is QIE?
    • What are Smart Contracts?
    • What are Dapps?
    • What’s Changing in the QIE Blockchain Ecosystem?
    • QIE Blockchain Whitepaper
  • Consensus
    • Consensus
    • What is Proof Of Stake?
    • Proof Of Stake
    • Why Transition to Proof Of Stake?
    • Migration Process
  • Build & API
    • Run a QIE Blockchain full node
      • Starting a Full Node
      • Genesis File
    • Becoming a Validator on the New QIE Blockchain
      • Steps for Validator Setup
    • QIE Blockchain CLI Parameters
    • RPC API
      • QIE methods
      • Txpool methods
      • WEB3 methods
Powered by GitBook
On this page
  • txpool_content
  • txpool_inspect
  • txpool_status
  1. Build & API
  2. RPC API

Txpool methods

txpool_content

Returns a list with the exact details of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.

Parameters

None

Example

curl  https://rpc-endpoint.io:8545 -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"txpool_content","params":[],"id":1}'

txpool_inspect

Returns a list with a textual summary of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only. This is a method specifically tailored to developers to quickly see the transactions in the pool and find any potential issues.

Parameters

None

Example

curl  https://rpc-endpoint.io:8545 -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"txpool_inspect","params":[],"id":1}'

txpool_status

Returns the number of transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.

Parameters

None

Example

curl  https://rpc-endpoint.io:8545 -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"txpool_status","params":[],"id":1}'
PreviousQIE methodsNextWEB3 methods

Last updated 11 months ago