Transaction Submission (JSON-RPC)

Nozomi sends transactions through multiple channels to achieve best performance.

sendTransaction

The Nozomi transaction submission endpoint supports the `sendTransaction` Solana JSON-RPC method. Just insert the URL where you would place a RPC URL.

Transactions are sent through 1) Self hosted nodes 2) Staked connections and 3) Jito bundles.

Auto Routed Endpoint

https://nozomi.temporal.xyz/?c=

Regioned Endpoints

Direct HTTP:

PITT: http://pit1.nozomi.temporal.xyz/?c=

TYO: http://tyo1.nozomi.temporal.xyz/?c=

SGP: http://sgp1.nozomi.temporal.xyz/?c=

EWR: http://ewr1.nozomi.temporal.xyz/?c=

AMS: http://ams1.nozomi.temporal.xyz/?c=

FRA: http://fra2.nozomi.temporal.xyz/?c=

Secure HTTPS:

PITT: https://pit1.nozomi.temporal.xyz/?c=

TYO: http://tyo1.nozomi.temporal.xyz/?c=

SGP: http://sgp1.nozomi.temporal.xyz/?c=

EWR: https://ewr1.nozomi.temporal.xyz/?c=

AMS: https://ams1.nozomi.temporal.xyz/?c=

FRA: http://fra2.nozomi.temporal.xyz/?c=

HTTP POST Body

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "sendTransaction",
    "params": [ 
        "<YOUR_BASE_64_ENCODED_TXN_BYTES>",
        { "encoding": "base64" }
    ] 
}

Just add API Key after ?c=<uuid> to get custom URL for sending.

Regional submission endpoints are in US East, Frankfurt, Amsterdam, Singapore and Tokyo.

All boxes are run with custom hardware modifications.

Please specify base64 encoding.

Last updated