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": "avm.issueTx",
"params": {}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Send a signed transaction to the network. encoding specifies the format of the signed transaction. Can only be hex when a value is provided.
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": "avm.issueTx",
"params": {}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
avm.issueTx:params.tx: The signed transaction, encoded in hex or CB58 (default).params.encoding: Optional. Encoding of the signed transaction. Can only be “hex” if specified.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": "avm.issueTx",
"params": {}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Was this page helpful?