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.

Parameters:

None

Example:

// Request
curl https://polygon.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"txpool_inspect","params":[],"id":1}'

// Result
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "pending": {
            "0x00E9625de99eb1bc5D1ac3Ee4E1b57994f6d2714": {
                "177095": "0xC8f87F00206469c15DD9b4f1608c0845ccac9d6A: 0 wei + 3000000 gas × 36630000025 wei"
            },
            
            ......
            "0xfbD8a204BDE737543b27CC597A306E63B23eeD05": {
                "762": "0x4F3B253C3890076d8762e72Bc79088A52511De5d: 0 wei + 86880 gas × 55000000000 wei"
            }
        },
        "queued": {
            "0x000364C0648cF162d3B70C35e1B258dFaA560aE6": {
                "1775": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500001 gas × 100000000000 wei",
                "1776": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500001 gas × 31369800011 wei",
                "1778": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500000 gas × 44132547293 wei",
                "1779": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500000 gas × 31254476494 wei",
                "1780": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500000 gas × 30009123744 wei",
                "1781": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500000 gas × 48100364624 wei",
                "1782": "0x4230551Da88495d202825F5f03Fa9A351cd093B2: 0 wei + 1500001 gas × 33052586311 wei"
            },
            ......
            "0xff5677a3DD8352DBc16383855a69a5909B6a814b": {
                "1": "0xa22717a872D6118f7cf6015b7C35873996549155: 1500000000000000000 wei + 21000 gas × 30000000016 wei"
            }
        }
    }
}

Last updated