Skip to main content

Parameters

chainId
string
default:"1329"
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:"remove_tx"
required
JSON-RPC method name.
params
object
required
Positional parameters for remove_tx:
  • params[0]: The hash or unique identifier of the transaction to be removed

Returns

result
boolean
Returns true if the transaction was successfully removed; false otherwise
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1329 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "remove_tx",
    "params": [
      "0x7d7e3b8b2a0b7266b25559c9ff6224b6c5b8f6e9d7b3f7efb690e28e46ff13c3"
    ]
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": false
}