| Crates.io | kora-cli |
| lib.rs | kora-cli |
| version | 2.2.0-beta.3 |
| created_at | 2025-06-26 00:44:40.945787+00 |
| updated_at | 2026-01-21 20:39:16.156692+00 |
| description | CLI for Kora gasless relayer |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1726733 |
| size | 217,638 |
Branch Update (Jan 6, 2025): We migrated pre-release features to
release/2.2.0. Themainbranch now only contains audited releases plus minor hotfixes/docs. See v2.0.1 for the latest stable release.
Kora is your Solana signing infrastructure. Enable gasless transactions where users pay fees in any token—USDC, BONK, or your app's native token—or handle any transaction signing that requires a trusted signer.
Install Kora:
cargo install kora-cli
Basic usage:
kora rpc [OPTIONS] # --help for full list of options
→ Full Documentation - Learn how Kora works
→ Quick Start Guide - Get Kora running locally minutes
→ Node Operator Guide - Run a paymaster
Kora provides a simple JSON-RPC interface:
// Initialize Kora client
import { KoraClient } from '@solana/kora';
const kora = new KoraClient({ rpcUrl: 'http://localhost:8080' });
// Sign transaction as paymaster
const signed = await kora.signTransaction({ transaction });
git clone https://github.com/solana-foundation/kora.git
cd kora
just install
just build
Basic usage:
kora rpc [OPTIONS]
Or for running with a test configuration, run:
just run
And run all tests:
just test-all
kora/
├── crates/ # Rust workspace
│ ├── kora-lib/ # Core library with RPC server (signers, validation, transactions)
│ └── kora-cli/ # Command-line interface and RPC server
├── sdks/ # Client SDKs
│ └── ts/ # TypeScript SDK
├── tests/ # Integration tests
├── docs/ # Documentation
│ ├── getting-started/ # Quick start guides
│ └── operators/ # Node operator documentation
├── justfile # Build and development commands
└── kora.toml # Example configuration
Kora has been audited by Runtime Verification. View the audit report. (Audited up to commit 8c592591)
Note: Kora uses the solana-keychain package which has not been audited. Use at your own risk.
kora tag)Built and maintained by the Solana Foundation.
Licensed under MIT. See LICENSE for details.