export type NetworkId = 'eip155:1' | 'eip155:11155111' | 'solana:devnet' | 'eip155:56' | 'eip155:137' | 'eip155:43114' | 'eip155:42161' | 'eip155:10' | 'eip155:8453' | 'eip155:84532' | 'bip122:000000000019d6689c085ae165831e93' | 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp' | 'tron:0x2b6653dc' | 'tron:0x94a9059e' | 'tron:0xcd8690dc' | 'eip155:81457' | 'bip122:1a91e3dace36e2be3bf030a65679fe82' | 'xrpl:0' | 'bip122:12a765e31ffd4059bada1e25190f6e98' | 'eip155:999' | 'eip155:143' | 'eip155:1329' | 'eip155:57073' | 'eip155:480' | 'eip155:4326' | 'eip155:4217' | 'eip155:25' | 'eip155:59144' | 'eip155:988' | 'tvm:-239' | 'sui:mainnet'; export type NetworkType = 'evm' | 'solana' | 'bitcoin' | 'tron' | 'dogecoin' | 'litecoin' | 'ripple' | 'tvm' | 'sui'; export type Namespace = 'eip155' | 'solana' | 'bip122' | 'tron' | 'xrpl' | 'tvm' | 'sui'; export interface NativeCurrency { name: string; symbol: string; decimals: number; } export interface RpcUrls { default: { http: string[]; }; } export interface BlockExplorer { name: string; url: string; apiUrl?: string; } export interface BlockExplorers { default: BlockExplorer; } export interface Network { internalId: number; id: NetworkId; namespace: Namespace; name: string; logoUrl: string; nativeCurrency: NativeCurrency; rpcUrls?: RpcUrls; blockExplorers?: BlockExplorers; networkType: NetworkType; } //# sourceMappingURL=networks.d.ts.map