Send transactions via RPC
Your custom RPC endpoint can be found in the merkle dashboard.
We recommend integrating the following 3 RPC methods:
eth_sendRawTransaction: Send transactions to the mempool.eth_getTransactionByHash: Fetch the transaction details.eth_getTransactionCount: Get the pending nonce for an account.
Contact support or use your dedicated Telegram support channel to get help.
eth_sendRawTransaction
This is the recommended way to send transactions.
Example of a request:
{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_sendRawTransaction",
"params": [
"0xf869018203e882520894f17f52151ebef6c7334fad080c5704d77216b732881bc16d674ec80000801ba02da1c48b670996dcb1f447ef9ef00b33033c48a4fe938f420bec3e56bfd24071a062e0aa78a81bf0290afbc3a9d8e9a068e6d74caa66c5e0fa8a46deaae96b0833",
// "customer-123" -> optional source tag for cashback
],
}Example of a response:
eth_sendPrivateTransaction
Not recommended. Only available for backward compatibility.
eth_sendRawPrivateTransaction
Not recommended. Only available for backward compatibility.
eth_getTransactionByHash
This RPC method mimics the standard eth_getTransactionByHash for private transactions.
Example of a request:
Our transaction response closely follows the format of the standard eth_getTransactionByHash method used in Ethereum. However, in our response, the fields gasPrice, v, r, and s are set to "0x0". These fields are not applicable in our context, and this notation ensures clarity and consistency with the standard format without introducing ambiguity.
eth_getTransactionCount
This method implements the standard eth_getTransactionCount. If using the pending parameter instead of a block number, the private mempool will automatically compute the next nonce using both private transactions and public transactions.
Example of request:
Last updated
Was this helpful?