github.com/amazechain/amc@v0.1.3/docs/jsonrpc/txpool.md (about)

     1  # `txpool` Namespace
     2  
     3  The `txpool` API allows you to inspect the transaction pool.
     4  
     5  ## `txpool_content`
     6  
     7  Returns the details of all transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.
     8  
     9  See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_content) for more details
    10  
    11  | Client | Method invocation                            |
    12  |--------|----------------------------------------------|
    13  | RPC    | `{"method": "txpool_content", "params": []}` |
    14  
    15  ## `txpool_contentFrom`
    16  
    17  Retrieves the transactions contained within the txpool, returning pending as well as queued transactions of this address, grouped by nonce.
    18  
    19  See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_contentFrom) for more details
    20  
    21  | Client | Method invocation                                       |
    22  |--------|---------------------------------------------------------|
    23  | RPC    | `{"method": "txpool_contentFrom", "params": [address]}` |
    24  
    25  ## `txpool_inspect`
    26  
    27  Returns a 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.
    28  
    29  See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_inspect) for more details
    30  
    31  | Client | Method invocation                            |
    32  |--------|----------------------------------------------|
    33  | RPC    | `{"method": "txpool_inspect", "params": []}` |
    34  
    35  ## `txpool_status`
    36  
    37  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.
    38  
    39  See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_status) for more details
    40  
    41  | Client | Method invocation                           |
    42  |--------|---------------------------------------------|
    43  | RPC    | `{"method": "txpool_status", "params": []}` |