Merchant use cases
- USDT-ERC20 transaction receipt verification
- Confirmation-depth checks before crediting orders
- Block height and gas context queries
- Signed raw transaction broadcasting for withdrawals
Use nodevera to call Ethereum JSON-RPC methods through a protected commercial gateway. It is designed for merchant payment systems that need receipt checks, block queries, balance reads and signed transaction broadcasting without managing provider keys in application code.
Send Ethereum JSON-RPC payloads to the nodevera /eth route.
curl -X POST <api_base_url>/eth \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'
curl -X POST <api_base_url>/eth \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_getTransactionReceipt","params":["0x<tx_hash>"]}'
curl -X POST <api_base_url>/eth \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_sendRawTransaction","params":["0x<signed_raw_tx>"]}'