@faremeter/info package provides lookup utilities for network configuration and asset details.
Supported networks
Solana
| Network | Identifier | Status |
|---|---|---|
| Devnet | devnet | Supported |
| Testnet | testnet | Supported |
| Mainnet Beta | mainnet-beta | Supported |
EVM
| Network | Identifier | Status |
|---|---|---|
| Base Sepolia | base-sepolia | Supported |
| Base | base | Supported |
| Skale Europa Testnet | skale-europa-testnet | Supported |
| Polygon | eip155:137 | Supported (CAIP-2) |
| Monad | eip155:10143 | Supported (CAIP-2) |
base-sepolia, base). Others use the full CAIP-2 format (eip155:<chainId>).
Supported assets
| Asset | Solana | EVM |
|---|---|---|
| USDC | Devnet, Mainnet | Base Sepolia, Base, Polygon, Skale |
| SOL | Devnet, Testnet, Mainnet | — |
Using @faremeter/info
The info package provides helpers to construct payment requirements with correct network and asset details.
Solana
EVM
Network aliases
The info package resolves network aliases to canonical identifiers. For example,"devnet" resolves to the correct Solana devnet RPC endpoint, and "base-sepolia" resolves to the correct EVM chain ID and RPC.
Configuring custom networks
When using the lower-level packages (@faremeter/fetch, @faremeter/payment-*), you can pass custom network configuration directly to wallet and handler factory functions. See the API Reference for the full configuration options.
Further reading
- Payment Schemes — How network and asset selection affects payment flow.
- Wallet Configuration — Setting up wallets for specific networks.