curl --request POST \
--url https://api.mainnet.abs.xyz/eth_sendRawTransaction \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendRawTransaction",
"params": [
"0xf86c808504a817c80082520894095e7baea6a6c7c4c2dfeb977efac326af552d870a8e8..."
]
}'
{
"jsonrpc": "2.0",
"result": "0x2f5d6a8af654c249bc487e7c7b926a3f3f165b575a6485a487f12c7a9e3c8e45",
"id": 1
}
Submits a pre-signed transaction for broadcast
curl --request POST \
--url https://api.mainnet.abs.xyz/eth_sendRawTransaction \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendRawTransaction",
"params": [
"0xf86c808504a817c80082520894095e7baea6a6c7c4c2dfeb977efac326af552d870a8e8..."
]
}'
{
"jsonrpc": "2.0",
"result": "0x2f5d6a8af654c249bc487e7c7b926a3f3f165b575a6485a487f12c7a9e3c8e45",
"id": 1
}
Returns the transaction hash
The response is of type object
.
Was this page helpful?