Skip to documentation

Networks and tokens

Tempo Mainnet and Moderato settings, supported token addresses, Robinhood testnet details and mainnet migration guidance.

Tempo MainnetSDK 0.3Robinhood membership: testnet

Network configuration

NetworkChain IDRPC
Tempo Mainnet4217https://rpc.tempo.xyz
Tempo Moderato42431https://rpc.moderato.tempo.xyz
Robinhood Chain Testnet46630https://rpc.testnet.chain.robinhood.com

The dashboard and hosted payment API use Tempo Mainnet. Robinhood testnet is used only for the membership pilot. Public RPC providers can impose rate limits; configure a suitable provider for your application's workload.

Supported mainnet tokens

SDK symbolAddressDecimals
PathUSD0x20c00000000000000000000000000000000000006
USDC.e0x20c000000000000000000000b9537d11c60e8b506

The on-chain pathUSD symbol is normalized as PathUSD in SDK examples. USDC.e is bridged USDC. Verify the network and address when funding a wallet; similarly named assets on another network are not interchangeable.

Explicit testnet development

Moderato client javascript
const agent = new TempoKey({
  network: "testnet",
  privateKey: process.env.TESTNET_AGENT_KEY,
  rootAddress: process.env.TESTNET_OWNER_ADDRESS,
});

The testnet SDK registry supports PathUSD, AlphaUSD, BetaUSD and ThetaUSD. Testnet authorization does not carry over to mainnet. The hosted API has no per-request network switch; use a separate testnet API instance for integration tests.

Migrating from testnet

  • Install the SDK 0.3 build and choose your network explicitly.
  • Fund the owner on Tempo Mainnet.
  • Create and authorize a fresh mainnet agent key.
  • Register that key with the hosted API if you use HTTP execution.
  • Update scripts, token addresses and explorer links; check health.chainId before automation.

Mainnet browser storage uses its own namespace. The API stores mainnet records separately from legacy testnet records. Old data is retained but is not automatically imported. An API RPC override is checked against the configured chain during startup.