Skip to main content

avax.issueTx RPC Method

Send a signed transaction to the network.

Updated on
Dec 4, 2024

avax.issueTx RPC Method

Parameters

tx
string
REQUIRED
The signed transaction (typically signed with a library, using your private key).
encoding
string
Specifies the format of the signed transaction. Can only be hex when a value is provided.

Returns

txID
string
The transaction hash, or the zero hash if the transaction is not yet available.
Request
1
curl --location --request POST https://docs-demo.flare-mainnet.quiknode.pro/ext/bc/C/avax \
2
--header 'Content-Type: application/json' \
3
--data-raw '{
4
"jsonrpc":"2.0",
5
"id" : 1,
6
"method" :"avax.issueTx",
7
"params" :{
8
"tx":"SIGNED_TRANSACTION",
9
"encoding": "hex"
10
}
11
}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free