Parameters
chainId
string
default:"2222"
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_async"
required
JSON-RPC method name.
The parameters for method broadcast_tx_async: [tx].Positional parameters for broadcast_tx_async:params[]: The transaction.
Returns
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=2222 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "broadcast_tx_async",
"params": [
""
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"code": "0",
"data": "",
"log": "",
"codespace": "ibc",
"hash": "0D33F2F03A5234F38706E43004489E061AC40A2E"
}
}