docs

Plug-and-Play Documentation

docs.sh — Copy-paste snippets
[ _ ][ 🗗 ][ X ]

Your GitHub repository is your most important DevRel blog. Tested configs, copy-paste ready.

--tool@Tempo Payment Engine

Tempo L1 settles B2B stablecoin transfers with ~0.6s finality natively on USD gas fees. Before: 15 mins + volatile native token fees on ETH. After: Stripe built-in Sub-second payments using only USDC.

install
npx create-tempo-app my-payment-app
typescript
import { TempoClient } from '@tempo/sdk';

const tempo = new TempoClient({ rpcUrl: 'https://testnet.tempo.xyz' });

await tempo.sendPayment({
  to: 'merchant.tempo.xyz',
  amount: '100.00',
  currency: 'USDC',
  memo: 'INV-2026-0302'
});