UNPKG

@tristeroresearch/mach-sdk

Version:

A TypeScript SDK for integrating with Mach's API.

100 lines 2.38 kB
/** * @module tokens * @fileOverview This module defines constants for various cryptocurrency assets across different blockchain networks. * @constant ETHEREUM_ASSETS, OPTIMISM_ASSETS, ARBITRUM_ASSETS, CELO_ASSETS - Asset details grouped by their respective networks. * @export ASSETS - A unified export of all assets, providing a centralized way to reference assets across different networks. */ import type { Asset } from '../@types/asset.d.ts'; export declare const ETHEREUM_ASSETS: { [key: string]: Asset; }; export declare const OPTIMISM_ASSETS: { [key: string]: Asset; }; export declare const ARBITRUM_ASSETS: { [key: string]: Asset; }; export declare const CELO_ASSETS: { [key: string]: Asset; }; export declare const BASE_ASSETS: { [key: string]: Asset; }; export declare const POLYGON_ASSETS: { [key: string]: Asset; }; export declare const AVALANCHE_ASSETS: { [key: string]: Asset; }; export declare const SEPOLIA_ASSETS: { [key: string]: Asset; }; export declare const MONADTESTNET_ASSETS: { [key: string]: Asset; }; export declare const arb: { [key: string]: Asset; }; export declare const ARB: { [key: string]: Asset; }; export declare const eth: { [key: string]: Asset; }; export declare const ETH: { [key: string]: Asset; }; export declare const op: { [key: string]: Asset; }; export declare const OP: { [key: string]: Asset; }; export declare const avax: { [key: string]: Asset; }; export declare const AVAX: { [key: string]: Asset; }; export declare const matic: { [key: string]: Asset; }; export declare const MATIC: { [key: string]: Asset; }; export declare const polygon: { [key: string]: Asset; }; export declare const POLYGON: { [key: string]: Asset; }; export declare const base: { [key: string]: Asset; }; export declare const BASE: { [key: string]: Asset; }; export declare const celo: { [key: string]: Asset; }; export declare const CELO: { [key: string]: Asset; }; export declare const sepolia: { [key: string]: Asset; }; export declare const SEPOLIA: { [key: string]: Asset; }; export declare const monadtestnet: { [key: string]: Asset; }; export declare const MONADTESTNET: { [key: string]: Asset; }; export declare const ASSETS: { [key: string]: { [key: string]: Asset; }; }; //# sourceMappingURL=tokens.d.ts.map