Parameters
chainId
string
default:"1329"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"broadcast_tx"
required
JSON-RPC method name.
Positional parameters for broadcast_tx:
Returns
The JSON-RPC result.
Status code returned by CheckTx (0 = success, non-zero = error)
Arbitrary binary data returned by the application
Human-readable log message, often from application layer
Namespace for the code (useful for modules returning the error)
Hash of the transaction (typically in hex format)
Error message if any error occurred (alternative to code/log)
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": "broadcast_tx",
"params": [
{}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}