Solana workflows
- Query transaction details by Solana signature
- Check parsed SPL token transfers for USDT payments
- Retrieve latest blockhash for transaction construction
- Broadcast signed Solana transactions from backend systems
nodevera exposes Solana JSON-RPC through the same commercial access model used for TRON and Ethereum. Merchant systems can query transaction state, retrieve latest blockhash data and broadcast signed transactions while keeping API access protected by keys and IP allowlists.
Send Solana JSON-RPC payloads to the nodevera /solana route.
curl -X POST <api_base_url>/solana \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"getLatestBlockhash","params":[]}'
curl -X POST <api_base_url>/solana \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"getTransaction","params":["<signature>",{"encoding":"jsonParsed","maxSupportedTransactionVersion":0}]}'
curl -X POST <api_base_url>/solana \
-H 'content-type: application/json' \
-H 'X-API-Key: <your_api_key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"sendTransaction","params":["<base64_or_base58_signed_tx>"]}'