Powered by Pi Network SDK

The Sovereign Portal for the Pi Economy

Authenticate, transact, and build on Pi with an enterprise-grade resource center. Wallets, smart contracts, governance, Earth & space resource valuation — unified.

47M+
Active Pioneers
1.2B+
Total Transactions
8,420
Smart Contracts
99.99%
Network Uptime
Live · Sovereign Telemetry
auto-refresh 30s
PiRC Registry
Smart contracts deployed on Pi Testnet
Quantum audit0%
Omni-Matrix
Colored project packets fully synchronized
WCF Live
94.0%
Fairness & purchasing-power index
Live Matrix
Active wealth-distribution nodes on Earth
Sovereign manifest v

Everything you need to build on Pi

A complete suite designed for Pioneers, developers and institutions.

Pi Authentication

Seamless sign-in with the Pi SDK and verified pioneer identity.

Pi Payments

Create, approve and complete Pi payments with a unified flow.

Smart Contracts

Stellar / Soroban contract templates audited for the Pi ecosystem.

Sovereign Vaults

Self-custodial vaults with multi-signature governance.

On-chain Governance

Vote on proposals shaping the future of the network.

Post-Quantum Security

Cryptography hardened for the next generation of attacks.

SDK

Pi Network SDK — Built-in

Drop-in integration with the official Pi SDK. Authenticate users, request Pi payments, and verify transactions on the Pi mainnet.

  1. 1Initialize the SDK
  2. 2Authenticate the Pioneer
  3. 3Create & approve payment
  4. 4Complete on the server
// 1) Initialize
window.Pi.init({ version: "2.0", sandbox: true });

// 2) Authenticate
const auth = await window.Pi.authenticate(
  ["username", "payments", "wallet_address"],
  onIncompletePaymentFound,
);

// 3) Create a payment
window.Pi.createPayment(
  { amount: 1, memo: "PiRC service", metadata: { orderId: "abc" } },
  {
    onReadyForServerApproval: (id) => approveOnServer(id),
    onReadyForServerCompletion: (id, txid) => completeOnServer(id, txid),
    onCancel: () => {},
    onError: console.error,
  },
);