Skip to main content

Quickstart

1. Pick an endpoint

NetworkRPCEVM
Mainnet v2https://v2.rpc.fenryx.iohttps://v2.evm.fenryx.io
Localhttp://127.0.0.1:26667http://127.0.0.1:18545

2. Sanity check

curl -s https://v2.rpc.fenryx.io/status | jq
# { "chain_id": "fenryx_7373-1", "height": 12345, "app_hash": "..." }

3. Install an SDK

npm i @fenryxlabs/fenryx-sdk # JS / TS
pip install fenryxpy # Python
cargo add fenryx-sdk # Rust

4. Query

import { FenryxClient } from '@fenryxlabs/fenryx-sdk';
const c = new FenryxClient('https://v2.rpc.fenryx.io');
console.log(await c.status());
console.log(await c.account('frx1...'));

5. Send a tx

Use the Wallet at https://v2.wallet.fenryx.io — ed25519 keys are generated locally; the wallet signs and broadcasts via /broadcast_tx.

For programmatic signing, see SDK · JS.

Try the API live

The Playground sends real requests against v2.rpc.fenryx.io straight from your browser — no install required.