From 50d341a8edbf7a31fc9c40ba06700652765b9ca3 Mon Sep 17 00:00:00 2001 From: Kayode Odole <31928403+Kayconfig@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:19:59 +0100 Subject: [PATCH 1/3] chore: add support for moonbeam chain --- .changeset/purple-rocks-punch.md | 7 + .../common/evmUtils/src/data/chaindata.ts | 1723 +++++++++-------- .../src/dataTypes/EvmChain/EvmChain.test.ts | 1 + .../src/dataTypes/EvmChain/EvmChain.ts | 13 +- 4 files changed, 909 insertions(+), 835 deletions(-) create mode 100644 .changeset/purple-rocks-punch.md diff --git a/.changeset/purple-rocks-punch.md b/.changeset/purple-rocks-punch.md new file mode 100644 index 0000000000..3e5b86fea6 --- /dev/null +++ b/.changeset/purple-rocks-punch.md @@ -0,0 +1,7 @@ +--- +'@moralisweb3/common-evm-utils': patch +'@moralisweb3/evm-api': patch +'moralis': patch +--- + +Add support for moonbeam chain diff --git a/packages/common/evmUtils/src/data/chaindata.ts b/packages/common/evmUtils/src/data/chaindata.ts index 143bd2914a..f58a088b8d 100644 --- a/packages/common/evmUtils/src/data/chaindata.ts +++ b/packages/common/evmUtils/src/data/chaindata.ts @@ -4,977 +4,1032 @@ import { EvmChainListDataEntry } from './types'; // source: https://chainid.network/chains.json export const chainList: EvmChainListDataEntry[] = [ { - name: 'Ethereum Mainnet', - chain: 'ETH', - icon: 'ethereum', - rpc: [ - 'https://mainnet.infura.io/v3/${INFURA_API_KEY}', - 'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}', - 'https://api.mycryptoapi.com/eth', - 'https://cloudflare-eth.com', - 'https://ethereum-rpc.publicnode.com', - 'wss://ethereum-rpc.publicnode.com', - 'https://mainnet.gateway.tenderly.co', - 'wss://mainnet.gateway.tenderly.co', - 'https://rpc.blocknative.com/boost', - 'https://rpc.flashbots.net', - 'https://rpc.flashbots.net/fast', - 'https://rpc.mevblocker.io', - 'https://rpc.mevblocker.io/fast', - 'https://rpc.mevblocker.io/noreverts', - 'https://rpc.mevblocker.io/fullprivacy', - 'https://eth.drpc.org', - 'wss://eth.drpc.org', - ], - features: [ - { - name: 'EIP155', - }, + "name": "Ethereum Mainnet", + "chain": "ETH", + "icon": "ethereum", + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com", + "https://ethereum-rpc.publicnode.com", + "wss://ethereum-rpc.publicnode.com", + "https://mainnet.gateway.tenderly.co", + "wss://mainnet.gateway.tenderly.co", + "https://rpc.blocknative.com/boost", + "https://rpc.flashbots.net", + "https://rpc.flashbots.net/fast", + "https://rpc.mevblocker.io", + "https://rpc.mevblocker.io/fast", + "https://rpc.mevblocker.io/noreverts", + "https://rpc.mevblocker.io/fullprivacy", + "https://eth.drpc.org", + "wss://eth.drpc.org" + ], + "features": [ { - name: 'EIP1559', + "name": "EIP155" }, + { + "name": "EIP1559" + } ], - faucets: [], - nativeCurrency: { - name: 'Ether', - symbol: 'ETH', - decimals: 18, + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://ethereum.org', - shortName: 'eth', - chainId: 1, - networkId: 1, - slip44: 60, - ens: { - registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e', + "infoURL": "https://ethereum.org", + "shortName": "eth", + "chainId": 1, + "networkId": 1, + "slip44": 60, + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" }, - explorers: [ + "explorers": [ { - name: 'etherscan', - url: 'https://etherscan.io', - standard: 'EIP3091', + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" }, { - name: 'blockscout', - url: 'https://eth.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, { - name: 'dexguru', - url: 'https://ethereum.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', - }, - ], + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Goerli', - title: 'Ethereum Testnet Goerli', - chain: 'ETH', - rpc: [ - 'https://goerli.infura.io/v3/${INFURA_API_KEY}', - 'wss://goerli.infura.io/v3/${INFURA_API_KEY}', - 'https://rpc.goerli.mudit.blog/', - 'https://ethereum-goerli-rpc.publicnode.com', - 'wss://ethereum-goerli-rpc.publicnode.com', - 'https://goerli.gateway.tenderly.co', - 'wss://goerli.gateway.tenderly.co', - ], - faucets: [ - 'http://fauceth.komputing.org?chain=5&address=${ADDRESS}', - 'https://goerli-faucet.slock.it?address=${ADDRESS}', - 'https://faucet.goerli.mudit.blog', - ], - nativeCurrency: { - name: 'Goerli Ether', - symbol: 'ETH', - decimals: 18, + "name": "Goerli", + "title": "Ethereum Testnet Goerli", + "chain": "ETH", + "rpc": [ + "https://goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://goerli.infura.io/v3/${INFURA_API_KEY}", + "https://rpc.goerli.mudit.blog/", + "https://ethereum-goerli-rpc.publicnode.com", + "wss://ethereum-goerli-rpc.publicnode.com", + "https://goerli.gateway.tenderly.co", + "wss://goerli.gateway.tenderly.co" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", + "https://goerli-faucet.slock.it?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://goerli.net/#about', - shortName: 'gor', - chainId: 5, - networkId: 5, - slip44: 1, - ens: { - registry: '0x112234455c3a32fd11230c42e7bccd4a84e02010', + "infoURL": "https://goerli.net/#about", + "shortName": "gor", + "chainId": 5, + "networkId": 5, + "slip44": 1, + "ens": { + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" }, - explorers: [ + "explorers": [ { - name: 'etherscan-goerli', - url: 'https://goerli.etherscan.io', - standard: 'EIP3091', + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" }, { - name: 'blockscout-goerli', - url: 'https://eth-goerli.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', - }, - ], + "name": "blockscout-goerli", + "url": "https://eth-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] }, { - name: 'OP Mainnet', - chain: 'ETH', - rpc: [ - 'https://mainnet.optimism.io', - 'https://optimism-rpc.publicnode.com', - 'wss://optimism-rpc.publicnode.com', - 'https://optimism.gateway.tenderly.co', - 'wss://optimism.gateway.tenderly.co', - 'https://optimism.drpc.org', - 'wss://optimism.drpc.org', - ], - faucets: [], - nativeCurrency: { - name: 'Ether', - symbol: 'ETH', - decimals: 18, + "name": "OP Mainnet", + "chain": "ETH", + "rpc": [ + "https://mainnet.optimism.io", + "https://optimism-rpc.publicnode.com", + "wss://optimism-rpc.publicnode.com", + "https://optimism.gateway.tenderly.co", + "wss://optimism.gateway.tenderly.co", + "https://optimism.drpc.org", + "wss://optimism.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://optimism.io', - shortName: 'oeth', - chainId: 10, - networkId: 10, - explorers: [ - { - name: 'etherscan', - url: 'https://optimistic.etherscan.io', - standard: 'EIP3091', - }, + "infoURL": "https://optimism.io", + "shortName": "oeth", + "chainId": 10, + "networkId": 10, + "explorers": [ { - name: 'blockscout', - url: 'https://optimism.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" }, { - name: 'dexguru', - url: 'https://optimism.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://optimism.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Cronos Mainnet', - chain: 'CRO', - rpc: [ - 'https://evm.cronos.org', - 'https://cronos-evm-rpc.publicnode.com', - 'wss://cronos-evm-rpc.publicnode.com', - 'https://cronos.drpc.org', - 'wss://cronos.drpc.org', - ], - features: [ - { - name: 'EIP1559', - }, + "name": "Cronos Mainnet", + "chain": "CRO", + "rpc": [ + "https://evm.cronos.org", + "https://cronos-evm-rpc.publicnode.com", + "wss://cronos-evm-rpc.publicnode.com", + "https://cronos.drpc.org", + "wss://cronos.drpc.org" ], - faucets: [], - nativeCurrency: { - name: 'Cronos', - symbol: 'CRO', - decimals: 18, - }, - infoURL: 'https://cronos.org/', - shortName: 'cro', - chainId: 25, - networkId: 25, - explorers: [ - { - name: 'Cronos Explorer', - url: 'https://explorer.cronos.org', - standard: 'none', - }, + "features": [ + { + "name": "EIP1559" + } ], + "faucets": [], + "nativeCurrency": { + "name": "Cronos", + "symbol": "CRO", + "decimals": 18 + }, + "infoURL": "https://cronos.org/", + "shortName": "cro", + "chainId": 25, + "networkId": 25, + "explorers": [ + { + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } + ] }, { - name: 'BNB Smart Chain Mainnet', - chain: 'BSC', - rpc: [ - 'https://bsc-dataseed1.bnbchain.org', - 'https://bsc-dataseed2.bnbchain.org', - 'https://bsc-dataseed3.bnbchain.org', - 'https://bsc-dataseed4.bnbchain.org', - 'https://bsc-dataseed1.defibit.io', - 'https://bsc-dataseed2.defibit.io', - 'https://bsc-dataseed3.defibit.io', - 'https://bsc-dataseed4.defibit.io', - 'https://bsc-dataseed1.ninicoin.io', - 'https://bsc-dataseed2.ninicoin.io', - 'https://bsc-dataseed3.ninicoin.io', - 'https://bsc-dataseed4.ninicoin.io', - 'https://bsc-rpc.publicnode.com', - 'wss://bsc-rpc.publicnode.com', - 'wss://bsc-ws-node.nariox.org', - ], - faucets: [], - nativeCurrency: { - name: 'BNB Chain Native Token', - symbol: 'BNB', - decimals: 18, + "name": "BNB Smart Chain Mainnet", + "chain": "BSC", + "rpc": [ + "https://bsc-dataseed1.bnbchain.org", + "https://bsc-dataseed2.bnbchain.org", + "https://bsc-dataseed3.bnbchain.org", + "https://bsc-dataseed4.bnbchain.org", + "https://bsc-dataseed1.defibit.io", + "https://bsc-dataseed2.defibit.io", + "https://bsc-dataseed3.defibit.io", + "https://bsc-dataseed4.defibit.io", + "https://bsc-dataseed1.ninicoin.io", + "https://bsc-dataseed2.ninicoin.io", + "https://bsc-dataseed3.ninicoin.io", + "https://bsc-dataseed4.ninicoin.io", + "https://bsc-rpc.publicnode.com", + "wss://bsc-rpc.publicnode.com", + "wss://bsc-ws-node.nariox.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 }, - infoURL: 'https://www.bnbchain.org/en', - shortName: 'bnb', - chainId: 56, - networkId: 56, - slip44: 714, - explorers: [ - { - name: 'bscscan', - url: 'https://bscscan.com', - standard: 'EIP3091', - }, + "infoURL": "https://www.bnbchain.org/en", + "shortName": "bnb", + "chainId": 56, + "networkId": 56, + "slip44": 714, + "explorers": [ { - name: 'dexguru', - url: 'https://bnb.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://bnb.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'BNB Smart Chain Testnet', - chain: 'BSC', - rpc: [ - 'https://data-seed-prebsc-1-s1.bnbchain.org:8545', - 'https://data-seed-prebsc-2-s1.bnbchain.org:8545', - 'https://data-seed-prebsc-1-s2.bnbchain.org:8545', - 'https://data-seed-prebsc-2-s2.bnbchain.org:8545', - 'https://data-seed-prebsc-1-s3.bnbchain.org:8545', - 'https://data-seed-prebsc-2-s3.bnbchain.org:8545', - 'https://bsc-testnet-rpc.publicnode.com', - 'wss://bsc-testnet-rpc.publicnode.com', - ], - faucets: ['https://testnet.bnbchain.org/faucet-smart'], - nativeCurrency: { - name: 'BNB Chain Native Token', - symbol: 'tBNB', - decimals: 18, - }, - infoURL: 'https://www.bnbchain.org/en', - shortName: 'bnbt', - chainId: 97, - networkId: 97, - slip44: 1, - explorers: [ - { - name: 'bscscan-testnet', - url: 'https://testnet.bscscan.com', - standard: 'EIP3091', - }, + "name": "BNB Smart Chain Testnet", + "chain": "BSC", + "rpc": [ + "https://data-seed-prebsc-1-s1.bnbchain.org:8545", + "https://data-seed-prebsc-2-s1.bnbchain.org:8545", + "https://data-seed-prebsc-1-s2.bnbchain.org:8545", + "https://data-seed-prebsc-2-s2.bnbchain.org:8545", + "https://data-seed-prebsc-1-s3.bnbchain.org:8545", + "https://data-seed-prebsc-2-s3.bnbchain.org:8545", + "https://bsc-testnet-rpc.publicnode.com", + "wss://bsc-testnet-rpc.publicnode.com" + ], + "faucets": [ + "https://testnet.bnbchain.org/faucet-smart" ], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://www.bnbchain.org/en", + "shortName": "bnbt", + "chainId": 97, + "networkId": 97, + "slip44": 1, + "explorers": [ + { + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } + ] }, { - name: 'Gnosis', - chain: 'GNO', - icon: 'gnosis', - rpc: [ - 'https://rpc.gnosischain.com', - 'https://rpc.gnosis.gateway.fm', - 'https://rpc.ankr.com/gnosis', - 'https://gnosischain-rpc.gateway.pokt.network', - 'https://gnosis-mainnet.public.blastapi.io', - 'https://gnosis.api.onfinality.io/public', - 'https://gnosis.blockpi.network/v1/rpc/public', - 'https://web3endpoints.com/gnosischain-mainnet', - 'https://gnosis.oat.farm', - 'wss://rpc.gnosischain.com/wss', - 'https://gnosis-rpc.publicnode.com', - 'wss://gnosis-rpc.publicnode.com', - ], - faucets: [ - 'https://gnosisfaucet.com', - 'https://stakely.io/faucet/gnosis-chain-xdai', - 'https://faucet.prussia.dev/xdai', - ], - nativeCurrency: { - name: 'xDAI', - symbol: 'XDAI', - decimals: 18, + "name": "Gnosis", + "chain": "GNO", + "icon": "gnosis", + "rpc": [ + "https://rpc.gnosischain.com", + "https://rpc.gnosis.gateway.fm", + "https://rpc.ankr.com/gnosis", + "https://gnosischain-rpc.gateway.pokt.network", + "https://gnosis-mainnet.public.blastapi.io", + "https://gnosis.api.onfinality.io/public", + "https://gnosis.blockpi.network/v1/rpc/public", + "https://web3endpoints.com/gnosischain-mainnet", + "https://gnosis.oat.farm", + "wss://rpc.gnosischain.com/wss", + "https://gnosis-rpc.publicnode.com", + "wss://gnosis-rpc.publicnode.com" + ], + "faucets": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" + ], + "nativeCurrency": { + "name": "xDAI", + "symbol": "XDAI", + "decimals": 18 }, - infoURL: 'https://docs.gnosischain.com', - shortName: 'gno', - chainId: 100, - networkId: 100, - slip44: 700, - explorers: [ - { - name: 'gnosisscan', - url: 'https://gnosisscan.io', - standard: 'EIP3091', - }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "gno", + "chainId": 100, + "networkId": 100, + "slip44": 700, + "explorers": [ { - name: 'blockscout', - url: 'https://gnosis.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" }, { - name: 'dexguru', - url: 'https://gnosis.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Polygon Mainnet', - chain: 'Polygon', - icon: 'polygon', - rpc: [ - 'https://polygon-rpc.com/', - 'https://rpc-mainnet.matic.network', - 'https://matic-mainnet.chainstacklabs.com', - 'https://rpc-mainnet.maticvigil.com', - 'https://rpc-mainnet.matic.quiknode.pro', - 'https://matic-mainnet-full-rpc.bwarelabs.com', - 'https://polygon-bor-rpc.publicnode.com', - 'wss://polygon-bor-rpc.publicnode.com', - 'https://polygon.gateway.tenderly.co', - 'wss://polygon.gateway.tenderly.co', - 'https://polygon.drpc.org', - 'wss://polygon.drpc.org', - ], - faucets: [], - nativeCurrency: { - name: 'MATIC', - symbol: 'MATIC', - decimals: 18, + "name": "Polygon Mainnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://polygon-rpc.com/", + "https://rpc-mainnet.matic.network", + "https://matic-mainnet.chainstacklabs.com", + "https://rpc-mainnet.maticvigil.com", + "https://rpc-mainnet.matic.quiknode.pro", + "https://matic-mainnet-full-rpc.bwarelabs.com", + "https://polygon-bor-rpc.publicnode.com", + "wss://polygon-bor-rpc.publicnode.com", + "https://polygon.gateway.tenderly.co", + "wss://polygon.gateway.tenderly.co", + "https://polygon.drpc.org", + "wss://polygon.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 }, - infoURL: 'https://polygon.technology/', - shortName: 'matic', - chainId: 137, - networkId: 137, - slip44: 966, - explorers: [ - { - name: 'polygonscan', - url: 'https://polygonscan.com', - standard: 'EIP3091', - }, + "infoURL": "https://polygon.technology/", + "shortName": "matic", + "chainId": 137, + "networkId": 137, + "slip44": 966, + "explorers": [ { - name: 'dexguru', - url: 'https://polygon.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://polygon.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Fantom Opera', - chain: 'FTM', - rpc: [ - 'https://rpc.ftm.tools', - 'https://fantom-rpc.publicnode.com', - 'wss://fantom-rpc.publicnode.com', - 'https://fantom.drpc.org', - 'wss://fantom.drpc.org', - ], - faucets: [], - nativeCurrency: { - name: 'Fantom', - symbol: 'FTM', - decimals: 18, + "name": "Fantom Opera", + "chain": "FTM", + "rpc": [ + "https://rpc.ftm.tools", + "https://fantom-rpc.publicnode.com", + "wss://fantom-rpc.publicnode.com", + "https://fantom.drpc.org", + "wss://fantom.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 }, - infoURL: 'https://fantom.foundation', - shortName: 'ftm', - chainId: 250, - networkId: 250, - icon: 'fantom', - explorers: [ - { - name: 'ftmscan', - url: 'https://ftmscan.com', - icon: 'ftmscan', - standard: 'EIP3091', - }, + "infoURL": "https://fantom.foundation", + "shortName": "ftm", + "chainId": 250, + "networkId": 250, + "icon": "fantom", + "explorers": [ { - name: 'dexguru', - url: 'https://fantom.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Fantom Testnet', - chain: 'FTM', - rpc: [ - 'https://rpc.testnet.fantom.network', - 'https://fantom-testnet-rpc.publicnode.com', - 'wss://fantom-testnet-rpc.publicnode.com', - 'https://fantom-testnet.drpc.org', - 'wss://fantom-testnet.drpc.org', - ], - faucets: ['https://faucet.fantom.network'], - nativeCurrency: { - name: 'Fantom', - symbol: 'FTM', - decimals: 18, + "name": "Moonbeam", + "chain": "MOON", + "rpc": [ + "https://rpc.api.moonbeam.network", + "wss://wss.api.moonbeam.network", + "https://moonbeam-rpc.publicnode.com", + "wss://moonbeam-rpc.publicnode.com", + "https://moonbeam.drpc.org", + "wss://moonbeam.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 }, - infoURL: 'https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet', - shortName: 'tftm', - chainId: 4002, - networkId: 4002, - slip44: 1, - icon: 'fantom', - explorers: [ - { - name: 'ftmscan', - url: 'https://testnet.ftmscan.com', - icon: 'ftmscan', - standard: 'EIP3091', - }, + "infoURL": "https://moonbeam.network/networks/moonbeam/", + "shortName": "mbeam", + "chainId": 1284, + "networkId": 1284, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", + "standard": "none" + } + ] + }, + { + "name": "Fantom Testnet", + "chain": "FTM", + "rpc": [ + "https://rpc.testnet.fantom.network", + "https://fantom-testnet-rpc.publicnode.com", + "wss://fantom-testnet-rpc.publicnode.com", + "https://fantom-testnet.drpc.org", + "wss://fantom-testnet.drpc.org" ], + "faucets": [ + "https://faucet.fantom.network" + ], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", + "shortName": "tftm", + "chainId": 4002, + "networkId": 4002, + "slip44": 1, + "icon": "fantom", + "explorers": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + } + ] }, { - name: 'Base', - chain: 'ETH', - rpc: [ - 'https://mainnet.base.org/', - 'https://developer-access-mainnet.base.org/', - 'https://base.gateway.tenderly.co', - 'wss://base.gateway.tenderly.co', - 'https://base-rpc.publicnode.com', - 'wss://base-rpc.publicnode.com', - ], - faucets: [], - nativeCurrency: { - name: 'Ether', - symbol: 'ETH', - decimals: 18, + "name": "Base", + "chain": "ETH", + "rpc": [ + "https://mainnet.base.org/", + "https://developer-access-mainnet.base.org/", + "https://base.gateway.tenderly.co", + "wss://base.gateway.tenderly.co", + "https://base-rpc.publicnode.com", + "wss://base-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://base.org', - shortName: 'base', - chainId: 8453, - networkId: 8453, - icon: 'base', - explorers: [ - { - name: 'basescan', - url: 'https://basescan.org', - standard: 'none', - }, + "infoURL": "https://base.org", + "shortName": "base", + "chainId": 8453, + "networkId": 8453, + "icon": "base", + "explorers": [ { - name: 'basescout', - url: 'https://base.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" }, { - name: 'dexguru', - url: 'https://base.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, + { + "name": "dexguru", + "url": "https://base.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], - status: 'active', + "status": "active" }, { - name: 'Gnosis Chiado Testnet', - chain: 'GNO', - icon: 'gnosis', - rpc: [ - 'https://rpc.chiadochain.net', - 'https://rpc.chiado.gnosis.gateway.fm', - 'wss://rpc.chiadochain.net/wss', - 'https://gnosis-chiado-rpc.publicnode.com', - 'wss://gnosis-chiado-rpc.publicnode.com', - 'https://gnosis-chiado.drpc.org', - 'wss://gnosis-chiado.drpc.org', - ], - faucets: ['https://gnosisfaucet.com'], - nativeCurrency: { - name: 'Chiado xDAI', - symbol: 'XDAI', - decimals: 18, + "name": "Gnosis Chiado Testnet", + "chain": "GNO", + "icon": "gnosis", + "rpc": [ + "https://rpc.chiadochain.net", + "https://rpc.chiado.gnosis.gateway.fm", + "wss://rpc.chiadochain.net/wss", + "https://gnosis-chiado-rpc.publicnode.com", + "wss://gnosis-chiado-rpc.publicnode.com", + "https://gnosis-chiado.drpc.org", + "wss://gnosis-chiado.drpc.org" + ], + "faucets": [ + "https://gnosisfaucet.com" + ], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 }, - infoURL: 'https://docs.gnosischain.com', - shortName: 'chi', - chainId: 10200, - networkId: 10200, - slip44: 1, - explorers: [ - { - name: 'blockscout-chiadochain', - url: 'https://blockscout.chiadochain.net', - icon: 'blockscout', - standard: 'EIP3091', - }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi", + "chainId": 10200, + "networkId": 10200, + "slip44": 1, + "explorers": [ { - name: 'blockscout', - url: 'https://gnosis-chiado.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "blockscout-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" }, - ], + { + "name": "blockscout", + "url": "https://gnosis-chiado.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] }, { - name: 'Holesky', - title: 'Ethereum Testnet Holesky', - chain: 'ETH', - rpc: [ - 'https://rpc.holesky.ethpandaops.io', - 'https://ethereum-holesky-rpc.publicnode.com', - 'wss://ethereum-holesky-rpc.publicnode.com', - 'https://holesky.drpc.org', - 'wss://holesky.drpc.org', - ], - faucets: ['https://faucet.holesky.ethpandaops.io', 'https://holesky-faucet.pk910.de'], - nativeCurrency: { - name: 'Testnet ETH', - symbol: 'ETH', - decimals: 18, + "name": "Holesky", + "title": "Ethereum Testnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.holesky.ethpandaops.io", + "https://ethereum-holesky-rpc.publicnode.com", + "wss://ethereum-holesky-rpc.publicnode.com", + "https://holesky.drpc.org", + "wss://holesky.drpc.org" + ], + "faucets": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://holesky.ethpandaops.io', - shortName: 'holesky', - chainId: 17000, - networkId: 17000, - slip44: 1, - icon: 'ethereum', - status: 'incubating', - explorers: [ - { - name: 'Holesky Explorer', - url: 'https://holesky.beaconcha.in', - icon: 'ethereum', - standard: 'EIP3091', - }, + "infoURL": "https://holesky.ethpandaops.io", + "shortName": "holesky", + "chainId": 17000, + "networkId": 17000, + "slip44": 1, + "icon": "ethereum", + "status": "incubating", + "explorers": [ { - name: 'otterscan-holesky', - url: 'https://holesky.otterscan.io', - icon: 'ethereum', - standard: 'EIP3091', + "name": "Holesky Explorer", + "url": "https://holesky.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" }, { - name: 'Holesky Etherscan', - url: 'https://holesky.etherscan.io', - icon: 'ethereum', - standard: 'EIP3091', + "name": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" }, - ], + { + "name": "Holesky Etherscan", + "url": "https://holesky.etherscan.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ] }, { - name: 'Arbitrum One', - chainId: 42161, - shortName: 'arb1', - chain: 'ETH', - networkId: 42161, - nativeCurrency: { - name: 'Ether', - symbol: 'ETH', - decimals: 18, + "name": "Arbitrum One", + "chainId": 42161, + "shortName": "arb1", + "chain": "ETH", + "networkId": 42161, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, - rpc: [ - 'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}', - 'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}', - 'https://arb1.arbitrum.io/rpc', - 'https://arbitrum-one.publicnode.com', - 'wss://arbitrum-one.publicnode.com', - ], - faucets: [], - explorers: [ - { - name: 'Arbiscan', - url: 'https://arbiscan.io', - standard: 'EIP3091', - }, + "rpc": [ + "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://arb1.arbitrum.io/rpc", + "https://arbitrum-one.publicnode.com", + "wss://arbitrum-one.publicnode.com" + ], + "faucets": [], + "explorers": [ { - name: 'Arbitrum Explorer', - url: 'https://explorer.arbitrum.io', - standard: 'EIP3091', + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" }, { - name: 'dexguru', - url: 'https://arbitrum.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" }, + { + "name": "dexguru", + "url": "https://arbitrum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } ], - infoURL: 'https://arbitrum.io', - parent: { - type: 'L2', - chain: 'eip155-1', - bridges: [ + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ { - url: 'https://bridge.arbitrum.io', - }, - ], - }, + "url": "https://bridge.arbitrum.io" + } + ] + } }, { - name: 'Avalanche Fuji Testnet', - chain: 'AVAX', - icon: 'avax', - rpc: [ - 'https://api.avax-test.network/ext/bc/C/rpc', - 'https://avalanche-fuji-c-chain-rpc.publicnode.com', - 'wss://avalanche-fuji-c-chain-rpc.publicnode.com', - ], - faucets: ['https://faucet.avax-test.network/'], - nativeCurrency: { - name: 'Avalanche', - symbol: 'AVAX', - decimals: 18, - }, - infoURL: 'https://cchain.explorer.avax-test.network', - shortName: 'Fuji', - chainId: 43113, - networkId: 1, - slip44: 1, - explorers: [ - { - name: 'snowtrace', - url: 'https://testnet.snowtrace.io', - standard: 'EIP3091', - }, + "name": "Avalanche Fuji Testnet", + "chain": "AVAX", + "icon": "avax", + "rpc": [ + "https://api.avax-test.network/ext/bc/C/rpc", + "https://avalanche-fuji-c-chain-rpc.publicnode.com", + "wss://avalanche-fuji-c-chain-rpc.publicnode.com" ], + "faucets": [ + "https://faucet.avax-test.network/" + ], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://cchain.explorer.avax-test.network", + "shortName": "Fuji", + "chainId": 43113, + "networkId": 1, + "slip44": 1, + "explorers": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } + ] }, { - name: 'Avalanche C-Chain', - chain: 'AVAX', - icon: 'avax', - rpc: [ - 'https://api.avax.network/ext/bc/C/rpc', - 'https://avalanche-c-chain-rpc.publicnode.com', - 'wss://avalanche-c-chain-rpc.publicnode.com', + "name": "Avalanche C-Chain", + "chain": "AVAX", + "icon": "avax", + "rpc": [ + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche-c-chain-rpc.publicnode.com", + "wss://avalanche-c-chain-rpc.publicnode.com" ], - features: [ + "features": [ { - name: 'EIP1559', - }, + "name": "EIP1559" + } ], - faucets: [], - nativeCurrency: { - name: 'Avalanche', - symbol: 'AVAX', - decimals: 18, + "faucets": [], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 }, - infoURL: 'https://www.avax.network/', - shortName: 'avax', - chainId: 43114, - networkId: 43114, - slip44: 9005, - explorers: [ - { - name: 'snowtrace', - url: 'https://snowtrace.io', - standard: 'EIP3091', - }, - ], + "infoURL": "https://www.avax.network/", + "shortName": "avax", + "chainId": 43114, + "networkId": 43114, + "slip44": 9005, + "explorers": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } + ] }, { - name: 'Linea', - title: 'Linea Mainnet', - chain: 'ETH', - rpc: [ - 'https://rpc.linea.build', - 'wss://rpc.linea.build', - 'https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}', - 'wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}', - ], - faucets: [], - nativeCurrency: { - name: 'Linea Ether', - symbol: 'ETH', - decimals: 18, + "name": "Linea", + "title": "Linea Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.linea.build", + "wss://rpc.linea.build", + "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://linea.build', - shortName: 'linea', - chainId: 59144, - networkId: 59144, - icon: 'linea', - parent: { - type: 'L2', - chain: 'eip155-1', - bridges: [ + "infoURL": "https://linea.build", + "shortName": "linea", + "chainId": 59144, + "networkId": 59144, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ { - url: 'https://bridge.linea.build', - }, - ], + "url": "https://bridge.linea.build" + } + ] }, - explorers: [ + "explorers": [ { - name: 'Etherscan', - url: 'https://lineascan.build', - standard: 'EIP3091', - icon: 'linea', + "name": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: 'Blockscout', - url: 'https://explorer.linea.build', - standard: 'EIP3091', - icon: 'linea', + "name": "Blockscout", + "url": "https://explorer.linea.build", + "standard": "EIP3091", + "icon": "linea" }, { - name: 'L2scan', - url: 'https://linea.l2scan.co', - standard: 'EIP3091', - icon: 'linea', - }, + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } ], - status: 'active', + "status": "active" }, { - name: 'Mumbai', - title: 'Polygon Testnet Mumbai', - chain: 'Polygon', - icon: 'polygon', - rpc: [ - 'https://rpc-mumbai.maticvigil.com', - 'https://polygon-mumbai-bor-rpc.publicnode.com', - 'wss://polygon-mumbai-bor-rpc.publicnode.com', - 'https://polygon-mumbai.gateway.tenderly.co', - 'wss://polygon-mumbai.gateway.tenderly.co', - ], - faucets: ['https://faucet.polygon.technology/'], - nativeCurrency: { - name: 'MATIC', - symbol: 'MATIC', - decimals: 18, - }, - infoURL: 'https://polygon.technology/', - shortName: 'maticmum', - chainId: 80001, - networkId: 80001, - slip44: 1, - explorers: [ - { - name: 'polygonscan', - url: 'https://mumbai.polygonscan.com', - standard: 'EIP3091', - }, + "name": "Mumbai", + "title": "Polygon Testnet Mumbai", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-mumbai.maticvigil.com", + "https://polygon-mumbai-bor-rpc.publicnode.com", + "wss://polygon-mumbai-bor-rpc.publicnode.com", + "https://polygon-mumbai.gateway.tenderly.co", + "wss://polygon-mumbai.gateway.tenderly.co" + ], + "faucets": [ + "https://faucet.polygon.technology/" ], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "maticmum", + "chainId": 80001, + "networkId": 80001, + "slip44": 1, + "explorers": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } + ] }, { - name: 'Amoy', - title: 'Polygon Amoy Testnet', - chain: 'Polygon', - icon: 'polygon', - rpc: [ - 'https://https://rpc-amoy.polygon.technology', - 'https://polygon-amoy-bor-rpc.publicnode.com', - 'wss://polygon-amoy-bor-rpc.publicnode.com', - ], - faucets: ['https://faucet.polygon.technology/'], - nativeCurrency: { - name: 'MATIC', - symbol: 'MATIC', - decimals: 18, - }, - infoURL: 'https://polygon.technology/', - shortName: 'polygonamoy', - chainId: 80002, - networkId: 80002, - slip44: 1, - explorers: [ - { - name: 'polygonamoy', - url: 'https://www.oklink.com/amoy', - standard: 'EIP3091', - }, + "name": "Amoy", + "title": "Polygon Amoy Testnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" ], + "faucets": [ + "https://faucet.polygon.technology/" + ], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "polygonamoy", + "chainId": 80002, + "networkId": 80002, + "slip44": 1, + "explorers": [ + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } + ] }, { - name: 'Base Goerli Testnet', - chain: 'ETH', - rpc: [ - 'https://goerli.base.org', - 'https://base-goerli.gateway.tenderly.co', - 'wss://base-goerli.gateway.tenderly.co', - 'https://base-goerli-rpc.publicnode.com', - 'wss://base-goerli-rpc.publicnode.com', - ], - faucets: ['https://www.coinbase.com/faucets/base-ethereum-goerli-faucet'], - nativeCurrency: { - name: 'Goerli Ether', - symbol: 'ETH', - decimals: 18, + "name": "Base Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.base.org", + "https://base-goerli.gateway.tenderly.co", + "wss://base-goerli.gateway.tenderly.co", + "https://base-goerli-rpc.publicnode.com", + "wss://base-goerli-rpc.publicnode.com" + ], + "faucets": [ + "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://base.org', - shortName: 'basegor', - chainId: 84531, - networkId: 84531, - slip44: 1, - icon: 'baseTestnet', - explorers: [ - { - name: 'basescan', - url: 'https://goerli.basescan.org', - standard: 'none', - }, + "infoURL": "https://base.org", + "shortName": "basegor", + "chainId": 84531, + "networkId": 84531, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ { - name: 'basescout', - url: 'https://base-goerli.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" }, { - name: 'dexguru', - url: 'https://base-goerli.dex.guru', - icon: 'dexguru', - standard: 'EIP3091', + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" }, - ], + { + "name": "dexguru", + "url": "https://base-goerli.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] }, { - name: 'Base Sepolia Testnet', - chain: 'ETH', - rpc: [ - 'https://sepolia.base.org', - 'https://base-sepolia-rpc.publicnode.com', - 'wss://base-sepolia-rpc.publicnode.com', - ], - faucets: [], - nativeCurrency: { - name: 'Sepolia Ether', - symbol: 'ETH', - decimals: 18, - }, - infoURL: 'https://base.org', - shortName: 'basesep', - chainId: 84532, - networkId: 84532, - slip44: 1, - icon: 'baseTestnet', - explorers: [ - { - name: 'basescout', - url: 'https://base-sepolia.blockscout.com', - icon: 'blockscout', - standard: 'EIP3091', - }, + "name": "Base Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.base.org", + "https://base-sepolia-rpc.publicnode.com", + "wss://base-sepolia-rpc.publicnode.com" ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basesep", + "chainId": 84532, + "networkId": 84532, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] }, { - name: 'IVAR Chain Mainnet', - chain: 'IVAR', - icon: 'ivar', - rpc: ['https://mainnet-rpc.ivarex.com'], - faucets: ['https://faucet.ivarex.com/'], - nativeCurrency: { - name: 'Ivar', - symbol: 'IVAR', - decimals: 18, - }, - infoURL: 'https://ivarex.com', - shortName: 'ivar', - chainId: 88888, - networkId: 88888, - explorers: [ - { - name: 'ivarscan', - url: 'https://ivarscan.com', - standard: 'EIP3091', - }, + "name": "IVAR Chain Mainnet", + "chain": "IVAR", + "icon": "ivar", + "rpc": [ + "https://mainnet-rpc.ivarex.com" ], + "faucets": [ + "https://faucet.ivarex.com/" + ], + "nativeCurrency": { + "name": "Ivar", + "symbol": "IVAR", + "decimals": 18 + }, + "infoURL": "https://ivarex.com", + "shortName": "ivar", + "chainId": 88888, + "networkId": 88888, + "explorers": [ + { + "name": "ivarscan", + "url": "https://ivarscan.com", + "standard": "EIP3091" + } + ] }, { - name: 'Arbitrum Goerli', - title: 'Arbitrum Goerli Rollup Testnet', - chainId: 421613, - shortName: 'arb-goerli', - chain: 'ETH', - networkId: 421613, - slip44: 1, - nativeCurrency: { - name: 'Arbitrum Goerli Ether', - symbol: 'AGOR', - decimals: 18, + "name": "Arbitrum Goerli", + "title": "Arbitrum Goerli Rollup Testnet", + "chainId": 421613, + "shortName": "arb-goerli", + "chain": "ETH", + "networkId": 421613, + "slip44": 1, + "nativeCurrency": { + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 }, - rpc: [ - 'https://goerli-rollup.arbitrum.io/rpc', - 'https://arbitrum-goerli.publicnode.com', - 'wss://arbitrum-goerli.publicnode.com', - ], - faucets: [], - infoURL: 'https://arbitrum.io/', - explorers: [ - { - name: 'Arbitrum Goerli Arbiscan', - url: 'https://goerli.arbiscan.io', - standard: 'EIP3091', - }, + "rpc": [ + "https://goerli-rollup.arbitrum.io/rpc", + "https://arbitrum-goerli.publicnode.com", + "wss://arbitrum-goerli.publicnode.com" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/", + "explorers": [ + { + "name": "Arbitrum Goerli Arbiscan", + "url": "https://goerli.arbiscan.io", + "standard": "EIP3091" + } ], - parent: { - type: 'L2', - chain: 'eip155-5', - bridges: [ + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ { - url: 'https://bridge.arbitrum.io/', - }, - ], - }, + "url": "https://bridge.arbitrum.io/" + } + ] + } }, { - name: 'Sepolia', - title: 'Ethereum Testnet Sepolia', - chain: 'ETH', - rpc: [ - 'https://rpc.sepolia.org', - 'https://rpc2.sepolia.org', - 'https://rpc-sepolia.rockx.com', - 'https://rpc.sepolia.ethpandaops.io', - 'https://sepolia.infura.io/v3/${INFURA_API_KEY}', - 'wss://sepolia.infura.io/v3/${INFURA_API_KEY}', - 'https://sepolia.gateway.tenderly.co', - 'wss://sepolia.gateway.tenderly.co', - 'https://ethereum-sepolia-rpc.publicnode.com', - 'wss://ethereum-sepolia-rpc.publicnode.com', - 'https://sepolia.drpc.org', - 'wss://sepolia.drpc.org', - ], - faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'], - nativeCurrency: { - name: 'Sepolia Ether', - symbol: 'ETH', - decimals: 18, + "name": "Sepolia", + "title": "Ethereum Testnet Sepolia", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.org", + "https://rpc2.sepolia.org", + "https://rpc-sepolia.rockx.com", + "https://rpc.sepolia.ethpandaops.io", + "https://sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://sepolia.infura.io/v3/${INFURA_API_KEY}", + "https://sepolia.gateway.tenderly.co", + "wss://sepolia.gateway.tenderly.co", + "https://ethereum-sepolia-rpc.publicnode.com", + "wss://ethereum-sepolia-rpc.publicnode.com", + "https://sepolia.drpc.org", + "wss://sepolia.drpc.org" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 }, - infoURL: 'https://sepolia.otterscan.io', - shortName: 'sep', - chainId: 11155111, - networkId: 11155111, - slip44: 1, - explorers: [ - { - name: 'etherscan-sepolia', - url: 'https://sepolia.etherscan.io', - standard: 'EIP3091', - }, + "infoURL": "https://sepolia.otterscan.io", + "shortName": "sep", + "chainId": 11155111, + "networkId": 11155111, + "slip44": 1, + "explorers": [ { - name: 'otterscan-sepolia', - url: 'https://sepolia.otterscan.io', - standard: 'EIP3091', + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" }, - ], + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ] }, { - name: 'Palm', - chain: 'Palm', - icon: 'palm', - rpc: ['https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}', 'https://palm-mainnet.public.blastapi.io'], - faucets: [], - nativeCurrency: { - name: 'PALM', - symbol: 'PALM', - decimals: 18, + "name": "Palm", + "chain": "Palm", + "icon": "palm", + "rpc": [ + "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://palm-mainnet.public.blastapi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 }, - infoURL: 'https://palm.network', - shortName: 'palm', - chainId: 11297108109, - networkId: 11297108109, - explorers: [ - { - name: 'Chainlens', - url: 'https://palm.chainlens.com', - standard: 'EIP3091', - }, + "infoURL": "https://palm.network", + "shortName": "palm", + "chainId": 11297108109, + "networkId": 11297108109, + "explorers": [ { - name: 'Dora', - url: 'https://www.ondora.xyz/network/palm', - standard: 'none', + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" }, - ], - }, -]; + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } + ] + } +]; \ No newline at end of file diff --git a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.test.ts b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.test.ts index 97b433e8d4..bbfa0e0a1a 100644 --- a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.test.ts +++ b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.test.ts @@ -124,6 +124,7 @@ describe('EvmChain', () => { expect(EvmChain.HOLESKY.apiHex).toBe('0x4268'); expect(EvmChain.POLYGON_AMOY.apiHex).toBe('0x13882'); expect(EvmChain.LINEA.apiHex).toBe('0xe708'); + expect(EvmChain.MOONBEAM.apiHex).toBe('0x504'); }); describe('metadata', () => { diff --git a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts index 6e10b52767..e73bb2c0db 100644 --- a/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts +++ b/packages/common/evmUtils/src/dataTypes/EvmChain/EvmChain.ts @@ -262,6 +262,15 @@ export class EvmChain implements EvmChainable { return EvmChain.create(59144); } + /** + * Returns MOONBEAM chain + * + * @example EvmChain.MOONBEAM + */ + public static get MOONBEAM() { + return EvmChain.create(1284); + } + /** * Create a new instance of EvmChain from any valid address input. * @@ -344,6 +353,7 @@ export class EvmChain implements EvmChainable { EvmChain.HOLESKY, EvmChain.POLYGON_AMOY, EvmChain.LINEA, + EvmChain.MOONBEAM, ]; } @@ -456,7 +466,8 @@ export class EvmChain implements EvmChainable { | '0x14a33' | '0x4268' | '0x13882' - | '0xe708'; + | '0xe708' + | '0x504'; } /** From 279f98a64a10674f917d479a78f059cf0fdbc26c Mon Sep 17 00:00:00 2001 From: Kayode Odole <31928403+Kayconfig@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:26:58 +0100 Subject: [PATCH 2/3] chore: fix prettier --- .../common/evmUtils/src/data/chaindata.ts | 1748 ++++++++--------- 1 file changed, 861 insertions(+), 887 deletions(-) diff --git a/packages/common/evmUtils/src/data/chaindata.ts b/packages/common/evmUtils/src/data/chaindata.ts index f58a088b8d..e8864cbb63 100644 --- a/packages/common/evmUtils/src/data/chaindata.ts +++ b/packages/common/evmUtils/src/data/chaindata.ts @@ -4,1032 +4,1006 @@ import { EvmChainListDataEntry } from './types'; // source: https://chainid.network/chains.json export const chainList: EvmChainListDataEntry[] = [ { - "name": "Ethereum Mainnet", - "chain": "ETH", - "icon": "ethereum", - "rpc": [ - "https://mainnet.infura.io/v3/${INFURA_API_KEY}", - "wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}", - "https://api.mycryptoapi.com/eth", - "https://cloudflare-eth.com", - "https://ethereum-rpc.publicnode.com", - "wss://ethereum-rpc.publicnode.com", - "https://mainnet.gateway.tenderly.co", - "wss://mainnet.gateway.tenderly.co", - "https://rpc.blocknative.com/boost", - "https://rpc.flashbots.net", - "https://rpc.flashbots.net/fast", - "https://rpc.mevblocker.io", - "https://rpc.mevblocker.io/fast", - "https://rpc.mevblocker.io/noreverts", - "https://rpc.mevblocker.io/fullprivacy", - "https://eth.drpc.org", - "wss://eth.drpc.org" - ], - "features": [ - { - "name": "EIP155" + name: 'Ethereum Mainnet', + chain: 'ETH', + icon: 'ethereum', + rpc: [ + 'https://mainnet.infura.io/v3/${INFURA_API_KEY}', + 'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}', + 'https://api.mycryptoapi.com/eth', + 'https://cloudflare-eth.com', + 'https://ethereum-rpc.publicnode.com', + 'wss://ethereum-rpc.publicnode.com', + 'https://mainnet.gateway.tenderly.co', + 'wss://mainnet.gateway.tenderly.co', + 'https://rpc.blocknative.com/boost', + 'https://rpc.flashbots.net', + 'https://rpc.flashbots.net/fast', + 'https://rpc.mevblocker.io', + 'https://rpc.mevblocker.io/fast', + 'https://rpc.mevblocker.io/noreverts', + 'https://rpc.mevblocker.io/fullprivacy', + 'https://eth.drpc.org', + 'wss://eth.drpc.org', + ], + features: [ + { + name: 'EIP155', }, { - "name": "EIP1559" - } + name: 'EIP1559', + }, ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + faucets: [], + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://ethereum.org", - "shortName": "eth", - "chainId": 1, - "networkId": 1, - "slip44": 60, - "ens": { - "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + infoURL: 'https://ethereum.org', + shortName: 'eth', + chainId: 1, + networkId: 1, + slip44: 60, + ens: { + registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e', }, - "explorers": [ + explorers: [ { - "name": "etherscan", - "url": "https://etherscan.io", - "standard": "EIP3091" + name: 'etherscan', + url: 'https://etherscan.io', + standard: 'EIP3091', }, { - "name": "blockscout", - "url": "https://eth.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: 'blockscout', + url: 'https://eth.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://ethereum.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://ethereum.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Goerli", - "title": "Ethereum Testnet Goerli", - "chain": "ETH", - "rpc": [ - "https://goerli.infura.io/v3/${INFURA_API_KEY}", - "wss://goerli.infura.io/v3/${INFURA_API_KEY}", - "https://rpc.goerli.mudit.blog/", - "https://ethereum-goerli-rpc.publicnode.com", - "wss://ethereum-goerli-rpc.publicnode.com", - "https://goerli.gateway.tenderly.co", - "wss://goerli.gateway.tenderly.co" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", - "https://goerli-faucet.slock.it?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Goerli', + title: 'Ethereum Testnet Goerli', + chain: 'ETH', + rpc: [ + 'https://goerli.infura.io/v3/${INFURA_API_KEY}', + 'wss://goerli.infura.io/v3/${INFURA_API_KEY}', + 'https://rpc.goerli.mudit.blog/', + 'https://ethereum-goerli-rpc.publicnode.com', + 'wss://ethereum-goerli-rpc.publicnode.com', + 'https://goerli.gateway.tenderly.co', + 'wss://goerli.gateway.tenderly.co', + ], + faucets: [ + 'http://fauceth.komputing.org?chain=5&address=${ADDRESS}', + 'https://goerli-faucet.slock.it?address=${ADDRESS}', + 'https://faucet.goerli.mudit.blog', + ], + nativeCurrency: { + name: 'Goerli Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://goerli.net/#about", - "shortName": "gor", - "chainId": 5, - "networkId": 5, - "slip44": 1, - "ens": { - "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" + infoURL: 'https://goerli.net/#about', + shortName: 'gor', + chainId: 5, + networkId: 5, + slip44: 1, + ens: { + registry: '0x112234455c3a32fd11230c42e7bccd4a84e02010', }, - "explorers": [ + explorers: [ { - "name": "etherscan-goerli", - "url": "https://goerli.etherscan.io", - "standard": "EIP3091" + name: 'etherscan-goerli', + url: 'https://goerli.etherscan.io', + standard: 'EIP3091', }, { - "name": "blockscout-goerli", - "url": "https://eth-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] + name: 'blockscout-goerli', + url: 'https://eth-goerli.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', + }, + ], }, { - "name": "OP Mainnet", - "chain": "ETH", - "rpc": [ - "https://mainnet.optimism.io", - "https://optimism-rpc.publicnode.com", - "wss://optimism-rpc.publicnode.com", - "https://optimism.gateway.tenderly.co", - "wss://optimism.gateway.tenderly.co", - "https://optimism.drpc.org", - "wss://optimism.drpc.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: 'OP Mainnet', + chain: 'ETH', + rpc: [ + 'https://mainnet.optimism.io', + 'https://optimism-rpc.publicnode.com', + 'wss://optimism-rpc.publicnode.com', + 'https://optimism.gateway.tenderly.co', + 'wss://optimism.gateway.tenderly.co', + 'https://optimism.drpc.org', + 'wss://optimism.drpc.org', + ], + faucets: [], + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://optimism.io", - "shortName": "oeth", - "chainId": 10, - "networkId": 10, - "explorers": [ - { - "name": "etherscan", - "url": "https://optimistic.etherscan.io", - "standard": "EIP3091" + infoURL: 'https://optimism.io', + shortName: 'oeth', + chainId: 10, + networkId: 10, + explorers: [ + { + name: 'etherscan', + url: 'https://optimistic.etherscan.io', + standard: 'EIP3091', }, { - "name": "blockscout", - "url": "https://optimism.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: 'blockscout', + url: 'https://optimism.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://optimism.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://optimism.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Cronos Mainnet", - "chain": "CRO", - "rpc": [ - "https://evm.cronos.org", - "https://cronos-evm-rpc.publicnode.com", - "wss://cronos-evm-rpc.publicnode.com", - "https://cronos.drpc.org", - "wss://cronos.drpc.org" - ], - "features": [ - { - "name": "EIP1559" - } + name: 'Cronos Mainnet', + chain: 'CRO', + rpc: [ + 'https://evm.cronos.org', + 'https://cronos-evm-rpc.publicnode.com', + 'wss://cronos-evm-rpc.publicnode.com', + 'https://cronos.drpc.org', + 'wss://cronos.drpc.org', + ], + features: [ + { + name: 'EIP1559', + }, ], - "faucets": [], - "nativeCurrency": { - "name": "Cronos", - "symbol": "CRO", - "decimals": 18 + faucets: [], + nativeCurrency: { + name: 'Cronos', + symbol: 'CRO', + decimals: 18, }, - "infoURL": "https://cronos.org/", - "shortName": "cro", - "chainId": 25, - "networkId": 25, - "explorers": [ - { - "name": "Cronos Explorer", - "url": "https://explorer.cronos.org", - "standard": "none" - } - ] + infoURL: 'https://cronos.org/', + shortName: 'cro', + chainId: 25, + networkId: 25, + explorers: [ + { + name: 'Cronos Explorer', + url: 'https://explorer.cronos.org', + standard: 'none', + }, + ], }, { - "name": "BNB Smart Chain Mainnet", - "chain": "BSC", - "rpc": [ - "https://bsc-dataseed1.bnbchain.org", - "https://bsc-dataseed2.bnbchain.org", - "https://bsc-dataseed3.bnbchain.org", - "https://bsc-dataseed4.bnbchain.org", - "https://bsc-dataseed1.defibit.io", - "https://bsc-dataseed2.defibit.io", - "https://bsc-dataseed3.defibit.io", - "https://bsc-dataseed4.defibit.io", - "https://bsc-dataseed1.ninicoin.io", - "https://bsc-dataseed2.ninicoin.io", - "https://bsc-dataseed3.ninicoin.io", - "https://bsc-dataseed4.ninicoin.io", - "https://bsc-rpc.publicnode.com", - "wss://bsc-rpc.publicnode.com", - "wss://bsc-ws-node.nariox.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 + name: 'BNB Smart Chain Mainnet', + chain: 'BSC', + rpc: [ + 'https://bsc-dataseed1.bnbchain.org', + 'https://bsc-dataseed2.bnbchain.org', + 'https://bsc-dataseed3.bnbchain.org', + 'https://bsc-dataseed4.bnbchain.org', + 'https://bsc-dataseed1.defibit.io', + 'https://bsc-dataseed2.defibit.io', + 'https://bsc-dataseed3.defibit.io', + 'https://bsc-dataseed4.defibit.io', + 'https://bsc-dataseed1.ninicoin.io', + 'https://bsc-dataseed2.ninicoin.io', + 'https://bsc-dataseed3.ninicoin.io', + 'https://bsc-dataseed4.ninicoin.io', + 'https://bsc-rpc.publicnode.com', + 'wss://bsc-rpc.publicnode.com', + 'wss://bsc-ws-node.nariox.org', + ], + faucets: [], + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18, }, - "infoURL": "https://www.bnbchain.org/en", - "shortName": "bnb", - "chainId": 56, - "networkId": 56, - "slip44": 714, - "explorers": [ - { - "name": "bscscan", - "url": "https://bscscan.com", - "standard": "EIP3091" + infoURL: 'https://www.bnbchain.org/en', + shortName: 'bnb', + chainId: 56, + networkId: 56, + slip44: 714, + explorers: [ + { + name: 'bscscan', + url: 'https://bscscan.com', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://bnb.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://bnb.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "BNB Smart Chain Testnet", - "chain": "BSC", - "rpc": [ - "https://data-seed-prebsc-1-s1.bnbchain.org:8545", - "https://data-seed-prebsc-2-s1.bnbchain.org:8545", - "https://data-seed-prebsc-1-s2.bnbchain.org:8545", - "https://data-seed-prebsc-2-s2.bnbchain.org:8545", - "https://data-seed-prebsc-1-s3.bnbchain.org:8545", - "https://data-seed-prebsc-2-s3.bnbchain.org:8545", - "https://bsc-testnet-rpc.publicnode.com", - "wss://bsc-testnet-rpc.publicnode.com" - ], - "faucets": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 + name: 'BNB Smart Chain Testnet', + chain: 'BSC', + rpc: [ + 'https://data-seed-prebsc-1-s1.bnbchain.org:8545', + 'https://data-seed-prebsc-2-s1.bnbchain.org:8545', + 'https://data-seed-prebsc-1-s2.bnbchain.org:8545', + 'https://data-seed-prebsc-2-s2.bnbchain.org:8545', + 'https://data-seed-prebsc-1-s3.bnbchain.org:8545', + 'https://data-seed-prebsc-2-s3.bnbchain.org:8545', + 'https://bsc-testnet-rpc.publicnode.com', + 'wss://bsc-testnet-rpc.publicnode.com', + ], + faucets: ['https://testnet.bnbchain.org/faucet-smart'], + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'tBNB', + decimals: 18, }, - "infoURL": "https://www.bnbchain.org/en", - "shortName": "bnbt", - "chainId": 97, - "networkId": 97, - "slip44": 1, - "explorers": [ - { - "name": "bscscan-testnet", - "url": "https://testnet.bscscan.com", - "standard": "EIP3091" - } - ] + infoURL: 'https://www.bnbchain.org/en', + shortName: 'bnbt', + chainId: 97, + networkId: 97, + slip44: 1, + explorers: [ + { + name: 'bscscan-testnet', + url: 'https://testnet.bscscan.com', + standard: 'EIP3091', + }, + ], }, { - "name": "Gnosis", - "chain": "GNO", - "icon": "gnosis", - "rpc": [ - "https://rpc.gnosischain.com", - "https://rpc.gnosis.gateway.fm", - "https://rpc.ankr.com/gnosis", - "https://gnosischain-rpc.gateway.pokt.network", - "https://gnosis-mainnet.public.blastapi.io", - "https://gnosis.api.onfinality.io/public", - "https://gnosis.blockpi.network/v1/rpc/public", - "https://web3endpoints.com/gnosischain-mainnet", - "https://gnosis.oat.farm", - "wss://rpc.gnosischain.com/wss", - "https://gnosis-rpc.publicnode.com", - "wss://gnosis-rpc.publicnode.com" - ], - "faucets": [ - "https://gnosisfaucet.com", - "https://stakely.io/faucet/gnosis-chain-xdai", - "https://faucet.prussia.dev/xdai" - ], - "nativeCurrency": { - "name": "xDAI", - "symbol": "XDAI", - "decimals": 18 + name: 'Gnosis', + chain: 'GNO', + icon: 'gnosis', + rpc: [ + 'https://rpc.gnosischain.com', + 'https://rpc.gnosis.gateway.fm', + 'https://rpc.ankr.com/gnosis', + 'https://gnosischain-rpc.gateway.pokt.network', + 'https://gnosis-mainnet.public.blastapi.io', + 'https://gnosis.api.onfinality.io/public', + 'https://gnosis.blockpi.network/v1/rpc/public', + 'https://web3endpoints.com/gnosischain-mainnet', + 'https://gnosis.oat.farm', + 'wss://rpc.gnosischain.com/wss', + 'https://gnosis-rpc.publicnode.com', + 'wss://gnosis-rpc.publicnode.com', + ], + faucets: [ + 'https://gnosisfaucet.com', + 'https://stakely.io/faucet/gnosis-chain-xdai', + 'https://faucet.prussia.dev/xdai', + ], + nativeCurrency: { + name: 'xDAI', + symbol: 'XDAI', + decimals: 18, }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "gno", - "chainId": 100, - "networkId": 100, - "slip44": 700, - "explorers": [ - { - "name": "gnosisscan", - "url": "https://gnosisscan.io", - "standard": "EIP3091" + infoURL: 'https://docs.gnosischain.com', + shortName: 'gno', + chainId: 100, + networkId: 100, + slip44: 700, + explorers: [ + { + name: 'gnosisscan', + url: 'https://gnosisscan.io', + standard: 'EIP3091', }, { - "name": "blockscout", - "url": "https://gnosis.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: 'blockscout', + url: 'https://gnosis.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://gnosis.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://gnosis.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Polygon Mainnet", - "chain": "Polygon", - "icon": "polygon", - "rpc": [ - "https://polygon-rpc.com/", - "https://rpc-mainnet.matic.network", - "https://matic-mainnet.chainstacklabs.com", - "https://rpc-mainnet.maticvigil.com", - "https://rpc-mainnet.matic.quiknode.pro", - "https://matic-mainnet-full-rpc.bwarelabs.com", - "https://polygon-bor-rpc.publicnode.com", - "wss://polygon-bor-rpc.publicnode.com", - "https://polygon.gateway.tenderly.co", - "wss://polygon.gateway.tenderly.co", - "https://polygon.drpc.org", - "wss://polygon.drpc.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: 'Polygon Mainnet', + chain: 'Polygon', + icon: 'polygon', + rpc: [ + 'https://polygon-rpc.com/', + 'https://rpc-mainnet.matic.network', + 'https://matic-mainnet.chainstacklabs.com', + 'https://rpc-mainnet.maticvigil.com', + 'https://rpc-mainnet.matic.quiknode.pro', + 'https://matic-mainnet-full-rpc.bwarelabs.com', + 'https://polygon-bor-rpc.publicnode.com', + 'wss://polygon-bor-rpc.publicnode.com', + 'https://polygon.gateway.tenderly.co', + 'wss://polygon.gateway.tenderly.co', + 'https://polygon.drpc.org', + 'wss://polygon.drpc.org', + ], + faucets: [], + nativeCurrency: { + name: 'MATIC', + symbol: 'MATIC', + decimals: 18, }, - "infoURL": "https://polygon.technology/", - "shortName": "matic", - "chainId": 137, - "networkId": 137, - "slip44": 966, - "explorers": [ - { - "name": "polygonscan", - "url": "https://polygonscan.com", - "standard": "EIP3091" + infoURL: 'https://polygon.technology/', + shortName: 'matic', + chainId: 137, + networkId: 137, + slip44: 966, + explorers: [ + { + name: 'polygonscan', + url: 'https://polygonscan.com', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://polygon.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://polygon.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Fantom Opera", - "chain": "FTM", - "rpc": [ - "https://rpc.ftm.tools", - "https://fantom-rpc.publicnode.com", - "wss://fantom-rpc.publicnode.com", - "https://fantom.drpc.org", - "wss://fantom.drpc.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: 'Fantom Opera', + chain: 'FTM', + rpc: [ + 'https://rpc.ftm.tools', + 'https://fantom-rpc.publicnode.com', + 'wss://fantom-rpc.publicnode.com', + 'https://fantom.drpc.org', + 'wss://fantom.drpc.org', + ], + faucets: [], + nativeCurrency: { + name: 'Fantom', + symbol: 'FTM', + decimals: 18, }, - "infoURL": "https://fantom.foundation", - "shortName": "ftm", - "chainId": 250, - "networkId": 250, - "icon": "fantom", - "explorers": [ - { - "name": "ftmscan", - "url": "https://ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" + infoURL: 'https://fantom.foundation', + shortName: 'ftm', + chainId: 250, + networkId: 250, + icon: 'fantom', + explorers: [ + { + name: 'ftmscan', + url: 'https://ftmscan.com', + icon: 'ftmscan', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://fantom.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://fantom.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Moonbeam", - "chain": "MOON", - "rpc": [ - "https://rpc.api.moonbeam.network", - "wss://wss.api.moonbeam.network", - "https://moonbeam-rpc.publicnode.com", - "wss://moonbeam-rpc.publicnode.com", - "https://moonbeam.drpc.org", - "wss://moonbeam.drpc.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Glimmer", - "symbol": "GLMR", - "decimals": 18 + name: 'Moonbeam', + chain: 'MOON', + rpc: [ + 'https://rpc.api.moonbeam.network', + 'wss://wss.api.moonbeam.network', + 'https://moonbeam-rpc.publicnode.com', + 'wss://moonbeam-rpc.publicnode.com', + 'https://moonbeam.drpc.org', + 'wss://moonbeam.drpc.org', + ], + faucets: [], + nativeCurrency: { + name: 'Glimmer', + symbol: 'GLMR', + decimals: 18, }, - "infoURL": "https://moonbeam.network/networks/moonbeam/", - "shortName": "mbeam", - "chainId": 1284, - "networkId": 1284, - "explorers": [ - { - "name": "moonscan", - "url": "https://moonbeam.moonscan.io", - "standard": "none" - } - ] + infoURL: 'https://moonbeam.network/networks/moonbeam/', + shortName: 'mbeam', + chainId: 1284, + networkId: 1284, + explorers: [ + { + name: 'moonscan', + url: 'https://moonbeam.moonscan.io', + standard: 'none', + }, + ], }, { - "name": "Fantom Testnet", - "chain": "FTM", - "rpc": [ - "https://rpc.testnet.fantom.network", - "https://fantom-testnet-rpc.publicnode.com", - "wss://fantom-testnet-rpc.publicnode.com", - "https://fantom-testnet.drpc.org", - "wss://fantom-testnet.drpc.org" - ], - "faucets": [ - "https://faucet.fantom.network" - ], - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 + name: 'Fantom Testnet', + chain: 'FTM', + rpc: [ + 'https://rpc.testnet.fantom.network', + 'https://fantom-testnet-rpc.publicnode.com', + 'wss://fantom-testnet-rpc.publicnode.com', + 'https://fantom-testnet.drpc.org', + 'wss://fantom-testnet.drpc.org', + ], + faucets: ['https://faucet.fantom.network'], + nativeCurrency: { + name: 'Fantom', + symbol: 'FTM', + decimals: 18, }, - "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", - "shortName": "tftm", - "chainId": 4002, - "networkId": 4002, - "slip44": 1, - "icon": "fantom", - "explorers": [ - { - "name": "ftmscan", - "url": "https://testnet.ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" - } - ] + infoURL: 'https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet', + shortName: 'tftm', + chainId: 4002, + networkId: 4002, + slip44: 1, + icon: 'fantom', + explorers: [ + { + name: 'ftmscan', + url: 'https://testnet.ftmscan.com', + icon: 'ftmscan', + standard: 'EIP3091', + }, + ], }, { - "name": "Base", - "chain": "ETH", - "rpc": [ - "https://mainnet.base.org/", - "https://developer-access-mainnet.base.org/", - "https://base.gateway.tenderly.co", - "wss://base.gateway.tenderly.co", - "https://base-rpc.publicnode.com", - "wss://base-rpc.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Base', + chain: 'ETH', + rpc: [ + 'https://mainnet.base.org/', + 'https://developer-access-mainnet.base.org/', + 'https://base.gateway.tenderly.co', + 'wss://base.gateway.tenderly.co', + 'https://base-rpc.publicnode.com', + 'wss://base-rpc.publicnode.com', + ], + faucets: [], + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://base.org", - "shortName": "base", - "chainId": 8453, - "networkId": 8453, - "icon": "base", - "explorers": [ - { - "name": "basescan", - "url": "https://basescan.org", - "standard": "none" + infoURL: 'https://base.org', + shortName: 'base', + chainId: 8453, + networkId: 8453, + icon: 'base', + explorers: [ + { + name: 'basescan', + url: 'https://basescan.org', + standard: 'none', }, { - "name": "basescout", - "url": "https://base.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: 'basescout', + url: 'https://base.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://base.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: 'dexguru', + url: 'https://base.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, ], - "status": "active" + status: 'active', }, { - "name": "Gnosis Chiado Testnet", - "chain": "GNO", - "icon": "gnosis", - "rpc": [ - "https://rpc.chiadochain.net", - "https://rpc.chiado.gnosis.gateway.fm", - "wss://rpc.chiadochain.net/wss", - "https://gnosis-chiado-rpc.publicnode.com", - "wss://gnosis-chiado-rpc.publicnode.com", - "https://gnosis-chiado.drpc.org", - "wss://gnosis-chiado.drpc.org" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "XDAI", - "decimals": 18 + name: 'Gnosis Chiado Testnet', + chain: 'GNO', + icon: 'gnosis', + rpc: [ + 'https://rpc.chiadochain.net', + 'https://rpc.chiado.gnosis.gateway.fm', + 'wss://rpc.chiadochain.net/wss', + 'https://gnosis-chiado-rpc.publicnode.com', + 'wss://gnosis-chiado-rpc.publicnode.com', + 'https://gnosis-chiado.drpc.org', + 'wss://gnosis-chiado.drpc.org', + ], + faucets: ['https://gnosisfaucet.com'], + nativeCurrency: { + name: 'Chiado xDAI', + symbol: 'XDAI', + decimals: 18, }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi", - "chainId": 10200, - "networkId": 10200, - "slip44": 1, - "explorers": [ - { - "name": "blockscout-chiadochain", - "url": "https://blockscout.chiadochain.net", - "icon": "blockscout", - "standard": "EIP3091" + infoURL: 'https://docs.gnosischain.com', + shortName: 'chi', + chainId: 10200, + networkId: 10200, + slip44: 1, + explorers: [ + { + name: 'blockscout-chiadochain', + url: 'https://blockscout.chiadochain.net', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "blockscout", - "url": "https://gnosis-chiado.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] + name: 'blockscout', + url: 'https://gnosis-chiado.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', + }, + ], }, { - "name": "Holesky", - "title": "Ethereum Testnet Holesky", - "chain": "ETH", - "rpc": [ - "https://rpc.holesky.ethpandaops.io", - "https://ethereum-holesky-rpc.publicnode.com", - "wss://ethereum-holesky-rpc.publicnode.com", - "https://holesky.drpc.org", - "wss://holesky.drpc.org" - ], - "faucets": [ - "https://faucet.holesky.ethpandaops.io", - "https://holesky-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 + name: 'Holesky', + title: 'Ethereum Testnet Holesky', + chain: 'ETH', + rpc: [ + 'https://rpc.holesky.ethpandaops.io', + 'https://ethereum-holesky-rpc.publicnode.com', + 'wss://ethereum-holesky-rpc.publicnode.com', + 'https://holesky.drpc.org', + 'wss://holesky.drpc.org', + ], + faucets: ['https://faucet.holesky.ethpandaops.io', 'https://holesky-faucet.pk910.de'], + nativeCurrency: { + name: 'Testnet ETH', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://holesky.ethpandaops.io", - "shortName": "holesky", - "chainId": 17000, - "networkId": 17000, - "slip44": 1, - "icon": "ethereum", - "status": "incubating", - "explorers": [ - { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" + infoURL: 'https://holesky.ethpandaops.io', + shortName: 'holesky', + chainId: 17000, + networkId: 17000, + slip44: 1, + icon: 'ethereum', + status: 'incubating', + explorers: [ + { + name: 'Holesky Explorer', + url: 'https://holesky.beaconcha.in', + icon: 'ethereum', + standard: 'EIP3091', }, { - "name": "otterscan-holesky", - "url": "https://holesky.otterscan.io", - "icon": "ethereum", - "standard": "EIP3091" + name: 'otterscan-holesky', + url: 'https://holesky.otterscan.io', + icon: 'ethereum', + standard: 'EIP3091', }, { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.io", - "icon": "ethereum", - "standard": "EIP3091" - } - ] + name: 'Holesky Etherscan', + url: 'https://holesky.etherscan.io', + icon: 'ethereum', + standard: 'EIP3091', + }, + ], }, { - "name": "Arbitrum One", - "chainId": 42161, - "shortName": "arb1", - "chain": "ETH", - "networkId": 42161, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Arbitrum One', + chainId: 42161, + shortName: 'arb1', + chain: 'ETH', + networkId: 42161, + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, }, - "rpc": [ - "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", - "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", - "https://arb1.arbitrum.io/rpc", - "https://arbitrum-one.publicnode.com", - "wss://arbitrum-one.publicnode.com" - ], - "faucets": [], - "explorers": [ - { - "name": "Arbiscan", - "url": "https://arbiscan.io", - "standard": "EIP3091" + rpc: [ + 'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}', + 'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}', + 'https://arb1.arbitrum.io/rpc', + 'https://arbitrum-one.publicnode.com', + 'wss://arbitrum-one.publicnode.com', + ], + faucets: [], + explorers: [ + { + name: 'Arbiscan', + url: 'https://arbiscan.io', + standard: 'EIP3091', }, { - "name": "Arbitrum Explorer", - "url": "https://explorer.arbitrum.io", - "standard": "EIP3091" + name: 'Arbitrum Explorer', + url: 'https://explorer.arbitrum.io', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://arbitrum.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } + name: 'dexguru', + url: 'https://arbitrum.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, ], - "infoURL": "https://arbitrum.io", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ + infoURL: 'https://arbitrum.io', + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [ { - "url": "https://bridge.arbitrum.io" - } - ] - } + url: 'https://bridge.arbitrum.io', + }, + ], + }, }, { - "name": "Avalanche Fuji Testnet", - "chain": "AVAX", - "icon": "avax", - "rpc": [ - "https://api.avax-test.network/ext/bc/C/rpc", - "https://avalanche-fuji-c-chain-rpc.publicnode.com", - "wss://avalanche-fuji-c-chain-rpc.publicnode.com" - ], - "faucets": [ - "https://faucet.avax-test.network/" - ], - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + name: 'Avalanche Fuji Testnet', + chain: 'AVAX', + icon: 'avax', + rpc: [ + 'https://api.avax-test.network/ext/bc/C/rpc', + 'https://avalanche-fuji-c-chain-rpc.publicnode.com', + 'wss://avalanche-fuji-c-chain-rpc.publicnode.com', + ], + faucets: ['https://faucet.avax-test.network/'], + nativeCurrency: { + name: 'Avalanche', + symbol: 'AVAX', + decimals: 18, }, - "infoURL": "https://cchain.explorer.avax-test.network", - "shortName": "Fuji", - "chainId": 43113, - "networkId": 1, - "slip44": 1, - "explorers": [ - { - "name": "snowtrace", - "url": "https://testnet.snowtrace.io", - "standard": "EIP3091" - } - ] + infoURL: 'https://cchain.explorer.avax-test.network', + shortName: 'Fuji', + chainId: 43113, + networkId: 1, + slip44: 1, + explorers: [ + { + name: 'snowtrace', + url: 'https://testnet.snowtrace.io', + standard: 'EIP3091', + }, + ], }, { - "name": "Avalanche C-Chain", - "chain": "AVAX", - "icon": "avax", - "rpc": [ - "https://api.avax.network/ext/bc/C/rpc", - "https://avalanche-c-chain-rpc.publicnode.com", - "wss://avalanche-c-chain-rpc.publicnode.com" + name: 'Avalanche C-Chain', + chain: 'AVAX', + icon: 'avax', + rpc: [ + 'https://api.avax.network/ext/bc/C/rpc', + 'https://avalanche-c-chain-rpc.publicnode.com', + 'wss://avalanche-c-chain-rpc.publicnode.com', ], - "features": [ + features: [ { - "name": "EIP1559" - } + name: 'EIP1559', + }, ], - "faucets": [], - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 + faucets: [], + nativeCurrency: { + name: 'Avalanche', + symbol: 'AVAX', + decimals: 18, }, - "infoURL": "https://www.avax.network/", - "shortName": "avax", - "chainId": 43114, - "networkId": 43114, - "slip44": 9005, - "explorers": [ - { - "name": "snowtrace", - "url": "https://snowtrace.io", - "standard": "EIP3091" - } - ] + infoURL: 'https://www.avax.network/', + shortName: 'avax', + chainId: 43114, + networkId: 43114, + slip44: 9005, + explorers: [ + { + name: 'snowtrace', + url: 'https://snowtrace.io', + standard: 'EIP3091', + }, + ], }, { - "name": "Linea", - "title": "Linea Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.linea.build", - "wss://rpc.linea.build", - "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Linea', + title: 'Linea Mainnet', + chain: 'ETH', + rpc: [ + 'https://rpc.linea.build', + 'wss://rpc.linea.build', + 'https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}', + 'wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}', + ], + faucets: [], + nativeCurrency: { + name: 'Linea Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://linea.build", - "shortName": "linea", - "chainId": 59144, - "networkId": 59144, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ + infoURL: 'https://linea.build', + shortName: 'linea', + chainId: 59144, + networkId: 59144, + icon: 'linea', + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [ { - "url": "https://bridge.linea.build" - } - ] + url: 'https://bridge.linea.build', + }, + ], }, - "explorers": [ + explorers: [ { - "name": "Etherscan", - "url": "https://lineascan.build", - "standard": "EIP3091", - "icon": "linea" + name: 'Etherscan', + url: 'https://lineascan.build', + standard: 'EIP3091', + icon: 'linea', }, { - "name": "Blockscout", - "url": "https://explorer.linea.build", - "standard": "EIP3091", - "icon": "linea" + name: 'Blockscout', + url: 'https://explorer.linea.build', + standard: 'EIP3091', + icon: 'linea', }, { - "name": "L2scan", - "url": "https://linea.l2scan.co", - "standard": "EIP3091", - "icon": "linea" - } + name: 'L2scan', + url: 'https://linea.l2scan.co', + standard: 'EIP3091', + icon: 'linea', + }, ], - "status": "active" + status: 'active', }, { - "name": "Mumbai", - "title": "Polygon Testnet Mumbai", - "chain": "Polygon", - "icon": "polygon", - "rpc": [ - "https://rpc-mumbai.maticvigil.com", - "https://polygon-mumbai-bor-rpc.publicnode.com", - "wss://polygon-mumbai-bor-rpc.publicnode.com", - "https://polygon-mumbai.gateway.tenderly.co", - "wss://polygon-mumbai.gateway.tenderly.co" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: 'Mumbai', + title: 'Polygon Testnet Mumbai', + chain: 'Polygon', + icon: 'polygon', + rpc: [ + 'https://rpc-mumbai.maticvigil.com', + 'https://polygon-mumbai-bor-rpc.publicnode.com', + 'wss://polygon-mumbai-bor-rpc.publicnode.com', + 'https://polygon-mumbai.gateway.tenderly.co', + 'wss://polygon-mumbai.gateway.tenderly.co', + ], + faucets: ['https://faucet.polygon.technology/'], + nativeCurrency: { + name: 'MATIC', + symbol: 'MATIC', + decimals: 18, }, - "infoURL": "https://polygon.technology/", - "shortName": "maticmum", - "chainId": 80001, - "networkId": 80001, - "slip44": 1, - "explorers": [ - { - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" - } - ] + infoURL: 'https://polygon.technology/', + shortName: 'maticmum', + chainId: 80001, + networkId: 80001, + slip44: 1, + explorers: [ + { + name: 'polygonscan', + url: 'https://mumbai.polygonscan.com', + standard: 'EIP3091', + }, + ], }, { - "name": "Amoy", - "title": "Polygon Amoy Testnet", - "chain": "Polygon", - "icon": "polygon", - "rpc": [ - "https://rpc-amoy.polygon.technology", - "https://polygon-amoy-bor-rpc.publicnode.com", - "wss://polygon-amoy-bor-rpc.publicnode.com" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + name: 'Amoy', + title: 'Polygon Amoy Testnet', + chain: 'Polygon', + icon: 'polygon', + rpc: [ + 'https://rpc-amoy.polygon.technology', + 'https://polygon-amoy-bor-rpc.publicnode.com', + 'wss://polygon-amoy-bor-rpc.publicnode.com', + ], + faucets: ['https://faucet.polygon.technology/'], + nativeCurrency: { + name: 'MATIC', + symbol: 'MATIC', + decimals: 18, }, - "infoURL": "https://polygon.technology/", - "shortName": "polygonamoy", - "chainId": 80002, - "networkId": 80002, - "slip44": 1, - "explorers": [ - { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", - "standard": "EIP3091" - } - ] + infoURL: 'https://polygon.technology/', + shortName: 'polygonamoy', + chainId: 80002, + networkId: 80002, + slip44: 1, + explorers: [ + { + name: 'polygonamoy', + url: 'https://www.oklink.com/amoy', + standard: 'EIP3091', + }, + ], }, { - "name": "Base Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.base.org", - "https://base-goerli.gateway.tenderly.co", - "wss://base-goerli.gateway.tenderly.co", - "https://base-goerli-rpc.publicnode.com", - "wss://base-goerli-rpc.publicnode.com" - ], - "faucets": [ - "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" - ], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Base Goerli Testnet', + chain: 'ETH', + rpc: [ + 'https://goerli.base.org', + 'https://base-goerli.gateway.tenderly.co', + 'wss://base-goerli.gateway.tenderly.co', + 'https://base-goerli-rpc.publicnode.com', + 'wss://base-goerli-rpc.publicnode.com', + ], + faucets: ['https://www.coinbase.com/faucets/base-ethereum-goerli-faucet'], + nativeCurrency: { + name: 'Goerli Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://base.org", - "shortName": "basegor", - "chainId": 84531, - "networkId": 84531, - "slip44": 1, - "icon": "baseTestnet", - "explorers": [ - { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" + infoURL: 'https://base.org', + shortName: 'basegor', + chainId: 84531, + networkId: 84531, + slip44: 1, + icon: 'baseTestnet', + explorers: [ + { + name: 'basescan', + url: 'https://goerli.basescan.org', + standard: 'none', }, { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" + name: 'basescout', + url: 'https://base-goerli.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', }, { - "name": "dexguru", - "url": "https://base-goerli.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" - } - ] + name: 'dexguru', + url: 'https://base-goerli.dex.guru', + icon: 'dexguru', + standard: 'EIP3091', + }, + ], }, { - "name": "Base Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.base.org", - "https://base-sepolia-rpc.publicnode.com", - "wss://base-sepolia-rpc.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Base Sepolia Testnet', + chain: 'ETH', + rpc: [ + 'https://sepolia.base.org', + 'https://base-sepolia-rpc.publicnode.com', + 'wss://base-sepolia-rpc.publicnode.com', + ], + faucets: [], + nativeCurrency: { + name: 'Sepolia Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://base.org", - "shortName": "basesep", - "chainId": 84532, - "networkId": 84532, - "slip44": 1, - "icon": "baseTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://base-sepolia.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] + infoURL: 'https://base.org', + shortName: 'basesep', + chainId: 84532, + networkId: 84532, + slip44: 1, + icon: 'baseTestnet', + explorers: [ + { + name: 'basescout', + url: 'https://base-sepolia.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091', + }, + ], }, { - "name": "IVAR Chain Mainnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://mainnet-rpc.ivarex.com" - ], - "faucets": [ - "https://faucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "Ivar", - "symbol": "IVAR", - "decimals": 18 + name: 'IVAR Chain Mainnet', + chain: 'IVAR', + icon: 'ivar', + rpc: ['https://mainnet-rpc.ivarex.com'], + faucets: ['https://faucet.ivarex.com/'], + nativeCurrency: { + name: 'Ivar', + symbol: 'IVAR', + decimals: 18, }, - "infoURL": "https://ivarex.com", - "shortName": "ivar", - "chainId": 88888, - "networkId": 88888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://ivarscan.com", - "standard": "EIP3091" - } - ] + infoURL: 'https://ivarex.com', + shortName: 'ivar', + chainId: 88888, + networkId: 88888, + explorers: [ + { + name: 'ivarscan', + url: 'https://ivarscan.com', + standard: 'EIP3091', + }, + ], }, { - "name": "Arbitrum Goerli", - "title": "Arbitrum Goerli Rollup Testnet", - "chainId": 421613, - "shortName": "arb-goerli", - "chain": "ETH", - "networkId": 421613, - "slip44": 1, - "nativeCurrency": { - "name": "Arbitrum Goerli Ether", - "symbol": "AGOR", - "decimals": 18 + name: 'Arbitrum Goerli', + title: 'Arbitrum Goerli Rollup Testnet', + chainId: 421613, + shortName: 'arb-goerli', + chain: 'ETH', + networkId: 421613, + slip44: 1, + nativeCurrency: { + name: 'Arbitrum Goerli Ether', + symbol: 'AGOR', + decimals: 18, }, - "rpc": [ - "https://goerli-rollup.arbitrum.io/rpc", - "https://arbitrum-goerli.publicnode.com", - "wss://arbitrum-goerli.publicnode.com" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/", - "explorers": [ - { - "name": "Arbitrum Goerli Arbiscan", - "url": "https://goerli.arbiscan.io", - "standard": "EIP3091" - } + rpc: [ + 'https://goerli-rollup.arbitrum.io/rpc', + 'https://arbitrum-goerli.publicnode.com', + 'wss://arbitrum-goerli.publicnode.com', + ], + faucets: [], + infoURL: 'https://arbitrum.io/', + explorers: [ + { + name: 'Arbitrum Goerli Arbiscan', + url: 'https://goerli.arbiscan.io', + standard: 'EIP3091', + }, ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ + parent: { + type: 'L2', + chain: 'eip155-5', + bridges: [ { - "url": "https://bridge.arbitrum.io/" - } - ] - } + url: 'https://bridge.arbitrum.io/', + }, + ], + }, }, { - "name": "Sepolia", - "title": "Ethereum Testnet Sepolia", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia.org", - "https://rpc2.sepolia.org", - "https://rpc-sepolia.rockx.com", - "https://rpc.sepolia.ethpandaops.io", - "https://sepolia.infura.io/v3/${INFURA_API_KEY}", - "wss://sepolia.infura.io/v3/${INFURA_API_KEY}", - "https://sepolia.gateway.tenderly.co", - "wss://sepolia.gateway.tenderly.co", - "https://ethereum-sepolia-rpc.publicnode.com", - "wss://ethereum-sepolia-rpc.publicnode.com", - "https://sepolia.drpc.org", - "wss://sepolia.drpc.org" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 + name: 'Sepolia', + title: 'Ethereum Testnet Sepolia', + chain: 'ETH', + rpc: [ + 'https://rpc.sepolia.org', + 'https://rpc2.sepolia.org', + 'https://rpc-sepolia.rockx.com', + 'https://rpc.sepolia.ethpandaops.io', + 'https://sepolia.infura.io/v3/${INFURA_API_KEY}', + 'wss://sepolia.infura.io/v3/${INFURA_API_KEY}', + 'https://sepolia.gateway.tenderly.co', + 'wss://sepolia.gateway.tenderly.co', + 'https://ethereum-sepolia-rpc.publicnode.com', + 'wss://ethereum-sepolia-rpc.publicnode.com', + 'https://sepolia.drpc.org', + 'wss://sepolia.drpc.org', + ], + faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'], + nativeCurrency: { + name: 'Sepolia Ether', + symbol: 'ETH', + decimals: 18, }, - "infoURL": "https://sepolia.otterscan.io", - "shortName": "sep", - "chainId": 11155111, - "networkId": 11155111, - "slip44": 1, - "explorers": [ - { - "name": "etherscan-sepolia", - "url": "https://sepolia.etherscan.io", - "standard": "EIP3091" + infoURL: 'https://sepolia.otterscan.io', + shortName: 'sep', + chainId: 11155111, + networkId: 11155111, + slip44: 1, + explorers: [ + { + name: 'etherscan-sepolia', + url: 'https://sepolia.etherscan.io', + standard: 'EIP3091', }, { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.io", - "standard": "EIP3091" - } - ] + name: 'otterscan-sepolia', + url: 'https://sepolia.otterscan.io', + standard: 'EIP3091', + }, + ], }, { - "name": "Palm", - "chain": "Palm", - "icon": "palm", - "rpc": [ - "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}", - "https://palm-mainnet.public.blastapi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 + name: 'Palm', + chain: 'Palm', + icon: 'palm', + rpc: ['https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}', 'https://palm-mainnet.public.blastapi.io'], + faucets: [], + nativeCurrency: { + name: 'PALM', + symbol: 'PALM', + decimals: 18, }, - "infoURL": "https://palm.network", - "shortName": "palm", - "chainId": 11297108109, - "networkId": 11297108109, - "explorers": [ - { - "name": "Chainlens", - "url": "https://palm.chainlens.com", - "standard": "EIP3091" + infoURL: 'https://palm.network', + shortName: 'palm', + chainId: 11297108109, + networkId: 11297108109, + explorers: [ + { + name: 'Chainlens', + url: 'https://palm.chainlens.com', + standard: 'EIP3091', }, { - "name": "Dora", - "url": "https://www.ondora.xyz/network/palm", - "standard": "none" - } - ] - } -]; \ No newline at end of file + name: 'Dora', + url: 'https://www.ondora.xyz/network/palm', + standard: 'none', + }, + ], + }, +]; From 773606ded5f688030940ff674499e9dafe7da047 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:49:48 +0200 Subject: [PATCH 3/3] Version Packages (#1197) Co-authored-by: github-actions[bot] --- .changeset/purple-rocks-punch.md | 7 - demos/cli-cjs/package.json | 2 +- demos/cli-esm/package.json | 2 +- demos/cli/package.json | 2 +- demos/client-webpack/package.json | 2 +- demos/express-proxy/package.json | 4 +- demos/firebase-auth-ext/hosting/package.json | 6 +- demos/firebase-nextjs/hosting/package.json | 4 +- demos/firebase-proxy/functions/package.json | 2 +- demos/moralis-stream/package.json | 4 +- demos/nextjs/package.json | 4 +- demos/parse-server-migration/package.json | 6 +- demos/parse-server/package.json | 4 +- demos/streams-webhook/package.json | 2 +- demos/supabase-auth/package.json | 4 +- demos/webpack/package.json | 2 +- packages/apiGenerator/CHANGELOG.md | 2 + packages/apiGenerator/package.json | 2 +- packages/apiUtils/CHANGELOG.md | 8 + packages/apiUtils/package.json | 8 +- packages/aptosApi/CHANGELOG.md | 9 + packages/aptosApi/package.json | 8 +- packages/auth/CHANGELOG.md | 12 + packages/auth/package.json | 14 +- packages/client/apiUtils/CHANGELOG.md | 7 + packages/client/apiUtils/package.json | 4 +- packages/client/evmApi/CHANGELOG.md | 9 + packages/client/evmApi/package.json | 8 +- packages/client/firebaseApiUtils/CHANGELOG.md | 8 + packages/client/firebaseApiUtils/package.json | 6 +- .../client/firebaseAuthUtils/CHANGELOG.md | 2 + .../client/firebaseAuthUtils/package.json | 2 +- packages/client/firebaseEvmApi/CHANGELOG.md | 10 + packages/client/firebaseEvmApi/package.json | 10 +- packages/client/firebaseEvmAuth/CHANGELOG.md | 7 + packages/client/firebaseEvmAuth/package.json | 4 +- packages/client/firebaseSolApi/CHANGELOG.md | 10 + packages/client/firebaseSolApi/package.json | 10 +- packages/client/firebaseSolAuth/CHANGELOG.md | 7 + packages/client/firebaseSolAuth/package.json | 4 +- packages/client/solApi/CHANGELOG.md | 9 + packages/client/solApi/package.json | 8 +- packages/codegen/CHANGELOG.md | 2 + packages/codegen/package.json | 2 +- packages/common/aptosUtils/CHANGELOG.md | 7 + packages/common/aptosUtils/package.json | 4 +- packages/common/authUtils/CHANGELOG.md | 10 + packages/common/authUtils/package.json | 10 +- packages/common/core/CHANGELOG.md | 2 + packages/common/core/package.json | 2 +- packages/common/evmUtils/CHANGELOG.md | 9 + packages/common/evmUtils/package.json | 4 +- packages/common/solUtils/CHANGELOG.md | 7 + packages/common/solUtils/package.json | 4 +- packages/common/streamsUtils/CHANGELOG.md | 9 + packages/common/streamsUtils/package.json | 8 +- packages/evmApi/CHANGELOG.md | 11 + packages/evmApi/package.json | 8 +- packages/evmUtils/CHANGELOG.md | 7 + packages/evmUtils/package.json | 4 +- packages/moralis/CHANGELOG.md | 20 ++ packages/moralis/package.json | 26 +- packages/next/CHANGELOG.md | 13 + packages/next/package.json | 16 +- packages/parseServer/CHANGELOG.md | 10 + packages/parseServer/package.json | 10 +- packages/react/CHANGELOG.md | 14 + packages/react/package.json | 18 +- packages/solApi/CHANGELOG.md | 9 + packages/solApi/package.json | 8 +- packages/solUtils/CHANGELOG.md | 7 + packages/solUtils/package.json | 4 +- packages/streams/CHANGELOG.md | 10 + packages/streams/package.json | 12 +- packages/testUtils/CHANGELOG.md | 2 + packages/testUtils/package.json | 2 +- yarn.lock | 264 +++++++++--------- 77 files changed, 521 insertions(+), 279 deletions(-) delete mode 100644 .changeset/purple-rocks-punch.md diff --git a/.changeset/purple-rocks-punch.md b/.changeset/purple-rocks-punch.md deleted file mode 100644 index 3e5b86fea6..0000000000 --- a/.changeset/purple-rocks-punch.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@moralisweb3/common-evm-utils': patch -'@moralisweb3/evm-api': patch -'moralis': patch ---- - -Add support for moonbeam chain diff --git a/demos/cli-cjs/package.json b/demos/cli-cjs/package.json index fe2dbf98d4..e380583011 100644 --- a/demos/cli-cjs/package.json +++ b/demos/cli-cjs/package.json @@ -8,7 +8,7 @@ "test:e2e": "yarn run start" }, "dependencies": { - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "dotenv": "^16.0.3" diff --git a/demos/cli-esm/package.json b/demos/cli-esm/package.json index 6e71cc701e..3b1099800a 100644 --- a/demos/cli-esm/package.json +++ b/demos/cli-esm/package.json @@ -9,7 +9,7 @@ "test:e2e": "yarn run start" }, "dependencies": { - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "dotenv": "^16.0.3" diff --git a/demos/cli/package.json b/demos/cli/package.json index f9386f905f..8fb5fa9a89 100644 --- a/demos/cli/package.json +++ b/demos/cli/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "dotenv": "^16.0.1", - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "@moralisweb3/eslint-config": "^1.0.3", diff --git a/demos/client-webpack/package.json b/demos/client-webpack/package.json index 3b22c1cf8f..e97e0be63c 100644 --- a/demos/client-webpack/package.json +++ b/demos/client-webpack/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "dotenv": "^16.0.3", - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "http-server": "^14.1.1", diff --git a/demos/express-proxy/package.json b/demos/express-proxy/package.json index bcc709b8e6..eec6844930 100644 --- a/demos/express-proxy/package.json +++ b/demos/express-proxy/package.json @@ -4,13 +4,13 @@ "main": "dist/index.js", "private": true, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "cors": "^2.8.5", "dotenv": "^16.0.1", "envalid": "7.3.1", "express": "^4.18.2", "express-rate-limit": "^6.7.0", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "redis": "^4.2.0" }, "devDependencies": { diff --git a/demos/firebase-auth-ext/hosting/package.json b/demos/firebase-auth-ext/hosting/package.json index a468aacfc4..e6dcc88239 100644 --- a/demos/firebase-auth-ext/hosting/package.json +++ b/demos/firebase-auth-ext/hosting/package.json @@ -4,9 +4,9 @@ "private": true, "dependencies": { "@ethersproject/providers": "^5.7.2", - "@moralisweb3/client-firebase-auth-utils": "^2.26.0", - "@moralisweb3/client-firebase-evm-auth": "^2.26.0", - "@moralisweb3/client-firebase-sol-auth": "^2.26.0", + "@moralisweb3/client-firebase-auth-utils": "^2.26.1", + "@moralisweb3/client-firebase-evm-auth": "^2.26.1", + "@moralisweb3/client-firebase-sol-auth": "^2.26.1", "@walletconnect/web3-provider": "^1.8.0", "assert": "^2.0.0", "buffer": "^6.0.3", diff --git a/demos/firebase-nextjs/hosting/package.json b/demos/firebase-nextjs/hosting/package.json index 97ab0b5603..be6730e8c7 100644 --- a/demos/firebase-nextjs/hosting/package.json +++ b/demos/firebase-nextjs/hosting/package.json @@ -10,8 +10,8 @@ "lint": "next lint" }, "dependencies": { - "@moralisweb3/client-firebase-auth-utils": "^2.26.0", - "@moralisweb3/client-firebase-evm-auth": "^2.26.0", + "@moralisweb3/client-firebase-auth-utils": "^2.26.1", + "@moralisweb3/client-firebase-evm-auth": "^2.26.1", "@next/font": "13.1.2", "@types/node": "^18.11.18", "@types/react": "18.0.26", diff --git a/demos/firebase-proxy/functions/package.json b/demos/firebase-proxy/functions/package.json index 97b153c788..1446c7fe12 100644 --- a/demos/firebase-proxy/functions/package.json +++ b/demos/firebase-proxy/functions/package.json @@ -19,7 +19,7 @@ "firebase-admin": "^10.0.2", "firebase-functions": "^3.18.0", "firebase-functions-rate-limiter": "^3.9.1", - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "@firebase/app-types": "^0.7.0", diff --git a/demos/moralis-stream/package.json b/demos/moralis-stream/package.json index e58dd2c2b1..000107d579 100644 --- a/demos/moralis-stream/package.json +++ b/demos/moralis-stream/package.json @@ -4,12 +4,12 @@ "main": "dist/index.js", "private": true, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "cors": "^2.8.5", "dotenv": "^16.0.1", "envalid": "7.3.1", "express": "^4.18.1", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "ngrok": "^4.3.3", "redis": "^4.2.0", "web3-utils": "^1.7.5" diff --git a/demos/nextjs/package.json b/demos/nextjs/package.json index e1f12c80a3..39fae15bce 100644 --- a/demos/nextjs/package.json +++ b/demos/nextjs/package.json @@ -9,10 +9,10 @@ "lint": "eslint --ext .js,.ts ." }, "dependencies": { - "@moralisweb3/next": "^2.26.0", + "@moralisweb3/next": "^2.26.1", "axios": "^1.2.1", "ethers": "^5.7.2", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "next": "12.2.5", "next-auth": "4.20.1", "react": "^18.2.0", diff --git a/demos/parse-server-migration/package.json b/demos/parse-server-migration/package.json index 92a80ae5c4..6739cf032f 100644 --- a/demos/parse-server-migration/package.json +++ b/demos/parse-server-migration/package.json @@ -5,8 +5,8 @@ "private": true, "dependencies": { "@codemirror/language": "^0.20.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/parse-server": "2.26.0", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/parse-server": "2.26.1", "cors": "^2.8.5", "dotenv": "^16.0.1", "envalid": "7.3.1", @@ -14,7 +14,7 @@ "express-rate-limit": "^6.5.1", "graphql": "^16.6.0", "graphql-ws": "^5.10.1", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "ngrok": "^4.3.3", "parse-server": "^5.4.0" }, diff --git a/demos/parse-server/package.json b/demos/parse-server/package.json index 7e63ec6e66..3107709d3e 100644 --- a/demos/parse-server/package.json +++ b/demos/parse-server/package.json @@ -5,7 +5,7 @@ "private": true, "dependencies": { "@codemirror/language": "^0.20.0", - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "cors": "^2.8.5", "dotenv": "^16.0.1", "envalid": "7.3.1", @@ -13,7 +13,7 @@ "express-rate-limit": "^6.5.1", "graphql": "^16.6.0", "graphql-ws": "^5.10.1", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "parse-dashboard": "^4.1.4", "parse-server": "^5.4.0" }, diff --git a/demos/streams-webhook/package.json b/demos/streams-webhook/package.json index c32b3111bb..209ab1ffab 100644 --- a/demos/streams-webhook/package.json +++ b/demos/streams-webhook/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "dotenv": "^16.0.1", - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "ngrok": "^4.3.3" diff --git a/demos/supabase-auth/package.json b/demos/supabase-auth/package.json index 5aaa23ebb1..41d03f75af 100644 --- a/demos/supabase-auth/package.json +++ b/demos/supabase-auth/package.json @@ -4,14 +4,14 @@ "main": "dist/index.js", "private": true, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "@supabase/supabase-js": "^1.35.4", "cors": "^2.8.5", "dotenv": "^16.0.1", "envalid": "7.3.1", "express": "^4.18.1", "jsonwebtoken": "^9.0.0", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "uuid": "^9.0.0" }, "devDependencies": { diff --git a/demos/webpack/package.json b/demos/webpack/package.json index ed35428d8e..b05724ef06 100644 --- a/demos/webpack/package.json +++ b/demos/webpack/package.json @@ -12,7 +12,7 @@ "test:cypress": "cypress run --browser chrome --headless" }, "dependencies": { - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "devDependencies": { "cypress": "^12.8.0", diff --git a/packages/apiGenerator/CHANGELOG.md b/packages/apiGenerator/CHANGELOG.md index 8404935dac..76c3b42995 100644 --- a/packages/apiGenerator/CHANGELOG.md +++ b/packages/apiGenerator/CHANGELOG.md @@ -1,5 +1,7 @@ # @moralisweb3/api-generator +## 2.26.1 + ## 2.26.0 ### Minor Changes diff --git a/packages/apiGenerator/package.json b/packages/apiGenerator/package.json index 14b3b03854..2289f7b298 100644 --- a/packages/apiGenerator/package.json +++ b/packages/apiGenerator/package.json @@ -18,5 +18,5 @@ "ts-node": "^10.9.1", "typescript": "^4.9.4" }, - "version": "2.26.0" + "version": "2.26.1" } diff --git a/packages/apiUtils/CHANGELOG.md b/packages/apiUtils/CHANGELOG.md index f1d10b2631..b7f1b3fe04 100644 --- a/packages/apiUtils/CHANGELOG.md +++ b/packages/apiUtils/CHANGELOG.md @@ -1,5 +1,13 @@ # @moralisweb3/api-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/apiUtils/package.json b/packages/apiUtils/package.json index 82c25bef18..cf08c918a8 100644 --- a/packages/apiUtils/package.json +++ b/packages/apiUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/api-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -38,7 +38,7 @@ "dev": "tsc --watch" }, "devDependencies": { - "@moralisweb3/common-evm-utils": "^2.26.0", + "@moralisweb3/common-evm-utils": "^2.26.1", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", "jest": "^29.5.0", @@ -49,8 +49,8 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", "axios": "^1.2.1" } } diff --git a/packages/aptosApi/CHANGELOG.md b/packages/aptosApi/CHANGELOG.md index 862c4ca588..778fe85ef7 100644 --- a/packages/aptosApi/CHANGELOG.md +++ b/packages/aptosApi/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/aptos-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-aptos-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/aptosApi/package.json b/packages/aptosApi/package.json index d026d07f91..67805ceae1 100644 --- a/packages/aptosApi/package.json +++ b/packages/aptosApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/aptos-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -43,9 +43,9 @@ "typescript": "^4.9.3" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-aptos-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0" + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-aptos-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1" }, "typedoc": { "entryPoint": "./src/index.ts" diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 802b6d27ea..1589d1e7d6 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -1,5 +1,17 @@ # @moralisweb3/auth +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-aptos-utils@2.26.1 + - @moralisweb3/common-auth-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/auth/package.json b/packages/auth/package.json index bc87afef6a..376f22b054 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/auth", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -49,11 +49,11 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-aptos-utils": "^2.26.0", - "@moralisweb3/common-auth-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0" + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-aptos-utils": "^2.26.1", + "@moralisweb3/common-auth-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1" } } diff --git a/packages/client/apiUtils/CHANGELOG.md b/packages/client/apiUtils/CHANGELOG.md index 9eb2c1e056..e7c87cfb41 100644 --- a/packages/client/apiUtils/CHANGELOG.md +++ b/packages/client/apiUtils/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/client-api-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/apiUtils/package.json b/packages/client/apiUtils/package.json index 420866aec4..08c1c3aa26 100644 --- a/packages/client/apiUtils/package.json +++ b/packages/client/apiUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-api-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -22,6 +22,6 @@ "dev": "tsc --watch" }, "dependencies": { - "@moralisweb3/common-core": "^2.26.0" + "@moralisweb3/common-core": "^2.26.1" } } diff --git a/packages/client/evmApi/CHANGELOG.md b/packages/client/evmApi/CHANGELOG.md index f8dbe2ca71..ddb226b5c5 100644 --- a/packages/client/evmApi/CHANGELOG.md +++ b/packages/client/evmApi/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/client-evm-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/client-api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/evmApi/package.json b/packages/client/evmApi/package.json index 957ac61a0b..4704c2d76d 100644 --- a/packages/client/evmApi/package.json +++ b/packages/client/evmApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-evm-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -23,8 +23,8 @@ "gen:client": "node ../apiUtils/scripts/generate-client.js ./src/generated/ClientEvmApi.ts @moralisweb3/common-evm-utils" }, "dependencies": { - "@moralisweb3/client-api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0" + "@moralisweb3/client-api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1" } } diff --git a/packages/client/firebaseApiUtils/CHANGELOG.md b/packages/client/firebaseApiUtils/CHANGELOG.md index 1e67cf2376..7b8f523b2d 100644 --- a/packages/client/firebaseApiUtils/CHANGELOG.md +++ b/packages/client/firebaseApiUtils/CHANGELOG.md @@ -1,5 +1,13 @@ # @moralisweb3/client-firebase-api-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/client-api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/firebaseApiUtils/package.json b/packages/client/firebaseApiUtils/package.json index 1b0fd53682..7ace581755 100644 --- a/packages/client/firebaseApiUtils/package.json +++ b/packages/client/firebaseApiUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-api-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "private": true, "main": "./lib/index.js", @@ -17,8 +17,8 @@ "dev": "tsc --watch" }, "dependencies": { - "@moralisweb3/client-api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/client-api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", "firebase": "^9.15.0" } } diff --git a/packages/client/firebaseAuthUtils/CHANGELOG.md b/packages/client/firebaseAuthUtils/CHANGELOG.md index c93a0639ea..f76d1918d9 100644 --- a/packages/client/firebaseAuthUtils/CHANGELOG.md +++ b/packages/client/firebaseAuthUtils/CHANGELOG.md @@ -1,5 +1,7 @@ # @moralisweb3/client-firebase-auth-utils +## 2.26.1 + ## 2.26.0 ## 2.25.4 diff --git a/packages/client/firebaseAuthUtils/package.json b/packages/client/firebaseAuthUtils/package.json index f964766624..309b582bfc 100644 --- a/packages/client/firebaseAuthUtils/package.json +++ b/packages/client/firebaseAuthUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-auth-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/packages/client/firebaseEvmApi/CHANGELOG.md b/packages/client/firebaseEvmApi/CHANGELOG.md index 0cc52726fb..2df8fe6c02 100644 --- a/packages/client/firebaseEvmApi/CHANGELOG.md +++ b/packages/client/firebaseEvmApi/CHANGELOG.md @@ -1,5 +1,15 @@ # @moralisweb3/client-firebase-evm-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/client-evm-api@2.26.1 + - @moralisweb3/client-firebase-api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/firebaseEvmApi/package.json b/packages/client/firebaseEvmApi/package.json index fc758c4b33..e7ab7db1b7 100644 --- a/packages/client/firebaseEvmApi/package.json +++ b/packages/client/firebaseEvmApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-evm-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "private": true, "main": "./lib/index.js", @@ -17,10 +17,10 @@ "dev": "tsc --watch" }, "dependencies": { - "@moralisweb3/client-evm-api": "^2.26.0", - "@moralisweb3/client-firebase-api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", + "@moralisweb3/client-evm-api": "^2.26.1", + "@moralisweb3/client-firebase-api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", "firebase": "^9.15.0" } } diff --git a/packages/client/firebaseEvmAuth/CHANGELOG.md b/packages/client/firebaseEvmAuth/CHANGELOG.md index 6048e49eaf..b2716bd46f 100644 --- a/packages/client/firebaseEvmAuth/CHANGELOG.md +++ b/packages/client/firebaseEvmAuth/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/client-firebase-evm-auth +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/client-firebase-auth-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/firebaseEvmAuth/package.json b/packages/client/firebaseEvmAuth/package.json index fdffc67878..c4fa6aeb4d 100644 --- a/packages/client/firebaseEvmAuth/package.json +++ b/packages/client/firebaseEvmAuth/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-evm-auth", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -18,7 +18,7 @@ "dependencies": { "@ethersproject/providers": "^5.7.2", "@metamask/detect-provider": "^2.0.0", - "@moralisweb3/client-firebase-auth-utils": "^2.26.0", + "@moralisweb3/client-firebase-auth-utils": "^2.26.1", "firebase": "^9.15.0" } } diff --git a/packages/client/firebaseSolApi/CHANGELOG.md b/packages/client/firebaseSolApi/CHANGELOG.md index c17b6ae1b4..780603e2b7 100644 --- a/packages/client/firebaseSolApi/CHANGELOG.md +++ b/packages/client/firebaseSolApi/CHANGELOG.md @@ -1,5 +1,15 @@ # @moralisweb3/client-firebase-sol-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/client-firebase-api-utils@2.26.1 + - @moralisweb3/client-sol-api@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/firebaseSolApi/package.json b/packages/client/firebaseSolApi/package.json index 0b0186e85c..21e1c80995 100644 --- a/packages/client/firebaseSolApi/package.json +++ b/packages/client/firebaseSolApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-sol-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "private": true, "main": "./lib/index.js", @@ -17,10 +17,10 @@ "dev": "tsc --watch" }, "dependencies": { - "@moralisweb3/client-firebase-api-utils": "^2.26.0", - "@moralisweb3/client-sol-api": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0", + "@moralisweb3/client-firebase-api-utils": "^2.26.1", + "@moralisweb3/client-sol-api": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1", "firebase": "^9.15.0" } } diff --git a/packages/client/firebaseSolAuth/CHANGELOG.md b/packages/client/firebaseSolAuth/CHANGELOG.md index 9b36c5dd11..ebf2cae9ea 100644 --- a/packages/client/firebaseSolAuth/CHANGELOG.md +++ b/packages/client/firebaseSolAuth/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/client-firebase-sol-auth +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/client-firebase-auth-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/firebaseSolAuth/package.json b/packages/client/firebaseSolAuth/package.json index 2c94308085..999e45cf9d 100644 --- a/packages/client/firebaseSolAuth/package.json +++ b/packages/client/firebaseSolAuth/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-firebase-sol-auth", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -16,7 +16,7 @@ "dev": "tsc --watch" }, "dependencies": { - "@moralisweb3/client-firebase-auth-utils": "^2.26.0", + "@moralisweb3/client-firebase-auth-utils": "^2.26.1", "bs58": "^5.0.0", "firebase": "^9.15.0" } diff --git a/packages/client/solApi/CHANGELOG.md b/packages/client/solApi/CHANGELOG.md index 9b41dc66ba..d8b18fd833 100644 --- a/packages/client/solApi/CHANGELOG.md +++ b/packages/client/solApi/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/client-sol-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/client-api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/client/solApi/package.json b/packages/client/solApi/package.json index bcb2109b49..6f6a56654f 100644 --- a/packages/client/solApi/package.json +++ b/packages/client/solApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/client-sol-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -23,8 +23,8 @@ "gen:client": "node ../apiUtils/scripts/generate-client.js ./src/generated/ClientSolApi.ts @moralisweb3/common-sol-utils" }, "dependencies": { - "@moralisweb3/client-api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0" + "@moralisweb3/client-api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1" } } diff --git a/packages/codegen/CHANGELOG.md b/packages/codegen/CHANGELOG.md index 0c5a5ebba7..9ec66b5fdb 100644 --- a/packages/codegen/CHANGELOG.md +++ b/packages/codegen/CHANGELOG.md @@ -1,5 +1,7 @@ # @moralisweb3/codegen +## 2.26.1 + ## 2.26.0 ## 2.25.4 diff --git a/packages/codegen/package.json b/packages/codegen/package.json index d6eac2614e..a8b846496a 100644 --- a/packages/codegen/package.json +++ b/packages/codegen/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/codegen", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "private": true, "sideEffects": false, diff --git a/packages/common/aptosUtils/CHANGELOG.md b/packages/common/aptosUtils/CHANGELOG.md index 728a13fb69..2987cd3362 100644 --- a/packages/common/aptosUtils/CHANGELOG.md +++ b/packages/common/aptosUtils/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/aptos-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/common/aptosUtils/package.json b/packages/common/aptosUtils/package.json index 9faae2b566..1d8730b526 100644 --- a/packages/common/aptosUtils/package.json +++ b/packages/common/aptosUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-aptos-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -53,7 +53,7 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "@noble/hashes": "^1.2.0" } } diff --git a/packages/common/authUtils/CHANGELOG.md b/packages/common/authUtils/CHANGELOG.md index 362134fd57..70b0a0f7c3 100644 --- a/packages/common/authUtils/CHANGELOG.md +++ b/packages/common/authUtils/CHANGELOG.md @@ -1,5 +1,15 @@ # @moralisweb3/common-auth-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/common-aptos-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/common/authUtils/package.json b/packages/common/authUtils/package.json index 146e3eaecd..eee3b254e5 100644 --- a/packages/common/authUtils/package.json +++ b/packages/common/authUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-auth-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -55,10 +55,10 @@ }, "dependencies": { "@ethersproject/abi": "^5.7.0", - "@moralisweb3/common-aptos-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0", + "@moralisweb3/common-aptos-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1", "@moralisweb3/streams-typings": "^1.0.6" } } diff --git a/packages/common/core/CHANGELOG.md b/packages/common/core/CHANGELOG.md index 51c120f299..e6f8735fab 100644 --- a/packages/common/core/CHANGELOG.md +++ b/packages/common/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @moralisweb3/core +## 2.26.1 + ## 2.26.0 ## 2.25.4 diff --git a/packages/common/core/package.json b/packages/common/core/package.json index f972e4b91d..4a270840db 100644 --- a/packages/common/core/package.json +++ b/packages/common/core/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-core", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", diff --git a/packages/common/evmUtils/CHANGELOG.md b/packages/common/evmUtils/CHANGELOG.md index 7f96ff718c..0c31131ebc 100644 --- a/packages/common/evmUtils/CHANGELOG.md +++ b/packages/common/evmUtils/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/evm-utils +## 2.26.1 + +### Patch Changes + +- [#1196](https://github.com/MoralisWeb3/Moralis-JS-SDK/pull/1196) [`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3) Thanks [@Kayconfig](https://github.com/Kayconfig)! - Add support for moonbeam chain + +- Updated dependencies []: + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Minor Changes diff --git a/packages/common/evmUtils/package.json b/packages/common/evmUtils/package.json index ceb8961655..d37a51f2c4 100644 --- a/packages/common/evmUtils/package.json +++ b/packages/common/evmUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-evm-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -57,6 +57,6 @@ "@ethersproject/address": "^5.7.0", "@ethersproject/bytes": "^5.7.0", "@ethersproject/transactions": "^5.7.0", - "@moralisweb3/common-core": "^2.26.0" + "@moralisweb3/common-core": "^2.26.1" } } diff --git a/packages/common/solUtils/CHANGELOG.md b/packages/common/solUtils/CHANGELOG.md index 6af0ce895d..c5d20afe28 100644 --- a/packages/common/solUtils/CHANGELOG.md +++ b/packages/common/solUtils/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/sol-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/common/solUtils/package.json b/packages/common/solUtils/package.json index 9755a863c4..fd062fa24c 100644 --- a/packages/common/solUtils/package.json +++ b/packages/common/solUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-sol-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -54,7 +54,7 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/common-core": "^2.26.0", + "@moralisweb3/common-core": "^2.26.1", "bn.js": "^5.2.1", "bs58": "^5.0.0", "buffer": "^6.0.3" diff --git a/packages/common/streamsUtils/CHANGELOG.md b/packages/common/streamsUtils/CHANGELOG.md index 77822b340e..2edaf3a5b9 100644 --- a/packages/common/streamsUtils/CHANGELOG.md +++ b/packages/common/streamsUtils/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/common-streams-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/common-aptos-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/common/streamsUtils/package.json b/packages/common/streamsUtils/package.json index 2ce38919b6..598e9f96be 100644 --- a/packages/common/streamsUtils/package.json +++ b/packages/common/streamsUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/common-streams-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -56,9 +56,9 @@ }, "dependencies": { "@ethersproject/abi": "^5.7.0", - "@moralisweb3/common-aptos-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", + "@moralisweb3/common-aptos-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", "@moralisweb3/streams-typings": "^1.0.7" } } diff --git a/packages/evmApi/CHANGELOG.md b/packages/evmApi/CHANGELOG.md index 7d58518bb7..85b63e232d 100644 --- a/packages/evmApi/CHANGELOG.md +++ b/packages/evmApi/CHANGELOG.md @@ -1,5 +1,16 @@ # @moralisweb3/evm-api +## 2.26.1 + +### Patch Changes + +- [#1196](https://github.com/MoralisWeb3/Moralis-JS-SDK/pull/1196) [`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3) Thanks [@Kayconfig](https://github.com/Kayconfig)! - Add support for moonbeam chain + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + ## 2.26.0 ### Minor Changes diff --git a/packages/evmApi/package.json b/packages/evmApi/package.json index a10f111e36..d753a0c4dd 100644 --- a/packages/evmApi/package.json +++ b/packages/evmApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/evm-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -53,8 +53,8 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0" + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1" } } diff --git a/packages/evmUtils/CHANGELOG.md b/packages/evmUtils/CHANGELOG.md index 126f7796d0..f9375198e8 100644 --- a/packages/evmUtils/CHANGELOG.md +++ b/packages/evmUtils/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/evm-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/evmUtils/package.json b/packages/evmUtils/package.json index e609f39349..3be3b8bb52 100644 --- a/packages/evmUtils/package.json +++ b/packages/evmUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/evm-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -34,7 +34,7 @@ "build": "rollup -c" }, "dependencies": { - "@moralisweb3/common-evm-utils": "^2.26.0" + "@moralisweb3/common-evm-utils": "^2.26.1" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", diff --git a/packages/moralis/CHANGELOG.md b/packages/moralis/CHANGELOG.md index 65448b1994..0a699ef4da 100644 --- a/packages/moralis/CHANGELOG.md +++ b/packages/moralis/CHANGELOG.md @@ -1,5 +1,25 @@ # moralis +## 2.26.1 + +### Patch Changes + +- [#1196](https://github.com/MoralisWeb3/Moralis-JS-SDK/pull/1196) [`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3) Thanks [@Kayconfig](https://github.com/Kayconfig)! - Add support for moonbeam chain + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/evm-api@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/aptos-api@2.26.1 + - @moralisweb3/auth@2.26.1 + - @moralisweb3/common-aptos-utils@2.26.1 + - @moralisweb3/common-auth-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + - @moralisweb3/common-streams-utils@2.26.1 + - @moralisweb3/sol-api@2.26.1 + - @moralisweb3/streams@2.26.1 + ## 2.26.0 ### Minor Changes diff --git a/packages/moralis/package.json b/packages/moralis/package.json index cd198d61bf..8f3b6a3f54 100644 --- a/packages/moralis/package.json +++ b/packages/moralis/package.json @@ -1,7 +1,7 @@ { "name": "moralis", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "description": "Moralis SDK for JavaScript and TypeScript", "keywords": [ @@ -169,18 +169,18 @@ } }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/aptos-api": "^2.26.0", - "@moralisweb3/auth": "^2.26.0", - "@moralisweb3/common-aptos-utils": "^2.26.0", - "@moralisweb3/common-auth-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0", - "@moralisweb3/common-streams-utils": "^2.26.0", - "@moralisweb3/evm-api": "^2.26.0", - "@moralisweb3/sol-api": "^2.26.0", - "@moralisweb3/streams": "^2.26.0", + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/aptos-api": "^2.26.1", + "@moralisweb3/auth": "^2.26.1", + "@moralisweb3/common-aptos-utils": "^2.26.1", + "@moralisweb3/common-auth-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1", + "@moralisweb3/common-streams-utils": "^2.26.1", + "@moralisweb3/evm-api": "^2.26.1", + "@moralisweb3/sol-api": "^2.26.1", + "@moralisweb3/streams": "^2.26.1", "@moralisweb3/streams-typings": "^1.0.7" }, "devDependencies": { diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index 8053448d40..1cf093df48 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,18 @@ # @moralisweb3/next +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/evm-api@2.26.1 + - moralis@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/auth@2.26.1 + - @moralisweb3/common-auth-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/sol-api@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 604d7035be..3ce58c9bc2 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -2,7 +2,7 @@ "name": "@moralisweb3/next", "description": "Moralis Evm and Solana Hooks for NextJS", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -30,14 +30,14 @@ "react-dom": "^18.2.0" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/auth": "^2.26.0", - "@moralisweb3/common-auth-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/evm-api": "^2.26.0", - "@moralisweb3/sol-api": "^2.26.0", + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/auth": "^2.26.1", + "@moralisweb3/common-auth-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/evm-api": "^2.26.1", + "@moralisweb3/sol-api": "^2.26.1", "axios": "^1.2.1", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "swr": "^1.3.0" }, "peerDependencies": { diff --git a/packages/parseServer/CHANGELOG.md b/packages/parseServer/CHANGELOG.md index 55a0703039..cf1fc521bb 100644 --- a/packages/parseServer/CHANGELOG.md +++ b/packages/parseServer/CHANGELOG.md @@ -1,5 +1,15 @@ # @moralisweb3/parse-server +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - moralis@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/streams@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/parseServer/package.json b/packages/parseServer/package.json index c51e778245..0c1583acd8 100644 --- a/packages/parseServer/package.json +++ b/packages/parseServer/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/parse-server", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -26,13 +26,13 @@ "@types/parse": "^2.18.18" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/streams": "^2.26.0", + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/streams": "^2.26.1", "@moralisweb3/streams-typings": "^1.0.6", "body-parser": "^1.20.0", "express": "^4.18.1", - "moralis": "^2.26.0", + "moralis": "^2.26.1", "parse": "3.4.4" } } diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 7692c8a534..4bd4a2c65a 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,19 @@ # @moralisweb3/react +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/evm-api@2.26.1 + - moralis@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/auth@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + - @moralisweb3/sol-api@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index ace02e8a43..4e4e62b773 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -2,7 +2,7 @@ "name": "@moralisweb3/react", "description": "Moralis Evm and Solana Hooks for React", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -40,15 +40,15 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/auth": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0", - "@moralisweb3/evm-api": "^2.26.0", - "@moralisweb3/sol-api": "^2.26.0", + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/auth": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1", + "@moralisweb3/evm-api": "^2.26.1", + "@moralisweb3/sol-api": "^2.26.1", "@tanstack/react-query": "4.24.10", - "moralis": "^2.26.0" + "moralis": "^2.26.1" }, "peerDependencies": { "react": ">=17.0.0", diff --git a/packages/solApi/CHANGELOG.md b/packages/solApi/CHANGELOG.md index cec0bd3459..923ad3c792 100644 --- a/packages/solApi/CHANGELOG.md +++ b/packages/solApi/CHANGELOG.md @@ -1,5 +1,14 @@ # @moralisweb3/sol-api +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/solApi/package.json b/packages/solApi/package.json index ba9decc17f..c903476419 100644 --- a/packages/solApi/package.json +++ b/packages/solApi/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/sol-api", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -53,8 +53,8 @@ "rollup-plugin-typescript2": "^0.34.1" }, "dependencies": { - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-sol-utils": "^2.26.0" + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-sol-utils": "^2.26.1" } } diff --git a/packages/solUtils/CHANGELOG.md b/packages/solUtils/CHANGELOG.md index d529dda6f8..cfdcf77483 100644 --- a/packages/solUtils/CHANGELOG.md +++ b/packages/solUtils/CHANGELOG.md @@ -1,5 +1,12 @@ # @moralisweb3/sol-utils +## 2.26.1 + +### Patch Changes + +- Updated dependencies []: + - @moralisweb3/common-sol-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/solUtils/package.json b/packages/solUtils/package.json index c6dbc57333..7b1b29d5a5 100644 --- a/packages/solUtils/package.json +++ b/packages/solUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/sol-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -34,7 +34,7 @@ "build": "rollup -c" }, "dependencies": { - "@moralisweb3/common-sol-utils": "^2.26.0" + "@moralisweb3/common-sol-utils": "^2.26.1" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", diff --git a/packages/streams/CHANGELOG.md b/packages/streams/CHANGELOG.md index 3ec0fe2fe3..48f17f3cde 100644 --- a/packages/streams/CHANGELOG.md +++ b/packages/streams/CHANGELOG.md @@ -1,5 +1,15 @@ # @moralisweb3/streams +## 2.26.1 + +### Patch Changes + +- Updated dependencies [[`50d341a8ed`](https://github.com/MoralisWeb3/Moralis-JS-SDK/commit/50d341a8edbf7a31fc9c40ba06700652765b9ca3)]: + - @moralisweb3/common-evm-utils@2.26.1 + - @moralisweb3/api-utils@2.26.1 + - @moralisweb3/common-core@2.26.1 + - @moralisweb3/common-streams-utils@2.26.1 + ## 2.26.0 ### Patch Changes diff --git a/packages/streams/package.json b/packages/streams/package.json index 61a9d4d666..951d0e4466 100644 --- a/packages/streams/package.json +++ b/packages/streams/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/streams", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "type": "module", "main": "./lib/esm/index.js", @@ -41,7 +41,7 @@ "dev": "tsc --watch" }, "devDependencies": { - "@moralisweb3/test-utils": "2.26.0", + "@moralisweb3/test-utils": "2.26.1", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", "@types/ethereumjs-util": "5.2.0", @@ -58,10 +58,10 @@ "@ethersproject/bignumber": "^5.7.0", "@ethersproject/sha2": "^5.7.0", "@ethersproject/strings": "^5.7.0", - "@moralisweb3/api-utils": "^2.26.0", - "@moralisweb3/common-core": "^2.26.0", - "@moralisweb3/common-evm-utils": "^2.26.0", - "@moralisweb3/common-streams-utils": "^2.26.0", + "@moralisweb3/api-utils": "^2.26.1", + "@moralisweb3/common-core": "^2.26.1", + "@moralisweb3/common-evm-utils": "^2.26.1", + "@moralisweb3/common-streams-utils": "^2.26.1", "@moralisweb3/streams-typings": "^1.0.7", "ethereumjs-util": "^7.1.0", "web3-eth-abi": "^1.8.0" diff --git a/packages/testUtils/CHANGELOG.md b/packages/testUtils/CHANGELOG.md index 544b4ca993..1cad6bfd30 100644 --- a/packages/testUtils/CHANGELOG.md +++ b/packages/testUtils/CHANGELOG.md @@ -1,5 +1,7 @@ # @moralisweb3/test-utils +## 2.26.1 + ## 2.26.0 ## 2.25.4 diff --git a/packages/testUtils/package.json b/packages/testUtils/package.json index bd711bd830..141ac8ab50 100644 --- a/packages/testUtils/package.json +++ b/packages/testUtils/package.json @@ -1,7 +1,7 @@ { "name": "@moralisweb3/test-utils", "author": "Moralis", - "version": "2.26.0", + "version": "2.26.1", "license": "MIT", "private": true, "main": "./lib/index.js", diff --git a/yarn.lock b/yarn.lock index 7a29e9e1ba..7883f8a3da 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7120,12 +7120,12 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/api-utils@^2.26.0, @moralisweb3/api-utils@workspace:packages/apiUtils": +"@moralisweb3/api-utils@^2.26.1, @moralisweb3/api-utils@workspace:packages/apiUtils": version: 0.0.0-use.local resolution: "@moralisweb3/api-utils@workspace:packages/apiUtils" dependencies: - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 axios: ^1.2.1 @@ -7138,13 +7138,13 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/aptos-api@^2.26.0, @moralisweb3/aptos-api@workspace:packages/aptosApi": +"@moralisweb3/aptos-api@^2.26.1, @moralisweb3/aptos-api@workspace:packages/aptosApi": version: 0.0.0-use.local resolution: "@moralisweb3/aptos-api@workspace:packages/aptosApi" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-aptos-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-aptos-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 jest: ^29.5.0 @@ -7158,16 +7158,16 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/auth@^2.26.0, @moralisweb3/auth@workspace:packages/auth": +"@moralisweb3/auth@^2.26.1, @moralisweb3/auth@workspace:packages/auth": version: 0.0.0-use.local resolution: "@moralisweb3/auth@workspace:packages/auth" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-aptos-utils": ^2.26.0 - "@moralisweb3/common-auth-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-aptos-utils": ^2.26.1 + "@moralisweb3/common-auth-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 jest: ^29.5.0 @@ -7180,35 +7180,35 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/client-api-utils@^2.26.0, @moralisweb3/client-api-utils@workspace:packages/client/apiUtils": +"@moralisweb3/client-api-utils@^2.26.1, @moralisweb3/client-api-utils@workspace:packages/client/apiUtils": version: 0.0.0-use.local resolution: "@moralisweb3/client-api-utils@workspace:packages/client/apiUtils" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 languageName: unknown linkType: soft -"@moralisweb3/client-evm-api@^2.26.0, @moralisweb3/client-evm-api@workspace:packages/client/evmApi": +"@moralisweb3/client-evm-api@^2.26.1, @moralisweb3/client-evm-api@workspace:packages/client/evmApi": version: 0.0.0-use.local resolution: "@moralisweb3/client-evm-api@workspace:packages/client/evmApi" dependencies: - "@moralisweb3/client-api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/client-api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 languageName: unknown linkType: soft -"@moralisweb3/client-firebase-api-utils@^2.26.0, @moralisweb3/client-firebase-api-utils@workspace:packages/client/firebaseApiUtils": +"@moralisweb3/client-firebase-api-utils@^2.26.1, @moralisweb3/client-firebase-api-utils@workspace:packages/client/firebaseApiUtils": version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-api-utils@workspace:packages/client/firebaseApiUtils" dependencies: - "@moralisweb3/client-api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/client-api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 firebase: ^9.15.0 languageName: unknown linkType: soft -"@moralisweb3/client-firebase-auth-utils@^2.26.0, @moralisweb3/client-firebase-auth-utils@workspace:packages/client/firebaseAuthUtils": +"@moralisweb3/client-firebase-auth-utils@^2.26.1, @moralisweb3/client-firebase-auth-utils@workspace:packages/client/firebaseAuthUtils": version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-auth-utils@workspace:packages/client/firebaseAuthUtils" dependencies: @@ -7220,21 +7220,21 @@ __metadata: version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-evm-api@workspace:packages/client/firebaseEvmApi" dependencies: - "@moralisweb3/client-evm-api": ^2.26.0 - "@moralisweb3/client-firebase-api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/client-evm-api": ^2.26.1 + "@moralisweb3/client-firebase-api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 firebase: ^9.15.0 languageName: unknown linkType: soft -"@moralisweb3/client-firebase-evm-auth@^2.26.0, @moralisweb3/client-firebase-evm-auth@workspace:packages/client/firebaseEvmAuth": +"@moralisweb3/client-firebase-evm-auth@^2.26.1, @moralisweb3/client-firebase-evm-auth@workspace:packages/client/firebaseEvmAuth": version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-evm-auth@workspace:packages/client/firebaseEvmAuth" dependencies: "@ethersproject/providers": ^5.7.2 "@metamask/detect-provider": ^2.0.0 - "@moralisweb3/client-firebase-auth-utils": ^2.26.0 + "@moralisweb3/client-firebase-auth-utils": ^2.26.1 firebase: ^9.15.0 languageName: unknown linkType: soft @@ -7243,31 +7243,31 @@ __metadata: version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-sol-api@workspace:packages/client/firebaseSolApi" dependencies: - "@moralisweb3/client-firebase-api-utils": ^2.26.0 - "@moralisweb3/client-sol-api": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/client-firebase-api-utils": ^2.26.1 + "@moralisweb3/client-sol-api": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 firebase: ^9.15.0 languageName: unknown linkType: soft -"@moralisweb3/client-firebase-sol-auth@^2.26.0, @moralisweb3/client-firebase-sol-auth@workspace:packages/client/firebaseSolAuth": +"@moralisweb3/client-firebase-sol-auth@^2.26.1, @moralisweb3/client-firebase-sol-auth@workspace:packages/client/firebaseSolAuth": version: 0.0.0-use.local resolution: "@moralisweb3/client-firebase-sol-auth@workspace:packages/client/firebaseSolAuth" dependencies: - "@moralisweb3/client-firebase-auth-utils": ^2.26.0 + "@moralisweb3/client-firebase-auth-utils": ^2.26.1 bs58: ^5.0.0 firebase: ^9.15.0 languageName: unknown linkType: soft -"@moralisweb3/client-sol-api@^2.26.0, @moralisweb3/client-sol-api@workspace:packages/client/solApi": +"@moralisweb3/client-sol-api@^2.26.1, @moralisweb3/client-sol-api@workspace:packages/client/solApi": version: 0.0.0-use.local resolution: "@moralisweb3/client-sol-api@workspace:packages/client/solApi" dependencies: - "@moralisweb3/client-api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/client-api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 languageName: unknown linkType: soft @@ -7294,11 +7294,11 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-aptos-utils@^2.26.0, @moralisweb3/common-aptos-utils@workspace:packages/common/aptosUtils": +"@moralisweb3/common-aptos-utils@^2.26.1, @moralisweb3/common-aptos-utils@workspace:packages/common/aptosUtils": version: 0.0.0-use.local resolution: "@moralisweb3/common-aptos-utils@workspace:packages/common/aptosUtils" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@noble/hashes": ^1.2.0 "@rollup/plugin-commonjs": ^24.0.1 @@ -7313,15 +7313,15 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-auth-utils@^2.26.0, @moralisweb3/common-auth-utils@workspace:packages/common/authUtils": +"@moralisweb3/common-auth-utils@^2.26.1, @moralisweb3/common-auth-utils@workspace:packages/common/authUtils": version: 0.0.0-use.local resolution: "@moralisweb3/common-auth-utils@workspace:packages/common/authUtils" dependencies: "@ethersproject/abi": ^5.7.0 - "@moralisweb3/common-aptos-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/common-aptos-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@moralisweb3/streams-typings": ^1.0.6 "@rollup/plugin-commonjs": ^24.0.1 @@ -7336,7 +7336,7 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-core@^2.26.0, @moralisweb3/common-core@workspace:packages/common/core": +"@moralisweb3/common-core@^2.26.1, @moralisweb3/common-core@workspace:packages/common/core": version: 0.0.0-use.local resolution: "@moralisweb3/common-core@workspace:packages/common/core" dependencies: @@ -7354,14 +7354,14 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-evm-utils@^2.26.0, @moralisweb3/common-evm-utils@workspace:packages/common/evmUtils": +"@moralisweb3/common-evm-utils@^2.26.1, @moralisweb3/common-evm-utils@workspace:packages/common/evmUtils": version: 0.0.0-use.local resolution: "@moralisweb3/common-evm-utils@workspace:packages/common/evmUtils" dependencies: "@ethersproject/address": ^5.7.0 "@ethersproject/bytes": ^5.7.0 "@ethersproject/transactions": ^5.7.0 - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 @@ -7375,11 +7375,11 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-sol-utils@^2.26.0, @moralisweb3/common-sol-utils@workspace:packages/common/solUtils": +"@moralisweb3/common-sol-utils@^2.26.1, @moralisweb3/common-sol-utils@workspace:packages/common/solUtils": version: 0.0.0-use.local resolution: "@moralisweb3/common-sol-utils@workspace:packages/common/solUtils" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 @@ -7396,14 +7396,14 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/common-streams-utils@^2.26.0, @moralisweb3/common-streams-utils@workspace:packages/common/streamsUtils": +"@moralisweb3/common-streams-utils@^2.26.1, @moralisweb3/common-streams-utils@workspace:packages/common/streamsUtils": version: 0.0.0-use.local resolution: "@moralisweb3/common-streams-utils@workspace:packages/common/streamsUtils" dependencies: "@ethersproject/abi": ^5.7.0 - "@moralisweb3/common-aptos-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/common-aptos-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@moralisweb3/streams-typings": ^1.0.7 "@rollup/plugin-commonjs": ^24.0.1 @@ -7436,13 +7436,13 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/evm-api@^2.26.0, @moralisweb3/evm-api@workspace:packages/evmApi": +"@moralisweb3/evm-api@^2.26.1, @moralisweb3/evm-api@workspace:packages/evmApi": version: 0.0.0-use.local resolution: "@moralisweb3/evm-api@workspace:packages/evmApi" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 jest: ^29.5.0 @@ -7459,7 +7459,7 @@ __metadata: version: 0.0.0-use.local resolution: "@moralisweb3/evm-utils@workspace:packages/evmUtils" dependencies: - "@moralisweb3/common-evm-utils": ^2.26.0 + "@moralisweb3/common-evm-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 rollup: ^3.10.1 @@ -7470,18 +7470,18 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/next@^2.26.0, @moralisweb3/next@workspace:packages/next": +"@moralisweb3/next@^2.26.1, @moralisweb3/next@workspace:packages/next": version: 0.0.0-use.local resolution: "@moralisweb3/next@workspace:packages/next" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/auth": ^2.26.0 - "@moralisweb3/common-auth-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/evm-api": ^2.26.0 - "@moralisweb3/sol-api": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/auth": ^2.26.1 + "@moralisweb3/common-auth-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/evm-api": ^2.26.1 + "@moralisweb3/sol-api": ^2.26.1 axios: ^1.2.1 - moralis: ^2.26.0 + moralis: ^2.26.1 next: ^13.0.3 next-auth: ^4.20.1 react: ^18.2.0 @@ -7495,19 +7495,19 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/parse-server@2.26.0, @moralisweb3/parse-server@workspace:packages/parseServer": +"@moralisweb3/parse-server@2.26.1, @moralisweb3/parse-server@workspace:packages/parseServer": version: 0.0.0-use.local resolution: "@moralisweb3/parse-server@workspace:packages/parseServer" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/streams": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/streams": ^2.26.1 "@moralisweb3/streams-typings": ^1.0.6 "@types/express": 4.17.14 "@types/parse": ^2.18.18 body-parser: ^1.20.0 express: ^4.18.1 - moralis: ^2.26.0 + moralis: ^2.26.1 parse: 3.4.4 languageName: unknown linkType: soft @@ -7516,17 +7516,17 @@ __metadata: version: 0.0.0-use.local resolution: "@moralisweb3/react@workspace:packages/react" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/auth": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 - "@moralisweb3/evm-api": ^2.26.0 - "@moralisweb3/sol-api": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/auth": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 + "@moralisweb3/evm-api": ^2.26.1 + "@moralisweb3/sol-api": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 "@tanstack/react-query": 4.24.10 - moralis: ^2.26.0 + moralis: ^2.26.1 react: ^18.2.0 react-dom: ^18.2.0 rollup: ^3.10.1 @@ -7540,13 +7540,13 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/sol-api@^2.26.0, @moralisweb3/sol-api@workspace:packages/solApi": +"@moralisweb3/sol-api@^2.26.1, @moralisweb3/sol-api@workspace:packages/solApi": version: 0.0.0-use.local resolution: "@moralisweb3/sol-api@workspace:packages/solApi" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 jest: ^29.5.0 @@ -7563,7 +7563,7 @@ __metadata: version: 0.0.0-use.local resolution: "@moralisweb3/sol-utils@workspace:packages/solUtils" dependencies: - "@moralisweb3/common-sol-utils": ^2.26.0 + "@moralisweb3/common-sol-utils": ^2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 rollup: ^3.10.1 @@ -7588,7 +7588,7 @@ __metadata: languageName: node linkType: hard -"@moralisweb3/streams@^2.26.0, @moralisweb3/streams@workspace:packages/streams": +"@moralisweb3/streams@^2.26.1, @moralisweb3/streams@workspace:packages/streams": version: 0.0.0-use.local resolution: "@moralisweb3/streams@workspace:packages/streams" dependencies: @@ -7596,12 +7596,12 @@ __metadata: "@ethersproject/bignumber": ^5.7.0 "@ethersproject/sha2": ^5.7.0 "@ethersproject/strings": ^5.7.0 - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 - "@moralisweb3/common-streams-utils": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 + "@moralisweb3/common-streams-utils": ^2.26.1 "@moralisweb3/streams-typings": ^1.0.7 - "@moralisweb3/test-utils": 2.26.0 + "@moralisweb3/test-utils": 2.26.1 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-node-resolve": ^15.0.1 "@types/ethereumjs-util": 5.2.0 @@ -7617,7 +7617,7 @@ __metadata: languageName: unknown linkType: soft -"@moralisweb3/test-utils@2.26.0, @moralisweb3/test-utils@workspace:packages/testUtils": +"@moralisweb3/test-utils@2.26.1, @moralisweb3/test-utils@workspace:packages/testUtils": version: 0.0.0-use.local resolution: "@moralisweb3/test-utils@workspace:packages/testUtils" dependencies: @@ -15793,7 +15793,7 @@ __metadata: resolution: "demo-cli-cjs@workspace:demos/cli-cjs" dependencies: dotenv: ^16.0.3 - moralis: ^2.26.0 + moralis: ^2.26.1 languageName: unknown linkType: soft @@ -15802,7 +15802,7 @@ __metadata: resolution: "demo-cli-esm@workspace:demos/cli-esm" dependencies: dotenv: ^16.0.3 - moralis: ^2.26.0 + moralis: ^2.26.1 languageName: unknown linkType: soft @@ -15818,7 +15818,7 @@ __metadata: eslint: ^8.32.0 eslint-plugin-etc: ^2.0.2 eslint-plugin-import: ^2.27.5 - moralis: ^2.26.0 + moralis: ^2.26.1 ts-node: ^10.9.1 typescript: ^4.9.4 languageName: unknown @@ -15828,7 +15828,7 @@ __metadata: version: 0.0.0-use.local resolution: "demo-express-proxy@workspace:demos/express-proxy" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@types/cors": ^2.8.12 "@types/express": ^4.17.14 @@ -15843,7 +15843,7 @@ __metadata: eslint-plugin-import: ^2.27.5 express: ^4.18.2 express-rate-limit: ^6.7.0 - moralis: ^2.26.0 + moralis: ^2.26.1 redis: ^4.2.0 ts-node: ^10.9.1 typescript: ^4.9.4 @@ -15875,9 +15875,9 @@ __metadata: "@babel/plugin-syntax-flow": 7.18.6 "@babel/plugin-transform-react-jsx": 7.20.7 "@ethersproject/providers": ^5.7.2 - "@moralisweb3/client-firebase-auth-utils": ^2.26.0 - "@moralisweb3/client-firebase-evm-auth": ^2.26.0 - "@moralisweb3/client-firebase-sol-auth": ^2.26.0 + "@moralisweb3/client-firebase-auth-utils": ^2.26.1 + "@moralisweb3/client-firebase-evm-auth": ^2.26.1 + "@moralisweb3/client-firebase-sol-auth": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@testing-library/dom": 8.19.0 "@testing-library/jest-dom": ^5.16.5 @@ -15909,8 +15909,8 @@ __metadata: version: 0.0.0-use.local resolution: "demo-firebase-nextjs@workspace:demos/firebase-nextjs/hosting" dependencies: - "@moralisweb3/client-firebase-auth-utils": ^2.26.0 - "@moralisweb3/client-firebase-evm-auth": ^2.26.0 + "@moralisweb3/client-firebase-auth-utils": ^2.26.1 + "@moralisweb3/client-firebase-evm-auth": ^2.26.1 "@next/font": 13.1.2 "@types/node": ^18.11.18 "@types/react": 18.0.26 @@ -15940,7 +15940,7 @@ __metadata: firebase-functions: ^3.18.0 firebase-functions-rate-limiter: ^3.9.1 firebase-functions-test: ^0.2.0 - moralis: ^2.26.0 + moralis: ^2.26.1 typescript: ^4.9.4 languageName: unknown linkType: soft @@ -15967,7 +15967,7 @@ __metadata: version: 0.0.0-use.local resolution: "demo-moralis-stream@workspace:demos/moralis-stream" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@types/cors": ^2.8.12 "@types/express": ^4.17.14 @@ -15981,7 +15981,7 @@ __metadata: eslint-plugin-etc: ^2.0.2 eslint-plugin-import: ^2.27.5 express: ^4.18.1 - moralis: ^2.26.0 + moralis: ^2.26.1 ngrok: ^4.3.3 redis: ^4.2.0 ts-node: ^10.9.1 @@ -15997,7 +15997,7 @@ __metadata: "@babel/core": ^7.20.12 "@babel/plugin-transform-react-jsx": ^7.20.7 "@moralisweb3/eslint-config": ^1.0.3 - "@moralisweb3/next": ^2.26.0 + "@moralisweb3/next": ^2.26.1 "@next/eslint-plugin-next": ^12.2.5 "@types/node": ^18.11.18 "@types/react": ^18.0.18 @@ -16009,7 +16009,7 @@ __metadata: eslint-config-next: 13.1.2 eslint-plugin-etc: ^2.0.2 ethers: ^5.7.2 - moralis: ^2.26.0 + moralis: ^2.26.1 next: 12.2.5 next-auth: 4.20.1 react: ^18.2.0 @@ -16024,9 +16024,9 @@ __metadata: resolution: "demo-parse-server-migration@workspace:demos/parse-server-migration" dependencies: "@codemirror/language": ^0.20.0 - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 - "@moralisweb3/parse-server": 2.26.0 + "@moralisweb3/parse-server": 2.26.1 "@types/cors": ^2.8.13 "@types/jest": ^29.2.5 "@types/node": ^18.11.18 @@ -16045,7 +16045,7 @@ __metadata: graphql-ws: ^5.10.1 jest: ^29.5.0 mongodb-runner: ^4.9.0 - moralis: ^2.26.0 + moralis: ^2.26.1 ngrok: ^4.3.3 parse-server: ^5.4.0 prettier: ^2.8.0 @@ -16060,7 +16060,7 @@ __metadata: resolution: "demo-parse-server@workspace:demos/parse-server" dependencies: "@codemirror/language": ^0.20.0 - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@types/cors": ^2.8.13 "@types/node": ^18.11.18 @@ -16077,7 +16077,7 @@ __metadata: graphql: ^16.6.0 graphql-ws: ^5.10.1 mongodb-runner: ^4.9.0 - moralis: ^2.26.0 + moralis: ^2.26.1 parse-dashboard: ^4.1.4 parse-server: ^5.4.0 prettier: ^2.8.0 @@ -16091,7 +16091,7 @@ __metadata: resolution: "demo-streams-webhook@workspace:demos/streams-webhook" dependencies: dotenv: ^16.0.1 - moralis: ^2.26.0 + moralis: ^2.26.1 ngrok: ^4.3.3 languageName: unknown linkType: soft @@ -16100,7 +16100,7 @@ __metadata: version: 0.0.0-use.local resolution: "demo-supabase-auth@workspace:demos/supabase-auth" dependencies: - "@moralisweb3/common-core": ^2.26.0 + "@moralisweb3/common-core": ^2.26.1 "@moralisweb3/eslint-config": ^1.0.3 "@supabase/supabase-js": ^1.35.4 "@types/cors": ^2.8.12 @@ -16117,7 +16117,7 @@ __metadata: eslint-plugin-import: ^2.27.5 express: ^4.18.1 jsonwebtoken: ^9.0.0 - moralis: ^2.26.0 + moralis: ^2.26.1 ts-node: ^10.9.1 typescript: ^4.9.4 uuid: ^9.0.0 @@ -16130,7 +16130,7 @@ __metadata: dependencies: dotenv: ^16.0.3 http-server: ^14.1.1 - moralis: ^2.26.0 + moralis: ^2.26.1 source-map-loader: ^4.0.1 ts-loader: ^9.4.2 typescript: ^4.9.3 @@ -16146,7 +16146,7 @@ __metadata: cypress: ^12.8.0 dotenv: ^16.0.3 http-server: ^14.1.1 - moralis: ^2.26.0 + moralis: ^2.26.1 start-server-and-test: ^2.0.0 ts-loader: ^9.4.2 typescript: ^4.9.4 @@ -25410,22 +25410,22 @@ __metadata: languageName: node linkType: hard -"moralis@^2.26.0, moralis@^2.9.0, moralis@workspace:packages/moralis": +"moralis@^2.26.1, moralis@^2.9.0, moralis@workspace:packages/moralis": version: 0.0.0-use.local resolution: "moralis@workspace:packages/moralis" dependencies: - "@moralisweb3/api-utils": ^2.26.0 - "@moralisweb3/aptos-api": ^2.26.0 - "@moralisweb3/auth": ^2.26.0 - "@moralisweb3/common-aptos-utils": ^2.26.0 - "@moralisweb3/common-auth-utils": ^2.26.0 - "@moralisweb3/common-core": ^2.26.0 - "@moralisweb3/common-evm-utils": ^2.26.0 - "@moralisweb3/common-sol-utils": ^2.26.0 - "@moralisweb3/common-streams-utils": ^2.26.0 - "@moralisweb3/evm-api": ^2.26.0 - "@moralisweb3/sol-api": ^2.26.0 - "@moralisweb3/streams": ^2.26.0 + "@moralisweb3/api-utils": ^2.26.1 + "@moralisweb3/aptos-api": ^2.26.1 + "@moralisweb3/auth": ^2.26.1 + "@moralisweb3/common-aptos-utils": ^2.26.1 + "@moralisweb3/common-auth-utils": ^2.26.1 + "@moralisweb3/common-core": ^2.26.1 + "@moralisweb3/common-evm-utils": ^2.26.1 + "@moralisweb3/common-sol-utils": ^2.26.1 + "@moralisweb3/common-streams-utils": ^2.26.1 + "@moralisweb3/evm-api": ^2.26.1 + "@moralisweb3/sol-api": ^2.26.1 + "@moralisweb3/streams": ^2.26.1 "@moralisweb3/streams-typings": ^1.0.7 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-json": ^6.0.0