import { Chain } from '../../constants' import { getAddressLink, getTransactionLink } from '../../helpers/chainExplorerLink' const pulsechainExplorerUrl = 'https://scan.pulsechain.com/' export const Pulsechain: Chain = { chainId: 369, chainName: 'Pulsechain', isTestChain: false, isLocalChain: false, multicallAddress: '0x41263cba59eb80dc200f3e2544eda4ed6a90e76c', multicall2Address: '0xc50f4c1e81c873b2204d7eff7069ffec6fbe136d', rpcUrl: 'https://rpc.pulsechain.com', nativeCurrency: { name: 'PLS', symbol: 'PLS', decimals: 18, }, blockExplorerUrl: pulsechainExplorerUrl, getExplorerAddressLink: getAddressLink(pulsechainExplorerUrl), getExplorerTransactionLink: getTransactionLink(pulsechainExplorerUrl), } //const bscTestnetExplorerUrl = 'https://testnet.bscscan.com' //export const BSCTestnet: Chain = { //chainId: 97, // chainName: 'Smart Chain Testnet', //isTestChain: true, //isLocalChain: false, //multicallAddress: '0xae11C5B5f29A6a25e955F0CB8ddCc416f522AF5C', //rpcUrl: 'https://data-seed-prebsc-1-s1.binance.org:8545', //nativeCurrency: { // name: 'tBNB', // symbol: 'tBNB', // decimals: 18, //}, //blockExplorerUrl: bscTestnetExplorerUrl, //getExplorerAddressLink: getAddressLink(bscTestnetExplorerUrl), //getExplorerTransactionLink: getTransactionLink(bscTestnetExplorerUrl), //} export default { Pulsechain, //BSCTestnet, }