Supported Networks & Resources
Supported Networks & Resources
Section titled “Supported Networks & Resources”Gatepay enables payments and access control across multiple blockchains and digital assets. This section details the supported networks, assets, and resource types you can use in your integrations.
Supported Assets by Network
Section titled “Supported Assets by Network”Below is a summary of supported assets for each network, including their symbol and contract address.
Base Sepolia
Section titled “Base Sepolia”Symbol | Address |
---|---|
USDC | 0x036CbD53842c5426634e7929541eC2318f3dCF7e |
Symbol | Address |
---|---|
USDC | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 |
Avalanche
Section titled “Avalanche”No assets currently supported.
Avalanche Fuji
Section titled “Avalanche Fuji”No assets currently supported.
No assets currently supported.
Using API
Section titled “Using API”Supported Networks
Section titled “Supported Networks”Gatepay supports a growing list of EVM-compatible blockchains. You can retrieve the full list programmatically:
import { Gatepay } from "gatepay-sdk"const gatepay = new Gatepay({ apiToken: "your-api-token" })const networks = await gatepay.networks.getNetworks()
Each network object includes:
name
: Network identifier (e.g., “ethereum”, “base”)displayName
: Human-readable namechainId
: EVM chain IDassets
: List of supported assets (see below)
Supported Assets
Section titled “Supported Assets”For each network, Gatepay supports a set of assets (tokens and native coins):
const assets = await api.networks.getNetworksByNameAssets({ name: "base" })
Each asset includes:
asset
: Contract address (or0x0...0
for native)symbol
: Token symbol (e.g., “ETH”, “USDC”)decimals
: Number of decimalsdisplayName
: Human-readable name
Resource Types
Section titled “Resource Types”Gatepay links can protect access to various resource types:
- Web pages:
text/html
- PDF documents:
application/pdf
- APIs/data:
application/json
,application/xml
- Media files:
image/*
,video/*
,audio/*
- Custom types: Any valid MIME type
Example resource definition:
{ url: "https://example.com/content", mimeType: "text/html", description: "Premium content page"}
Useful Resources & Links
Section titled “Useful Resources & Links”- Dashboard: https://gatepay.cloud — Manage your account and get your API token
- API Documentation: https://api.gatepay.cloud/openapi
- API Playground: https://api.gatepay.cloud/playground
- Community Support: Discord
For more details, see the API Documentation and SDK Documentation.