UNPKG

@pancakeswap/chains

Version:

The single source of truth for Pancakeswap chain-related information

275 lines (268 loc) 13.1 kB
'use strict'; // src/chainId.ts var ChainId = /* @__PURE__ */ ((ChainId3) => { ChainId3[ChainId3["ETHEREUM"] = 1] = "ETHEREUM"; ChainId3[ChainId3["GOERLI"] = 5] = "GOERLI"; ChainId3[ChainId3["BSC"] = 56] = "BSC"; ChainId3[ChainId3["BSC_TESTNET"] = 97] = "BSC_TESTNET"; ChainId3[ChainId3["ZKSYNC_TESTNET"] = 280] = "ZKSYNC_TESTNET"; ChainId3[ChainId3["ZKSYNC"] = 324] = "ZKSYNC"; ChainId3[ChainId3["OPBNB_TESTNET"] = 5611] = "OPBNB_TESTNET"; ChainId3[ChainId3["OPBNB"] = 204] = "OPBNB"; ChainId3[ChainId3["POLYGON_ZKEVM"] = 1101] = "POLYGON_ZKEVM"; ChainId3[ChainId3["POLYGON_ZKEVM_TESTNET"] = 1442] = "POLYGON_ZKEVM_TESTNET"; ChainId3[ChainId3["ARBITRUM_ONE"] = 42161] = "ARBITRUM_ONE"; ChainId3[ChainId3["ARBITRUM_GOERLI"] = 421613] = "ARBITRUM_GOERLI"; ChainId3[ChainId3["ARBITRUM_SEPOLIA"] = 421614] = "ARBITRUM_SEPOLIA"; ChainId3[ChainId3["SCROLL_SEPOLIA"] = 534351] = "SCROLL_SEPOLIA"; ChainId3[ChainId3["LINEA"] = 59144] = "LINEA"; ChainId3[ChainId3["LINEA_TESTNET"] = 59140] = "LINEA_TESTNET"; ChainId3[ChainId3["BASE"] = 8453] = "BASE"; ChainId3[ChainId3["BASE_TESTNET"] = 84531] = "BASE_TESTNET"; ChainId3[ChainId3["BASE_SEPOLIA"] = 84532] = "BASE_SEPOLIA"; ChainId3[ChainId3["SEPOLIA"] = 11155111] = "SEPOLIA"; ChainId3[ChainId3["MONAD_TESTNET"] = 10143] = "MONAD_TESTNET"; return ChainId3; })(ChainId || {}); var testnetChainIds = [ 5 /* GOERLI */, 97 /* BSC_TESTNET */, 280 /* ZKSYNC_TESTNET */, 5611 /* OPBNB_TESTNET */, 1442 /* POLYGON_ZKEVM_TESTNET */, 421613 /* ARBITRUM_GOERLI */, 534351 /* SCROLL_SEPOLIA */, 59140 /* LINEA_TESTNET */, 84531 /* BASE_TESTNET */, 11155111 /* SEPOLIA */, 421614 /* ARBITRUM_SEPOLIA */, 84532 /* BASE_SEPOLIA */, 10143 /* MONAD_TESTNET */ ]; // src/averageChainBlockTimes.ts var AVERAGE_CHAIN_BLOCK_TIMES = { [56 /* BSC */]: 1.5, [97 /* BSC_TESTNET */]: 1.5, [204 /* OPBNB */]: 0.5, [5611 /* OPBNB_TESTNET */]: 0.5, [1 /* ETHEREUM */]: 12, [5 /* GOERLI */]: 3, [1101 /* POLYGON_ZKEVM */]: 3, [1442 /* POLYGON_ZKEVM_TESTNET */]: 3, [324 /* ZKSYNC */]: 2, [280 /* ZKSYNC_TESTNET */]: 2, [42161 /* ARBITRUM_ONE */]: 0.25, [421613 /* ARBITRUM_GOERLI */]: 0.25, [534351 /* SCROLL_SEPOLIA */]: 1, [59144 /* LINEA */]: 2, [59140 /* LINEA_TESTNET */]: 2, [8453 /* BASE */]: 2, [84531 /* BASE_TESTNET */]: 2, [421614 /* ARBITRUM_SEPOLIA */]: 0, [84532 /* BASE_SEPOLIA */]: 0, [11155111 /* SEPOLIA */]: 0, [10143 /* MONAD_TESTNET */]: 1 }; // src/chainNames.ts var chainNames = { [1 /* ETHEREUM */]: "eth", [5 /* GOERLI */]: "goerli", [56 /* BSC */]: "bsc", [97 /* BSC_TESTNET */]: "bscTestnet", [42161 /* ARBITRUM_ONE */]: "arb", [421613 /* ARBITRUM_GOERLI */]: "arbGoerli", [1101 /* POLYGON_ZKEVM */]: "polygonZkEVM", [1442 /* POLYGON_ZKEVM_TESTNET */]: "polygonZkEVMTestnet", [324 /* ZKSYNC */]: "zkSync", [280 /* ZKSYNC_TESTNET */]: "zkSyncTestnet", [59144 /* LINEA */]: "linea", [59140 /* LINEA_TESTNET */]: "lineaTestnet", [204 /* OPBNB */]: "opBNB", [5611 /* OPBNB_TESTNET */]: "opBnbTestnet", [8453 /* BASE */]: "base", [84531 /* BASE_TESTNET */]: "baseTestnet", [534351 /* SCROLL_SEPOLIA */]: "scrollSepolia", [11155111 /* SEPOLIA */]: "sepolia", [421614 /* ARBITRUM_SEPOLIA */]: "arbSepolia", [84532 /* BASE_SEPOLIA */]: "baseSepolia", [10143 /* MONAD_TESTNET */]: "monadTestnet" }; var chainNamesInKebabCase = { [1 /* ETHEREUM */]: "ethereum", [5 /* GOERLI */]: "goerli", [56 /* BSC */]: "bsc", [97 /* BSC_TESTNET */]: "bsc-testnet", [42161 /* ARBITRUM_ONE */]: "arbitrum", [421613 /* ARBITRUM_GOERLI */]: "arbitrum-goerli", [1101 /* POLYGON_ZKEVM */]: "polygon-zkevm", [1442 /* POLYGON_ZKEVM_TESTNET */]: "polygon-zkevm-testnet", [324 /* ZKSYNC */]: "zksync", [280 /* ZKSYNC_TESTNET */]: "zksync-testnet", [59144 /* LINEA */]: "linea", [59140 /* LINEA_TESTNET */]: "linea-testnet", [204 /* OPBNB */]: "opbnb", [5611 /* OPBNB_TESTNET */]: "opbnb-testnet", [8453 /* BASE */]: "base", [84531 /* BASE_TESTNET */]: "base-testnet", [534351 /* SCROLL_SEPOLIA */]: "scroll-sepolia", [11155111 /* SEPOLIA */]: "sepolia", [421614 /* ARBITRUM_SEPOLIA */]: "arbitrum-sepolia", [84532 /* BASE_SEPOLIA */]: "base-sepolia", [10143 /* MONAD_TESTNET */]: "monad-testnet" }; var mainnetChainNamesInKebabCase = { [1 /* ETHEREUM */]: "ethereum", [5 /* GOERLI */]: "ethereum", [56 /* BSC */]: "bsc", [97 /* BSC_TESTNET */]: "bsc", [42161 /* ARBITRUM_ONE */]: "arbitrum", [421613 /* ARBITRUM_GOERLI */]: "arbitrum", [1101 /* POLYGON_ZKEVM */]: "polygon-zkevm", [1442 /* POLYGON_ZKEVM_TESTNET */]: "polygon-zkevm", [324 /* ZKSYNC */]: "zksync", [280 /* ZKSYNC_TESTNET */]: "zksync", [59144 /* LINEA */]: "linea", [59140 /* LINEA_TESTNET */]: "linea", [204 /* OPBNB */]: "opbnb", [5611 /* OPBNB_TESTNET */]: "opbnb", [8453 /* BASE */]: "base", [84531 /* BASE_TESTNET */]: "base", [11155111 /* SEPOLIA */]: "ethereum", [421614 /* ARBITRUM_SEPOLIA */]: "arbitrum", [84532 /* BASE_SEPOLIA */]: "base" }; var chainNameToChainId = Object.entries(chainNames).reduce((acc, [chainId, chainName]) => { return { [chainName]: chainId, ...acc }; }, {}); var defiLlamaChainNames = { [56 /* BSC */]: "bsc", [1 /* ETHEREUM */]: "ethereum", [5 /* GOERLI */]: "", [97 /* BSC_TESTNET */]: "", [42161 /* ARBITRUM_ONE */]: "arbitrum", [421613 /* ARBITRUM_GOERLI */]: "", [1101 /* POLYGON_ZKEVM */]: "polygon_zkevm", [1442 /* POLYGON_ZKEVM_TESTNET */]: "", [324 /* ZKSYNC */]: "era", [280 /* ZKSYNC_TESTNET */]: "", [59140 /* LINEA_TESTNET */]: "", [84531 /* BASE_TESTNET */]: "", [204 /* OPBNB */]: "op_bnb", [5611 /* OPBNB_TESTNET */]: "", [534351 /* SCROLL_SEPOLIA */]: "", [59144 /* LINEA */]: "linea", [8453 /* BASE */]: "base", [11155111 /* SEPOLIA */]: "", [421614 /* ARBITRUM_SEPOLIA */]: "", [84532 /* BASE_SEPOLIA */]: "", [10143 /* MONAD_TESTNET */]: "" }; // src/utils.ts function getChainName(chainId) { return chainNames[chainId]; } function getChainNameInKebabCase(chainId) { return chainNamesInKebabCase[chainId]; } function getMainnetChainNameInKebabCase(chainId) { return mainnetChainNamesInKebabCase[chainId]; } function getLlamaChainName(chainId) { return defiLlamaChainNames[chainId]; } function getChainIdByChainName(chainName) { if (!chainName) return void 0; return chainNameToChainId[chainName] ?? void 0; } function isTestnetChainId(chainId) { return testnetChainIds.includes(chainId); } // src/subgraphs.ts var publicSubgraphParams = {}; var V3_SUBGRAPHS = getV3Subgraphs(publicSubgraphParams); var V2_SUBGRAPHS = getV2Subgraphs(publicSubgraphParams); var BLOCKS_SUBGRAPHS = getBlocksSubgraphs(publicSubgraphParams); var STABLESWAP_SUBGRAPHS = getStableSwapSubgraphs(publicSubgraphParams); function getStableSwapSubgraphs({ theGraphApiKey } = {}) { return { [56 /* BSC */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/C5EuiZwWkCge7edveeMcvDmdr7jjc1zG4vgn8uucLdfz`, [42161 /* ARBITRUM_ONE */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/y7G5NUSq5ngsLH2jBGQajjxuLgW1bcqWiBqKmBk3MWM` }; } function getV3Subgraphs({ noderealApiKey, theGraphApiKey }) { return { [1 /* ETHEREUM */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/CJYGNhb7RvnhfBDjqpRnD3oxgyhibzc7fkAMa38YV3oS`, [5 /* GOERLI */]: "https://api.thegraph.com/subgraphs/name/pancakeswap/exchange-v3-goerli", [56 /* BSC */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/Hv1GncLY5docZoGtXjo4kwbTvxm3MAhVZqBZE4sUT9eZ`, [97 /* BSC_TESTNET */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/7xd5KmL3FbzRYbmAM9SSe4wdrsJV71pJQhCBqzU7y8Qi`, [42161 /* ARBITRUM_ONE */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/251MHFNN1rwjErXD2efWMpNS73SANZN8Ua192zw6iXve`, [421613 /* ARBITRUM_GOERLI */]: "https://api.thegraph.com/subgraphs/name/chef-jojo/exhange-v3-arb-goerli", [1101 /* POLYGON_ZKEVM */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/7HroSeAFxfJtYqpbgcfAnNSgkzzcZXZi6c75qLPheKzQ`, [1442 /* POLYGON_ZKEVM_TESTNET */]: null, [324 /* ZKSYNC */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/3dKr3tYxTuwiRLkU9vPj3MvZeUmeuGgWURbFC72ZBpYY`, [280 /* ZKSYNC_TESTNET */]: "https://api.studio.thegraph.com/query/45376/exchange-v3-zksync-testnet/version/latest", [59144 /* LINEA */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/6gCTVX98K3A9Hf9zjvgEKwjz7rtD4C1V173RYEdbeMFX`, [59140 /* LINEA_TESTNET */]: "https://thegraph.goerli.zkevm.consensys.net/subgraphs/name/pancakeswap/exchange-v3-linea-goerli", [8453 /* BASE */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/5YYKGBcRkJs6tmDfB3RpHdbK2R5KBACHQebXVgbUcYQp`, [84531 /* BASE_TESTNET */]: "https://api.studio.thegraph.com/query/45376/exchange-v3-base-testnet/version/latest", [204 /* OPBNB */]: `https://open-platform-ap.nodereal.io/${noderealApiKey}/opbnb-mainnet-graph-query/subgraphs/name/pancakeswap/exchange-v3`, [5611 /* OPBNB_TESTNET */]: null, [534351 /* SCROLL_SEPOLIA */]: "https://api.studio.thegraph.com/query/45376/exchange-v3-scroll-sepolia/version/latest", [11155111 /* SEPOLIA */]: null, [421614 /* ARBITRUM_SEPOLIA */]: null, [84532 /* BASE_SEPOLIA */]: null, [10143 /* MONAD_TESTNET */]: null }; } function getV2Subgraphs({ noderealApiKey, theGraphApiKey }) { return { [56 /* BSC */]: "https://proxy-worker-api.pancakeswap.com/bsc-exchange", [1 /* ETHEREUM */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/9opY17WnEPD4REcC43yHycQthSeUMQE26wyoeMjZTLEx`, [1101 /* POLYGON_ZKEVM */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/37WmH5kBu6QQytRpMwLJMGPRbXvHgpuZsWqswW4Finc2`, [280 /* ZKSYNC_TESTNET */]: "https://api.studio.thegraph.com/query/45376/exchange-v2-zksync-testnet/version/latest", [324 /* ZKSYNC */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/6dU6WwEz22YacyzbTbSa3CECCmaD8G7oQ8aw6MYd5VKU`, [59140 /* LINEA_TESTNET */]: "https://thegraph.goerli.zkevm.consensys.net/subgraphs/name/pancakeswap/exhange-eth/", [42161 /* ARBITRUM_ONE */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/EsL7geTRcA3LaLLM9EcMFzYbUgnvf8RixoEEGErrodB3`, [59144 /* LINEA */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/Eti2Z5zVEdARnuUzjCbv4qcimTLysAizsqH3s6cBfPjB`, [8453 /* BASE */]: `https://gateway-arbitrum.network.thegraph.com/api/${theGraphApiKey}/subgraphs/id/2NjL7L4CmQaGJSacM43ofmH6ARf6gJoBeBaJtz9eWAQ9`, [204 /* OPBNB */]: `https://open-platform-ap.nodereal.io/${noderealApiKey}/opbnb-mainnet-graph-query/subgraphs/name/pancakeswap/exchange-v2` }; } function getBlocksSubgraphs({ noderealApiKey }) { return { [56 /* BSC */]: "https://api.thegraph.com/subgraphs/name/pancakeswap/blocks", [1 /* ETHEREUM */]: "https://api.thegraph.com/subgraphs/name/blocklytics/ethereum-blocks", [1101 /* POLYGON_ZKEVM */]: "https://api.studio.thegraph.com/query/45376/polygon-zkevm-block/version/latest", [324 /* ZKSYNC */]: "https://api.studio.thegraph.com/query/45376/blocks-zksync/version/latest", [42161 /* ARBITRUM_ONE */]: "https://api.thegraph.com/subgraphs/name/ianlapham/arbitrum-one-blocks", [59144 /* LINEA */]: "https://api.studio.thegraph.com/query/45376/blocks-linea/version/latest", [8453 /* BASE */]: "https://api.studio.thegraph.com/query/48211/base-blocks/version/latest", [204 /* OPBNB */]: `https://open-platform-ap.nodereal.io/${noderealApiKey}/opbnb-mainnet-graph-query/subgraphs/name/pancakeswap/blocks` }; } exports.AVERAGE_CHAIN_BLOCK_TIMES = AVERAGE_CHAIN_BLOCK_TIMES; exports.BLOCKS_SUBGRAPHS = BLOCKS_SUBGRAPHS; exports.ChainId = ChainId; exports.STABLESWAP_SUBGRAPHS = STABLESWAP_SUBGRAPHS; exports.V2_SUBGRAPHS = V2_SUBGRAPHS; exports.V3_SUBGRAPHS = V3_SUBGRAPHS; exports.chainNameToChainId = chainNameToChainId; exports.chainNames = chainNames; exports.chainNamesInKebabCase = chainNamesInKebabCase; exports.defiLlamaChainNames = defiLlamaChainNames; exports.getBlocksSubgraphs = getBlocksSubgraphs; exports.getChainIdByChainName = getChainIdByChainName; exports.getChainName = getChainName; exports.getChainNameInKebabCase = getChainNameInKebabCase; exports.getLlamaChainName = getLlamaChainName; exports.getMainnetChainNameInKebabCase = getMainnetChainNameInKebabCase; exports.getStableSwapSubgraphs = getStableSwapSubgraphs; exports.getV2Subgraphs = getV2Subgraphs; exports.getV3Subgraphs = getV3Subgraphs; exports.isTestnetChainId = isTestnetChainId; exports.mainnetChainNamesInKebabCase = mainnetChainNamesInKebabCase; exports.testnetChainIds = testnetChainIds;