Nnodevera
Solana RPC API

Managed Solana RPC API for USDT payment and broadcast flows

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.

Designed for Businesses that need one customer-facing access layer for Solana, TRON and Ethereum payment operations.

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

Operational controls

  • Customer API Key plus source IP allowlist
  • Usage metering across TRON, Ethereum and Solana routes
  • Private API Base URL shown after paid activation
  • Support intake for transaction and payment verification issues

Solana JSON-RPC examples

Send Solana JSON-RPC payloads to the nodevera /solana route.

Get latest blockhash
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":[]}'
Query transaction by signature
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}]}'
Broadcast signed Solana transaction
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>"]}'
USDT-Solana

Payment verification focus areas

Signature existsWait until the Solana transaction can be queried by RPC.
No meta errorRequire a successful transaction status before accepting payment.
Token mintMatch the SPL token mint to USDT on Solana.
Recipient matchValidate owner wallet or target token account and transferred amount.

FAQ

Does Solana use the same API key?Yes. Paid customers use one API key and allowlist model across supported chains.
Can nodevera handle signing?No. Signing stays in your backend or wallet service. nodevera accepts signed payloads for broadcast.