/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ export declare class DekeyData { static CHAIN_ID_LIST: { eth: number; ropsten: number; rinkeby: number; goerli: number; kovan: number; binanceSmartChain: number; binanceTestnet: number; baobob: number; cypress: number; arbitrum: number; arbitrumRinkeby: number; optimistic: number; optimisticKovan: number; matic: number; mumbaiGoerli: number; }; static BLOCK_EXPLORERS: { [x: number]: string; 1: string; 3: string; 4: string; 5: string; 42: string; 56: string; 97: string; }; static L2_NETWORKS: { id: string; name: string; rpcUrl: string; chainId: number; target: string; isCustom: boolean; symbol: string; blockExplorerUrl: string; iconUrl: string; assetName: string; }[]; static DEFAULT_NETWORKS: { id: string; name: string; rpcUrl: string; chainId: number; target: string; isCustom: boolean; symbol: string; blockExplorerUrl: string; iconUrl: string; assetName: string; }[]; static DEFAULT_ASSETS: { id: string; decimal: number; balance: string; formattedBalance: string; }[]; }