Developers

Build on RPC, SDKs and market data.

Integrate through RPC, SDKs, market data APIs, wallet flows and developer tools. Public endpoints open only when the relevant testnet or mainnet gates are approved.

// install the SDK
npm i @phinancer/sdk

import { Client } from '@phinancer/sdk';
const phi = new Client({ network: 'testnet' });
const height = await phi.blockHeight();
// Rust SDK package name is gated until public testnet.
use phinancer_sdk::Client;

let phi = Client::testnet();
let height = phi.block_height().await?;
# Python SDK is planned.
# Until release, use read-only API examples only after endpoint gates open.
from phinancer import Client

phi = Client(network="testnet")
height = phi.block_height()

Docs

Getting started, reference, guides, architecture and appendix at docs.phinancer.com.

API / RPC

RPC methods, rate limits and read-only endpoints — try-it console only in appropriate environments.

SDKs

JavaScript / TypeScript and Rust today; Python and Swift planned. Versioned with changelogs.

Endpoint status

Public RPC, faucet, explorer and try-it console remain closed until P11 Public Testnet gates are approved.

Guides

From zero to deploy.

Run a local node

Use the faucet

Read market data

Build a DEX integration

Create a token

Use the block explorer

Handle errors

Verify releases

The examples above illustrate the intended developer experience. Public endpoints may remain unavailable until P11 Public Testnet is opened.