Skip to main content

Parameters

chainId
string
default:"250"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"txpool_contentFrom"
required
JSON-RPC method name.
params
object
required
Array containing the address to filter transactions by.Positional parameters for txpool_contentFrom:
  • params[]: The sender address (20-byte hex string).

Returns

result
object
Pending and queued transactions for the specified address.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=250 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "txpool_contentFrom",
    "params": [
      "0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A"
    ]
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {}
}