broadcast
Broadcast any signed transaction on ethereum mainnet.
/web3/broadcast
POST
https://cryptotalk-public-gateway-byeii62k.de.gateway.dev/web3/broadcast
This end point broadcast any signed transaction to mainnet via infura or alchemy node. Result transaction hash in response.
1) Request body must be JSON
2) Request sample
{
"params": {
"addr": "0x8a...19",
"serializedTx": "0xf89471852e90efb0008229ff4946b0a4dbb035cf8c2a...efb",
"operation": "BROADCAST"
}
}
3) serializedTx must be in hex format
Query Parameters
Name
Type
Description
key
string
API Key
Request Body
Name
Type
Description
params
object
{
"addr":"0xada...efe", "serializedTx": "0xaxa....fdd",
"operation": "BROADCAST"
}
{
"operation" : "BROADCAST",
"isError" : false,
"data" : "https://etherscan.io/tx/0x6d5b2f37ae233d4286fa49e8b334fb9e4547f08ff91600c57df72fcca3c46065"
}
Last updated
Was this helpful?