New to StateSet? Start with our Quick Start Guide to make your first API call in under 5 minutes.

StateSet Commerce Network: The Operating System for Global Commerce

πŸš€ Why StateSet?

StateSet Commerce Network is the blockchain infrastructure that makes global commerce instant, programmable, and accessible. We’re building the financial rails for the $100+ trillion global economy.

Instant Settlement

Sub-second transaction finality with 10,000+ TPS capacity

Native Stablecoins

ssUSD and USDC built-in, no bridging or wrapping needed

Enterprise Ready

SOC2 Type II compliant with built-in KYC/AML and audit trails

πŸ“Š By the Numbers

$5B+

Total Value Processed

< 1 sec

Transaction Finality

$0.01

Average Transaction Cost

99.99%

Network Uptime

πŸ—οΈ What Can You Build?

Global Payment Processing

  • Accept stablecoins from customers worldwide
  • Instant settlement to your account
  • Automated currency conversion
  • Built-in fraud protection
// Accept payment in 3 lines
const payment = await stateset.payments.create({
  amount: 100.00,
  currency: 'ssusd',
  customer: 'cust_123'
});

πŸš€ Quick Start

Get up and running with StateSet in minutes:
1

Install the SDK

Choose your preferred language:
npm install @stateset/sdk
2

Get Your API Keys

  1. Sign up at dashboard.stateset.com
  2. Complete KYC verification (takes < 5 minutes)
  3. Generate your API keys
Keep your secret key secure and never expose it in client-side code!
3

Make Your First API Call

import { StateSet } from '@stateset/sdk';

// Initialize the client
const stateset = new StateSet({
  apiKey: 'sk_test_...'
});

// Check your balance
const balance = await stateset.account.balance();
console.log(`Balance: ${balance.ssusd} ssUSD`);

// Send a payment
const payment = await stateset.payments.send({
  to: 'stateset1abc...',
  amount: 100.00,
  currency: 'ssusd',
  memo: 'First payment!'
});

πŸ“š Core APIs

πŸ” Authentication

All API requests require authentication using API keys:
curl https://api.stateset.com/v1/account/balance \
  -H "Authorization: Bearer sk_test_..."
Use test mode keys (prefixed with sk_test_) for development and live mode keys (prefixed with sk_live_) for production.

🌐 Network Architecture

Production Network

  • Chain ID: stateset-1
  • RPC: https://rpc.stateset.com
  • API: https://api.stateset.com
  • Explorer: https://explorer.stateset.com
  • Status: status.stateset.com

πŸ’‘ Best Practices

πŸ†˜ Need Help?

πŸš€ Ready to Build?

Get Started Now

Sign up for a free account and get $100 in test credits