curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=43114 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "txpool_contentFrom",
"params": [
"0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Retrieves the pending and queued transactions from the txpool that were sent by the specified address, grouped by nonce.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=43114 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "txpool_contentFrom",
"params": [
"0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
txpool_contentFrom:params[]: The sender address (20-byte hex string).curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=43114 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "txpool_contentFrom",
"params": [
"0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Was this page helpful?