
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@mppsui/mpp
Advanced tools
Sui USDC payment method for the Machine Payments Protocol (MPP). Accept and make payments on any API — the first MPP implementation on Sui.
Migrated from
@t2000/mpp-sui. If you were using the old package, switch your imports to@mppsui/mpp.
The Machine Payments Protocol is an open standard by Stripe and Tempo Labs for agent-to-service payments. When a server returns HTTP 402 Payment Required, the client pays automatically and retries — no API keys, no subscriptions, no human approval.
@mppsui/mpp adds Sui USDC as a payment method. It works with any MPP-compatible client or server via the mppx SDK.
npm install @mppsui/mpp mppx
Add payments to any API in 5 lines:
import { sui } from '@mppsui/mpp/server';
import { Mppx } from 'mppx';
const SUI_USDC = '0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC';
const mppx = Mppx.create({
methods: [sui({ currency: SUI_USDC, recipient: '0xYOUR_ADDRESS' })],
});
export const GET = mppx.charge({ amount: '0.01' })(
() => Response.json({ data: 'paid content' })
);
No webhooks. No Stripe dashboard. No KYC. USDC arrives directly in your wallet.
import { sui } from '@mppsui/mpp/client';
import { Mppx } from 'mppx/client';
import { SuiGrpcClient } from '@mysten/sui/grpc';
import { Ed25519Keypair } from '@mysten/sui/keypairs/ed25519';
const client = new SuiGrpcClient({
baseUrl: 'https://fullnode.mainnet.sui.io:443',
network: 'mainnet',
});
const signer = Ed25519Keypair.deriveKeypair('your mnemonic');
const mppx = Mppx.create({
methods: [sui({ client, signer })],
});
const response = await mppx.fetch('https://api.example.com/resource');
// If the API returns 402, mppx pays automatically via Sui USDC.
If you're using the t2000 SDK, payments are even simpler:
import { T2000 } from '@t2000/sdk';
const agent = await T2000.create({ pin: 'my-secret' });
const result = await agent.pay({
url: 'https://api.example.com/generate',
body: { prompt: 'a sunset' },
maxPrice: 0.05,
});
// Handles 402 → pay → retry automatically.
// Safeguards enforced (max per tx, daily limits).
t2000 pay https://api.example.com/data --max-price 0.10
t2000 pay https://api.example.com/analyze \
--method POST \
--data '{"text":"hello"}' \
--max-price 0.05
Agent API Server
│ │
│── GET /resource ────────>│
│<── 402 Payment Required ─│
│ {amount, currency, │
│ recipient} │
│ │
│── USDC transfer on Sui ──│ (~400ms finality)
│ │
│── GET /resource ────────>│
│ + payment credential │── verify TX on-chain via gRPC
│ (Sui tx digest) │
│<── 200 OK + data ────────│
No facilitator. No intermediary. The server verifies the Sui transaction directly via gRPC.
sui(options)Creates a Sui payment method for the server.
import { sui } from '@mppsui/mpp/server';
const method = sui({
currency: SUI_USDC, // Sui coin type (e.g. USDC)
recipient: '0xYOUR_ADDR', // Where payments are sent
decimals: 6, // Optional: currency decimals (default: 6)
rpcUrl: '...', // Optional: custom gRPC endpoint
network: 'mainnet', // Optional: 'mainnet' | 'testnet' | 'devnet'
});
Verification checks:
sui(options)Creates a Sui payment method for the client.
import { sui } from '@mppsui/mpp/client';
const method = sui({
client: grpcClient, // Any Sui client (SuiGrpcClient, etc.)
signer: ed25519Keypair, // Signer from @mysten/sui/cryptography
decimals: 6, // Optional: currency decimals (default: 6)
execute: async (tx) => { // Optional: custom execution (gas sponsor, etc.)
return myGasManager.execute(tx);
},
});
| Option | Type | Required | Description |
|---|---|---|---|
client | ClientWithCoreApi | Yes | Any Sui client implementing the core API |
signer | Signer | Yes | Any Signer from @mysten/sui/cryptography — Ed25519Keypair works |
decimals | number | No | Decimal places for the currency (default: 6) |
execute | (tx: Transaction) => Promise<{ digest: string }> | No | Override transaction execution (e.g. gas sponsor/manager) |
The client uses the coinWithBalance intent to automatically resolve, merge, and split coins for the exact payment amount, then signs and broadcasts the transaction (or delegates to execute if provided).
SUI_USDC_TYPEThe Sui coin type for Circle-issued USDC on mainnet.
import { SUI_USDC_TYPE } from '@mppsui/mpp';
// '0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC'
parseAmountToRaw(amount, decimals)Converts a string amount to BigInt raw units without floating-point math.
parseAmountToRaw('0.01', 6); // 10000n
parseAmountToRaw('1.50', 6); // 1500000n
MPP is chain-agnostic. We chose Sui because agent payments need:
| Sui | |
|---|---|
| Finality | ~400ms |
| Gas | <$0.001 per payment |
| USDC | Circle-issued, native |
| Verification | Direct gRPC — no facilitator |
pnpm --filter @mppsui/mpp test # 13 tests
pnpm --filter @mppsui/mpp typecheck
MIT — see LICENSE
FAQs
Sui USDC payment method for the Machine Payments Protocol (MPP)
The npm package @mppsui/mpp receives a total of 0 weekly downloads. As such, @mppsui/mpp popularity was classified as not popular.
We found that @mppsui/mpp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.