Your users pay in USDC — never in SOL. We cover the network fee in the same atomic transaction. No cards, no SOL balances, no complex onboarding. Just web3 the way it should feel.
Build a normal Solana transaction.
The relayer fronts the network cost.
Reimbursed to the relayer in the same transaction.
All in one atomic transaction.
The sender pays everything in stablecoin: no gas token, no bank card, no top-ups.
Sending to an address that has never held USDC? We create its token account for you — no one gets stuck on an empty address.
Kora is an open Solana Foundation standard, not a proprietary wallet. Integrating is just pointing at a URL — so you can leave just as easily. Switch to another provider by changing one line. No re-architecture, no SDK migration. We keep you by being reliable, not by trapping you.
Build and test free on devnet, flip one URL to go live.
Gasless is the future of seamless payments and great UX. We just made it a single URL.
No SDK required. It's an open Kora endpoint — call it over plain JSON-RPC from Swift, Kotlin, Go, Node, anything.
Prefer typed helpers? Use the official @solana/kit client.
// Gasless USDC send via Kora — plain JSON-RPC, no SDK
let relayer = URL(string: "https://mainnet.kora-nodes.com")!
func signAndSend(_ txBase64: String) async throws -> String {
var req = URLRequest(url: relayer)
req.httpMethod = "POST"
req.setValue("application/json", forHTTPHeaderField: "Content-Type")
req.httpBody = try JSONSerialization.data(withJSONObject: [
"jsonrpc": "2.0", "id": 1,
"method": "signAndSendTransaction",
"params": ["transaction": txBase64, "sig_verify": false]
])
let (data, _) = try await URLSession.shared.data(for: req)
// → { "result": { "signature": "…" } } // the relayer paid the SOL gas
}
curl -s https://mainnet.kora-nodes.com \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"estimateTransactionFee",
"params":{"transaction":"<base64_tx>","fee_token":"<USDC_mint>","sig_verify":false}}'
# → { "result": { "fee_in_token": 12000 } } // exact fee in USDC base units
Dynamic, network-based pricing — a small margin over Solana's real, live network cost, charged in USDC/USDT. On Solana that's fractions of a cent per transaction. Fair when the network is quiet, safe when SOL moves. No fixed markup, no surprises.
→ Solana Kora docs
→ Kora on GitHub
→ Find me in the community