From 7524d7a86d31ddf49447f0ae06a9e67d185cc661 Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Wed, 5 Jul 2023 09:01:16 +0100 Subject: [PATCH 01/15] wip --- .../sdk/src/evm/core/classes/smart-wallet.ts | 5 +- .../src/evm/connectors/smart-wallet/index.ts | 20 +++-- .../connectors/token-bound-wallet/index.ts | 78 +++++++++++++++++++ .../connectors/token-bound-wallet/types.ts | 53 +++++++++++++ .../wallets/src/evm/constants/walletIds.ts | 1 + .../wallets/src/evm/wallets/smart-wallet.ts | 25 +++--- .../evm/wallets/token-bound-smart-wallet.ts | 24 ++++++ 7 files changed, 182 insertions(+), 24 deletions(-) create mode 100644 packages/wallets/src/evm/connectors/token-bound-wallet/index.ts create mode 100644 packages/wallets/src/evm/connectors/token-bound-wallet/types.ts create mode 100644 packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts diff --git a/packages/sdk/src/evm/core/classes/smart-wallet.ts b/packages/sdk/src/evm/core/classes/smart-wallet.ts index 9763b950ecf..17859e63776 100644 --- a/packages/sdk/src/evm/core/classes/smart-wallet.ts +++ b/packages/sdk/src/evm/core/classes/smart-wallet.ts @@ -27,8 +27,7 @@ import { AddressOrEns } from "../../schema"; import { resolveAddress } from "../../common"; export class SmartWallet - implements DetectableFeature -{ + implements DetectableFeature { featureName = FEATURE_SMART_WALLET.name; private contractWrapper: ContractWrapper; @@ -95,7 +94,7 @@ export class SmartWallet validityEndTimestamp: BigNumber.from( Math.floor( new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 10).getTime() / - 1000, + 1000, ), ), uid: resolveOrGenerateId(undefined), diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index ff1e84e7985..255c2097191 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -24,7 +24,7 @@ import { AccountAPI } from "./lib/account"; import { DEFAULT_WALLET_API_KEY } from "../../constants/keys"; export class SmartWalletConnector extends Connector { - private config: SmartWalletConfig; + protected config: SmartWalletConfig; private aaProvider: ERC4337EthersProvider | undefined; private accountApi: AccountAPI | undefined; personalWallet?: EVMWallet; @@ -55,10 +55,10 @@ export class SmartWalletConnector extends Connector { ? this.config.paymasterAPI ? this.config.paymasterAPI : getVerifyingPaymaster( - paymasterUrl, - entryPointAddress, - this.config.thirdwebApiKey, - ) + paymasterUrl, + entryPointAddress, + this.config.thirdwebApiKey, + ) : undefined, factoryAddress: config.factoryAddress, factoryInfo: config.factoryInfo || this.defaultFactoryInfo(), @@ -134,7 +134,7 @@ export class SmartWalletConnector extends Connector { } // eslint-disable-next-line @typescript-eslint/no-unused-vars - updateChains(chains: Chain[]): void {} + updateChains(chains: Chain[]): void { } /** * Execute a single transaction @@ -218,7 +218,7 @@ export class SmartWalletConnector extends Connector { return await this.accountApi.isAcountDeployed(); } - private defaultFactoryInfo(): FactoryContractInfo { + protected defaultFactoryInfo(): FactoryContractInfo { return { createAccount: async (factory: SmartContract, owner: string) => { return factory.prepare("createAccount", [ @@ -241,7 +241,7 @@ export class SmartWalletConnector extends Connector { }; } - private defaultAccountInfo(): AccountContractInfo { + protected defaultAccountInfo(): AccountContractInfo { return { execute: async (account, target, value, data) => { return account.prepare("execute", [target, value, data]); @@ -251,4 +251,8 @@ export class SmartWalletConnector extends Connector { }, }; } + + set factoryAddress(value: string) { + this.factoryAddress = value; + } } diff --git a/packages/wallets/src/evm/connectors/token-bound-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-wallet/index.ts new file mode 100644 index 00000000000..9293ff2b314 --- /dev/null +++ b/packages/wallets/src/evm/connectors/token-bound-wallet/index.ts @@ -0,0 +1,78 @@ +import { + AccountContractInfo, + FactoryContractInfo, + TokenBoundSmartWalletConfig, +} from "./types" +import { EVMWallet } from "../../interfaces"; +import { SmartWalletConnector } from "../smart-wallet"; +import { ethers } from "ethers"; +import { SmartContract } from "@thirdweb-dev/sdk"; +import { getContract } from "@thirdweb-dev/sdk"; +import { SmartWalletConfig } from "../smart-wallet/types"; + +export class TokenBoundConnnector extends SmartWalletConnector { + protected config: TokenBoundSmartWalletConfig; + + constructor(config: TokenBoundSmartWalletConfig) { + const smartWalletConfig: SmartWalletConfig = { + chain: config.chain, + factoryAddress: config.factoryAddress, + thirdwebApiKey: config.thirdwebApiKey, + gasless: config.gasless, + bundlerUrl: config.bundlerUrl, + paymasterUrl: config.paymasterUrl, + paymasterAPI: config.paymasterAPI, + entryPointAddress: config.entryPointAddress, + } + super(smartWalletConfig); + this.config = config; + } + + async initialize(personalWallet: EVMWallet) { + // TODO not hardcode just have default if one isn't provided + const hardcodedFactoryAddress = '0x02101dfB77FDE026414827Fdc604ddAF224F0921'; + this.factoryAddress = hardcodedFactoryAddress; + await super.initialize(personalWallet); + } + + protected defaultAccountInfo(): AccountContractInfo { + return { + execute: async (account, target, value, data) => { + return account.prepare("executeCall", [target, value, data]); + }, + getNonce: async (account) => { + return account.call("nonce", []); + }, + }; + } + + protected defaultTokenBoundFactoryInfo(): FactoryContractInfo { + return { + createAccount: async (factory: SmartContract, implementation: SmartContract, chainId: Number, tokenContract: SmartContract, tokenId: Number) => { + return factory.prepare("createAccount", [ + implementation, + chainId, + tokenContract, + tokenId, + // TODO salt + 1, + ethers.utils.toUtf8Bytes(""), + ]); + }, + getAccountAddress: async (factory, implementation, chainId, tokenContract, tokenId) => { + return await factory.call("address", [ + implementation, + chainId, + tokenContract, + tokenId, + // TODO salt + 1 + ]); + }, + }; + } + + set factoryAddress(value: string) { + this.factoryAddress = value; + } +} \ No newline at end of file diff --git a/packages/wallets/src/evm/connectors/token-bound-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-wallet/types.ts new file mode 100644 index 00000000000..c6f2be424c6 --- /dev/null +++ b/packages/wallets/src/evm/connectors/token-bound-wallet/types.ts @@ -0,0 +1,53 @@ +import type { + SmartContract, + Transaction, +} from "@thirdweb-dev/sdk"; +import type { + BigNumber, + BigNumberish, + ContractInterface, +} from "ethers"; +import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; +import { SmartWalletConfig } from "../smart-wallet/types"; + +export type TokenBoundSmartWalletConfig = SmartWalletConfig & { + tokenContract: SmartContract; + tokenId: Number; + implementation: SmartContract; + owner: string; +} & ContractInfoInput & + WalletConnectReceiverConfig; + +export type ContractInfoInput = { + factoryInfo?: FactoryContractInfo; + accountInfo?: AccountContractInfo; +}; + +export type FactoryContractInfo = { + abi?: ContractInterface; + createAccount: ( + factory: SmartContract, + implementation: SmartContract, + chainId: Number, + tokenContract: SmartContract, + tokenId: Number + ) => Promise; + getAccountAddress: ( + factory: SmartContract, + implementation: SmartContract, + chainId: Number, + tokenContract: SmartContract, + tokenId: Number + ) => Promise; +}; + +export type AccountContractInfo = { + abi?: ContractInterface; + getNonce: (account: SmartContract) => Promise; + execute: ( + account: SmartContract, + target: string, + value: BigNumberish, + data: string, + ) => Promise; +}; \ No newline at end of file diff --git a/packages/wallets/src/evm/constants/walletIds.ts b/packages/wallets/src/evm/constants/walletIds.ts index 0676843c30d..eb72e50953c 100644 --- a/packages/wallets/src/evm/constants/walletIds.ts +++ b/packages/wallets/src/evm/constants/walletIds.ts @@ -4,6 +4,7 @@ export const walletIds = { metamask: "metamask", localWallet: "localWallet", smartWallet: "smartWallet", + tokenBoundSmartWallet: "tokenBoundSmartWallet", safe: "safe", trust: "trust", walletConnectV1: "walletConnectV1", diff --git a/packages/wallets/src/evm/wallets/smart-wallet.ts b/packages/wallets/src/evm/wallets/smart-wallet.ts index 0d603a7635a..824c544780d 100644 --- a/packages/wallets/src/evm/wallets/smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/smart-wallet.ts @@ -26,8 +26,7 @@ export type { PaymasterAPI } from "@account-abstraction/sdk"; export class SmartWallet extends AbstractClientWallet - implements IWalletConnectReceiver -{ + implements IWalletConnectReceiver { connector?: SmartWalletConnectorType; public enableConnectApp: boolean = false; @@ -44,8 +43,8 @@ export class SmartWallet return "Smart Wallet" as const; } - constructor(options: WalletOptions) { - super(SmartWallet.id, { + constructor(options: WalletOptions, id?: string) { + super(id || SmartWallet.id, { ...options, }); @@ -53,16 +52,16 @@ export class SmartWallet this.#wcWallet = this.enableConnectApp ? options?.wcVersion === "v1" ? new WalletConnectV1Handler({ - walletConnectWalletMetadata: options?.walletConnectWalletMetadata, - walletConenctV2ProjectId: options?.walletConenctV2ProjectId, - walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, - storage: options?.wcStorage || createLocalStorage("smart-wallet"), - }) + walletConnectWalletMetadata: options?.walletConnectWalletMetadata, + walletConenctV2ProjectId: options?.walletConenctV2ProjectId, + walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, + storage: options?.wcStorage || createLocalStorage("smart-wallet"), + }) : new WalletConnectV2Handler({ - walletConnectWalletMetadata: options?.walletConnectWalletMetadata, - walletConenctV2ProjectId: options?.walletConenctV2ProjectId, - walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, - }) + walletConnectWalletMetadata: options?.walletConnectWalletMetadata, + walletConenctV2ProjectId: options?.walletConenctV2ProjectId, + walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, + }) : new NoOpWalletConnectHandler(); } diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts new file mode 100644 index 00000000000..338160052c3 --- /dev/null +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -0,0 +1,24 @@ +import { SmartWallet } from "./smart-wallet"; +import { walletIds } from "../constants/walletIds"; +import { TokenBoundSmartWalletConfig } from "../connectors/token-bound-wallet/types"; +import { WalletOptions } from "./base"; + +export class TokenBoundSmartWallet extends SmartWallet { + static meta = { + name: "Token Bound Smart Wallet", + // TODO: change this URL + iconURL: + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/smart-wallet.svg", + }; + + static id = walletIds.tokenBoundSmartWallet; + public get walletName() { + return "Token Bound Smart Wallet" as "Smart Wallet"; + } + + constructor(options: WalletOptions) { + super(options, + TokenBoundSmartWallet.id + ); + } +} \ No newline at end of file From 98c70182010bdcd791b89e14b1bb1b46ace877a8 Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Wed, 12 Jul 2023 15:09:22 +0100 Subject: [PATCH 02/15] wip --- .../src/evm/connectors/smart-wallet/index.ts | 4 ++-- .../index.ts | 15 +++++---------- .../types.ts | 0 .../src/evm/wallets/token-bound-smart-wallet.ts | 2 +- 4 files changed, 8 insertions(+), 13 deletions(-) rename packages/wallets/src/evm/connectors/{token-bound-wallet => token-bound-smart-wallet}/index.ts (84%) rename packages/wallets/src/evm/connectors/{token-bound-wallet => token-bound-smart-wallet}/types.ts (100%) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index 4b7ec32a214..8e1c257b6ae 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -35,7 +35,7 @@ export class SmartWalletConnector extends Connector { this.config = config; } - async initialize(personalWallet: EVMWallet) { + async initialize(personalWallet: EVMWallet, factoryAddress: string = this.config.factoryAddress) { const config = this.config; const originalProvider = getChainProvider(config.chain, { thirdwebApiKey: config.thirdwebApiKey || DEFAULT_WALLET_API_KEY, @@ -61,7 +61,7 @@ export class SmartWalletConnector extends Connector { this.config.thirdwebApiKey, ) : undefined, - factoryAddress: config.factoryAddress, + factoryAddress: factoryAddress, factoryInfo: config.factoryInfo || this.defaultFactoryInfo(), accountInfo: config.accountInfo || this.defaultAccountInfo(), thirdwebApiKey: config.thirdwebApiKey, diff --git a/packages/wallets/src/evm/connectors/token-bound-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts similarity index 84% rename from packages/wallets/src/evm/connectors/token-bound-wallet/index.ts rename to packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 9293ff2b314..5ff536332dc 100644 --- a/packages/wallets/src/evm/connectors/token-bound-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -4,12 +4,13 @@ import { TokenBoundSmartWalletConfig, } from "./types" import { EVMWallet } from "../../interfaces"; -import { SmartWalletConnector } from "../smart-wallet"; +import * as module from "../smart-wallet"; import { ethers } from "ethers"; import { SmartContract } from "@thirdweb-dev/sdk"; -import { getContract } from "@thirdweb-dev/sdk"; import { SmartWalletConfig } from "../smart-wallet/types"; +let SmartWalletConnector = module.SmartWalletConnector; + export class TokenBoundConnnector extends SmartWalletConnector { protected config: TokenBoundSmartWalletConfig; @@ -29,10 +30,8 @@ export class TokenBoundConnnector extends SmartWalletConnector { } async initialize(personalWallet: EVMWallet) { - // TODO not hardcode just have default if one isn't provided - const hardcodedFactoryAddress = '0x02101dfB77FDE026414827Fdc604ddAF224F0921'; - this.factoryAddress = hardcodedFactoryAddress; - await super.initialize(personalWallet); + const factoryAddress = this.config.factoryAddress || "0x02101dfB77FDE026414827Fdc604ddAF224F0921"; + await super.initialize(personalWallet, factoryAddress); } protected defaultAccountInfo(): AccountContractInfo { @@ -71,8 +70,4 @@ export class TokenBoundConnnector extends SmartWalletConnector { }, }; } - - set factoryAddress(value: string) { - this.factoryAddress = value; - } } \ No newline at end of file diff --git a/packages/wallets/src/evm/connectors/token-bound-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts similarity index 100% rename from packages/wallets/src/evm/connectors/token-bound-wallet/types.ts rename to packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 338160052c3..b46be0ed3bf 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,6 +1,6 @@ import { SmartWallet } from "./smart-wallet"; import { walletIds } from "../constants/walletIds"; -import { TokenBoundSmartWalletConfig } from "../connectors/token-bound-wallet/types"; +import { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; import { WalletOptions } from "./base"; export class TokenBoundSmartWallet extends SmartWallet { From 2580d1386ea6064f8291b5f2aaab5e15b7498dcb Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Mon, 24 Jul 2023 16:48:53 +0100 Subject: [PATCH 03/15] wip --- packages/chains/chains/1000.ts | 32 ---------- packages/chains/chains/10000.ts | 24 ------- packages/chains/chains/100000.ts | 21 ------- packages/chains/chains/100001.ts | 33 ---------- packages/chains/chains/100002.ts | 33 ---------- packages/chains/chains/100003.ts | 33 ---------- packages/chains/chains/100004.ts | 33 ---------- packages/chains/chains/100005.ts | 33 ---------- packages/chains/chains/100006.ts | 33 ---------- packages/chains/chains/100007.ts | 33 ---------- packages/chains/chains/100008.ts | 33 ---------- packages/chains/chains/100009.ts | 30 --------- packages/chains/chains/10001.ts | 22 ------- packages/chains/chains/100010.ts | 27 -------- packages/chains/chains/1001.ts | 23 ------- packages/chains/chains/10024.ts | 38 ----------- packages/chains/chains/1004.ts | 41 ------------ packages/chains/chains/10067275.ts | 32 ---------- packages/chains/chains/1007.ts | 21 ------- packages/chains/chains/1008.ts | 40 ------------ packages/chains/chains/10086.ts | 21 ------- packages/chains/chains/1010.ts | 22 ------- packages/chains/chains/10101.ts | 23 ------- packages/chains/chains/101010.ts | 36 ----------- packages/chains/chains/10101010.ts | 36 ----------- packages/chains/chains/1012.ts | 21 ------- packages/chains/chains/10200.ts | 44 ------------- packages/chains/chains/1022.ts | 18 ------ packages/chains/chains/1023.ts | 18 ------ packages/chains/chains/1024.ts | 21 ------- packages/chains/chains/10248.ts | 28 --------- packages/chains/chains/1028.ts | 28 --------- packages/chains/chains/1030.ts | 34 ---------- packages/chains/chains/103090.ts | 41 ------------ packages/chains/chains/1031.ts | 28 --------- packages/chains/chains/1038.ts | 42 ------------- packages/chains/chains/1039.ts | 37 ----------- packages/chains/chains/10507.ts | 34 ---------- packages/chains/chains/10508.ts | 37 ----------- packages/chains/chains/1072.ts | 38 ----------- packages/chains/chains/1079.ts | 35 ----------- packages/chains/chains/10823.ts | 35 ----------- packages/chains/chains/1088.ts | 43 ------------- packages/chains/chains/108801.ts | 31 --------- packages/chains/chains/10946.ts | 42 ------------- packages/chains/chains/10947.ts | 43 ------------- packages/chains/chains/1099.ts | 26 -------- packages/chains/chains/110000.ts | 21 ------- packages/chains/chains/110001.ts | 33 ---------- packages/chains/chains/110002.ts | 33 ---------- packages/chains/chains/110003.ts | 33 ---------- packages/chains/chains/110004.ts | 33 ---------- packages/chains/chains/110005.ts | 33 ---------- packages/chains/chains/110006.ts | 33 ---------- packages/chains/chains/110007.ts | 33 ---------- packages/chains/chains/110008.ts | 33 ---------- packages/chains/chains/1101.ts | 50 --------------- packages/chains/chains/111000.ts | 40 ------------ packages/chains/chains/1111.ts | 29 --------- packages/chains/chains/11110.ts | 52 --------------- packages/chains/chains/11111.ts | 36 ----------- packages/chains/chains/111111.ts | 52 --------------- packages/chains/chains/11115.ts | 53 ---------------- packages/chains/chains/11119.ts | 31 --------- packages/chains/chains/1112.ts | 31 --------- packages/chains/chains/111222333444.ts | 37 ----------- packages/chains/chains/1115.ts | 42 ------------- packages/chains/chains/11155111.ts | 38 ----------- packages/chains/chains/1116.ts | 41 ------------ packages/chains/chains/1117.ts | 36 ----------- packages/chains/chains/1122334455.ts | 22 ------- packages/chains/chains/11235.ts | 28 --------- packages/chains/chains/112358.ts | 41 ------------ packages/chains/chains/11297108099.ts | 34 ---------- packages/chains/chains/11297108109.ts | 34 ---------- packages/chains/chains/1130.ts | 27 -------- packages/chains/chains/1131.ts | 26 -------- packages/chains/chains/1138.ts | 34 ---------- packages/chains/chains/1139.ts | 22 ------- packages/chains/chains/1140.ts | 23 ------- packages/chains/chains/11437.ts | 31 --------- packages/chains/chains/1146703430.ts | 41 ------------ packages/chains/chains/1149.ts | 40 ------------ packages/chains/chains/11612.ts | 36 ----------- packages/chains/chains/1170.ts | 40 ------------ packages/chains/chains/1177.ts | 48 -------------- packages/chains/chains/11888.ts | 43 ------------- packages/chains/chains/1197.ts | 34 ---------- packages/chains/chains/12009.ts | 34 ---------- packages/chains/chains/1201.ts | 21 ------- packages/chains/chains/1202.ts | 29 --------- packages/chains/chains/12051.ts | 30 --------- packages/chains/chains/12052.ts | 31 --------- packages/chains/chains/12123.ts | 36 ----------- packages/chains/chains/1213.ts | 28 --------- packages/chains/chains/1214.ts | 40 ------------ packages/chains/chains/1229.ts | 34 ---------- packages/chains/chains/1230.ts | 40 ------------ packages/chains/chains/12306.ts | 49 --------------- packages/chains/chains/1231.ts | 40 ------------ packages/chains/chains/12321.ts | 29 --------- packages/chains/chains/1234.ts | 50 --------------- packages/chains/chains/12345.ts | 47 -------------- packages/chains/chains/123456.ts | 34 ---------- packages/chains/chains/1243.ts | 34 ---------- packages/chains/chains/1244.ts | 36 ----------- packages/chains/chains/1246.ts | 28 --------- packages/chains/chains/1252.ts | 42 ------------- packages/chains/chains/12715.ts | 35 ----------- packages/chains/chains/1273227453.ts | 37 ----------- packages/chains/chains/1280.ts | 28 --------- packages/chains/chains/1284.ts | 29 --------- packages/chains/chains/1285.ts | 29 --------- packages/chains/chains/1287.ts | 29 --------- packages/chains/chains/1288.ts | 22 ------- packages/chains/chains/1294.ts | 31 --------- packages/chains/chains/1297.ts | 31 --------- packages/chains/chains/13000.ts | 28 --------- packages/chains/chains/1311.ts | 28 --------- packages/chains/chains/1313114.ts | 29 --------- packages/chains/chains/1313161554.ts | 28 --------- packages/chains/chains/1313161555.ts | 28 --------- packages/chains/chains/1313161556.ts | 18 ------ packages/chains/chains/1313500.ts | 21 ------- packages/chains/chains/1314.ts | 34 ---------- packages/chains/chains/131419.ts | 40 ------------ packages/chains/chains/1319.ts | 35 ----------- packages/chains/chains/1320.ts | 36 ----------- packages/chains/chains/13308.ts | 48 -------------- packages/chains/chains/1337.ts | 25 -------- packages/chains/chains/13371337.ts | 21 ------- packages/chains/chains/1337702.ts | 32 ---------- packages/chains/chains/1337802.ts | 44 ------------- packages/chains/chains/1337803.ts | 43 ------------- packages/chains/chains/1338.ts | 29 --------- packages/chains/chains/13381.ts | 34 ---------- packages/chains/chains/1339.ts | 29 --------- packages/chains/chains/1351057110.ts | 37 ----------- packages/chains/chains/1353.ts | 40 ------------ packages/chains/chains/1369.ts | 34 ---------- packages/chains/chains/1380996178.ts | 45 ------------- packages/chains/chains/13812.ts | 28 --------- packages/chains/chains/1388.ts | 34 ---------- packages/chains/chains/1392.ts | 34 ---------- packages/chains/chains/14000.ts | 28 --------- packages/chains/chains/142857.ts | 34 ---------- packages/chains/chains/14288640.ts | 35 ----------- packages/chains/chains/1433.ts | 35 ----------- packages/chains/chains/1440.ts | 28 --------- packages/chains/chains/1440001.ts | 31 --------- packages/chains/chains/1442.ts | 35 ----------- packages/chains/chains/1452.ts | 34 ---------- packages/chains/chains/1455.ts | 36 ----------- packages/chains/chains/1482601649.ts | 35 ----------- packages/chains/chains/1501.ts | 29 --------- packages/chains/chains/1506.ts | 28 --------- packages/chains/chains/1507.ts | 28 --------- packages/chains/chains/1515.ts | 30 --------- packages/chains/chains/15551.ts | 28 --------- packages/chains/chains/15555.ts | 30 --------- packages/chains/chains/15557.ts | 43 ------------- packages/chains/chains/1559.ts | 41 ------------ packages/chains/chains/1564830818.ts | 37 ----------- packages/chains/chains/1582.ts | 36 ----------- packages/chains/chains/16000.ts | 21 ------- packages/chains/chains/16001.ts | 23 ------- packages/chains/chains/1618.ts | 21 ------- packages/chains/chains/1620.ts | 22 ------- packages/chains/chains/16507.ts | 34 ---------- packages/chains/chains/1657.ts | 21 ------- packages/chains/chains/1663.ts | 52 --------------- packages/chains/chains/16658437.ts | 28 --------- packages/chains/chains/1666600000.ts | 31 --------- packages/chains/chains/1666600001.ts | 21 ------- packages/chains/chains/1666600002.ts | 21 ------- packages/chains/chains/1666600003.ts | 21 ------- packages/chains/chains/1666700000.ts | 30 --------- packages/chains/chains/1666700001.ts | 21 ------- packages/chains/chains/1666700002.ts | 21 ------- packages/chains/chains/1666700003.ts | 21 ------- packages/chains/chains/1666900000.ts | 30 --------- packages/chains/chains/16688.ts | 48 -------------- packages/chains/chains/167005.ts | 35 ----------- packages/chains/chains/167006.ts | 35 ----------- packages/chains/chains/16718.ts | 34 ---------- packages/chains/chains/1688.ts | 27 -------- packages/chains/chains/16888.ts | 36 ----------- packages/chains/chains/1701.ts | 42 ------------- packages/chains/chains/1707.ts | 29 --------- packages/chains/chains/1708.ts | 31 --------- packages/chains/chains/1718.ts | 41 ------------ packages/chains/chains/17180.ts | 41 ------------ packages/chains/chains/1773.ts | 42 ------------- packages/chains/chains/1777.ts | 34 ---------- packages/chains/chains/17777.ts | 46 -------------- packages/chains/chains/18000.ts | 28 --------- packages/chains/chains/1804.ts | 45 ------------- packages/chains/chains/1807.ts | 36 ----------- packages/chains/chains/18159.ts | 38 ----------- packages/chains/chains/1818.ts | 40 ------------ packages/chains/chains/1819.ts | 44 ------------- packages/chains/chains/18289463.ts | 21 ------- packages/chains/chains/1856.ts | 21 ------- packages/chains/chains/18686.ts | 34 ---------- packages/chains/chains/1881.ts | 42 ------------- packages/chains/chains/188881.ts | 36 ----------- packages/chains/chains/1890.ts | 46 -------------- packages/chains/chains/1891.ts | 48 -------------- packages/chains/chains/1898.ts | 29 --------- packages/chains/chains/19011.ts | 38 ----------- packages/chains/chains/1907.ts | 34 ---------- packages/chains/chains/1908.ts | 36 ----------- packages/chains/chains/192837465.ts | 40 ------------ packages/chains/chains/1945.ts | 35 ----------- packages/chains/chains/1951.ts | 27 -------- packages/chains/chains/1954.ts | 43 ------------- packages/chains/chains/1967.ts | 32 ---------- packages/chains/chains/1969.ts | 36 ----------- packages/chains/chains/1970.ts | 34 ---------- packages/chains/chains/1971.ts | 29 --------- packages/chains/chains/1975.ts | 36 ----------- packages/chains/chains/197710212030.ts | 40 ------------ packages/chains/chains/197710212031.ts | 40 ------------ packages/chains/chains/1984.ts | 40 ------------ packages/chains/chains/19845.ts | 28 --------- packages/chains/chains/1987.ts | 22 ------- packages/chains/chains/1994.ts | 40 ------------ packages/chains/chains/1995.ts | 37 ----------- packages/chains/chains/2000.ts | 36 ----------- packages/chains/chains/20001.ts | 34 ---------- packages/chains/chains/2001.ts | 35 ----------- packages/chains/chains/200101.ts | 35 ----------- packages/chains/chains/2002.ts | 35 ----------- packages/chains/chains/200202.ts | 34 ---------- packages/chains/chains/200625.ts | 22 ------- packages/chains/chains/2008.ts | 25 -------- packages/chains/chains/2009.ts | 25 -------- packages/chains/chains/201018.ts | 35 ----------- packages/chains/chains/201030.ts | 37 ----------- packages/chains/chains/2016.ts | 36 ----------- packages/chains/chains/2018.ts | 30 --------- packages/chains/chains/201804.ts | 48 -------------- packages/chains/chains/20180430.ts | 28 --------- packages/chains/chains/20181205.ts | 22 ------- packages/chains/chains/2019.ts | 30 --------- packages/chains/chains/2020.ts | 30 --------- packages/chains/chains/20201022.ts | 37 ----------- packages/chains/chains/202020.ts | 48 -------------- packages/chains/chains/2021.ts | 63 ------------------- packages/chains/chains/2021121117.ts | 21 ------- packages/chains/chains/2022.ts | 29 --------- packages/chains/chains/2023.ts | 53 ---------------- packages/chains/chains/2025.ts | 35 ----------- packages/chains/chains/202624.ts | 42 ------------- packages/chains/chains/2043.ts | 22 ------- packages/chains/chains/2044.ts | 21 ------- packages/chains/chains/2046399126.ts | 47 -------------- packages/chains/chains/2047.ts | 33 ---------- packages/chains/chains/2048.ts | 19 ------ packages/chains/chains/20729.ts | 23 ------- packages/chains/chains/20736.ts | 42 ------------- packages/chains/chains/2077.ts | 28 --------- packages/chains/chains/2099156.ts | 28 --------- packages/chains/chains/2100.ts | 28 --------- packages/chains/chains/2101.ts | 28 --------- packages/chains/chains/210425.ts | 35 ----------- packages/chains/chains/2109.ts | 42 ------------- packages/chains/chains/2122.ts | 40 ------------ packages/chains/chains/2124.ts | 28 --------- packages/chains/chains/21337.ts | 34 ---------- packages/chains/chains/2138.ts | 47 -------------- packages/chains/chains/2151.ts | 41 ------------ packages/chains/chains/2152.ts | 28 --------- packages/chains/chains/2153.ts | 28 --------- packages/chains/chains/2154.ts | 28 --------- packages/chains/chains/21816.ts | 34 ---------- packages/chains/chains/2199.ts | 44 ------------- packages/chains/chains/2202.ts | 36 ----------- packages/chains/chains/22023.ts | 51 --------------- packages/chains/chains/2203.ts | 40 ------------ packages/chains/chains/220315.ts | 42 ------------- packages/chains/chains/22040.ts | 34 ---------- packages/chains/chains/22052002.ts | 34 ---------- packages/chains/chains/2206132.ts | 37 ----------- packages/chains/chains/2213.ts | 34 ---------- packages/chains/chains/222000222.ts | 42 ------------- packages/chains/chains/2221.ts | 43 ------------- packages/chains/chains/2222.ts | 43 ------------- packages/chains/chains/2223.ts | 28 --------- packages/chains/chains/224168.ts | 34 ---------- packages/chains/chains/22776.ts | 35 ----------- packages/chains/chains/2300.ts | 40 ------------ packages/chains/chains/23006.ts | 36 ----------- packages/chains/chains/230315.ts | 36 ----------- packages/chains/chains/2309.ts | 20 ------ packages/chains/chains/23118.ts | 36 ----------- packages/chains/chains/2323.ts | 42 ------------- packages/chains/chains/23294.ts | 35 ----------- packages/chains/chains/23295.ts | 35 ----------- packages/chains/chains/2330.ts | 41 ------------ packages/chains/chains/2332.ts | 43 ------------- packages/chains/chains/234666.ts | 21 ------- packages/chains/chains/2358.ts | 50 --------------- packages/chains/chains/2399.ts | 42 ------------- packages/chains/chains/2400.ts | 38 ----------- packages/chains/chains/2415.ts | 41 ------------ packages/chains/chains/24484.ts | 19 ------ packages/chains/chains/245022926.ts | 41 ------------ packages/chains/chains/245022934.ts | 36 ----------- packages/chains/chains/245022940.ts | 39 ------------ packages/chains/chains/246529.ts | 22 ------- packages/chains/chains/246785.ts | 21 ------- packages/chains/chains/247253.ts | 34 ---------- packages/chains/chains/24734.ts | 21 ------- packages/chains/chains/2559.ts | 21 ------- packages/chains/chains/256256.ts | 29 --------- packages/chains/chains/2569.ts | 40 ------------ packages/chains/chains/25888.ts | 28 --------- packages/chains/chains/25925.ts | 43 ------------- packages/chains/chains/26026.ts | 38 ----------- packages/chains/chains/2606.ts | 43 ------------- packages/chains/chains/2611.ts | 28 --------- packages/chains/chains/2612.ts | 34 ---------- packages/chains/chains/2613.ts | 36 ----------- packages/chains/chains/2625.ts | 36 ----------- packages/chains/chains/26600.ts | 48 -------------- packages/chains/chains/266256.ts | 23 ------- packages/chains/chains/26863.ts | 32 ---------- packages/chains/chains/27082017.ts | 42 ------------- packages/chains/chains/27082022.ts | 40 ------------ packages/chains/chains/271271.ts | 36 ----------- packages/chains/chains/278611351.ts | 36 ----------- packages/chains/chains/281121.ts | 22 ------- packages/chains/chains/28528.ts | 30 --------- packages/chains/chains/2888.ts | 38 ----------- packages/chains/chains/28945486.ts | 22 ------- packages/chains/chains/29032022.ts | 42 ------------- packages/chains/chains/2999.ts | 34 ---------- packages/chains/chains/3000.ts | 26 -------- packages/chains/chains/3001.ts | 36 ----------- packages/chains/chains/3003.ts | 28 --------- packages/chains/chains/30067.ts | 36 ----------- packages/chains/chains/3011.ts | 45 ------------- packages/chains/chains/3031.ts | 40 ------------ packages/chains/chains/3068.ts | 36 ----------- packages/chains/chains/31102.ts | 22 ------- packages/chains/chains/311752642.ts | 34 ---------- packages/chains/chains/31223.ts | 34 ---------- packages/chains/chains/31224.ts | 36 ----------- packages/chains/chains/3125659152.ts | 22 ------- packages/chains/chains/31337.ts | 29 --------- packages/chains/chains/314159.ts | 60 ------------------ packages/chains/chains/3141592.ts | 29 --------- packages/chains/chains/31415926.ts | 27 -------- packages/chains/chains/32520.ts | 43 ------------- packages/chains/chains/32659.ts | 50 --------------- packages/chains/chains/32769.ts | 34 ---------- packages/chains/chains/3306.ts | 34 ---------- packages/chains/chains/330844.ts | 42 ------------- packages/chains/chains/33101.ts | 30 --------- packages/chains/chains/331769.ts | 25 -------- packages/chains/chains/333000333.ts | 42 ------------- packages/chains/chains/3331.ts | 29 --------- packages/chains/chains/3333.ts | 28 --------- packages/chains/chains/33333.ts | 48 -------------- packages/chains/chains/333331.ts | 48 -------------- packages/chains/chains/3334.ts | 28 --------- packages/chains/chains/333777.ts | 30 --------- packages/chains/chains/333888.ts | 29 --------- packages/chains/chains/333999.ts | 29 --------- packages/chains/chains/3400.ts | 34 ---------- packages/chains/chains/3434.ts | 36 ----------- packages/chains/chains/344106930.ts | 37 ----------- packages/chains/chains/3500.ts | 36 ----------- packages/chains/chains/3501.ts | 28 --------- packages/chains/chains/35011.ts | 42 ------------- packages/chains/chains/35441.ts | 40 ------------ packages/chains/chains/35443.ts | 40 ------------ packages/chains/chains/355113.ts | 36 ----------- packages/chains/chains/356256156.ts | 42 ------------- packages/chains/chains/35855456.ts | 21 ------- packages/chains/chains/3601.ts | 34 ---------- packages/chains/chains/3602.ts | 34 ---------- packages/chains/chains/3636.ts | 36 ----------- packages/chains/chains/3637.ts | 36 ----------- packages/chains/chains/3666.ts | 28 --------- packages/chains/chains/3690.ts | 29 --------- packages/chains/chains/3693.ts | 28 --------- packages/chains/chains/3698.ts | 36 ----------- packages/chains/chains/3699.ts | 36 ----------- packages/chains/chains/3737.ts | 36 ----------- packages/chains/chains/373737.ts | 40 ------------ packages/chains/chains/3797.ts | 35 ----------- packages/chains/chains/381931.ts | 29 --------- packages/chains/chains/381932.ts | 29 --------- packages/chains/chains/383414847825.ts | 30 --------- packages/chains/chains/3912.ts | 44 ------------- packages/chains/chains/3939.ts | 40 ------------ packages/chains/chains/3966.ts | 30 --------- packages/chains/chains/3967.ts | 30 --------- packages/chains/chains/39797.ts | 22 ------- packages/chains/chains/39815.ts | 40 ------------ packages/chains/chains/3999.ts | 34 ---------- packages/chains/chains/4000.ts | 34 ---------- packages/chains/chains/4000003.ts | 48 -------------- packages/chains/chains/4001.ts | 40 ------------ packages/chains/chains/4002.ts | 43 ------------- packages/chains/chains/404040.ts | 36 ----------- packages/chains/chains/4051.ts | 31 --------- packages/chains/chains/4061.ts | 34 ---------- packages/chains/chains/4062.ts | 49 --------------- packages/chains/chains/408.ts | 24 ------- packages/chains/chains/4090.ts | 45 ------------- packages/chains/chains/4096.ts | 37 ----------- packages/chains/chains/4099.ts | 37 ----------- packages/chains/chains/4102.ts | 35 ----------- packages/chains/chains/411.ts | 35 +++++++++++ packages/chains/chains/4141.ts | 36 ----------- packages/chains/chains/41500.ts | 28 --------- packages/chains/chains/4181.ts | 41 ------------ packages/chains/chains/4201.ts | 45 ------------- packages/chains/chains/420420.ts | 40 ------------ packages/chains/chains/420666.ts | 40 ------------ packages/chains/chains/42069.ts | 18 ------ packages/chains/chains/42161.ts | 50 --------------- packages/chains/chains/421611.ts | 45 ------------- packages/chains/chains/421613.ts | 46 -------------- packages/chains/chains/4216137055.ts | 36 ----------- packages/chains/chains/42170.ts | 43 ------------- packages/chains/chains/42220.ts | 36 ----------- packages/chains/chains/42261.ts | 37 ----------- packages/chains/chains/42262.ts | 35 ----------- packages/chains/chains/4242.ts | 37 ----------- packages/chains/chains/424242.ts | 37 ----------- packages/chains/chains/4281033.ts | 36 ----------- packages/chains/chains/43110.ts | 23 ------- packages/chains/chains/43113.ts | 39 ------------ packages/chains/chains/43114.ts | 44 ------------- packages/chains/chains/431140.ts | 29 --------- packages/chains/chains/43214913.ts | 28 --------- packages/chains/chains/432201.ts | 36 ----------- packages/chains/chains/432204.ts | 34 ---------- packages/chains/chains/4328.ts | 39 ------------ packages/chains/chains/43288.ts | 31 --------- packages/chains/chains/4444.ts | 43 ------------- packages/chains/chains/44444.ts | 40 ------------ packages/chains/chains/444900.ts | 30 --------- packages/chains/chains/44787.ts | 37 ----------- packages/chains/chains/45000.ts | 40 ------------ packages/chains/chains/46688.ts | 50 --------------- packages/chains/chains/4689.ts | 34 ---------- packages/chains/chains/4690.ts | 36 ----------- packages/chains/chains/471100.ts | 21 ------- packages/chains/chains/474142.ts | 28 --------- packages/chains/chains/4759.ts | 40 ------------ packages/chains/chains/4777.ts | 48 -------------- packages/chains/chains/47805.ts | 29 --------- packages/chains/chains/486217935.ts | 28 --------- packages/chains/chains/49049.ts | 36 ----------- packages/chains/chains/49088.ts | 36 ----------- packages/chains/chains/4918.ts | 28 --------- packages/chains/chains/4919.ts | 34 ---------- packages/chains/chains/49797.ts | 22 ------- packages/chains/chains/4999.ts | 51 --------------- packages/chains/chains/500.ts | 34 ---------- packages/chains/chains/5000.ts | 43 ------------- packages/chains/chains/50001.ts | 22 ------- packages/chains/chains/5001.ts | 30 --------- packages/chains/chains/5002.ts | 48 -------------- packages/chains/chains/50021.ts | 32 ---------- packages/chains/chains/5005.ts | 48 -------------- packages/chains/chains/501.ts | 34 ---------- packages/chains/chains/503129905.ts | 35 ----------- packages/chains/chains/51178.ts | 49 --------------- packages/chains/chains/512.ts | 35 ----------- packages/chains/chains/512512.ts | 31 --------- packages/chains/chains/513.ts | 36 ----------- packages/chains/chains/513100.ts | 28 --------- packages/chains/chains/516.ts | 23 ------- packages/chains/chains/5165.ts | 44 ------------- packages/chains/chains/5167003.ts | 34 ---------- packages/chains/chains/51712.ts | 36 ----------- packages/chains/chains/5177.ts | 34 ---------- packages/chains/chains/5197.ts | 28 --------- packages/chains/chains/520.ts | 38 ----------- packages/chains/chains/5234.ts | 22 ------- packages/chains/chains/529.ts | 29 --------- packages/chains/chains/530.ts | 34 ---------- packages/chains/chains/5315.ts | 21 ------- packages/chains/chains/534.ts | 30 --------- packages/chains/chains/534351.ts | 25 -------- packages/chains/chains/534352.ts | 25 -------- packages/chains/chains/534353.ts | 39 ------------ packages/chains/chains/534849.ts | 30 --------- packages/chains/chains/535037.ts | 31 --------- packages/chains/chains/53935.ts | 40 ------------ packages/chains/chains/54211.ts | 30 --------- packages/chains/chains/54321.ts | 37 ----------- packages/chains/chains/55004.ts | 29 --------- packages/chains/chains/555.ts | 28 --------- packages/chains/chains/5551.ts | 49 --------------- packages/chains/chains/5553.ts | 49 --------------- packages/chains/chains/5555.ts | 34 ---------- packages/chains/chains/55555.ts | 36 ----------- packages/chains/chains/5555555.ts | 52 --------------- packages/chains/chains/5555558.ts | 52 --------------- packages/chains/chains/55556.ts | 36 ----------- packages/chains/chains/558.ts | 24 ------- packages/chains/chains/5611.ts | 35 ----------- packages/chains/chains/56288.ts | 42 ------------- packages/chains/chains/568.ts | 36 ----------- packages/chains/chains/570.ts | 33 ---------- packages/chains/chains/5700.ts | 31 --------- packages/chains/chains/57000.ts | 32 ---------- packages/chains/chains/5729.ts | 35 ----------- packages/chains/chains/5758.ts | 36 ----------- packages/chains/chains/5777.ts | 29 --------- packages/chains/chains/58008.ts | 57 ----------------- packages/chains/chains/5851.ts | 43 ------------- packages/chains/chains/5869.ts | 29 --------- packages/chains/chains/59140.ts | 56 ----------------- packages/chains/chains/59144.ts | 41 ------------ packages/chains/chains/592.ts | 41 ------------ packages/chains/chains/595.ts | 18 ------ packages/chains/chains/596.ts | 19 ------ packages/chains/chains/597.ts | 19 ------ packages/chains/chains/599.ts | 45 ------------- packages/chains/chains/600.ts | 18 ------ packages/chains/chains/60000.ts | 30 --------- packages/chains/chains/60001.ts | 30 --------- packages/chains/chains/60002.ts | 30 --------- packages/chains/chains/60103.ts | 30 --------- packages/chains/chains/6022140761023.ts | 21 ------- packages/chains/chains/6065.ts | 42 ------------- packages/chains/chains/6066.ts | 41 ------------ packages/chains/chains/6102.ts | 53 ---------------- packages/chains/chains/6118.ts | 39 ------------ packages/chains/chains/6119.ts | 39 ------------ packages/chains/chains/614.ts | 28 --------- packages/chains/chains/61717561.ts | 25 -------- packages/chains/chains/61800.ts | 34 ---------- packages/chains/chains/61803.ts | 42 ------------- packages/chains/chains/61916.ts | 42 ------------- packages/chains/chains/62320.ts | 24 ------- packages/chains/chains/62621.ts | 35 ----------- packages/chains/chains/63000.ts | 40 ------------ packages/chains/chains/63001.ts | 42 ------------- packages/chains/chains/634.ts | 40 ------------ packages/chains/chains/641230.ts | 35 ----------- packages/chains/chains/647.ts | 36 ----------- packages/chains/chains/648.ts | 28 --------- packages/chains/chains/65010000.ts | 37 ----------- packages/chains/chains/6502.ts | 22 ------- packages/chains/chains/65100000.ts | 37 ----------- packages/chains/chains/651940.ts | 34 ---------- packages/chains/chains/65450.ts | 34 ---------- packages/chains/chains/6552.ts | 36 ----------- packages/chains/chains/6565.ts | 44 ------------- packages/chains/chains/6626.ts | 29 --------- packages/chains/chains/666.ts | 24 ------- packages/chains/chains/666301171999.ts | 28 --------- packages/chains/chains/666666.ts | 24 ------- packages/chains/chains/6688.ts | 48 -------------- packages/chains/chains/67588.ts | 21 ------- packages/chains/chains/6789.ts | 36 ----------- packages/chains/chains/686.ts | 19 ------ packages/chains/chains/69420.ts | 31 --------- packages/chains/chains/6969.ts | 37 ----------- packages/chains/chains/6999.ts | 23 ------- packages/chains/chains/700.ts | 28 --------- packages/chains/chains/7000.ts | 35 ----------- packages/chains/chains/70000.ts | 28 --------- packages/chains/chains/70001.ts | 28 --------- packages/chains/chains/70002.ts | 28 --------- packages/chains/chains/7001.ts | 37 ----------- packages/chains/chains/70103.ts | 28 --------- packages/chains/chains/7027.ts | 34 ---------- packages/chains/chains/707.ts | 29 --------- packages/chains/chains/7070.ts | 39 ------------ packages/chains/chains/708.ts | 31 --------- packages/chains/chains/71111.ts | 42 ------------- packages/chains/chains/71393.ts | 30 --------- packages/chains/chains/71401.ts | 31 --------- packages/chains/chains/71402.ts | 28 --------- packages/chains/chains/7171.ts | 34 ---------- packages/chains/chains/719.ts | 34 ---------- packages/chains/chains/721.ts | 34 ---------- packages/chains/chains/7225878.ts | 34 ---------- packages/chains/chains/7331.ts | 38 ----------- packages/chains/chains/7332.ts | 49 --------------- packages/chains/chains/7341.ts | 35 ----------- packages/chains/chains/7355310.ts | 34 ---------- packages/chains/chains/73799.ts | 24 ------- packages/chains/chains/73927.ts | 40 ------------ packages/chains/chains/741.ts | 36 ----------- packages/chains/chains/742.ts | 28 --------- packages/chains/chains/7484.ts | 35 ----------- packages/chains/chains/75000.ts | 31 --------- packages/chains/chains/751230.ts | 36 ----------- packages/chains/chains/7518.ts | 40 ------------ packages/chains/chains/7575.ts | 36 ----------- packages/chains/chains/7576.ts | 34 ---------- packages/chains/chains/766.ts | 41 ------------ packages/chains/chains/7668.ts | 29 --------- packages/chains/chains/7668378.ts | 43 ------------- packages/chains/chains/7672.ts | 29 --------- packages/chains/chains/7700.ts | 40 ------------ packages/chains/chains/7701.ts | 28 --------- packages/chains/chains/776.ts | 27 -------- packages/chains/chains/77612.ts | 36 ----------- packages/chains/chains/7762959.ts | 22 ------- packages/chains/chains/777.ts | 21 ------- packages/chains/chains/7771.ts | 36 ----------- packages/chains/chains/7777.ts | 32 ---------- packages/chains/chains/77777.ts | 37 ----------- packages/chains/chains/7777777.ts | 34 ---------- packages/chains/chains/78110.ts | 21 ------- packages/chains/chains/78281.ts | 43 ------------- packages/chains/chains/786.ts | 36 ----------- packages/chains/chains/787.ts | 19 ------ packages/chains/chains/7878.ts | 31 --------- packages/chains/chains/788.ts | 30 --------- packages/chains/chains/789.ts | 48 -------------- packages/chains/chains/7895.ts | 42 ------------- packages/chains/chains/7979.ts | 40 ------------ packages/chains/chains/79879.ts | 36 ----------- packages/chains/chains/800.ts | 36 ----------- packages/chains/chains/8000.ts | 51 --------------- packages/chains/chains/800001.ts | 41 ------------ packages/chains/chains/80001.ts | 42 ------------- packages/chains/chains/8001.ts | 53 ---------------- packages/chains/chains/8007736.ts | 32 ---------- packages/chains/chains/8029.ts | 21 ------- packages/chains/chains/803.ts | 21 ------- packages/chains/chains/808.ts | 28 --------- packages/chains/chains/8080.ts | 39 ------------ packages/chains/chains/8081.ts | 35 ----------- packages/chains/chains/8082.ts | 39 ------------ packages/chains/chains/8086.ts | 22 ------- packages/chains/chains/8098.ts | 21 ------- packages/chains/chains/813.ts | 46 -------------- packages/chains/chains/8131.ts | 37 ----------- packages/chains/chains/8132.ts | 25 -------- packages/chains/chains/8133.ts | 25 -------- packages/chains/chains/8134.ts | 25 -------- packages/chains/chains/81341.ts | 25 -------- packages/chains/chains/81342.ts | 25 -------- packages/chains/chains/81343.ts | 25 -------- packages/chains/chains/8135.ts | 25 -------- packages/chains/chains/81351.ts | 25 -------- packages/chains/chains/81352.ts | 25 -------- packages/chains/chains/81353.ts | 25 -------- packages/chains/chains/8136.ts | 25 -------- packages/chains/chains/81361.ts | 25 -------- packages/chains/chains/81362.ts | 25 -------- packages/chains/chains/81363.ts | 25 -------- packages/chains/chains/818.ts | 40 ------------ packages/chains/chains/8181.ts | 44 ------------- packages/chains/chains/820.ts | 22 ------- packages/chains/chains/8217.ts | 43 ------------- packages/chains/chains/8272.ts | 36 ----------- packages/chains/chains/827431.ts | 34 ---------- packages/chains/chains/8285.ts | 21 ------- packages/chains/chains/8387.ts | 29 --------- packages/chains/chains/841.ts | 34 ---------- packages/chains/chains/842.ts | 34 ---------- packages/chains/chains/8453.ts | 40 ------------ packages/chains/chains/84531.ts | 41 ------------ packages/chains/chains/846000.ts | 21 ------- packages/chains/chains/85449.ts | 21 ------- packages/chains/chains/859.ts | 28 --------- packages/chains/chains/8654.ts | 28 --------- packages/chains/chains/8655.ts | 28 --------- packages/chains/chains/868.ts | 30 --------- packages/chains/chains/8723.ts | 29 --------- packages/chains/chains/8724.ts | 24 ------- packages/chains/chains/8738.ts | 29 --------- packages/chains/chains/876.ts | 38 ----------- packages/chains/chains/8768.ts | 29 --------- packages/chains/chains/877.ts | 30 --------- packages/chains/chains/8794598.ts | 40 ------------ packages/chains/chains/880.ts | 28 --------- packages/chains/chains/8848.ts | 34 ---------- packages/chains/chains/888.ts | 22 ------- packages/chains/chains/8880.ts | 37 ----------- packages/chains/chains/8881.ts | 38 ----------- packages/chains/chains/8882.ts | 39 ------------ packages/chains/chains/8883.ts | 37 ----------- packages/chains/chains/8888.ts | 37 ----------- packages/chains/chains/88880.ts | 36 ----------- packages/chains/chains/88888.ts | 36 ----------- packages/chains/chains/888888.ts | 29 --------- packages/chains/chains/8888881.ts | 26 -------- packages/chains/chains/8888888.ts | 26 -------- packages/chains/chains/88888888.ts | 42 ------------- packages/chains/chains/8889.ts | 21 ------- packages/chains/chains/8898.ts | 45 ------------- packages/chains/chains/8899.ts | 36 ----------- packages/chains/chains/8989.ts | 41 ------------ packages/chains/chains/8995.ts | 23 ------- packages/chains/chains/900.ts | 42 ------------- packages/chains/chains/9000.ts | 42 ------------- packages/chains/chains/900000.ts | 31 --------- packages/chains/chains/9001.ts | 40 ------------ packages/chains/chains/901.ts | 46 -------------- packages/chains/chains/9012.ts | 36 ----------- packages/chains/chains/902.ts | 46 -------------- packages/chains/chains/90210.ts | 32 ---------- packages/chains/chains/903.ts | 46 -------------- packages/chains/chains/909.ts | 26 -------- packages/chains/chains/910.ts | 21 ------- packages/chains/chains/9100.ts | 22 ------- packages/chains/chains/910000.ts | 30 --------- packages/chains/chains/91002.ts | 37 ----------- packages/chains/chains/917.ts | 31 --------- packages/chains/chains/919.ts | 31 --------- packages/chains/chains/920000.ts | 30 --------- packages/chains/chains/920001.ts | 30 --------- packages/chains/chains/92001.ts | 42 ------------- packages/chains/chains/9223.ts | 34 ---------- packages/chains/chains/923018.ts | 42 ------------- packages/chains/chains/9339.ts | 36 ----------- packages/chains/chains/942.ts | 24 ------- packages/chains/chains/943.ts | 43 ------------- packages/chains/chains/9527.ts | 36 ----------- packages/chains/chains/9528.ts | 30 --------- packages/chains/chains/955305.ts | 38 ----------- packages/chains/chains/9559.ts | 42 ------------- packages/chains/chains/956.ts | 18 ------ packages/chains/chains/96970.ts | 47 -------------- packages/chains/chains/970.ts | 27 -------- packages/chains/chains/9700.ts | 25 -------- packages/chains/chains/971.ts | 24 ------- packages/chains/chains/972.ts | 28 --------- packages/chains/chains/9728.ts | 40 ------------ packages/chains/chains/9768.ts | 36 ----------- packages/chains/chains/977.ts | 24 ------- packages/chains/chains/9779.ts | 40 ------------ packages/chains/chains/9790.ts | 28 --------- packages/chains/chains/9792.ts | 28 --------- packages/chains/chains/980.ts | 34 ---------- packages/chains/chains/985.ts | 43 ------------- packages/chains/chains/989.ts | 31 --------- packages/chains/chains/99415706.ts | 23 ------- packages/chains/chains/997.ts | 42 ------------- packages/chains/chains/998.ts | 41 ------------ packages/chains/chains/999.ts | 26 -------- packages/chains/chains/9997.ts | 48 -------------- packages/chains/chains/9999.ts | 21 ------- packages/chains/chains/99998.ts | 21 ------- packages/chains/chains/99999.ts | 21 ------- .../wallets/src/evm/wallets/smart-wallet.ts | 12 ++-- .../evm/wallets/token-bound-smart-wallet.ts | 3 +- 753 files changed, 42 insertions(+), 25369 deletions(-) delete mode 100644 packages/chains/chains/1000.ts delete mode 100644 packages/chains/chains/10000.ts delete mode 100644 packages/chains/chains/100000.ts delete mode 100644 packages/chains/chains/100001.ts delete mode 100644 packages/chains/chains/100002.ts delete mode 100644 packages/chains/chains/100003.ts delete mode 100644 packages/chains/chains/100004.ts delete mode 100644 packages/chains/chains/100005.ts delete mode 100644 packages/chains/chains/100006.ts delete mode 100644 packages/chains/chains/100007.ts delete mode 100644 packages/chains/chains/100008.ts delete mode 100644 packages/chains/chains/100009.ts delete mode 100644 packages/chains/chains/10001.ts delete mode 100644 packages/chains/chains/100010.ts delete mode 100644 packages/chains/chains/1001.ts delete mode 100644 packages/chains/chains/10024.ts delete mode 100644 packages/chains/chains/1004.ts delete mode 100644 packages/chains/chains/10067275.ts delete mode 100644 packages/chains/chains/1007.ts delete mode 100644 packages/chains/chains/1008.ts delete mode 100644 packages/chains/chains/10086.ts delete mode 100644 packages/chains/chains/1010.ts delete mode 100644 packages/chains/chains/10101.ts delete mode 100644 packages/chains/chains/101010.ts delete mode 100644 packages/chains/chains/10101010.ts delete mode 100644 packages/chains/chains/1012.ts delete mode 100644 packages/chains/chains/10200.ts delete mode 100644 packages/chains/chains/1022.ts delete mode 100644 packages/chains/chains/1023.ts delete mode 100644 packages/chains/chains/1024.ts delete mode 100644 packages/chains/chains/10248.ts delete mode 100644 packages/chains/chains/1028.ts delete mode 100644 packages/chains/chains/1030.ts delete mode 100644 packages/chains/chains/103090.ts delete mode 100644 packages/chains/chains/1031.ts delete mode 100644 packages/chains/chains/1038.ts delete mode 100644 packages/chains/chains/1039.ts delete mode 100644 packages/chains/chains/10507.ts delete mode 100644 packages/chains/chains/10508.ts delete mode 100644 packages/chains/chains/1072.ts delete mode 100644 packages/chains/chains/1079.ts delete mode 100644 packages/chains/chains/10823.ts delete mode 100644 packages/chains/chains/1088.ts delete mode 100644 packages/chains/chains/108801.ts delete mode 100644 packages/chains/chains/10946.ts delete mode 100644 packages/chains/chains/10947.ts delete mode 100644 packages/chains/chains/1099.ts delete mode 100644 packages/chains/chains/110000.ts delete mode 100644 packages/chains/chains/110001.ts delete mode 100644 packages/chains/chains/110002.ts delete mode 100644 packages/chains/chains/110003.ts delete mode 100644 packages/chains/chains/110004.ts delete mode 100644 packages/chains/chains/110005.ts delete mode 100644 packages/chains/chains/110006.ts delete mode 100644 packages/chains/chains/110007.ts delete mode 100644 packages/chains/chains/110008.ts delete mode 100644 packages/chains/chains/1101.ts delete mode 100644 packages/chains/chains/111000.ts delete mode 100644 packages/chains/chains/1111.ts delete mode 100644 packages/chains/chains/11110.ts delete mode 100644 packages/chains/chains/11111.ts delete mode 100644 packages/chains/chains/111111.ts delete mode 100644 packages/chains/chains/11115.ts delete mode 100644 packages/chains/chains/11119.ts delete mode 100644 packages/chains/chains/1112.ts delete mode 100644 packages/chains/chains/111222333444.ts delete mode 100644 packages/chains/chains/1115.ts delete mode 100644 packages/chains/chains/11155111.ts delete mode 100644 packages/chains/chains/1116.ts delete mode 100644 packages/chains/chains/1117.ts delete mode 100644 packages/chains/chains/1122334455.ts delete mode 100644 packages/chains/chains/11235.ts delete mode 100644 packages/chains/chains/112358.ts delete mode 100644 packages/chains/chains/11297108099.ts delete mode 100644 packages/chains/chains/11297108109.ts delete mode 100644 packages/chains/chains/1130.ts delete mode 100644 packages/chains/chains/1131.ts delete mode 100644 packages/chains/chains/1138.ts delete mode 100644 packages/chains/chains/1139.ts delete mode 100644 packages/chains/chains/1140.ts delete mode 100644 packages/chains/chains/11437.ts delete mode 100644 packages/chains/chains/1146703430.ts delete mode 100644 packages/chains/chains/1149.ts delete mode 100644 packages/chains/chains/11612.ts delete mode 100644 packages/chains/chains/1170.ts delete mode 100644 packages/chains/chains/1177.ts delete mode 100644 packages/chains/chains/11888.ts delete mode 100644 packages/chains/chains/1197.ts delete mode 100644 packages/chains/chains/12009.ts delete mode 100644 packages/chains/chains/1201.ts delete mode 100644 packages/chains/chains/1202.ts delete mode 100644 packages/chains/chains/12051.ts delete mode 100644 packages/chains/chains/12052.ts delete mode 100644 packages/chains/chains/12123.ts delete mode 100644 packages/chains/chains/1213.ts delete mode 100644 packages/chains/chains/1214.ts delete mode 100644 packages/chains/chains/1229.ts delete mode 100644 packages/chains/chains/1230.ts delete mode 100644 packages/chains/chains/12306.ts delete mode 100644 packages/chains/chains/1231.ts delete mode 100644 packages/chains/chains/12321.ts delete mode 100644 packages/chains/chains/1234.ts delete mode 100644 packages/chains/chains/12345.ts delete mode 100644 packages/chains/chains/123456.ts delete mode 100644 packages/chains/chains/1243.ts delete mode 100644 packages/chains/chains/1244.ts delete mode 100644 packages/chains/chains/1246.ts delete mode 100644 packages/chains/chains/1252.ts delete mode 100644 packages/chains/chains/12715.ts delete mode 100644 packages/chains/chains/1273227453.ts delete mode 100644 packages/chains/chains/1280.ts delete mode 100644 packages/chains/chains/1284.ts delete mode 100644 packages/chains/chains/1285.ts delete mode 100644 packages/chains/chains/1287.ts delete mode 100644 packages/chains/chains/1288.ts delete mode 100644 packages/chains/chains/1294.ts delete mode 100644 packages/chains/chains/1297.ts delete mode 100644 packages/chains/chains/13000.ts delete mode 100644 packages/chains/chains/1311.ts delete mode 100644 packages/chains/chains/1313114.ts delete mode 100644 packages/chains/chains/1313161554.ts delete mode 100644 packages/chains/chains/1313161555.ts delete mode 100644 packages/chains/chains/1313161556.ts delete mode 100644 packages/chains/chains/1313500.ts delete mode 100644 packages/chains/chains/1314.ts delete mode 100644 packages/chains/chains/131419.ts delete mode 100644 packages/chains/chains/1319.ts delete mode 100644 packages/chains/chains/1320.ts delete mode 100644 packages/chains/chains/13308.ts delete mode 100644 packages/chains/chains/1337.ts delete mode 100644 packages/chains/chains/13371337.ts delete mode 100644 packages/chains/chains/1337702.ts delete mode 100644 packages/chains/chains/1337802.ts delete mode 100644 packages/chains/chains/1337803.ts delete mode 100644 packages/chains/chains/1338.ts delete mode 100644 packages/chains/chains/13381.ts delete mode 100644 packages/chains/chains/1339.ts delete mode 100644 packages/chains/chains/1351057110.ts delete mode 100644 packages/chains/chains/1353.ts delete mode 100644 packages/chains/chains/1369.ts delete mode 100644 packages/chains/chains/1380996178.ts delete mode 100644 packages/chains/chains/13812.ts delete mode 100644 packages/chains/chains/1388.ts delete mode 100644 packages/chains/chains/1392.ts delete mode 100644 packages/chains/chains/14000.ts delete mode 100644 packages/chains/chains/142857.ts delete mode 100644 packages/chains/chains/14288640.ts delete mode 100644 packages/chains/chains/1433.ts delete mode 100644 packages/chains/chains/1440.ts delete mode 100644 packages/chains/chains/1440001.ts delete mode 100644 packages/chains/chains/1442.ts delete mode 100644 packages/chains/chains/1452.ts delete mode 100644 packages/chains/chains/1455.ts delete mode 100644 packages/chains/chains/1482601649.ts delete mode 100644 packages/chains/chains/1501.ts delete mode 100644 packages/chains/chains/1506.ts delete mode 100644 packages/chains/chains/1507.ts delete mode 100644 packages/chains/chains/1515.ts delete mode 100644 packages/chains/chains/15551.ts delete mode 100644 packages/chains/chains/15555.ts delete mode 100644 packages/chains/chains/15557.ts delete mode 100644 packages/chains/chains/1559.ts delete mode 100644 packages/chains/chains/1564830818.ts delete mode 100644 packages/chains/chains/1582.ts delete mode 100644 packages/chains/chains/16000.ts delete mode 100644 packages/chains/chains/16001.ts delete mode 100644 packages/chains/chains/1618.ts delete mode 100644 packages/chains/chains/1620.ts delete mode 100644 packages/chains/chains/16507.ts delete mode 100644 packages/chains/chains/1657.ts delete mode 100644 packages/chains/chains/1663.ts delete mode 100644 packages/chains/chains/16658437.ts delete mode 100644 packages/chains/chains/1666600000.ts delete mode 100644 packages/chains/chains/1666600001.ts delete mode 100644 packages/chains/chains/1666600002.ts delete mode 100644 packages/chains/chains/1666600003.ts delete mode 100644 packages/chains/chains/1666700000.ts delete mode 100644 packages/chains/chains/1666700001.ts delete mode 100644 packages/chains/chains/1666700002.ts delete mode 100644 packages/chains/chains/1666700003.ts delete mode 100644 packages/chains/chains/1666900000.ts delete mode 100644 packages/chains/chains/16688.ts delete mode 100644 packages/chains/chains/167005.ts delete mode 100644 packages/chains/chains/167006.ts delete mode 100644 packages/chains/chains/16718.ts delete mode 100644 packages/chains/chains/1688.ts delete mode 100644 packages/chains/chains/16888.ts delete mode 100644 packages/chains/chains/1701.ts delete mode 100644 packages/chains/chains/1707.ts delete mode 100644 packages/chains/chains/1708.ts delete mode 100644 packages/chains/chains/1718.ts delete mode 100644 packages/chains/chains/17180.ts delete mode 100644 packages/chains/chains/1773.ts delete mode 100644 packages/chains/chains/1777.ts delete mode 100644 packages/chains/chains/17777.ts delete mode 100644 packages/chains/chains/18000.ts delete mode 100644 packages/chains/chains/1804.ts delete mode 100644 packages/chains/chains/1807.ts delete mode 100644 packages/chains/chains/18159.ts delete mode 100644 packages/chains/chains/1818.ts delete mode 100644 packages/chains/chains/1819.ts delete mode 100644 packages/chains/chains/18289463.ts delete mode 100644 packages/chains/chains/1856.ts delete mode 100644 packages/chains/chains/18686.ts delete mode 100644 packages/chains/chains/1881.ts delete mode 100644 packages/chains/chains/188881.ts delete mode 100644 packages/chains/chains/1890.ts delete mode 100644 packages/chains/chains/1891.ts delete mode 100644 packages/chains/chains/1898.ts delete mode 100644 packages/chains/chains/19011.ts delete mode 100644 packages/chains/chains/1907.ts delete mode 100644 packages/chains/chains/1908.ts delete mode 100644 packages/chains/chains/192837465.ts delete mode 100644 packages/chains/chains/1945.ts delete mode 100644 packages/chains/chains/1951.ts delete mode 100644 packages/chains/chains/1954.ts delete mode 100644 packages/chains/chains/1967.ts delete mode 100644 packages/chains/chains/1969.ts delete mode 100644 packages/chains/chains/1970.ts delete mode 100644 packages/chains/chains/1971.ts delete mode 100644 packages/chains/chains/1975.ts delete mode 100644 packages/chains/chains/197710212030.ts delete mode 100644 packages/chains/chains/197710212031.ts delete mode 100644 packages/chains/chains/1984.ts delete mode 100644 packages/chains/chains/19845.ts delete mode 100644 packages/chains/chains/1987.ts delete mode 100644 packages/chains/chains/1994.ts delete mode 100644 packages/chains/chains/1995.ts delete mode 100644 packages/chains/chains/2000.ts delete mode 100644 packages/chains/chains/20001.ts delete mode 100644 packages/chains/chains/2001.ts delete mode 100644 packages/chains/chains/200101.ts delete mode 100644 packages/chains/chains/2002.ts delete mode 100644 packages/chains/chains/200202.ts delete mode 100644 packages/chains/chains/200625.ts delete mode 100644 packages/chains/chains/2008.ts delete mode 100644 packages/chains/chains/2009.ts delete mode 100644 packages/chains/chains/201018.ts delete mode 100644 packages/chains/chains/201030.ts delete mode 100644 packages/chains/chains/2016.ts delete mode 100644 packages/chains/chains/2018.ts delete mode 100644 packages/chains/chains/201804.ts delete mode 100644 packages/chains/chains/20180430.ts delete mode 100644 packages/chains/chains/20181205.ts delete mode 100644 packages/chains/chains/2019.ts delete mode 100644 packages/chains/chains/2020.ts delete mode 100644 packages/chains/chains/20201022.ts delete mode 100644 packages/chains/chains/202020.ts delete mode 100644 packages/chains/chains/2021.ts delete mode 100644 packages/chains/chains/2021121117.ts delete mode 100644 packages/chains/chains/2022.ts delete mode 100644 packages/chains/chains/2023.ts delete mode 100644 packages/chains/chains/2025.ts delete mode 100644 packages/chains/chains/202624.ts delete mode 100644 packages/chains/chains/2043.ts delete mode 100644 packages/chains/chains/2044.ts delete mode 100644 packages/chains/chains/2046399126.ts delete mode 100644 packages/chains/chains/2047.ts delete mode 100644 packages/chains/chains/2048.ts delete mode 100644 packages/chains/chains/20729.ts delete mode 100644 packages/chains/chains/20736.ts delete mode 100644 packages/chains/chains/2077.ts delete mode 100644 packages/chains/chains/2099156.ts delete mode 100644 packages/chains/chains/2100.ts delete mode 100644 packages/chains/chains/2101.ts delete mode 100644 packages/chains/chains/210425.ts delete mode 100644 packages/chains/chains/2109.ts delete mode 100644 packages/chains/chains/2122.ts delete mode 100644 packages/chains/chains/2124.ts delete mode 100644 packages/chains/chains/21337.ts delete mode 100644 packages/chains/chains/2138.ts delete mode 100644 packages/chains/chains/2151.ts delete mode 100644 packages/chains/chains/2152.ts delete mode 100644 packages/chains/chains/2153.ts delete mode 100644 packages/chains/chains/2154.ts delete mode 100644 packages/chains/chains/21816.ts delete mode 100644 packages/chains/chains/2199.ts delete mode 100644 packages/chains/chains/2202.ts delete mode 100644 packages/chains/chains/22023.ts delete mode 100644 packages/chains/chains/2203.ts delete mode 100644 packages/chains/chains/220315.ts delete mode 100644 packages/chains/chains/22040.ts delete mode 100644 packages/chains/chains/22052002.ts delete mode 100644 packages/chains/chains/2206132.ts delete mode 100644 packages/chains/chains/2213.ts delete mode 100644 packages/chains/chains/222000222.ts delete mode 100644 packages/chains/chains/2221.ts delete mode 100644 packages/chains/chains/2222.ts delete mode 100644 packages/chains/chains/2223.ts delete mode 100644 packages/chains/chains/224168.ts delete mode 100644 packages/chains/chains/22776.ts delete mode 100644 packages/chains/chains/2300.ts delete mode 100644 packages/chains/chains/23006.ts delete mode 100644 packages/chains/chains/230315.ts delete mode 100644 packages/chains/chains/2309.ts delete mode 100644 packages/chains/chains/23118.ts delete mode 100644 packages/chains/chains/2323.ts delete mode 100644 packages/chains/chains/23294.ts delete mode 100644 packages/chains/chains/23295.ts delete mode 100644 packages/chains/chains/2330.ts delete mode 100644 packages/chains/chains/2332.ts delete mode 100644 packages/chains/chains/234666.ts delete mode 100644 packages/chains/chains/2358.ts delete mode 100644 packages/chains/chains/2399.ts delete mode 100644 packages/chains/chains/2400.ts delete mode 100644 packages/chains/chains/2415.ts delete mode 100644 packages/chains/chains/24484.ts delete mode 100644 packages/chains/chains/245022926.ts delete mode 100644 packages/chains/chains/245022934.ts delete mode 100644 packages/chains/chains/245022940.ts delete mode 100644 packages/chains/chains/246529.ts delete mode 100644 packages/chains/chains/246785.ts delete mode 100644 packages/chains/chains/247253.ts delete mode 100644 packages/chains/chains/24734.ts delete mode 100644 packages/chains/chains/2559.ts delete mode 100644 packages/chains/chains/256256.ts delete mode 100644 packages/chains/chains/2569.ts delete mode 100644 packages/chains/chains/25888.ts delete mode 100644 packages/chains/chains/25925.ts delete mode 100644 packages/chains/chains/26026.ts delete mode 100644 packages/chains/chains/2606.ts delete mode 100644 packages/chains/chains/2611.ts delete mode 100644 packages/chains/chains/2612.ts delete mode 100644 packages/chains/chains/2613.ts delete mode 100644 packages/chains/chains/2625.ts delete mode 100644 packages/chains/chains/26600.ts delete mode 100644 packages/chains/chains/266256.ts delete mode 100644 packages/chains/chains/26863.ts delete mode 100644 packages/chains/chains/27082017.ts delete mode 100644 packages/chains/chains/27082022.ts delete mode 100644 packages/chains/chains/271271.ts delete mode 100644 packages/chains/chains/278611351.ts delete mode 100644 packages/chains/chains/281121.ts delete mode 100644 packages/chains/chains/28528.ts delete mode 100644 packages/chains/chains/2888.ts delete mode 100644 packages/chains/chains/28945486.ts delete mode 100644 packages/chains/chains/29032022.ts delete mode 100644 packages/chains/chains/2999.ts delete mode 100644 packages/chains/chains/3000.ts delete mode 100644 packages/chains/chains/3001.ts delete mode 100644 packages/chains/chains/3003.ts delete mode 100644 packages/chains/chains/30067.ts delete mode 100644 packages/chains/chains/3011.ts delete mode 100644 packages/chains/chains/3031.ts delete mode 100644 packages/chains/chains/3068.ts delete mode 100644 packages/chains/chains/31102.ts delete mode 100644 packages/chains/chains/311752642.ts delete mode 100644 packages/chains/chains/31223.ts delete mode 100644 packages/chains/chains/31224.ts delete mode 100644 packages/chains/chains/3125659152.ts delete mode 100644 packages/chains/chains/31337.ts delete mode 100644 packages/chains/chains/314159.ts delete mode 100644 packages/chains/chains/3141592.ts delete mode 100644 packages/chains/chains/31415926.ts delete mode 100644 packages/chains/chains/32520.ts delete mode 100644 packages/chains/chains/32659.ts delete mode 100644 packages/chains/chains/32769.ts delete mode 100644 packages/chains/chains/3306.ts delete mode 100644 packages/chains/chains/330844.ts delete mode 100644 packages/chains/chains/33101.ts delete mode 100644 packages/chains/chains/331769.ts delete mode 100644 packages/chains/chains/333000333.ts delete mode 100644 packages/chains/chains/3331.ts delete mode 100644 packages/chains/chains/3333.ts delete mode 100644 packages/chains/chains/33333.ts delete mode 100644 packages/chains/chains/333331.ts delete mode 100644 packages/chains/chains/3334.ts delete mode 100644 packages/chains/chains/333777.ts delete mode 100644 packages/chains/chains/333888.ts delete mode 100644 packages/chains/chains/333999.ts delete mode 100644 packages/chains/chains/3400.ts delete mode 100644 packages/chains/chains/3434.ts delete mode 100644 packages/chains/chains/344106930.ts delete mode 100644 packages/chains/chains/3500.ts delete mode 100644 packages/chains/chains/3501.ts delete mode 100644 packages/chains/chains/35011.ts delete mode 100644 packages/chains/chains/35441.ts delete mode 100644 packages/chains/chains/35443.ts delete mode 100644 packages/chains/chains/355113.ts delete mode 100644 packages/chains/chains/356256156.ts delete mode 100644 packages/chains/chains/35855456.ts delete mode 100644 packages/chains/chains/3601.ts delete mode 100644 packages/chains/chains/3602.ts delete mode 100644 packages/chains/chains/3636.ts delete mode 100644 packages/chains/chains/3637.ts delete mode 100644 packages/chains/chains/3666.ts delete mode 100644 packages/chains/chains/3690.ts delete mode 100644 packages/chains/chains/3693.ts delete mode 100644 packages/chains/chains/3698.ts delete mode 100644 packages/chains/chains/3699.ts delete mode 100644 packages/chains/chains/3737.ts delete mode 100644 packages/chains/chains/373737.ts delete mode 100644 packages/chains/chains/3797.ts delete mode 100644 packages/chains/chains/381931.ts delete mode 100644 packages/chains/chains/381932.ts delete mode 100644 packages/chains/chains/383414847825.ts delete mode 100644 packages/chains/chains/3912.ts delete mode 100644 packages/chains/chains/3939.ts delete mode 100644 packages/chains/chains/3966.ts delete mode 100644 packages/chains/chains/3967.ts delete mode 100644 packages/chains/chains/39797.ts delete mode 100644 packages/chains/chains/39815.ts delete mode 100644 packages/chains/chains/3999.ts delete mode 100644 packages/chains/chains/4000.ts delete mode 100644 packages/chains/chains/4000003.ts delete mode 100644 packages/chains/chains/4001.ts delete mode 100644 packages/chains/chains/4002.ts delete mode 100644 packages/chains/chains/404040.ts delete mode 100644 packages/chains/chains/4051.ts delete mode 100644 packages/chains/chains/4061.ts delete mode 100644 packages/chains/chains/4062.ts delete mode 100644 packages/chains/chains/408.ts delete mode 100644 packages/chains/chains/4090.ts delete mode 100644 packages/chains/chains/4096.ts delete mode 100644 packages/chains/chains/4099.ts delete mode 100644 packages/chains/chains/4102.ts create mode 100644 packages/chains/chains/411.ts delete mode 100644 packages/chains/chains/4141.ts delete mode 100644 packages/chains/chains/41500.ts delete mode 100644 packages/chains/chains/4181.ts delete mode 100644 packages/chains/chains/4201.ts delete mode 100644 packages/chains/chains/420420.ts delete mode 100644 packages/chains/chains/420666.ts delete mode 100644 packages/chains/chains/42069.ts delete mode 100644 packages/chains/chains/42161.ts delete mode 100644 packages/chains/chains/421611.ts delete mode 100644 packages/chains/chains/421613.ts delete mode 100644 packages/chains/chains/4216137055.ts delete mode 100644 packages/chains/chains/42170.ts delete mode 100644 packages/chains/chains/42220.ts delete mode 100644 packages/chains/chains/42261.ts delete mode 100644 packages/chains/chains/42262.ts delete mode 100644 packages/chains/chains/4242.ts delete mode 100644 packages/chains/chains/424242.ts delete mode 100644 packages/chains/chains/4281033.ts delete mode 100644 packages/chains/chains/43110.ts delete mode 100644 packages/chains/chains/43113.ts delete mode 100644 packages/chains/chains/43114.ts delete mode 100644 packages/chains/chains/431140.ts delete mode 100644 packages/chains/chains/43214913.ts delete mode 100644 packages/chains/chains/432201.ts delete mode 100644 packages/chains/chains/432204.ts delete mode 100644 packages/chains/chains/4328.ts delete mode 100644 packages/chains/chains/43288.ts delete mode 100644 packages/chains/chains/4444.ts delete mode 100644 packages/chains/chains/44444.ts delete mode 100644 packages/chains/chains/444900.ts delete mode 100644 packages/chains/chains/44787.ts delete mode 100644 packages/chains/chains/45000.ts delete mode 100644 packages/chains/chains/46688.ts delete mode 100644 packages/chains/chains/4689.ts delete mode 100644 packages/chains/chains/4690.ts delete mode 100644 packages/chains/chains/471100.ts delete mode 100644 packages/chains/chains/474142.ts delete mode 100644 packages/chains/chains/4759.ts delete mode 100644 packages/chains/chains/4777.ts delete mode 100644 packages/chains/chains/47805.ts delete mode 100644 packages/chains/chains/486217935.ts delete mode 100644 packages/chains/chains/49049.ts delete mode 100644 packages/chains/chains/49088.ts delete mode 100644 packages/chains/chains/4918.ts delete mode 100644 packages/chains/chains/4919.ts delete mode 100644 packages/chains/chains/49797.ts delete mode 100644 packages/chains/chains/4999.ts delete mode 100644 packages/chains/chains/500.ts delete mode 100644 packages/chains/chains/5000.ts delete mode 100644 packages/chains/chains/50001.ts delete mode 100644 packages/chains/chains/5001.ts delete mode 100644 packages/chains/chains/5002.ts delete mode 100644 packages/chains/chains/50021.ts delete mode 100644 packages/chains/chains/5005.ts delete mode 100644 packages/chains/chains/501.ts delete mode 100644 packages/chains/chains/503129905.ts delete mode 100644 packages/chains/chains/51178.ts delete mode 100644 packages/chains/chains/512.ts delete mode 100644 packages/chains/chains/512512.ts delete mode 100644 packages/chains/chains/513.ts delete mode 100644 packages/chains/chains/513100.ts delete mode 100644 packages/chains/chains/516.ts delete mode 100644 packages/chains/chains/5165.ts delete mode 100644 packages/chains/chains/5167003.ts delete mode 100644 packages/chains/chains/51712.ts delete mode 100644 packages/chains/chains/5177.ts delete mode 100644 packages/chains/chains/5197.ts delete mode 100644 packages/chains/chains/520.ts delete mode 100644 packages/chains/chains/5234.ts delete mode 100644 packages/chains/chains/529.ts delete mode 100644 packages/chains/chains/530.ts delete mode 100644 packages/chains/chains/5315.ts delete mode 100644 packages/chains/chains/534.ts delete mode 100644 packages/chains/chains/534351.ts delete mode 100644 packages/chains/chains/534352.ts delete mode 100644 packages/chains/chains/534353.ts delete mode 100644 packages/chains/chains/534849.ts delete mode 100644 packages/chains/chains/535037.ts delete mode 100644 packages/chains/chains/53935.ts delete mode 100644 packages/chains/chains/54211.ts delete mode 100644 packages/chains/chains/54321.ts delete mode 100644 packages/chains/chains/55004.ts delete mode 100644 packages/chains/chains/555.ts delete mode 100644 packages/chains/chains/5551.ts delete mode 100644 packages/chains/chains/5553.ts delete mode 100644 packages/chains/chains/5555.ts delete mode 100644 packages/chains/chains/55555.ts delete mode 100644 packages/chains/chains/5555555.ts delete mode 100644 packages/chains/chains/5555558.ts delete mode 100644 packages/chains/chains/55556.ts delete mode 100644 packages/chains/chains/558.ts delete mode 100644 packages/chains/chains/5611.ts delete mode 100644 packages/chains/chains/56288.ts delete mode 100644 packages/chains/chains/568.ts delete mode 100644 packages/chains/chains/570.ts delete mode 100644 packages/chains/chains/5700.ts delete mode 100644 packages/chains/chains/57000.ts delete mode 100644 packages/chains/chains/5729.ts delete mode 100644 packages/chains/chains/5758.ts delete mode 100644 packages/chains/chains/5777.ts delete mode 100644 packages/chains/chains/58008.ts delete mode 100644 packages/chains/chains/5851.ts delete mode 100644 packages/chains/chains/5869.ts delete mode 100644 packages/chains/chains/59140.ts delete mode 100644 packages/chains/chains/59144.ts delete mode 100644 packages/chains/chains/592.ts delete mode 100644 packages/chains/chains/595.ts delete mode 100644 packages/chains/chains/596.ts delete mode 100644 packages/chains/chains/597.ts delete mode 100644 packages/chains/chains/599.ts delete mode 100644 packages/chains/chains/600.ts delete mode 100644 packages/chains/chains/60000.ts delete mode 100644 packages/chains/chains/60001.ts delete mode 100644 packages/chains/chains/60002.ts delete mode 100644 packages/chains/chains/60103.ts delete mode 100644 packages/chains/chains/6022140761023.ts delete mode 100644 packages/chains/chains/6065.ts delete mode 100644 packages/chains/chains/6066.ts delete mode 100644 packages/chains/chains/6102.ts delete mode 100644 packages/chains/chains/6118.ts delete mode 100644 packages/chains/chains/6119.ts delete mode 100644 packages/chains/chains/614.ts delete mode 100644 packages/chains/chains/61717561.ts delete mode 100644 packages/chains/chains/61800.ts delete mode 100644 packages/chains/chains/61803.ts delete mode 100644 packages/chains/chains/61916.ts delete mode 100644 packages/chains/chains/62320.ts delete mode 100644 packages/chains/chains/62621.ts delete mode 100644 packages/chains/chains/63000.ts delete mode 100644 packages/chains/chains/63001.ts delete mode 100644 packages/chains/chains/634.ts delete mode 100644 packages/chains/chains/641230.ts delete mode 100644 packages/chains/chains/647.ts delete mode 100644 packages/chains/chains/648.ts delete mode 100644 packages/chains/chains/65010000.ts delete mode 100644 packages/chains/chains/6502.ts delete mode 100644 packages/chains/chains/65100000.ts delete mode 100644 packages/chains/chains/651940.ts delete mode 100644 packages/chains/chains/65450.ts delete mode 100644 packages/chains/chains/6552.ts delete mode 100644 packages/chains/chains/6565.ts delete mode 100644 packages/chains/chains/6626.ts delete mode 100644 packages/chains/chains/666.ts delete mode 100644 packages/chains/chains/666301171999.ts delete mode 100644 packages/chains/chains/666666.ts delete mode 100644 packages/chains/chains/6688.ts delete mode 100644 packages/chains/chains/67588.ts delete mode 100644 packages/chains/chains/6789.ts delete mode 100644 packages/chains/chains/686.ts delete mode 100644 packages/chains/chains/69420.ts delete mode 100644 packages/chains/chains/6969.ts delete mode 100644 packages/chains/chains/6999.ts delete mode 100644 packages/chains/chains/700.ts delete mode 100644 packages/chains/chains/7000.ts delete mode 100644 packages/chains/chains/70000.ts delete mode 100644 packages/chains/chains/70001.ts delete mode 100644 packages/chains/chains/70002.ts delete mode 100644 packages/chains/chains/7001.ts delete mode 100644 packages/chains/chains/70103.ts delete mode 100644 packages/chains/chains/7027.ts delete mode 100644 packages/chains/chains/707.ts delete mode 100644 packages/chains/chains/7070.ts delete mode 100644 packages/chains/chains/708.ts delete mode 100644 packages/chains/chains/71111.ts delete mode 100644 packages/chains/chains/71393.ts delete mode 100644 packages/chains/chains/71401.ts delete mode 100644 packages/chains/chains/71402.ts delete mode 100644 packages/chains/chains/7171.ts delete mode 100644 packages/chains/chains/719.ts delete mode 100644 packages/chains/chains/721.ts delete mode 100644 packages/chains/chains/7225878.ts delete mode 100644 packages/chains/chains/7331.ts delete mode 100644 packages/chains/chains/7332.ts delete mode 100644 packages/chains/chains/7341.ts delete mode 100644 packages/chains/chains/7355310.ts delete mode 100644 packages/chains/chains/73799.ts delete mode 100644 packages/chains/chains/73927.ts delete mode 100644 packages/chains/chains/741.ts delete mode 100644 packages/chains/chains/742.ts delete mode 100644 packages/chains/chains/7484.ts delete mode 100644 packages/chains/chains/75000.ts delete mode 100644 packages/chains/chains/751230.ts delete mode 100644 packages/chains/chains/7518.ts delete mode 100644 packages/chains/chains/7575.ts delete mode 100644 packages/chains/chains/7576.ts delete mode 100644 packages/chains/chains/766.ts delete mode 100644 packages/chains/chains/7668.ts delete mode 100644 packages/chains/chains/7668378.ts delete mode 100644 packages/chains/chains/7672.ts delete mode 100644 packages/chains/chains/7700.ts delete mode 100644 packages/chains/chains/7701.ts delete mode 100644 packages/chains/chains/776.ts delete mode 100644 packages/chains/chains/77612.ts delete mode 100644 packages/chains/chains/7762959.ts delete mode 100644 packages/chains/chains/777.ts delete mode 100644 packages/chains/chains/7771.ts delete mode 100644 packages/chains/chains/7777.ts delete mode 100644 packages/chains/chains/77777.ts delete mode 100644 packages/chains/chains/7777777.ts delete mode 100644 packages/chains/chains/78110.ts delete mode 100644 packages/chains/chains/78281.ts delete mode 100644 packages/chains/chains/786.ts delete mode 100644 packages/chains/chains/787.ts delete mode 100644 packages/chains/chains/7878.ts delete mode 100644 packages/chains/chains/788.ts delete mode 100644 packages/chains/chains/789.ts delete mode 100644 packages/chains/chains/7895.ts delete mode 100644 packages/chains/chains/7979.ts delete mode 100644 packages/chains/chains/79879.ts delete mode 100644 packages/chains/chains/800.ts delete mode 100644 packages/chains/chains/8000.ts delete mode 100644 packages/chains/chains/800001.ts delete mode 100644 packages/chains/chains/80001.ts delete mode 100644 packages/chains/chains/8001.ts delete mode 100644 packages/chains/chains/8007736.ts delete mode 100644 packages/chains/chains/8029.ts delete mode 100644 packages/chains/chains/803.ts delete mode 100644 packages/chains/chains/808.ts delete mode 100644 packages/chains/chains/8080.ts delete mode 100644 packages/chains/chains/8081.ts delete mode 100644 packages/chains/chains/8082.ts delete mode 100644 packages/chains/chains/8086.ts delete mode 100644 packages/chains/chains/8098.ts delete mode 100644 packages/chains/chains/813.ts delete mode 100644 packages/chains/chains/8131.ts delete mode 100644 packages/chains/chains/8132.ts delete mode 100644 packages/chains/chains/8133.ts delete mode 100644 packages/chains/chains/8134.ts delete mode 100644 packages/chains/chains/81341.ts delete mode 100644 packages/chains/chains/81342.ts delete mode 100644 packages/chains/chains/81343.ts delete mode 100644 packages/chains/chains/8135.ts delete mode 100644 packages/chains/chains/81351.ts delete mode 100644 packages/chains/chains/81352.ts delete mode 100644 packages/chains/chains/81353.ts delete mode 100644 packages/chains/chains/8136.ts delete mode 100644 packages/chains/chains/81361.ts delete mode 100644 packages/chains/chains/81362.ts delete mode 100644 packages/chains/chains/81363.ts delete mode 100644 packages/chains/chains/818.ts delete mode 100644 packages/chains/chains/8181.ts delete mode 100644 packages/chains/chains/820.ts delete mode 100644 packages/chains/chains/8217.ts delete mode 100644 packages/chains/chains/8272.ts delete mode 100644 packages/chains/chains/827431.ts delete mode 100644 packages/chains/chains/8285.ts delete mode 100644 packages/chains/chains/8387.ts delete mode 100644 packages/chains/chains/841.ts delete mode 100644 packages/chains/chains/842.ts delete mode 100644 packages/chains/chains/8453.ts delete mode 100644 packages/chains/chains/84531.ts delete mode 100644 packages/chains/chains/846000.ts delete mode 100644 packages/chains/chains/85449.ts delete mode 100644 packages/chains/chains/859.ts delete mode 100644 packages/chains/chains/8654.ts delete mode 100644 packages/chains/chains/8655.ts delete mode 100644 packages/chains/chains/868.ts delete mode 100644 packages/chains/chains/8723.ts delete mode 100644 packages/chains/chains/8724.ts delete mode 100644 packages/chains/chains/8738.ts delete mode 100644 packages/chains/chains/876.ts delete mode 100644 packages/chains/chains/8768.ts delete mode 100644 packages/chains/chains/877.ts delete mode 100644 packages/chains/chains/8794598.ts delete mode 100644 packages/chains/chains/880.ts delete mode 100644 packages/chains/chains/8848.ts delete mode 100644 packages/chains/chains/888.ts delete mode 100644 packages/chains/chains/8880.ts delete mode 100644 packages/chains/chains/8881.ts delete mode 100644 packages/chains/chains/8882.ts delete mode 100644 packages/chains/chains/8883.ts delete mode 100644 packages/chains/chains/8888.ts delete mode 100644 packages/chains/chains/88880.ts delete mode 100644 packages/chains/chains/88888.ts delete mode 100644 packages/chains/chains/888888.ts delete mode 100644 packages/chains/chains/8888881.ts delete mode 100644 packages/chains/chains/8888888.ts delete mode 100644 packages/chains/chains/88888888.ts delete mode 100644 packages/chains/chains/8889.ts delete mode 100644 packages/chains/chains/8898.ts delete mode 100644 packages/chains/chains/8899.ts delete mode 100644 packages/chains/chains/8989.ts delete mode 100644 packages/chains/chains/8995.ts delete mode 100644 packages/chains/chains/900.ts delete mode 100644 packages/chains/chains/9000.ts delete mode 100644 packages/chains/chains/900000.ts delete mode 100644 packages/chains/chains/9001.ts delete mode 100644 packages/chains/chains/901.ts delete mode 100644 packages/chains/chains/9012.ts delete mode 100644 packages/chains/chains/902.ts delete mode 100644 packages/chains/chains/90210.ts delete mode 100644 packages/chains/chains/903.ts delete mode 100644 packages/chains/chains/909.ts delete mode 100644 packages/chains/chains/910.ts delete mode 100644 packages/chains/chains/9100.ts delete mode 100644 packages/chains/chains/910000.ts delete mode 100644 packages/chains/chains/91002.ts delete mode 100644 packages/chains/chains/917.ts delete mode 100644 packages/chains/chains/919.ts delete mode 100644 packages/chains/chains/920000.ts delete mode 100644 packages/chains/chains/920001.ts delete mode 100644 packages/chains/chains/92001.ts delete mode 100644 packages/chains/chains/9223.ts delete mode 100644 packages/chains/chains/923018.ts delete mode 100644 packages/chains/chains/9339.ts delete mode 100644 packages/chains/chains/942.ts delete mode 100644 packages/chains/chains/943.ts delete mode 100644 packages/chains/chains/9527.ts delete mode 100644 packages/chains/chains/9528.ts delete mode 100644 packages/chains/chains/955305.ts delete mode 100644 packages/chains/chains/9559.ts delete mode 100644 packages/chains/chains/956.ts delete mode 100644 packages/chains/chains/96970.ts delete mode 100644 packages/chains/chains/970.ts delete mode 100644 packages/chains/chains/9700.ts delete mode 100644 packages/chains/chains/971.ts delete mode 100644 packages/chains/chains/972.ts delete mode 100644 packages/chains/chains/9728.ts delete mode 100644 packages/chains/chains/9768.ts delete mode 100644 packages/chains/chains/977.ts delete mode 100644 packages/chains/chains/9779.ts delete mode 100644 packages/chains/chains/9790.ts delete mode 100644 packages/chains/chains/9792.ts delete mode 100644 packages/chains/chains/980.ts delete mode 100644 packages/chains/chains/985.ts delete mode 100644 packages/chains/chains/989.ts delete mode 100644 packages/chains/chains/99415706.ts delete mode 100644 packages/chains/chains/997.ts delete mode 100644 packages/chains/chains/998.ts delete mode 100644 packages/chains/chains/999.ts delete mode 100644 packages/chains/chains/9997.ts delete mode 100644 packages/chains/chains/9999.ts delete mode 100644 packages/chains/chains/99998.ts delete mode 100644 packages/chains/chains/99999.ts diff --git a/packages/chains/chains/1000.ts b/packages/chains/chains/1000.ts deleted file mode 100644 index f41e842be82..00000000000 --- a/packages/chains/chains/1000.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "GTON Mainnet", - "chain": "GTON", - "rpc": [ - "https://gton.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "gton", - "chainId": 1000, - "networkId": 1000, - "explorers": [ - { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1" - }, - "testnet": false, - "slug": "gton" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10000.ts b/packages/chains/chains/10000.ts deleted file mode 100644 index 45c42e4581d..00000000000 --- a/packages/chains/chains/10000.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Smart Bitcoin Cash", - "chain": "smartBCH", - "rpc": [ - "https://smart-bitcoin-cash.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://smartbch.greyh.at", - "https://rpc-mainnet.smartbch.org", - "https://smartbch.fountainhead.cash/mainnet", - "https://smartbch.devops.cash/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin Cash", - "symbol": "BCH", - "decimals": 18 - }, - "infoURL": "https://smartbch.org/", - "shortName": "smartbch", - "chainId": 10000, - "networkId": 10000, - "testnet": false, - "slug": "smart-bitcoin-cash" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100000.ts b/packages/chains/chains/100000.ts deleted file mode 100644 index d7d4301eac6..00000000000 --- a/packages/chains/chains/100000.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Root", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-root.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://jrpc.mainnet.quarkchain.io:38391" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-r", - "chainId": 100000, - "networkId": 100000, - "testnet": false, - "slug": "quarkchain-root" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100001.ts b/packages/chains/chains/100001.ts deleted file mode 100644 index 315e02f2132..00000000000 --- a/packages/chains/chains/100001.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39000" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s0", - "chainId": 100001, - "networkId": 100001, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100002.ts b/packages/chains/chains/100002.ts deleted file mode 100644 index f3d35da3823..00000000000 --- a/packages/chains/chains/100002.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39001" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s1", - "chainId": 100002, - "networkId": 100002, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100003.ts b/packages/chains/chains/100003.ts deleted file mode 100644 index 46778398150..00000000000 --- a/packages/chains/chains/100003.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39002" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s2", - "chainId": 100003, - "networkId": 100003, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100004.ts b/packages/chains/chains/100004.ts deleted file mode 100644 index d386eb50ed0..00000000000 --- a/packages/chains/chains/100004.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39003" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s3", - "chainId": 100004, - "networkId": 100004, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100005.ts b/packages/chains/chains/100005.ts deleted file mode 100644 index c92d48a421c..00000000000 --- a/packages/chains/chains/100005.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39004" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s4", - "chainId": 100005, - "networkId": 100005, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-4" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100006.ts b/packages/chains/chains/100006.ts deleted file mode 100644 index 18780a67fdc..00000000000 --- a/packages/chains/chains/100006.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-5.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39005" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s5", - "chainId": 100006, - "networkId": 100006, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-5" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100007.ts b/packages/chains/chains/100007.ts deleted file mode 100644 index 60d4159f2a3..00000000000 --- a/packages/chains/chains/100007.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-6.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39006" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s6", - "chainId": 100007, - "networkId": 100007, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-6" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100008.ts b/packages/chains/chains/100008.ts deleted file mode 100644 index dda9b4389e1..00000000000 --- a/packages/chains/chains/100008.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Mainnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-shard-7.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39007" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-s7", - "chainId": 100008, - "networkId": 100008, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-shard-7" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100009.ts b/packages/chains/chains/100009.ts deleted file mode 100644 index 286d374d236..00000000000 --- a/packages/chains/chains/100009.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "VeChain", - "chain": "VeChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain", - "chainId": 100009, - "networkId": 100009, - "explorers": [ - { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" - }, - { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "vechain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10001.ts b/packages/chains/chains/10001.ts deleted file mode 100644 index e556e4db545..00000000000 --- a/packages/chains/chains/10001.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Smart Bitcoin Cash Testnet", - "chain": "smartBCHTest", - "rpc": [ - "https://smart-bitcoin-cash-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.smartbch.org", - "https://smartbch.devops.cash/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin Cash Test Token", - "symbol": "BCHT", - "decimals": 18 - }, - "infoURL": "http://smartbch.org/", - "shortName": "smartbchtest", - "chainId": 10001, - "networkId": 10001, - "testnet": true, - "slug": "smart-bitcoin-cash-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100010.ts b/packages/chains/chains/100010.ts deleted file mode 100644 index 132f0fdd90d..00000000000 --- a/packages/chains/chains/100010.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "VeChain Testnet", - "chain": "VeChain", - "rpc": [], - "faucets": [ - "https://faucet.vecha.in" - ], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain-testnet", - "chainId": 100010, - "networkId": 100010, - "explorers": [ - { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", - "standard": "none" - } - ], - "testnet": true, - "slug": "vechain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1001.ts b/packages/chains/chains/1001.ts deleted file mode 100644 index 6b5094791ab..00000000000 --- a/packages/chains/chains/1001.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Klaytn Testnet Baobab", - "chain": "KLAY", - "rpc": [ - "https://klaytn-testnet-baobab.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.baobab.klaytn.net:8651" - ], - "faucets": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" - ], - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "infoURL": "https://www.klaytn.com/", - "shortName": "Baobab", - "chainId": 1001, - "networkId": 1001, - "testnet": true, - "slug": "klaytn-testnet-baobab" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10024.ts b/packages/chains/chains/10024.ts deleted file mode 100644 index 53e5d45027c..00000000000 --- a/packages/chains/chains/10024.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gon Chain", - "chain": "GonChain", - "icon": { - "url": "ipfs://QmPtiJGaApbW3ATZhPW3pKJpw3iGVrRGsZLWhrDKF9ZK18", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://gon-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1.testnet.gaiaopen.network", - "https://node1.mainnet.gon.network", - "https://node2.mainnet.gon.network", - "https://node3.mainnet.gon.network", - "https://node4.mainnet.gon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gon Token", - "symbol": "GT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "gon", - "chainId": 10024, - "networkId": 10024, - "explorers": [ - { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "gon-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1004.ts b/packages/chains/chains/1004.ts deleted file mode 100644 index 3f330744541..00000000000 --- a/packages/chains/chains/1004.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "T-EKTA", - "title": "EKTA Testnet T-EKTA", - "chain": "T-EKTA", - "rpc": [ - "https://t-ekta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test.ekta.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "T-EKTA", - "symbol": "T-EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "t-ekta", - "chainId": 1004, - "networkId": 1004, - "icon": { - "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", - "width": 2100, - "height": 2100, - "format": "png" - }, - "explorers": [ - { - "name": "test-ektascan", - "url": "https://test.ektascan.io", - "icon": { - "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", - "width": 2100, - "height": 2100, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "t-ekta" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10067275.ts b/packages/chains/chains/10067275.ts deleted file mode 100644 index fe0b46ebb9c..00000000000 --- a/packages/chains/chains/10067275.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Plian Testnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://plian-testnet-subchain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.plian.io/child_test" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-testnet-l2", - "chainId": 10067275, - "networkId": 10067275, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/child_test", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-16658437", - "type": "L2" - }, - "testnet": true, - "slug": "plian-testnet-subchain-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1007.ts b/packages/chains/chains/1007.ts deleted file mode 100644 index 16e19c1964e..00000000000 --- a/packages/chains/chains/1007.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Newton Testnet", - "chain": "NEW", - "rpc": [ - "https://newton-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.newchain.newtonproject.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "infoURL": "https://www.newtonproject.org/", - "shortName": "tnew", - "chainId": 1007, - "networkId": 1007, - "testnet": true, - "slug": "newton-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1008.ts b/packages/chains/chains/1008.ts deleted file mode 100644 index f77e1c77e0c..00000000000 --- a/packages/chains/chains/1008.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Eurus Mainnet", - "chain": "EUN", - "rpc": [ - "https://eurus.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.eurus.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "eun", - "chainId": 1008, - "networkId": 1008, - "icon": { - "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width": 471, - "height": 471, - "format": "svg" - }, - "explorers": [ - { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": { - "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width": 471, - "height": 471, - "format": "svg" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "eurus" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10086.ts b/packages/chains/chains/10086.ts deleted file mode 100644 index 6e4e3403313..00000000000 --- a/packages/chains/chains/10086.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SJATSH", - "chain": "ETH", - "rpc": [ - "https://sjatsh.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://geth.free.idcfengye.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://sjis.me", - "shortName": "SJ", - "chainId": 10086, - "networkId": 10086, - "testnet": false, - "slug": "sjatsh" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1010.ts b/packages/chains/chains/1010.ts deleted file mode 100644 index 4905d53cd7c..00000000000 --- a/packages/chains/chains/1010.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Evrice Network", - "chain": "EVC", - "rpc": [ - "https://evrice-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://meta.evrice.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evrice", - "symbol": "EVC", - "decimals": 18 - }, - "infoURL": "https://evrice.com", - "shortName": "EVC", - "chainId": 1010, - "networkId": 1010, - "slip44": 1020, - "testnet": false, - "slug": "evrice-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10101.ts b/packages/chains/chains/10101.ts deleted file mode 100644 index 404190c600a..00000000000 --- a/packages/chains/chains/10101.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Blockchain Genesis Mainnet", - "chain": "GEN", - "rpc": [ - "https://blockchain-genesis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eu.mainnet.xixoio.com", - "https://us.mainnet.xixoio.com", - "https://asia.mainnet.xixoio.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GEN", - "symbol": "GEN", - "decimals": 18 - }, - "infoURL": "https://www.xixoio.com/", - "shortName": "GEN", - "chainId": 10101, - "networkId": 10101, - "testnet": false, - "slug": "blockchain-genesis" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/101010.ts b/packages/chains/chains/101010.ts deleted file mode 100644 index e83d9458e42..00000000000 --- a/packages/chains/chains/101010.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Soverun Testnet", - "chain": "SVRN", - "icon": { - "url": "ipfs://QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi", - "width": 1154, - "height": 1154, - "format": "png" - }, - "rpc": [ - "https://soverun-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNt", - "chainId": 101010, - "networkId": 101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://testnet.soverun.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "soverun-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10101010.ts b/packages/chains/chains/10101010.ts deleted file mode 100644 index 321ab5de229..00000000000 --- a/packages/chains/chains/10101010.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Soverun Mainnet", - "chain": "SVRN", - "icon": { - "url": "ipfs://QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi", - "width": 1154, - "height": 1154, - "format": "png" - }, - "rpc": [ - "https://soverun.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNm", - "chainId": 10101010, - "networkId": 10101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://explorer.soverun.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "soverun" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1012.ts b/packages/chains/chains/1012.ts deleted file mode 100644 index ce638c29bda..00000000000 --- a/packages/chains/chains/1012.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Newton", - "chain": "NEW", - "rpc": [ - "https://newton.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://global.rpc.mainnet.newtonproject.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "infoURL": "https://www.newtonproject.org/", - "shortName": "new", - "chainId": 1012, - "networkId": 1012, - "testnet": false, - "slug": "newton" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10200.ts b/packages/chains/chains/10200.ts deleted file mode 100644 index 806373a309c..00000000000 --- a/packages/chains/chains/10200.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gnosis Chiado Testnet", - "chain": "GNO", - "icon": { - "url": "ipfs://bafybeidk4swpgdyqmpz6shd5onvpaujvwiwthrhypufnwr6xh3dausz2dm", - "width": 1800, - "height": 1800, - "format": "png" - }, - "rpc": [ - "https://gnosis-chiado-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.chiadochain.net", - "https://rpc.chiado.gnosis.gateway.fm", - "wss://rpc.chiadochain.net/wss" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "XDAI", - "decimals": 18 - }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi", - "chainId": 10200, - "networkId": 10200, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.chiadochain.net", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "gnosis-chiado-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1022.ts b/packages/chains/chains/1022.ts deleted file mode 100644 index 8bbd557f9bd..00000000000 --- a/packages/chains/chains/1022.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sakura", - "chain": "Sakura", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 - }, - "infoURL": "https://clover.finance/sakura", - "shortName": "sku", - "chainId": 1022, - "networkId": 1022, - "testnet": false, - "slug": "sakura" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1023.ts b/packages/chains/chains/1023.ts deleted file mode 100644 index f88a19b0cb2..00000000000 --- a/packages/chains/chains/1023.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Clover Testnet", - "chain": "Clover", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "infoURL": "https://clover.finance", - "shortName": "tclv", - "chainId": 1023, - "networkId": 1023, - "testnet": true, - "slug": "clover-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1024.ts b/packages/chains/chains/1024.ts deleted file mode 100644 index bada7b6db4b..00000000000 --- a/packages/chains/chains/1024.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CLV Parachain", - "chain": "CLV", - "rpc": [ - "https://clv-parachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api-para.clover.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "CLV", - "symbol": "CLV", - "decimals": 18 - }, - "infoURL": "https://clv.org", - "shortName": "clv", - "chainId": 1024, - "networkId": 1024, - "testnet": false, - "slug": "clv-parachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10248.ts b/packages/chains/chains/10248.ts deleted file mode 100644 index 2648cf8d72b..00000000000 --- a/packages/chains/chains/10248.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "0XTade", - "chain": "0XTade Chain", - "rpc": [ - "https://0xtade.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node.0xtchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "0XT", - "symbol": "0XT", - "decimals": 18 - }, - "infoURL": "https://www.0xtrade.finance/", - "shortName": "0xt", - "chainId": 10248, - "networkId": 10248, - "explorers": [ - { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "0xtade" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1028.ts b/packages/chains/chains/1028.ts deleted file mode 100644 index 641b14da3fe..00000000000 --- a/packages/chains/chains/1028.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BitTorrent Chain Testnet", - "chain": "BTTC", - "rpc": [ - "https://bittorrent-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testrpc.bittorrentchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 - }, - "infoURL": "https://bittorrentchain.io/", - "shortName": "tbtt", - "chainId": 1028, - "networkId": 1028, - "explorers": [ - { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "bittorrent-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1030.ts b/packages/chains/chains/1030.ts deleted file mode 100644 index ca610b84fc0..00000000000 --- a/packages/chains/chains/1030.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Conflux eSpace", - "chain": "Conflux", - "rpc": [ - "https://conflux-espace.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.confluxrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfx", - "chainId": 1030, - "networkId": 1030, - "icon": { - "url": "ipfs://bafkreifj7n24u2dslfijfihwqvpdeigt5aj3k3sxv6s35lv75sxsfr3ojy", - "width": 460, - "height": 576, - "format": "png" - }, - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } - ], - "testnet": false, - "slug": "conflux-espace" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/103090.ts b/packages/chains/chains/103090.ts deleted file mode 100644 index 8f45b0b25ea..00000000000 --- a/packages/chains/chains/103090.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Crystaleum", - "chain": "crystal", - "rpc": [ - "https://crystaleum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "CRFI", - "symbol": "◈", - "decimals": 18 - }, - "infoURL": "https://crystaleum.org", - "shortName": "CRFI", - "chainId": 103090, - "networkId": 1, - "icon": { - "url": "ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", - "width": 150, - "height": 150, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": { - "url": "ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", - "width": 150, - "height": 150, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "crystaleum" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1031.ts b/packages/chains/chains/1031.ts deleted file mode 100644 index 91285e23c29..00000000000 --- a/packages/chains/chains/1031.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Proxy Network Testnet", - "chain": "Proxy Network", - "rpc": [ - "https://proxy-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://128.199.94.183:8041" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRX", - "symbol": "PRX", - "decimals": 18 - }, - "infoURL": "https://theproxy.network", - "shortName": "prx", - "chainId": 1031, - "networkId": 1031, - "explorers": [ - { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "proxy-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1038.ts b/packages/chains/chains/1038.ts deleted file mode 100644 index 3146d3bf98a..00000000000 --- a/packages/chains/chains/1038.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bronos Testnet", - "chain": "Bronos", - "rpc": [ - "https://bronos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-testnet.bronos.org" - ], - "faucets": [ - "https://faucet.bronos.org" - ], - "nativeCurrency": { - "name": "tBRO", - "symbol": "tBRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-testnet", - "chainId": 1038, - "networkId": 1038, - "icon": { - "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "Bronos Testnet Explorer", - "url": "https://tbroscan.bronos.org", - "standard": "none", - "icon": { - "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", - "width": 500, - "height": 500, - "format": "png" - } - } - ], - "testnet": true, - "slug": "bronos-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1039.ts b/packages/chains/chains/1039.ts deleted file mode 100644 index adf38f58ab3..00000000000 --- a/packages/chains/chains/1039.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bronos Mainnet", - "chain": "Bronos", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "BRO", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-mainnet", - "chainId": 1039, - "networkId": 1039, - "icon": { - "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "Bronos Explorer", - "url": "https://broscan.bronos.org", - "standard": "none", - "icon": { - "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", - "width": 500, - "height": 500, - "format": "png" - } - } - ], - "testnet": false, - "slug": "bronos" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10507.ts b/packages/chains/chains/10507.ts deleted file mode 100644 index 81222119d25..00000000000 --- a/packages/chains/chains/10507.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Numbers Mainnet", - "chain": "NUM", - "icon": { - "url": "ipfs://bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi", - "width": 1500, - "height": 1500, - "format": "png" - }, - "rpc": [ - "https://numbers.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnetrpc.num.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Jade", - "chainId": 10507, - "networkId": 10507, - "explorers": [ - { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "numbers" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10508.ts b/packages/chains/chains/10508.ts deleted file mode 100644 index b7f3614ae52..00000000000 --- a/packages/chains/chains/10508.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Numbers Testnet", - "chain": "NUM", - "icon": { - "url": "ipfs://bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi", - "width": 1500, - "height": 1500, - "format": "png" - }, - "rpc": [ - "https://numbers-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnetrpc.num.network" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" - ], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Snow", - "chainId": 10508, - "networkId": 10508, - "explorers": [ - { - "name": "ethernal", - "url": "https://testnet.num.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "numbers-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1072.ts b/packages/chains/chains/1072.ts deleted file mode 100644 index 60d0fdbefed..00000000000 --- a/packages/chains/chains/1072.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ShimmerEVM Testnet", - "title": "ShimmerEVM Testnet", - "chain": "ShimmerEVM", - "icon": { - "url": "ipfs://bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di", - "width": 720, - "height": 720, - "format": "png" - }, - "rpc": [ - "https://shimmerevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://json-rpc.evm.testnet.shimmer.network" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 6 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet", - "chainId": 1072, - "networkId": 1072, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "shimmerevm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1079.ts b/packages/chains/chains/1079.ts deleted file mode 100644 index e6b5e547249..00000000000 --- a/packages/chains/chains/1079.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mintara Testnet", - "title": "Mintara Testnet", - "chain": "Mintara", - "icon": { - "url": "ipfs://bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://mintara-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/mintara/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 - }, - "infoURL": "https://playthink.co.jp", - "shortName": "mintara-testnet", - "chainId": 1079, - "networkId": 1079, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "mintara-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10823.ts b/packages/chains/chains/10823.ts deleted file mode 100644 index f055981401d..00000000000 --- a/packages/chains/chains/10823.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CryptoCoinPay", - "chain": "CCP", - "rpc": [ - "https://cryptocoinpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://node106.cryptocoinpay.info:8545", - "ws://node106.cryptocoinpay.info:8546" - ], - "faucets": [], - "icon": { - "url": "ipfs://QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX", - "width": 200, - "height": 200, - "format": "png" - }, - "nativeCurrency": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 - }, - "infoURL": "https://www.cryptocoinpay.co", - "shortName": "CCP", - "chainId": 10823, - "networkId": 10823, - "explorers": [ - { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "cryptocoinpay" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1088.ts b/packages/chains/chains/1088.ts deleted file mode 100644 index 01ea82c6830..00000000000 --- a/packages/chains/chains/1088.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metis Andromeda Mainnet", - "chain": "ETH", - "rpc": [ - "https://metis-andromeda.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://andromeda.metis.io/?owner=1088" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-andromeda", - "chainId": 1088, - "networkId": 1088, - "explorers": [ - { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.metis.io" - } - ] - }, - "icon": { - "url": "ipfs://QmbWKNucbMtrMPPkHG5ZmVmvNUo8CzqHHcrpk1C2BVQsEG/2022_H-Brand_Stacked_WhiteGreen.svg", - "format": "svg", - "height": 512, - "width": 512 - }, - "testnet": false, - "slug": "metis-andromeda" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/108801.ts b/packages/chains/chains/108801.ts deleted file mode 100644 index f52f6dbc3e2..00000000000 --- a/packages/chains/chains/108801.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BROChain Mainnet", - "chain": "BRO", - "rpc": [ - "https://brochain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.brochain.org", - "http://rpc.brochain.org", - "https://rpc.brochain.org/mainnet", - "http://rpc.brochain.org/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Brother", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://brochain.org", - "shortName": "bro", - "chainId": 108801, - "networkId": 108801, - "explorers": [ - { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "brochain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10946.ts b/packages/chains/chains/10946.ts deleted file mode 100644 index 6277305f5b5..00000000000 --- a/packages/chains/chains/10946.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quadrans Blockchain", - "chain": "QDC", - "icon": { - "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://quadrans-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.quadrans.io", - "https://rpcna.quadrans.io", - "https://rpceu.quadrans.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quadrans Coin", - "symbol": "QDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadrans", - "chainId": 10946, - "networkId": 10946, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": { - "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", - "width": 1024, - "height": 1024, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quadrans-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10947.ts b/packages/chains/chains/10947.ts deleted file mode 100644 index b2cbffa7ae6..00000000000 --- a/packages/chains/chains/10947.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quadrans Blockchain Testnet", - "chain": "tQDC", - "icon": { - "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://quadrans-blockchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpctest.quadrans.io", - "https://rpctest2.quadrans.io" - ], - "faucets": [ - "https://faucetpage.quadrans.io" - ], - "nativeCurrency": { - "name": "Quadrans Testnet Coin", - "symbol": "tQDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadranstestnet", - "chainId": 10947, - "networkId": 10947, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": { - "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", - "width": 1024, - "height": 1024, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "quadrans-blockchain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1099.ts b/packages/chains/chains/1099.ts deleted file mode 100644 index 3343807c03a..00000000000 --- a/packages/chains/chains/1099.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MOAC mainnet", - "chain": "MOAC", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 - }, - "infoURL": "https://moac.io", - "shortName": "moac", - "chainId": 1099, - "networkId": 1099, - "slip44": 314, - "explorers": [ - { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "moac" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110000.ts b/packages/chains/chains/110000.ts deleted file mode 100644 index 7f1fee3e059..00000000000 --- a/packages/chains/chains/110000.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Root", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-root.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://jrpc.devnet.quarkchain.io:38391" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-r", - "chainId": 110000, - "networkId": 110000, - "testnet": false, - "slug": "quarkchain-devnet-root" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110001.ts b/packages/chains/chains/110001.ts deleted file mode 100644 index 81ab5e0e0ba..00000000000 --- a/packages/chains/chains/110001.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39900" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s0", - "chainId": 110001, - "networkId": 110001, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110002.ts b/packages/chains/chains/110002.ts deleted file mode 100644 index 2a54adbb100..00000000000 --- a/packages/chains/chains/110002.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39901" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s1", - "chainId": 110002, - "networkId": 110002, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110003.ts b/packages/chains/chains/110003.ts deleted file mode 100644 index d1fb69e3b2c..00000000000 --- a/packages/chains/chains/110003.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39902" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s2", - "chainId": 110003, - "networkId": 110003, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110004.ts b/packages/chains/chains/110004.ts deleted file mode 100644 index 03de765923d..00000000000 --- a/packages/chains/chains/110004.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39903" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s3", - "chainId": 110004, - "networkId": 110004, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110005.ts b/packages/chains/chains/110005.ts deleted file mode 100644 index 6cda75fa0d6..00000000000 --- a/packages/chains/chains/110005.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39904" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s4", - "chainId": 110005, - "networkId": 110005, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-4" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110006.ts b/packages/chains/chains/110006.ts deleted file mode 100644 index b6046e33912..00000000000 --- a/packages/chains/chains/110006.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-5.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39905" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s5", - "chainId": 110006, - "networkId": 110006, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-5" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110007.ts b/packages/chains/chains/110007.ts deleted file mode 100644 index a49e446f97b..00000000000 --- a/packages/chains/chains/110007.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-6.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39906" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s6", - "chainId": 110007, - "networkId": 110007, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-6" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110008.ts b/packages/chains/chains/110008.ts deleted file mode 100644 index ff62e75987a..00000000000 --- a/packages/chains/chains/110008.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QuarkChain Devnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://quarkchain-devnet-shard-7.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39907" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-d-s7", - "chainId": 110008, - "networkId": 110008, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quarkchain-devnet-shard-7" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1101.ts b/packages/chains/chains/1101.ts deleted file mode 100644 index f3ab8655c85..00000000000 --- a/packages/chains/chains/1101.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Polygon zkEVM", - "title": "Polygon zkEVM", - "chain": "Polygon", - "rpc": [ - "https://polygon-zkevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://zkevm-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/polygon-zkevm", - "shortName": "zkevm", - "chainId": 1101, - "networkId": 1101, - "icon": { - "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", - "width": 122, - "height": 135, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": { - "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", - "width": 122, - "height": 135, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.zkevm-rpc.com" - } - ] - }, - "testnet": false, - "slug": "polygon-zkevm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111000.ts b/packages/chains/chains/111000.ts deleted file mode 100644 index 06f6d240115..00000000000 --- a/packages/chains/chains/111000.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Siberium Test Network", - "chain": "SBR", - "rpc": [ - "https://siberium-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.test.siberium.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "TestSIBR", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "testsbr", - "chainId": 111000, - "networkId": 111000, - "icon": { - "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [ - { - "name": "Siberium Testnet Explorer - blockscout", - "url": "https://explorer.test.siberium.net", - "icon": { - "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", - "width": 512, - "height": 512, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "siberium-test-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1111.ts b/packages/chains/chains/1111.ts deleted file mode 100644 index 91969d3a8e0..00000000000 --- a/packages/chains/chains/1111.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "WEMIX3.0 Mainnet", - "chain": "WEMIX", - "rpc": [ - "https://wemix3-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.wemix.com", - "wss://ws.wemix.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "WEMIX", - "symbol": "WEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "wemix", - "chainId": 1111, - "networkId": 1111, - "explorers": [ - { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "wemix3-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11110.ts b/packages/chains/chains/11110.ts deleted file mode 100644 index 9ca3d19c3fc..00000000000 --- a/packages/chains/chains/11110.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Astra", - "chain": "Astra", - "rpc": [ - "https://astra.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.astranaut.io", - "https://rpc1.astranaut.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astra", - "symbol": "ASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra", - "chainId": 11110, - "networkId": 11110, - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - }, - "explorers": [ - { - "name": "Astra EVM Explorer (Blockscout)", - "url": "https://explorer.astranaut.io", - "standard": "none", - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - } - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - } - } - ], - "testnet": false, - "slug": "astra" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11111.ts b/packages/chains/chains/11111.ts deleted file mode 100644 index 30e28c2a888..00000000000 --- a/packages/chains/chains/11111.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "WAGMI", - "chain": "WAGMI", - "icon": { - "url": "ipfs://QmNoyUXxnak8B3xgFxErkVfyVEPJUMHBzq7qJcYzkUrPR4", - "width": 1920, - "height": 1920, - "format": "png" - }, - "rpc": [ - "https://wagmi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=wagmi" - ], - "nativeCurrency": { - "name": "WAGMI", - "symbol": "WGM", - "decimals": 18 - }, - "infoURL": "https://subnets-test.avax.network/wagmi/details", - "shortName": "WAGMI", - "chainId": 11111, - "networkId": 11111, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets-test.avax.network/wagmi", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "wagmi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111111.ts b/packages/chains/chains/111111.ts deleted file mode 100644 index 4b52b62e251..00000000000 --- a/packages/chains/chains/111111.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Siberium Network", - "chain": "SBR", - "rpc": [ - "https://siberium-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.main.siberium.net", - "https://rpc.main.siberium.net.ru" - ], - "faucets": [], - "nativeCurrency": { - "name": "Siberium", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "sbr", - "chainId": 111111, - "networkId": 111111, - "icon": { - "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [ - { - "name": "Siberium Mainnet Explorer - blockscout - 1", - "url": "https://explorer.main.siberium.net", - "icon": { - "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", - "width": 512, - "height": 512, - "format": "svg" - }, - "standard": "EIP3091" - }, - { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": { - "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", - "width": 512, - "height": 512, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "siberium-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11115.ts b/packages/chains/chains/11115.ts deleted file mode 100644 index b3fa307679f..00000000000 --- a/packages/chains/chains/11115.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Astra Testnet", - "chain": "Astra", - "rpc": [ - "https://astra-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.astranaut.dev" - ], - "faucets": [ - "https://faucet.astranaut.dev" - ], - "nativeCurrency": { - "name": "test-Astra", - "symbol": "tASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra-testnet", - "chainId": 11115, - "networkId": 11115, - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - }, - "explorers": [ - { - "name": "Astra EVM Explorer", - "url": "https://explorer.astranaut.dev", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - } - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": { - "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", - "width": 104, - "height": 80, - "format": "png" - } - } - ], - "testnet": true, - "slug": "astra-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11119.ts b/packages/chains/chains/11119.ts deleted file mode 100644 index eafaf85fafa..00000000000 --- a/packages/chains/chains/11119.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HashBit Mainnet", - "chain": "HBIT", - "rpc": [ - "https://hashbit.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.hashbit.org", - "https://rpc.hashbit.org" - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "nativeCurrency": { - "name": "HashBit Native Token", - "symbol": "HBIT", - "decimals": 18 - }, - "infoURL": "https://hashbit.org", - "shortName": "hbit", - "chainId": 11119, - "networkId": 11119, - "explorers": [ - { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "hashbit" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1112.ts b/packages/chains/chains/1112.ts deleted file mode 100644 index af16943f7d1..00000000000 --- a/packages/chains/chains/1112.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "WEMIX3.0 Testnet", - "chain": "TWEMIX", - "rpc": [ - "https://wemix3-0-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.test.wemix.com", - "wss://ws.test.wemix.com" - ], - "faucets": [ - "https://wallet.test.wemix.com/faucet" - ], - "nativeCurrency": { - "name": "TestnetWEMIX", - "symbol": "tWEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "twemix", - "chainId": 1112, - "networkId": 1112, - "explorers": [ - { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "wemix3-0-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111222333444.ts b/packages/chains/chains/111222333444.ts deleted file mode 100644 index c96d3c44f1f..00000000000 --- a/packages/chains/chains/111222333444.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Alphabet Mainnet", - "chain": "Alphabet Network", - "icon": { - "url": "ipfs://QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq", - "width": 500, - "height": 500, - "format": "svg" - }, - "rpc": [ - "https://alphabet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://londonpublic.alphabetnetwork.org", - "wss://londonpublic.alphabetnetwork.org/ws/", - "https://main-rpc.com", - "wss://main-rpc.com/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALT", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://alphabetnetwork.org", - "shortName": "alphabet", - "chainId": 111222333444, - "networkId": 111222333444, - "explorers": [ - { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "alphabet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1115.ts b/packages/chains/chains/1115.ts deleted file mode 100644 index c626b696944..00000000000 --- a/packages/chains/chains/1115.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Core Blockchain Testnet", - "chain": "Core", - "icon": { - "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", - "width": 200, - "height": 217, - "format": "png" - }, - "rpc": [ - "https://core-blockchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.test.btcs.network/" - ], - "faucets": [ - "https://scan.test.btcs.network/faucet" - ], - "nativeCurrency": { - "name": "Core Blockchain Testnet Native Token", - "symbol": "tCORE", - "decimals": 18 - }, - "infoURL": "https://www.coredao.org", - "shortName": "tcore", - "chainId": 1115, - "networkId": 1115, - "explorers": [ - { - "name": "Core Scan Testnet", - "url": "https://scan.test.btcs.network", - "icon": { - "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", - "width": 200, - "height": 217, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "core-blockchain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11155111.ts b/packages/chains/chains/11155111.ts deleted file mode 100644 index 964dd04e9a3..00000000000 --- a/packages/chains/chains/11155111.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sepolia", - "title": "Ethereum Testnet Sepolia", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.sepolia.org", - "https://rpc2.sepolia.org", - "https://rpc-sepolia.rockx.com" - ], - "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, - "explorers": [ - { - "name": "etherscan-sepolia", - "url": "https://sepolia.etherscan.io", - "standard": "EIP3091" - }, - { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "sepolia" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1116.ts b/packages/chains/chains/1116.ts deleted file mode 100644 index 7909bcce503..00000000000 --- a/packages/chains/chains/1116.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Core Blockchain Mainnet", - "chain": "Core", - "icon": { - "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", - "width": 200, - "height": 217, - "format": "png" - }, - "rpc": [ - "https://core-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.coredao.org/", - "https://rpc-core.icecreamswap.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Core Blockchain Native Token", - "symbol": "CORE", - "decimals": 18 - }, - "infoURL": "https://www.coredao.org", - "shortName": "core", - "chainId": 1116, - "networkId": 1116, - "explorers": [ - { - "name": "Core Scan", - "url": "https://scan.coredao.org", - "icon": { - "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", - "width": 200, - "height": 217, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "core-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1117.ts b/packages/chains/chains/1117.ts deleted file mode 100644 index 17d1ac35c28..00000000000 --- a/packages/chains/chains/1117.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dogcoin Mainnet", - "chain": "DOGS", - "icon": { - "url": "ipfs://QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3", - "width": 160, - "height": 171, - "format": "png" - }, - "rpc": [ - "https://dogcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.dogcoin.me" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSm", - "chainId": 1117, - "networkId": 1117, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dogcoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1122334455.ts b/packages/chains/chains/1122334455.ts deleted file mode 100644 index b14e4f9f17c..00000000000 --- a/packages/chains/chains/1122334455.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IPOS Network", - "chain": "IPOS", - "rpc": [ - "https://ipos-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.iposlab.com", - "https://rpc2.iposlab.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "IPOS Network Ether", - "symbol": "IPOS", - "decimals": 18 - }, - "infoURL": "https://iposlab.com", - "shortName": "ipos", - "chainId": 1122334455, - "networkId": 1122334455, - "testnet": false, - "slug": "ipos-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11235.ts b/packages/chains/chains/11235.ts deleted file mode 100644 index 8e1221af642..00000000000 --- a/packages/chains/chains/11235.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Haqq Network", - "chain": "Haqq", - "rpc": [ - "https://haqq-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.eth.haqq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLM", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLM", - "chainId": 11235, - "networkId": 11235, - "explorers": [ - { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "haqq-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/112358.ts b/packages/chains/chains/112358.ts deleted file mode 100644 index 392b0fd2267..00000000000 --- a/packages/chains/chains/112358.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metachain One Mainnet", - "chain": "METAO", - "icon": { - "url": "ipfs://QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij", - "width": 1000, - "height": 981, - "format": "png" - }, - "rpc": [ - "https://metachain-one.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.metachain.one", - "https://rpc2.metachain.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metao", - "symbol": "METAO", - "decimals": 18 - }, - "infoURL": "https://metachain.one", - "shortName": "metao", - "chainId": 112358, - "networkId": 112358, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "metachain-one" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11297108099.ts b/packages/chains/chains/11297108099.ts deleted file mode 100644 index 071ca5e5d3c..00000000000 --- a/packages/chains/chains/11297108099.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Palm Testnet", - "chain": "Palm", - "icon": { - "url": "ipfs://bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4", - "width": 72, - "height": 72, - "format": "svg" - }, - "rpc": [ - "https://palm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://palm-testnet.infura.io/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "tpalm", - "chainId": 11297108099, - "networkId": 11297108099, - "explorers": [ - { - "name": "Palm Testnet Explorer", - "url": "https://explorer.palm-uat.xyz", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "palm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11297108109.ts b/packages/chains/chains/11297108109.ts deleted file mode 100644 index 583884eab65..00000000000 --- a/packages/chains/chains/11297108109.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Palm", - "chain": "Palm", - "icon": { - "url": "ipfs://bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4", - "width": 72, - "height": 72, - "format": "svg" - }, - "rpc": [ - "https://palm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "palm", - "chainId": 11297108109, - "networkId": 11297108109, - "explorers": [ - { - "name": "Palm Explorer", - "url": "https://explorer.palm.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "palm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1130.ts b/packages/chains/chains/1130.ts deleted file mode 100644 index 14be91bc48f..00000000000 --- a/packages/chains/chains/1130.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DeFiChain EVM Network Mainnet", - "chain": "defichain-evm", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI", - "chainId": 1130, - "networkId": 1130, - "slip44": 1130, - "icon": { - "url": "ipfs://QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [], - "testnet": false, - "slug": "defichain-evm-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1131.ts b/packages/chains/chains/1131.ts deleted file mode 100644 index 6e23ca77b34..00000000000 --- a/packages/chains/chains/1131.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DeFiChain EVM Network Testnet", - "chain": "defichain-evm-testnet", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI-T", - "chainId": 1131, - "networkId": 1131, - "icon": { - "url": "ipfs://QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [], - "testnet": true, - "slug": "defichain-evm-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1138.ts b/packages/chains/chains/1138.ts deleted file mode 100644 index 802f8e5bf25..00000000000 --- a/packages/chains/chains/1138.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AmStar Testnet", - "chain": "AmStar", - "icon": { - "url": "ipfs://Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C", - "width": 599, - "height": 563, - "format": "png" - }, - "rpc": [ - "https://amstar-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASARt", - "chainId": 1138, - "networkId": 1138, - "explorers": [ - { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "amstar-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1139.ts b/packages/chains/chains/1139.ts deleted file mode 100644 index a33292fa7e9..00000000000 --- a/packages/chains/chains/1139.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MathChain", - "chain": "MATH", - "rpc": [ - "https://mathchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mathchain-asia.maiziqianbao.net/rpc", - "https://mathchain-us.maiziqianbao.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "infoURL": "https://mathchain.org", - "shortName": "MATH", - "chainId": 1139, - "networkId": 1139, - "testnet": false, - "slug": "mathchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1140.ts b/packages/chains/chains/1140.ts deleted file mode 100644 index a4c538a8154..00000000000 --- a/packages/chains/chains/1140.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MathChain Testnet", - "chain": "MATH", - "rpc": [ - "https://mathchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://galois-hk.maiziqianbao.net/rpc" - ], - "faucets": [ - "https://scan.boka.network/#/Galois/faucet" - ], - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "infoURL": "https://mathchain.org", - "shortName": "tMATH", - "chainId": 1140, - "networkId": 1140, - "testnet": true, - "slug": "mathchain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11437.ts b/packages/chains/chains/11437.ts deleted file mode 100644 index f540a1cc2e5..00000000000 --- a/packages/chains/chains/11437.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shyft Testnet", - "chain": "SHYFTT", - "icon": { - "url": "ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", - "width": 400, - "height": 400, - "format": "svg" - }, - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Shyft Test Token", - "symbol": "SHYFTT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyftt", - "chainId": 11437, - "networkId": 11437, - "explorers": [ - { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "shyft-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1146703430.ts b/packages/chains/chains/1146703430.ts deleted file mode 100644 index 7d61c621c7e..00000000000 --- a/packages/chains/chains/1146703430.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CyberdeckNet", - "chain": "cyberdeck", - "rpc": [ - "https://cyberdecknet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://cybeth1.cyberdeck.eu:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyb", - "symbol": "CYB", - "decimals": 18 - }, - "infoURL": "https://cyberdeck.eu", - "shortName": "cyb", - "chainId": 1146703430, - "networkId": 1146703430, - "icon": { - "url": "ipfs://QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR", - "width": 193, - "height": 214, - "format": "png" - }, - "status": "active", - "explorers": [ - { - "name": "CybEthExplorer", - "url": "http://cybeth1.cyberdeck.eu:8000", - "icon": { - "url": "ipfs://QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR", - "width": 193, - "height": 214, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "cyberdecknet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1149.ts b/packages/chains/chains/1149.ts deleted file mode 100644 index c539a94545c..00000000000 --- a/packages/chains/chains/1149.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Symplexia Smart Chain", - "chain": "Plexchain", - "rpc": [ - "https://symplexia-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://plex-rpc.plexfinance.us" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plex Native Token", - "symbol": "PLEX", - "decimals": 18 - }, - "infoURL": "https://plexfinance.us/", - "shortName": "Plexchain", - "chainId": 1149, - "networkId": 1149, - "icon": { - "url": "ipfs://QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "Plexchain Explorer", - "url": "https://explorer.plexfinance.us", - "icon": { - "url": "ipfs://QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM", - "width": 256, - "height": 256, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "symplexia-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11612.ts b/packages/chains/chains/11612.ts deleted file mode 100644 index 3e59451805a..00000000000 --- a/packages/chains/chains/11612.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sardis Testnet", - "chain": "SRDX", - "icon": { - "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://sardis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXt", - "chainId": 11612, - "networkId": 11612, - "explorers": [ - { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "sardis-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1170.ts b/packages/chains/chains/1170.ts deleted file mode 100644 index 3c9529bf27d..00000000000 --- a/packages/chains/chains/1170.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Origin Testnet", - "chain": "Origin", - "rpc": [ - "https://origin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://json-rpc.origin.uptick.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Origin", - "symbol": "UOC", - "decimals": 18 - }, - "infoURL": "https://www.uptick.network", - "shortName": "auoc", - "chainId": 1170, - "networkId": 1170, - "icon": { - "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "Origin Explorer", - "url": "https://evm-explorer.origin.uptick.network", - "icon": { - "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "origin-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1177.ts b/packages/chains/chains/1177.ts deleted file mode 100644 index 4763a144f09..00000000000 --- a/packages/chains/chains/1177.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Smart Host Teknoloji TESTNET", - "chain": "SHT", - "rpc": [ - "https://smart-host-teknoloji-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://s2.tl.web.tr:4041" - ], - "faucets": [], - "nativeCurrency": { - "name": "Smart Host Teknoloji TESTNET", - "symbol": "tSHT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://smart-host.com.tr", - "shortName": "sht", - "chainId": 1177, - "networkId": 1177, - "icon": { - "url": "ipfs://QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ", - "width": 1655, - "height": 1029, - "format": "png" - }, - "explorers": [ - { - "name": "Smart Host Teknoloji TESTNET Explorer", - "url": "https://s2.tl.web.tr:4000", - "icon": { - "url": "ipfs://QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ", - "width": 1655, - "height": 1029, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "smart-host-teknoloji-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11888.ts b/packages/chains/chains/11888.ts deleted file mode 100644 index 42dac62ef21..00000000000 --- a/packages/chains/chains/11888.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SanR Chain", - "chain": "SanRChain", - "rpc": [ - "https://sanr-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sanrchain-node.santiment.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "nSAN", - "symbol": "nSAN", - "decimals": 18 - }, - "infoURL": "https://sanr.app", - "shortName": "SAN", - "chainId": 11888, - "networkId": 11888, - "icon": { - "url": "ipfs://QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM", - "width": 2048, - "height": 2048, - "format": "png" - }, - "parent": { - "chain": "eip155-1", - "type": "L2", - "bridges": [ - { - "url": "https://sanr.app" - } - ] - }, - "explorers": [ - { - "name": "SanR Chain Explorer", - "url": "https://sanrchain-explorer.santiment.net", - "standard": "none" - } - ], - "testnet": false, - "slug": "sanr-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1197.ts b/packages/chains/chains/1197.ts deleted file mode 100644 index b217729c198..00000000000 --- a/packages/chains/chains/1197.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Iora Chain", - "chain": "IORA", - "icon": { - "url": "ipfs://bafybeiehps5cqdhqottu2efo4jeehwpkz5rbux3cjxd75rm6rjm4sgs2wi", - "width": 250, - "height": 250, - "format": "png" - }, - "rpc": [ - "https://iora-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed.iorachain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Iora", - "symbol": "IORA", - "decimals": 18 - }, - "infoURL": "https://iorachain.com", - "shortName": "iora", - "chainId": 1197, - "networkId": 1197, - "explorers": [ - { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "iora-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12009.ts b/packages/chains/chains/12009.ts deleted file mode 100644 index 6e8992844f0..00000000000 --- a/packages/chains/chains/12009.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SatoshiChain Mainnet", - "chain": "SATS", - "icon": { - "url": "ipfs://QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7", - "width": 1251, - "height": 1251, - "format": "png" - }, - "rpc": [ - "https://satoshichain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.satoshichain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "sats", - "chainId": 12009, - "networkId": 12009, - "explorers": [ - { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "satoshichain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1201.ts b/packages/chains/chains/1201.ts deleted file mode 100644 index 0504cb77862..00000000000 --- a/packages/chains/chains/1201.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Evanesco Testnet", - "chain": "Evanesco Testnet", - "rpc": [ - "https://evanesco-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://seed5.evanesco.org:8547" - ], - "faucets": [], - "nativeCurrency": { - "name": "AVIS", - "symbol": "AVIS", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "avis", - "chainId": 1201, - "networkId": 1201, - "testnet": true, - "slug": "evanesco-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1202.ts b/packages/chains/chains/1202.ts deleted file mode 100644 index 59152031636..00000000000 --- a/packages/chains/chains/1202.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "World Trade Technical Chain Mainnet", - "chain": "WTT", - "rpc": [ - "https://world-trade-technical-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.cadaut.com", - "wss://rpc.cadaut.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "World Trade Token", - "symbol": "WTT", - "decimals": 18 - }, - "infoURL": "http://www.cadaut.com", - "shortName": "wtt", - "chainId": 1202, - "networkId": 2048, - "explorers": [ - { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "world-trade-technical-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12051.ts b/packages/chains/chains/12051.ts deleted file mode 100644 index d5999325659..00000000000 --- a/packages/chains/chains/12051.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Singularity ZERO Testnet", - "chain": "ZERO", - "rpc": [ - "https://singularity-zero-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://betaenv.singularity.gold:18545" - ], - "faucets": [ - "https://nft.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "tZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "tZERO", - "chainId": 12051, - "networkId": 12051, - "explorers": [ - { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "singularity-zero-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12052.ts b/packages/chains/chains/12052.ts deleted file mode 100644 index d097771979f..00000000000 --- a/packages/chains/chains/12052.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Singularity ZERO Mainnet", - "chain": "ZERO", - "rpc": [ - "https://singularity-zero.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://zerorpc.singularity.gold" - ], - "faucets": [ - "https://zeroscan.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "ZERO", - "chainId": 12052, - "networkId": 12052, - "slip44": 621, - "explorers": [ - { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "singularity-zero" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12123.ts b/packages/chains/chains/12123.ts deleted file mode 100644 index 7cf71b2e72a..00000000000 --- a/packages/chains/chains/12123.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BRC Chain Mainnet", - "chain": "BRC", - "rpc": [ - "https://brc-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.brcchain.io" - ], - "faucets": [ - "https://faucet.brcchain.io" - ], - "nativeCurrency": { - "name": "BRC Chain mainnet native token", - "symbol": "BRC", - "decimals": 18 - }, - "infoURL": "https://bridge.brcchain.io", - "shortName": "BRC", - "chainId": 12123, - "networkId": 12123, - "icon": { - "url": "ipfs://QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "brc-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1213.ts b/packages/chains/chains/1213.ts deleted file mode 100644 index 91a6b87f20d..00000000000 --- a/packages/chains/chains/1213.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Popcateum Mainnet", - "chain": "POPCATEUM", - "rpc": [ - "https://popcateum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed.popcateum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Popcat", - "symbol": "POP", - "decimals": 18 - }, - "infoURL": "https://popcateum.org", - "shortName": "popcat", - "chainId": 1213, - "networkId": 1213, - "explorers": [ - { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "popcateum" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1214.ts b/packages/chains/chains/1214.ts deleted file mode 100644 index d714e7f4fe2..00000000000 --- a/packages/chains/chains/1214.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EnterChain Mainnet", - "chain": "ENTER", - "rpc": [ - "https://enterchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://tapi.entercoin.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 - }, - "infoURL": "https://entercoin.net", - "shortName": "enter", - "chainId": 1214, - "networkId": 1214, - "icon": { - "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", - "width": 64, - "height": 64, - "format": "png" - }, - "explorers": [ - { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": { - "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", - "width": 64, - "height": 64, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "enterchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1229.ts b/packages/chains/chains/1229.ts deleted file mode 100644 index 24fdc22b3dc..00000000000 --- a/packages/chains/chains/1229.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Exzo Network Mainnet", - "chain": "EXZO", - "icon": { - "url": "ipfs://QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ", - "width": 128, - "height": 128, - "format": "png" - }, - "rpc": [ - "https://exzo-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.exzo.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exzo", - "symbol": "XZO", - "decimals": 18 - }, - "infoURL": "https://exzo.network", - "shortName": "xzo", - "chainId": 1229, - "networkId": 1229, - "explorers": [ - { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "exzo-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1230.ts b/packages/chains/chains/1230.ts deleted file mode 100644 index 1e02d972a90..00000000000 --- a/packages/chains/chains/1230.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ultron Testnet", - "chain": "Ultron", - "icon": { - "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://ultron-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ultron-dev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UltronTestnet", - "chainId": 1230, - "networkId": 1230, - "explorers": [ - { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": { - "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "ultron-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12306.ts b/packages/chains/chains/12306.ts deleted file mode 100644 index 473ec2c67de..00000000000 --- a/packages/chains/chains/12306.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fibonacci Mainnet", - "chain": "FIBO", - "icon": { - "url": "ipfs://bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y", - "width": 1494, - "height": 1494, - "format": "png" - }, - "rpc": [ - "https://fibonacci.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1.fibo-api.asia", - "https://node2.fibo-api.asia", - "https://node3.fibo-api.asia", - "https://node4.fibo-api.asia", - "https://node5.fibo-api.asia", - "https://node6.fibo-api.asia", - "https://node7.fibo-api.asia", - "https://node1.fibo-rpc.asia", - "https://node2.fibo-rpc.asia", - "https://node3.fibo-rpc.asia", - "https://node4.fibo-rpc.asia", - "https://node5.fibo-rpc.asia", - "https://node6.fibo-rpc.asia", - "https://node7.fibo-rpc.asia" - ], - "faucets": [ - "https://test.fibochain.org/faucets" - ], - "nativeCurrency": { - "name": "FIBONACCI UTILITY TOKEN", - "symbol": "FIBO", - "decimals": 18 - }, - "infoURL": "https://fibochain.org", - "shortName": "fibo", - "chainId": 12306, - "networkId": 1230, - "explorers": [ - { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "fibonacci" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1231.ts b/packages/chains/chains/1231.ts deleted file mode 100644 index 227f2298ed0..00000000000 --- a/packages/chains/chains/1231.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ultron Mainnet", - "chain": "Ultron", - "icon": { - "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://ultron.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ultron-rpc.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UtronMainnet", - "chainId": 1231, - "networkId": 1231, - "explorers": [ - { - "name": "Ultron Explorer", - "url": "https://ulxscan.com", - "icon": { - "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "ultron" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12321.ts b/packages/chains/chains/12321.ts deleted file mode 100644 index 95a0213d632..00000000000 --- a/packages/chains/chains/12321.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BLG Testnet", - "chain": "BLG", - "icon": { - "url": "ipfs://QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC", - "width": 512, - "height": 512, - "format": "svg" - }, - "rpc": [ - "https://blg-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.blgchain.com" - ], - "faucets": [ - "https://faucet.blgchain.com" - ], - "nativeCurrency": { - "name": "Blg", - "symbol": "BLG", - "decimals": 18 - }, - "infoURL": "https://blgchain.com", - "shortName": "blgchain", - "chainId": 12321, - "networkId": 12321, - "testnet": true, - "slug": "blg-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1234.ts b/packages/chains/chains/1234.ts deleted file mode 100644 index 858626b5f53..00000000000 --- a/packages/chains/chains/1234.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Step Network", - "title": "Step Main Network", - "chain": "STEP", - "icon": { - "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://step-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.step.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "step", - "chainId": 1234, - "networkId": 1234, - "explorers": [ - { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": { - "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43114", - "bridges": [ - { - "url": "https://bridge.step.network" - } - ] - }, - "testnet": false, - "slug": "step-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12345.ts b/packages/chains/chains/12345.ts deleted file mode 100644 index d0069f83128..00000000000 --- a/packages/chains/chains/12345.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Step Testnet", - "title": "Step Test Network", - "chain": "STEP", - "icon": { - "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://step-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.step.network" - ], - "faucets": [ - "https://faucet.step.network" - ], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "steptest", - "chainId": 12345, - "networkId": 12345, - "explorers": [ - { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": { - "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43113" - }, - "testnet": true, - "slug": "step-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/123456.ts b/packages/chains/chains/123456.ts deleted file mode 100644 index c05e8f03587..00000000000 --- a/packages/chains/chains/123456.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ADIL Devnet", - "chain": "ADIL", - "icon": { - "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://adil-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet.adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Devnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "dadil", - "chainId": 123456, - "networkId": 123456, - "explorers": [ - { - "name": "ADIL Devnet Explorer", - "url": "https://devnet.adilchain-scan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "adil-devnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1243.ts b/packages/chains/chains/1243.ts deleted file mode 100644 index d596f078cea..00000000000 --- a/packages/chains/chains/1243.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ARC Mainnet", - "chain": "ARC", - "icon": { - "url": "ipfs://bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://arc.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-main-1.archiechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "ARC", - "chainId": 1243, - "networkId": 1243, - "explorers": [ - { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "arc" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1244.ts b/packages/chains/chains/1244.ts deleted file mode 100644 index 79b04600448..00000000000 --- a/packages/chains/chains/1244.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ARC Testnet", - "chain": "ARC", - "icon": { - "url": "ipfs://bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://arc-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-test-1.archiechain.io" - ], - "faucets": [ - "https://faucet.archiechain.io" - ], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "TARC", - "chainId": 1244, - "networkId": 1244, - "explorers": [ - { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "arc-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1246.ts b/packages/chains/chains/1246.ts deleted file mode 100644 index d52c4f3f213..00000000000 --- a/packages/chains/chains/1246.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OM Platform Mainnet", - "chain": "omplatform", - "rpc": [ - "https://om-platform.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-cnx.omplatform.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OMCOIN", - "symbol": "OM", - "decimals": 18 - }, - "infoURL": "https://omplatform.com/", - "shortName": "om", - "chainId": 1246, - "networkId": 1246, - "explorers": [ - { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "om-platform" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1252.ts b/packages/chains/chains/1252.ts deleted file mode 100644 index 6ca001a22b6..00000000000 --- a/packages/chains/chains/1252.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CIC Chain Testnet", - "chain": "CICT", - "rpc": [ - "https://cic-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testapi.cicscan.com" - ], - "faucets": [ - "https://cicfaucet.com" - ], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CICT", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CICT", - "chainId": 1252, - "networkId": 1252, - "icon": { - "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", - "width": 1024, - "height": 768, - "format": "png" - }, - "explorers": [ - { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": { - "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", - "width": 1024, - "height": 768, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "cic-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12715.ts b/packages/chains/chains/12715.ts deleted file mode 100644 index a027c9fbcbb..00000000000 --- a/packages/chains/chains/12715.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rikeza Network Testnet", - "title": "Rikeza Network Testnet", - "chain": "Rikeza", - "icon": { - "url": "ipfs://QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://rikeza-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "tRIK", - "chainId": 12715, - "networkId": 12715, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "rikeza-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1273227453.ts b/packages/chains/chains/1273227453.ts deleted file mode 100644 index b76bf51b47c..00000000000 --- a/packages/chains/chains/1273227453.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HUMAN Protocol", - "title": "HUMAN Protocol", - "chain": "wan-red-ain", - "rpc": [ - "https://human-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.skalenodes.com/v1/wan-red-ain" - ], - "faucets": [ - "https://dashboard.humanprotocol.org/faucet" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://www.humanprotocol.org", - "shortName": "human-mainnet", - "chainId": 1273227453, - "networkId": 1273227453, - "explorers": [ - { - "name": "Blockscout", - "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", - "icon": { - "url": "ipfs://QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS", - "width": 440, - "height": 600, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "human-protocol" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1280.ts b/packages/chains/chains/1280.ts deleted file mode 100644 index 5ca2195d17f..00000000000 --- a/packages/chains/chains/1280.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HALO Mainnet", - "chain": "HALO", - "rpc": [ - "https://halo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://nodes.halo.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 - }, - "infoURL": "https://halo.land/#/", - "shortName": "HO", - "chainId": 1280, - "networkId": 1280, - "explorers": [ - { - "name": "HALOexplorer", - "url": "https://browser.halo.land", - "standard": "none" - } - ], - "testnet": false, - "slug": "halo" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1284.ts b/packages/chains/chains/1284.ts deleted file mode 100644 index f23cd578b1e..00000000000 --- a/packages/chains/chains/1284.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Moonbeam", - "chain": "MOON", - "rpc": [ - "https://moonbeam.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.api.moonbeam.network", - "wss://wss.api.moonbeam.network" - ], - "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" - } - ], - "testnet": false, - "slug": "moonbeam" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1285.ts b/packages/chains/chains/1285.ts deleted file mode 100644 index ceebc0d43d7..00000000000 --- a/packages/chains/chains/1285.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Moonriver", - "chain": "MOON", - "rpc": [ - "https://moonriver.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.api.moonriver.moonbeam.network", - "wss://wss.api.moonriver.moonbeam.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Moonriver", - "symbol": "MOVR", - "decimals": 18 - }, - "infoURL": "https://moonbeam.network/networks/moonriver/", - "shortName": "mriver", - "chainId": 1285, - "networkId": 1285, - "explorers": [ - { - "name": "moonscan", - "url": "https://moonriver.moonscan.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "moonriver" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1287.ts b/packages/chains/chains/1287.ts deleted file mode 100644 index 29df11fba6e..00000000000 --- a/packages/chains/chains/1287.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Moonbase Alpha", - "chain": "MOON", - "rpc": [ - "https://moonbase-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.api.moonbase.moonbeam.network", - "wss://wss.api.moonbase.moonbeam.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dev", - "symbol": "DEV", - "decimals": 18 - }, - "infoURL": "https://docs.moonbeam.network/networks/testnet/", - "shortName": "mbase", - "chainId": 1287, - "networkId": 1287, - "explorers": [ - { - "name": "moonscan", - "url": "https://moonbase.moonscan.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "moonbase-alpha" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1288.ts b/packages/chains/chains/1288.ts deleted file mode 100644 index edd324aa7d5..00000000000 --- a/packages/chains/chains/1288.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Moonrock", - "chain": "MOON", - "rpc": [ - "https://moonrock.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.api.moonrock.moonbeam.network", - "wss://wss.api.moonrock.moonbeam.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 - }, - "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/", - "shortName": "mrock", - "chainId": 1288, - "networkId": 1288, - "testnet": false, - "slug": "moonrock" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1294.ts b/packages/chains/chains/1294.ts deleted file mode 100644 index c1a0d4e7b2b..00000000000 --- a/packages/chains/chains/1294.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bobabeam", - "chain": "Bobabeam", - "rpc": [ - "https://bobabeam.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bobabeam.boba.network", - "wss://wss.bobabeam.boba.network", - "https://replica.bobabeam.boba.network", - "wss://replica-wss.bobabeam.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabeam", - "chainId": 1294, - "networkId": 1294, - "explorers": [ - { - "name": "Bobabeam block explorer", - "url": "https://blockexplorer.bobabeam.boba.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "bobabeam" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1297.ts b/packages/chains/chains/1297.ts deleted file mode 100644 index 1288120c162..00000000000 --- a/packages/chains/chains/1297.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bobabase Testnet", - "chain": "Bobabase Testnet", - "rpc": [ - "https://bobabase-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bobabase.boba.network", - "wss://wss.bobabase.boba.network", - "https://replica.bobabase.boba.network", - "wss://replica-wss.bobabase.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabase", - "chainId": 1297, - "networkId": 1297, - "explorers": [ - { - "name": "Bobabase block explorer", - "url": "https://blockexplorer.bobabase.boba.network", - "standard": "none" - } - ], - "testnet": true, - "slug": "bobabase-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13000.ts b/packages/chains/chains/13000.ts deleted file mode 100644 index e57696f09a2..00000000000 --- a/packages/chains/chains/13000.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SPS", - "chain": "SPS", - "rpc": [ - "https://sps.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ssquad.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS", - "chainId": 13000, - "networkId": 13000, - "explorers": [ - { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "sps" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1311.ts b/packages/chains/chains/1311.ts deleted file mode 100644 index fcf01ab3f31..00000000000 --- a/packages/chains/chains/1311.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dos Fuji Subnet", - "chain": "DOS", - "rpc": [ - "https://dos-fuji-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test.doschain.com/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dos Native Token", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "TDOS", - "chainId": 1311, - "networkId": 1311, - "explorers": [ - { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dos-fuji-subnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313114.ts b/packages/chains/chains/1313114.ts deleted file mode 100644 index 702a6578691..00000000000 --- a/packages/chains/chains/1313114.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Etho Protocol", - "chain": "ETHO", - "rpc": [ - "https://etho-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ethoprotocol.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Etho Protocol", - "symbol": "ETHO", - "decimals": 18 - }, - "infoURL": "https://ethoprotocol.com", - "shortName": "etho", - "chainId": 1313114, - "networkId": 1313114, - "slip44": 1313114, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.ethoprotocol.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "etho-protocol" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161554.ts b/packages/chains/chains/1313161554.ts deleted file mode 100644 index e534457c985..00000000000 --- a/packages/chains/chains/1313161554.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aurora Mainnet", - "chain": "NEAR", - "rpc": [ - "https://aurora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.aurora.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://aurora.dev", - "shortName": "aurora", - "chainId": 1313161554, - "networkId": 1313161554, - "explorers": [ - { - "name": "aurorascan.dev", - "url": "https://aurorascan.dev", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "aurora" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161555.ts b/packages/chains/chains/1313161555.ts deleted file mode 100644 index 02f7df852ee..00000000000 --- a/packages/chains/chains/1313161555.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aurora Testnet", - "chain": "NEAR", - "rpc": [ - "https://aurora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.aurora.dev/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://aurora.dev", - "shortName": "aurora-testnet", - "chainId": 1313161555, - "networkId": 1313161555, - "explorers": [ - { - "name": "aurorascan.dev", - "url": "https://testnet.aurorascan.dev", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "aurora-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161556.ts b/packages/chains/chains/1313161556.ts deleted file mode 100644 index 0c6751e494e..00000000000 --- a/packages/chains/chains/1313161556.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aurora Betanet", - "chain": "NEAR", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://aurora.dev", - "shortName": "aurora-betanet", - "chainId": 1313161556, - "networkId": 1313161556, - "testnet": false, - "slug": "aurora-betanet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313500.ts b/packages/chains/chains/1313500.ts deleted file mode 100644 index 4d72c2c4de0..00000000000 --- a/packages/chains/chains/1313500.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Xerom", - "chain": "XERO", - "rpc": [ - "https://xerom.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.xerom.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Xerom Ether", - "symbol": "XERO", - "decimals": 18 - }, - "infoURL": "https://xerom.org", - "shortName": "xero", - "chainId": 1313500, - "networkId": 1313500, - "testnet": false, - "slug": "xerom" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1314.ts b/packages/chains/chains/1314.ts deleted file mode 100644 index 3ddb7c079d7..00000000000 --- a/packages/chains/chains/1314.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Alyx Mainnet", - "chain": "ALYX", - "rpc": [ - "https://alyx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.alyxchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alyx Chain Native Token", - "symbol": "ALYX", - "decimals": 18 - }, - "infoURL": "https://www.alyxchain.com", - "shortName": "alyx", - "chainId": 1314, - "networkId": 1314, - "explorers": [ - { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } - ], - "icon": { - "url": "ipfs://bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i", - "width": 2481, - "height": 2481, - "format": "png" - }, - "testnet": false, - "slug": "alyx" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/131419.ts b/packages/chains/chains/131419.ts deleted file mode 100644 index 59312ecc9bb..00000000000 --- a/packages/chains/chains/131419.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ETND Chain Mainnets", - "chain": "ETND", - "rpc": [ - "https://etnd-chain-s.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.node1.etnd.pro/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETND", - "symbol": "ETND", - "decimals": 18 - }, - "infoURL": "https://www.etnd.pro", - "shortName": "ETND", - "chainId": 131419, - "networkId": 131419, - "icon": { - "url": "ipfs://Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD", - "width": 128, - "height": 128, - "format": "png" - }, - "explorers": [ - { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": { - "url": "ipfs://Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD", - "width": 128, - "height": 128, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "etnd-chain-s" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1319.ts b/packages/chains/chains/1319.ts deleted file mode 100644 index 454cf1c19a0..00000000000 --- a/packages/chains/chains/1319.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aitd Mainnet", - "chain": "AITD", - "icon": { - "url": "ipfs://QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy", - "width": 160, - "height": 160, - "format": "png" - }, - "rpc": [ - "https://aitd.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://walletrpc.aitd.io", - "https://node.aitd.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AITD Mainnet", - "symbol": "AITD", - "decimals": 18 - }, - "infoURL": "https://www.aitd.io/", - "shortName": "aitd", - "chainId": 1319, - "networkId": 1319, - "explorers": [ - { - "name": "AITD Chain Explorer Mainnet", - "url": "https://aitd-explorer-new.aitd.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "aitd" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1320.ts b/packages/chains/chains/1320.ts deleted file mode 100644 index ed137db4c31..00000000000 --- a/packages/chains/chains/1320.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aitd Testnet", - "chain": "AITD", - "icon": { - "url": "ipfs://QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy", - "width": 160, - "height": 160, - "format": "png" - }, - "rpc": [ - "https://aitd-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://http-testnet.aitd.io" - ], - "faucets": [ - "https://aitd-faucet-pre.aitdcoin.com/" - ], - "nativeCurrency": { - "name": "AITD Testnet", - "symbol": "AITD", - "decimals": 18 - }, - "infoURL": "https://www.aitd.io/", - "shortName": "aitdtestnet", - "chainId": 1320, - "networkId": 1320, - "explorers": [ - { - "name": "AITD Chain Explorer Testnet", - "url": "https://block-explorer-testnet.aitd.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "aitd-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13308.ts b/packages/chains/chains/13308.ts deleted file mode 100644 index 07a9bedf55e..00000000000 --- a/packages/chains/chains/13308.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Credit Smartchain Mainnet", - "chain": "CREDIT", - "rpc": [ - "https://credit-smartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.cscscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://creditsmartchain.com", - "shortName": "Credit", - "chainId": 13308, - "networkId": 1, - "icon": { - "url": "ipfs://bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4", - "width": 1000, - "height": 1628, - "format": "png" - }, - "explorers": [ - { - "name": "CSC Scan", - "url": "https://explorer.cscscan.io", - "icon": { - "url": "ipfs://bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4", - "width": 1000, - "height": 1628, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "credit-smartchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337.ts b/packages/chains/chains/1337.ts deleted file mode 100644 index a77c3f83fa2..00000000000 --- a/packages/chains/chains/1337.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Localhost", - "chain": "ETH", - "rpc": [ - "http://localhost:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/ethereum/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "shortName": "local", - "chainId": 1337, - "networkId": 1337, - "testnet": true, - "slug": "localhost" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13371337.ts b/packages/chains/chains/13371337.ts deleted file mode 100644 index 07d23c671ec..00000000000 --- a/packages/chains/chains/13371337.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PepChain Churchill", - "chain": "PEP", - "rpc": [ - "https://pepchain-churchill.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://churchill-rpc.pepchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PepChain Churchill Ether", - "symbol": "TPEP", - "decimals": 18 - }, - "infoURL": "https://pepchain.io", - "shortName": "tpep", - "chainId": 13371337, - "networkId": 13371337, - "testnet": false, - "slug": "pepchain-churchill" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337702.ts b/packages/chains/chains/1337702.ts deleted file mode 100644 index c4f61669f6d..00000000000 --- a/packages/chains/chains/1337702.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kintsugi", - "title": "Kintsugi merge testnet", - "chain": "ETH", - "rpc": [ - "https://kintsugi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.kintsugi.themerge.dev" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", - "https://faucet.kintsugi.themerge.dev" - ], - "nativeCurrency": { - "name": "kintsugi Ethere", - "symbol": "kiETH", - "decimals": 18 - }, - "infoURL": "https://kintsugi.themerge.dev/", - "shortName": "kintsugi", - "chainId": 1337702, - "networkId": 1337702, - "explorers": [ - { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "kintsugi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337802.ts b/packages/chains/chains/1337802.ts deleted file mode 100644 index 9486e7a165e..00000000000 --- a/packages/chains/chains/1337802.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kiln", - "chain": "ETH", - "rpc": [ - "https://kiln.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.kiln.themerge.dev" - ], - "faucets": [ - "https://faucet.kiln.themerge.dev", - "https://kiln-faucet.pk910.de", - "https://kilnfaucet.com" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kiln.themerge.dev/", - "shortName": "kiln", - "chainId": 1337802, - "networkId": 1337802, - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "explorers": [ - { - "name": "Kiln Explorer", - "url": "https://explorer.kiln.themerge.dev", - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "kiln" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337803.ts b/packages/chains/chains/1337803.ts deleted file mode 100644 index 77a08a8dd88..00000000000 --- a/packages/chains/chains/1337803.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zhejiang", - "chain": "ETH", - "rpc": [ - "https://zhejiang.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.zhejiang.ethpandaops.io" - ], - "faucets": [ - "https://faucet.zhejiang.ethpandaops.io", - "https://zhejiang-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zhejiang.ethpandaops.io", - "shortName": "zhejiang", - "chainId": 1337803, - "networkId": 1337803, - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "explorers": [ - { - "name": "Zhejiang Explorer", - "url": "https://zhejiang.beaconcha.in", - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "zhejiang" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1338.ts b/packages/chains/chains/1338.ts deleted file mode 100644 index a4f3f05d0f9..00000000000 --- a/packages/chains/chains/1338.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Elysium Testnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://elysium-test-rpc.vulcanforged.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELST", - "chainId": 1338, - "networkId": 1338, - "explorers": [ - { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "elysium-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13381.ts b/packages/chains/chains/13381.ts deleted file mode 100644 index 35e6b30be30..00000000000 --- a/packages/chains/chains/13381.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Phoenix Mainnet", - "chain": "Phoenix", - "rpc": [ - "https://phoenix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.phoenixplorer.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Phoenix", - "symbol": "PHX", - "decimals": 18 - }, - "infoURL": "https://cryptophoenix.org/phoenix", - "shortName": "Phoenix", - "chainId": 13381, - "networkId": 13381, - "icon": { - "url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6", - "width": 1501, - "height": 1501, - "format": "png" - }, - "explorers": [ - { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "phoenix" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1339.ts b/packages/chains/chains/1339.ts deleted file mode 100644 index 5410149b50a..00000000000 --- a/packages/chains/chains/1339.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Elysium Mainnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.elysiumchain.tech/" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELSM", - "chainId": 1339, - "networkId": 1339, - "explorers": [ - { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } - ], - "testnet": false, - "slug": "elysium" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1351057110.ts b/packages/chains/chains/1351057110.ts deleted file mode 100644 index 97c8dd81d3f..00000000000 --- a/packages/chains/chains/1351057110.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Chaos (SKALE Testnet)", - "title": "Chaos Testnet", - "chain": "staging-fast-active-bellatrix", - "rpc": [ - "https://chaos-skale-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" - ], - "faucets": [ - "https://sfuel.skale.network/staging/chaos" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://docs.skale.network/develop/", - "shortName": "chaos-tenet", - "chainId": 1351057110, - "networkId": 1351057110, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", - "icon": { - "url": "ipfs://QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "chaos-skale-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1353.ts b/packages/chains/chains/1353.ts deleted file mode 100644 index 5beb71ddc85..00000000000 --- a/packages/chains/chains/1353.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CIC Chain Mainnet", - "chain": "CIC", - "rpc": [ - "https://cic-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://xapi.cicscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CIC", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CIC", - "chainId": 1353, - "networkId": 1353, - "icon": { - "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", - "width": 1024, - "height": 768, - "format": "png" - }, - "explorers": [ - { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": { - "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", - "width": 1024, - "height": 768, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "cic-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1369.ts b/packages/chains/chains/1369.ts deleted file mode 100644 index b4d78b71786..00000000000 --- a/packages/chains/chains/1369.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zafirium Mainnet", - "chain": "ZAFIC", - "icon": { - "url": "ipfs://QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t", - "width": 192, - "height": 192, - "format": "png" - }, - "rpc": [ - "https://zafirium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.zakumi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zakumi Chain Native Token", - "symbol": "ZAFIC", - "decimals": 18 - }, - "infoURL": "https://www.zakumi.io", - "shortName": "zafic", - "chainId": 1369, - "networkId": 1369, - "explorers": [ - { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "zafirium" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1380996178.ts b/packages/chains/chains/1380996178.ts deleted file mode 100644 index 7edcb19b85c..00000000000 --- a/packages/chains/chains/1380996178.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "RaptorChain", - "chain": "RPTR", - "rpc": [ - "https://raptorchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.raptorchain.io/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raptor", - "symbol": "RPTR", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://raptorchain.io", - "shortName": "rptr", - "chainId": 1380996178, - "networkId": 1380996178, - "icon": { - "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", - "width": 200, - "height": 200, - "format": "png" - }, - "explorers": [ - { - "name": "RaptorChain Explorer", - "url": "https://explorer.raptorchain.io", - "icon": { - "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", - "width": 200, - "height": 200, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "raptorchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13812.ts b/packages/chains/chains/13812.ts deleted file mode 100644 index 6f76466301a..00000000000 --- a/packages/chains/chains/13812.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Susono", - "chain": "SUS", - "rpc": [ - "https://susono.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Susono", - "symbol": "OPN", - "decimals": 18 - }, - "infoURL": "", - "shortName": "sus", - "chainId": 13812, - "networkId": 13812, - "explorers": [ - { - "name": "Susono", - "url": "http://explorer.opn.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "susono" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1388.ts b/packages/chains/chains/1388.ts deleted file mode 100644 index 5b3f339c482..00000000000 --- a/packages/chains/chains/1388.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AmStar Mainnet", - "chain": "AmStar", - "icon": { - "url": "ipfs://Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C", - "width": 599, - "height": 563, - "format": "png" - }, - "rpc": [ - "https://amstar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASAR", - "chainId": 1388, - "networkId": 1388, - "explorers": [ - { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "amstar" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1392.ts b/packages/chains/chains/1392.ts deleted file mode 100644 index 6606e6fd8ac..00000000000 --- a/packages/chains/chains/1392.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Joseon Mainnet", - "chain": "Joseon", - "icon": { - "url": "ipfs://QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e", - "width": 148, - "height": 148, - "format": "svg" - }, - "rpc": [ - "https://joseon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.modchain.net/blockchain.joseon.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Joseon Mun", - "symbol": "JSM", - "decimals": 18 - }, - "infoURL": "https://www.joseon.com/", - "shortName": "mun", - "chainId": 1392, - "networkId": 1392, - "explorers": [ - { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "joseon" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/14000.ts b/packages/chains/chains/14000.ts deleted file mode 100644 index 7ab5c9668f0..00000000000 --- a/packages/chains/chains/14000.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SPS Testnet", - "chain": "SPS-Testnet", - "rpc": [ - "https://sps-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://www.3sps.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS-Test", - "chainId": 14000, - "networkId": 14000, - "explorers": [ - { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "sps-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/142857.ts b/packages/chains/chains/142857.ts deleted file mode 100644 index 4ee24c5bdf8..00000000000 --- a/packages/chains/chains/142857.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ICPlaza Mainnet", - "chain": "ICPlaza", - "icon": { - "url": "ipfs://QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX", - "width": 847, - "height": 906, - "format": "png" - }, - "rpc": [ - "https://icplaza.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpcmainnet.ic-plaza.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ict", - "symbol": "ict", - "decimals": 18 - }, - "infoURL": "https://docs.ic-plaza.org/", - "shortName": "ICPlaza", - "chainId": 142857, - "networkId": 142857, - "explorers": [ - { - "name": "ICPlaza", - "url": "https://browsemainnet.ic-plaza.org/index", - "standard": "none" - } - ], - "testnet": false, - "slug": "icplaza" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/14288640.ts b/packages/chains/chains/14288640.ts deleted file mode 100644 index f123243b3b8..00000000000 --- a/packages/chains/chains/14288640.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Anduschain Mainnet", - "chain": "anduschain", - "rpc": [ - "https://anduschain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.anduschain.io/rpc", - "wss://rpc.anduschain.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "DAON", - "symbol": "DEB", - "decimals": 18 - }, - "infoURL": "https://anduschain.io/", - "shortName": "anduschain-mainnet", - "chainId": 14288640, - "networkId": 14288640, - "explorers": [ - { - "name": "anduschain explorer", - "url": "https://explorer.anduschain.io", - "icon": { - "url": "ipfs://bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "anduschain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1433.ts b/packages/chains/chains/1433.ts deleted file mode 100644 index 10a88880b04..00000000000 --- a/packages/chains/chains/1433.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rikeza Network Mainnet", - "title": "Rikeza Network Mainnet", - "chain": "Rikeza", - "icon": { - "url": "ipfs://QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://rikeza-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "RIK", - "chainId": 1433, - "networkId": 1433, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "rikeza-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1440.ts b/packages/chains/chains/1440.ts deleted file mode 100644 index 76363348991..00000000000 --- a/packages/chains/chains/1440.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Living Assets Mainnet", - "chain": "LAS", - "icon": { - "url": "ipfs://QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW", - "width": 500, - "height": 500, - "format": "jpg" - }, - "rpc": [ - "https://living-assets.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://beta.mainnet.livingassets.io/rpc", - "https://gamma.mainnet.livingassets.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAS", - "symbol": "LAS", - "decimals": 18 - }, - "infoURL": "https://dev.livingassets.io/", - "shortName": "LAS", - "chainId": 1440, - "networkId": 1440, - "testnet": false, - "slug": "living-assets" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1440001.ts b/packages/chains/chains/1440001.ts deleted file mode 100644 index aa87d92d4bb..00000000000 --- a/packages/chains/chains/1440001.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "XRP Ledger EVM Devnet Sidechain", - "chain": "XRPL", - "shortName": "XRPL-EVM-Devnet-Sidechain", - "chainId": 1440001, - "testnet": true, - "icon": { - "format": "png", - "url": "ipfs://bafkreidmgxjwjircegjkvysgz25b2ukw6h7axoirkxv6idupzzqsdrljgy", - "width": 780, - "height": 680 - }, - "rpc": [ - "https://xrp-ledger-evm-devnet-sidechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-evm-sidechain.xrpl.org" - ], - "nativeCurrency": { - "decimals": 18, - "name": "XRP", - "symbol": "XRP" - }, - "explorers": [ - { - "url": "https://evm-sidechain.xrpl.org/", - "name": "XRP Ledger Explorer", - "standard": "EIP3091" - } - ], - "slug": "xrp-ledger-evm-devnet-sidechain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1442.ts b/packages/chains/chains/1442.ts deleted file mode 100644 index 081b40e42dc..00000000000 --- a/packages/chains/chains/1442.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Polygon zkEVM Testnet", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [ - "https://polygon-zkevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.public.zkevm-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "testnet-zkEVM-mango", - "chainId": 1442, - "networkId": 1442, - "explorers": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ], - "icon": { - "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", - "width": 122, - "height": 135, - "format": "png" - }, - "testnet": true, - "slug": "polygon-zkevm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1452.ts b/packages/chains/chains/1452.ts deleted file mode 100644 index 6b23218f8c1..00000000000 --- a/packages/chains/chains/1452.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "GIL Testnet", - "chain": "GIL", - "icon": { - "url": "ipfs://QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA", - "width": 243, - "height": 243, - "format": "svg" - }, - "rpc": [ - "https://gil-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.giltestnet.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gil", - "chainId": 1452, - "networkId": 1452, - "explorers": [ - { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "gil-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1455.ts b/packages/chains/chains/1455.ts deleted file mode 100644 index 3d4b0f47fe0..00000000000 --- a/packages/chains/chains/1455.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ctex Scan Blockchain", - "chain": "Ctex Scan Blockchain", - "icon": { - "url": "ipfs://bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://ctex-scan-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.ctexscan.com/" - ], - "faucets": [ - "https://faucet.ctexscan.com" - ], - "nativeCurrency": { - "name": "CTEX", - "symbol": "CTEX", - "decimals": 18 - }, - "infoURL": "https://ctextoken.io", - "shortName": "CTEX", - "chainId": 1455, - "networkId": 1455, - "explorers": [ - { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "ctex-scan-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1482601649.ts b/packages/chains/chains/1482601649.ts deleted file mode 100644 index 1e15c3e5aa2..00000000000 --- a/packages/chains/chains/1482601649.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nebula Mainnet", - "chain": "green-giddy-denebola", - "rpc": [ - "https://nebula.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.skalenodes.com/v1/green-giddy-denebola", - "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-mainnet", - "chainId": 1482601649, - "networkId": 1482601649, - "explorers": [ - { - "name": "nebula", - "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", - "icon": { - "url": "ipfs://QmfQkfmQuoUUUKwF1yCcrPEzFcWLaqNyiSv5YMcSj6zs74", - "width": 500, - "height": 500, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "nebula" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1501.ts b/packages/chains/chains/1501.ts deleted file mode 100644 index 50f9219a2ce..00000000000 --- a/packages/chains/chains/1501.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BEVM", - "chain": "ChainX", - "rpc": [ - "https://bevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-1.bevm.io/", - "https://rpc-2.bevm.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://chainx.org", - "shortName": "chainx", - "chainId": 1501, - "networkId": 1501, - "explorers": [ - { - "name": "bevm scan", - "url": "https://scan.bevm.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "bevm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1506.ts b/packages/chains/chains/1506.ts deleted file mode 100644 index e02e24eb79f..00000000000 --- a/packages/chains/chains/1506.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sherpax Mainnet", - "chain": "Sherpax Mainnet", - "rpc": [ - "https://sherpax.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.sherpax.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "Sherpax", - "chainId": 1506, - "networkId": 1506, - "explorers": [ - { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "sherpax" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1507.ts b/packages/chains/chains/1507.ts deleted file mode 100644 index 9232d36e53a..00000000000 --- a/packages/chains/chains/1507.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sherpax Testnet", - "chain": "Sherpax Testnet", - "rpc": [ - "https://sherpax-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sherpax-testnet.chainx.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "SherpaxTestnet", - "chainId": 1507, - "networkId": 1507, - "explorers": [ - { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "sherpax-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1515.ts b/packages/chains/chains/1515.ts deleted file mode 100644 index f9ed88c61a9..00000000000 --- a/packages/chains/chains/1515.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Beagle Messaging Chain", - "chain": "BMC", - "rpc": [ - "https://beagle-messaging-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://beagle.chat/eth" - ], - "faucets": [ - "https://faucet.beagle.chat/" - ], - "nativeCurrency": { - "name": "Beagle", - "symbol": "BG", - "decimals": 18 - }, - "infoURL": "https://beagle.chat/", - "shortName": "beagle", - "chainId": 1515, - "networkId": 1515, - "explorers": [ - { - "name": "Beagle Messaging Chain Explorer", - "url": "https://eth.beagle.chat", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "beagle-messaging-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15551.ts b/packages/chains/chains/15551.ts deleted file mode 100644 index c6c0816aeb1..00000000000 --- a/packages/chains/chains/15551.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "LoopNetwork Mainnet", - "chain": "LoopNetwork", - "rpc": [ - "https://loopnetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.mainnetloop.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LOOP", - "symbol": "LOOP", - "decimals": 18 - }, - "infoURL": "http://theloopnetwork.org/", - "shortName": "loop", - "chainId": 15551, - "networkId": 15551, - "explorers": [ - { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "loopnetwork" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15555.ts b/packages/chains/chains/15555.ts deleted file mode 100644 index 5faf4479038..00000000000 --- a/packages/chains/chains/15555.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Trust EVM Testnet", - "chain": "Trust EVM Testnet", - "rpc": [ - "https://trust-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.testnet-dev.trust.one" - ], - "faucets": [ - "https://faucet.testnet-dev.trust.one/" - ], - "nativeCurrency": { - "name": "Trust EVM", - "symbol": "EVM", - "decimals": 18 - }, - "infoURL": "https://www.trust.one/", - "shortName": "TrustTestnet", - "chainId": 15555, - "networkId": 15555, - "explorers": [ - { - "name": "Trust EVM Explorer", - "url": "https://trustscan.one", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "trust-evm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15557.ts b/packages/chains/chains/15557.ts deleted file mode 100644 index 05652abdc98..00000000000 --- a/packages/chains/chains/15557.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EOS EVM Network Testnet", - "chain": "EOS", - "icon": { - "url": "ipfs://QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb", - "width": 500, - "height": 750, - "format": "png" - }, - "rpc": [ - "https://eos-evm-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.testnet.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos-testnet", - "chainId": 15557, - "networkId": 15557, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.testnet.evm.eosnetwork.com" - } - ] - }, - "testnet": true, - "slug": "eos-evm-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1559.ts b/packages/chains/chains/1559.ts deleted file mode 100644 index 56e2334c35d..00000000000 --- a/packages/chains/chains/1559.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tenet", - "title": "Tenet Mainnet", - "chain": "TENET", - "icon": { - "url": "ipfs://Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA", - "width": 640, - "height": 640, - "format": "svg" - }, - "rpc": [ - "https://tenet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tenet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 - }, - "infoURL": "https://tenet.org/", - "shortName": "tenet", - "chainId": 1559, - "networkId": 1559, - "explorers": [ - { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": { - "url": "ipfs://Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA", - "width": 640, - "height": 640, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "tenet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1564830818.ts b/packages/chains/chains/1564830818.ts deleted file mode 100644 index f5857cb6abe..00000000000 --- a/packages/chains/chains/1564830818.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Calypso NFT Hub (SKALE)", - "title": "Calypso NFT Hub Mainnet", - "chain": "honorable-steel-rasalhague", - "rpc": [ - "https://calypso-nft-hub-skale.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" - ], - "faucets": [ - "https://sfuel.dirtroad.dev" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-mainnet", - "chainId": 1564830818, - "networkId": 1564830818, - "explorers": [ - { - "name": "Blockscout", - "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", - "icon": { - "url": "ipfs://bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", - "width": 1637, - "height": 1636, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "calypso-nft-hub-skale" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1582.ts b/packages/chains/chains/1582.ts deleted file mode 100644 index 9102bb11a1e..00000000000 --- a/packages/chains/chains/1582.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bubs Testnet", - "chain": "gETH", - "shortName": "Bubs", - "chainId": 1582, - "testnet": true, - "icon": { - "format": "svg", - "url": "ipfs://bafybeibfpls2ealp4e5fdeoxessfjjkldgjnrcx2erph7524pg7alskk6a/1f9cb.svg", - "width": 512, - "height": 512 - }, - "rpc": [ - "https://bubs-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bubs.calderachain.xyz/http" - ], - "nativeCurrency": { - "decimals": 18, - "name": "Ether", - "symbol": "gETH" - }, - "explorers": [ - { - "url": "https://explorer.bubstestnet.com", - "name": "Bubs Testnet Explorer", - "standard": "EIP3091" - } - ], - "faucets": [ - "https://bubstestnet.com" - ], - "infoURL": "https://bubstestnet.com", - "networkId": 1582, - "slug": "bubs-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16000.ts b/packages/chains/chains/16000.ts deleted file mode 100644 index 49860445586..00000000000 --- a/packages/chains/chains/16000.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MetaDot Mainnet", - "chain": "MTT", - "rpc": [ - "https://metadot.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.metadot.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtt", - "chainId": 16000, - "networkId": 16000, - "testnet": false, - "slug": "metadot" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16001.ts b/packages/chains/chains/16001.ts deleted file mode 100644 index 6fbdc54d6fa..00000000000 --- a/packages/chains/chains/16001.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MetaDot Testnet", - "chain": "MTTTest", - "rpc": [ - "https://metadot-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.metadot.network" - ], - "faucets": [ - "https://faucet.metadot.network/" - ], - "nativeCurrency": { - "name": "MetaDot Token TestNet", - "symbol": "MTTest", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtttest", - "chainId": 16001, - "networkId": 16001, - "testnet": true, - "slug": "metadot-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1618.ts b/packages/chains/chains/1618.ts deleted file mode 100644 index 42260835e9c..00000000000 --- a/packages/chains/chains/1618.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Catecoin Chain Mainnet", - "chain": "Catechain", - "rpc": [ - "https://catecoin-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://send.catechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Catecoin", - "symbol": "CATE", - "decimals": 18 - }, - "infoURL": "https://catechain.com", - "shortName": "cate", - "chainId": 1618, - "networkId": 1618, - "testnet": false, - "slug": "catecoin-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1620.ts b/packages/chains/chains/1620.ts deleted file mode 100644 index 1e127f503b5..00000000000 --- a/packages/chains/chains/1620.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Atheios", - "chain": "ATH", - "rpc": [ - "https://atheios.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.atheios.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Atheios Ether", - "symbol": "ATH", - "decimals": 18 - }, - "infoURL": "https://atheios.org", - "shortName": "ath", - "chainId": 1620, - "networkId": 11235813, - "slip44": 1620, - "testnet": false, - "slug": "atheios" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16507.ts b/packages/chains/chains/16507.ts deleted file mode 100644 index b575009434a..00000000000 --- a/packages/chains/chains/16507.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Genesys Mainnet", - "chain": "Genesys", - "icon": { - "url": "ipfs://bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://genesys.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.genesys.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Genesys", - "symbol": "GSYS", - "decimals": 18 - }, - "infoURL": "https://www.genesys.network/", - "shortName": "Genesys", - "chainId": 16507, - "networkId": 16507, - "explorers": [ - { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "genesys" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1657.ts b/packages/chains/chains/1657.ts deleted file mode 100644 index acf1be5d604..00000000000 --- a/packages/chains/chains/1657.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Btachain", - "chain": "btachain", - "rpc": [ - "https://btachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed1.btachain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin Asset", - "symbol": "BTA", - "decimals": 18 - }, - "infoURL": "https://bitcoinasset.io/", - "shortName": "bta", - "chainId": 1657, - "networkId": 1657, - "testnet": false, - "slug": "btachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1663.ts b/packages/chains/chains/1663.ts deleted file mode 100644 index 17bb8355eb5..00000000000 --- a/packages/chains/chains/1663.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Horizen Gobi Testnet", - "shortName": "Gobi", - "chain": "Gobi", - "icon": { - "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", - "width": 1213, - "height": 1213, - "format": "png" - }, - "rpc": [ - "https://horizen-gobi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://gobi-testnet.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_testnet_evm" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.horizen.io" - ], - "nativeCurrency": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 1663, - "networkId": 1663, - "slip44": 121, - "explorers": [ - { - "name": "Gobi Testnet Block Explorer", - "url": "https://gobi-explorer.horizen.io", - "icon": { - "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", - "width": 1213, - "height": 1213, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "horizen-gobi-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16658437.ts b/packages/chains/chains/16658437.ts deleted file mode 100644 index 4990ef2fafc..00000000000 --- a/packages/chains/chains/16658437.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Plian Testnet Main", - "chain": "Plian", - "rpc": [ - "https://plian-testnet-main.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.plian.io/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Testnet Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-testnet", - "chainId": 16658437, - "networkId": 16658437, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "plian-testnet-main" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600000.ts b/packages/chains/chains/1666600000.ts deleted file mode 100644 index cc156e1ef73..00000000000 --- a/packages/chains/chains/1666600000.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Mainnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://harmony-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.harmony.one", - "https://api.s0.t.hmny.io" - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-s0", - "chainId": 1666600000, - "networkId": 1666600000, - "explorers": [ - { - "name": "Harmony Block Explorer", - "url": "https://explorer.harmony.one", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "harmony-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600001.ts b/packages/chains/chains/1666600001.ts deleted file mode 100644 index 4f56ec552b3..00000000000 --- a/packages/chains/chains/1666600001.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Mainnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://harmony-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s1.t.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-s1", - "chainId": 1666600001, - "networkId": 1666600001, - "testnet": false, - "slug": "harmony-shard-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600002.ts b/packages/chains/chains/1666600002.ts deleted file mode 100644 index 05fcc2b09d1..00000000000 --- a/packages/chains/chains/1666600002.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Mainnet Shard 2", - "chain": "Harmony", - "rpc": [ - "https://harmony-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s2.t.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-s2", - "chainId": 1666600002, - "networkId": 1666600002, - "testnet": false, - "slug": "harmony-shard-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600003.ts b/packages/chains/chains/1666600003.ts deleted file mode 100644 index ec8120222e7..00000000000 --- a/packages/chains/chains/1666600003.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Mainnet Shard 3", - "chain": "Harmony", - "rpc": [ - "https://harmony-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s3.t.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-s3", - "chainId": 1666600003, - "networkId": 1666600003, - "testnet": false, - "slug": "harmony-shard-3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700000.ts b/packages/chains/chains/1666700000.ts deleted file mode 100644 index e3cdb5514df..00000000000 --- a/packages/chains/chains/1666700000.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Testnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://harmony-testnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s0.b.hmny.io" - ], - "faucets": [ - "https://faucet.pops.one" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s0", - "chainId": 1666700000, - "networkId": 1666700000, - "explorers": [ - { - "name": "Harmony Testnet Block Explorer", - "url": "https://explorer.pops.one", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "harmony-testnet-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700001.ts b/packages/chains/chains/1666700001.ts deleted file mode 100644 index 52275a574fe..00000000000 --- a/packages/chains/chains/1666700001.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Testnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://harmony-testnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s1.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s1", - "chainId": 1666700001, - "networkId": 1666700001, - "testnet": true, - "slug": "harmony-testnet-shard-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700002.ts b/packages/chains/chains/1666700002.ts deleted file mode 100644 index 0cd1cabf1a8..00000000000 --- a/packages/chains/chains/1666700002.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Testnet Shard 2", - "chain": "Harmony", - "rpc": [ - "https://harmony-testnet-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s2.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s2", - "chainId": 1666700002, - "networkId": 1666700002, - "testnet": true, - "slug": "harmony-testnet-shard-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700003.ts b/packages/chains/chains/1666700003.ts deleted file mode 100644 index d3ff5803cee..00000000000 --- a/packages/chains/chains/1666700003.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Testnet Shard 3", - "chain": "Harmony", - "rpc": [ - "https://harmony-testnet-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s3.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s3", - "chainId": 1666700003, - "networkId": 1666700003, - "testnet": true, - "slug": "harmony-testnet-shard-3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666900000.ts b/packages/chains/chains/1666900000.ts deleted file mode 100644 index bf85c20d82d..00000000000 --- a/packages/chains/chains/1666900000.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Harmony Devnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://harmony-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s1.ps.hmny.io" - ], - "faucets": [ - "http://dev.faucet.easynode.one/" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-ps-s0", - "chainId": 1666900000, - "networkId": 1666900000, - "explorers": [ - { - "name": "Harmony Block Explorer", - "url": "https://explorer.ps.hmny.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "harmony-devnet-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16688.ts b/packages/chains/chains/16688.ts deleted file mode 100644 index bb1dba8f6b0..00000000000 --- a/packages/chains/chains/16688.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IRIShub Testnet", - "chain": "IRIShub", - "rpc": [ - "https://irishub-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evmrpc.nyancat.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "nyancat", - "chainId": 16688, - "networkId": 16688, - "icon": { - "url": "ipfs://QmRaSx7AX1VDgcqjwLgSDP4WZmKBHPdHhbjkcEEXPA2Fnc", - "width": 1062, - "height": 822, - "format": "png" - }, - "explorers": [ - { - "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", - "url": "https://nyancat.iobscan.io", - "standard": "none", - "icon": { - "url": "ipfs://QmRaSx7AX1VDgcqjwLgSDP4WZmKBHPdHhbjkcEEXPA2Fnc", - "width": 1062, - "height": 822, - "format": "png" - } - } - ], - "testnet": true, - "slug": "irishub-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/167005.ts b/packages/chains/chains/167005.ts deleted file mode 100644 index edc10ad6f2b..00000000000 --- a/packages/chains/chains/167005.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taiko Grimsvotn L2", - "chain": "ETH", - "status": "active", - "icon": { - "url": "ipfs://QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui", - "width": 288, - "height": 258, - "format": "png" - }, - "rpc": [ - "https://taiko-grimsvotn-l2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l2", - "chainId": 167005, - "networkId": 167005, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.test.taiko.xyz", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "taiko-grimsvotn-l2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/167006.ts b/packages/chains/chains/167006.ts deleted file mode 100644 index af23873686e..00000000000 --- a/packages/chains/chains/167006.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taiko Eldfell L3", - "chain": "ETH", - "status": "active", - "icon": { - "url": "ipfs://QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui", - "width": 288, - "height": 258, - "format": "png" - }, - "rpc": [ - "https://taiko-eldfell-l3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.l3test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l3", - "chainId": 167006, - "networkId": 167006, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.l3test.taiko.xyz", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "taiko-eldfell-l3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16718.ts b/packages/chains/chains/16718.ts deleted file mode 100644 index 30f43c2d2d4..00000000000 --- a/packages/chains/chains/16718.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AirDAO Mainnet", - "chain": "ambnet", - "icon": { - "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://airdao.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://network.ambrosus.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://airdao.io", - "shortName": "airdao", - "chainId": 16718, - "networkId": 16718, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://airdao.io/explorer", - "standard": "none" - } - ], - "testnet": false, - "slug": "airdao" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1688.ts b/packages/chains/chains/1688.ts deleted file mode 100644 index 45480465b50..00000000000 --- a/packages/chains/chains/1688.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "LUDAN Mainnet", - "chain": "LUDAN", - "rpc": [ - "https://ludan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ludan.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "LUDAN", - "symbol": "LUDAN", - "decimals": 18 - }, - "infoURL": "https://www.ludan.org/", - "shortName": "LUDAN", - "icon": { - "url": "ipfs://bafkreigzeanzqgxrzzep45t776ovbwi242poqxbryuu2go5eedeuwwcsay", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 1688, - "networkId": 1688, - "testnet": false, - "slug": "ludan" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16888.ts b/packages/chains/chains/16888.ts deleted file mode 100644 index b2f8c787fd7..00000000000 --- a/packages/chains/chains/16888.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IVAR Chain Testnet", - "chain": "IVAR", - "icon": { - "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", - "width": 519, - "height": 519, - "format": "svg" - }, - "rpc": [ - "https://ivar-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.ivarex.com" - ], - "faucets": [ - "https://tfaucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "tIvar", - "symbol": "tIVAR", - "decimals": 18 - }, - "infoURL": "https://ivarex.com", - "shortName": "tivar", - "chainId": 16888, - "networkId": 16888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ivar-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1701.ts b/packages/chains/chains/1701.ts deleted file mode 100644 index 92aee48f4e9..00000000000 --- a/packages/chains/chains/1701.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Anytype EVM Chain", - "chain": "ETH", - "icon": { - "url": "ipfs://QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [ - "https://anytype-evm-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://geth.anytype.io" - ], - "faucets": [ - "https://evm.anytype.io/faucet" - ], - "nativeCurrency": { - "name": "ANY", - "symbol": "ANY", - "decimals": 18 - }, - "infoURL": "https://evm.anytype.io", - "shortName": "AnytypeChain", - "chainId": 1701, - "networkId": 1701, - "explorers": [ - { - "name": "Anytype Explorer", - "url": "https://explorer.anytype.io", - "icon": { - "url": "ipfs://QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG", - "width": 200, - "height": 200, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "anytype-evm-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1707.ts b/packages/chains/chains/1707.ts deleted file mode 100644 index bd391a0295a..00000000000 --- a/packages/chains/chains/1707.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TBSI Mainnet", - "title": "Thai Blockchain Service Infrastructure Mainnet", - "chain": "TBSI", - "rpc": [ - "https://tbsi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.blockchain.or.th" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "TBSI", - "chainId": 1707, - "networkId": 1707, - "explorers": [ - { - "name": "blockscout", - "url": "https://exp.blockchain.or.th", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "tbsi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1708.ts b/packages/chains/chains/1708.ts deleted file mode 100644 index a19c4494111..00000000000 --- a/packages/chains/chains/1708.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TBSI Testnet", - "title": "Thai Blockchain Service Infrastructure Testnet", - "chain": "TBSI", - "rpc": [ - "https://tbsi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.blockchain.or.th" - ], - "faucets": [ - "https://faucet.blockchain.or.th" - ], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "tTBSI", - "chainId": 1708, - "networkId": 1708, - "explorers": [ - { - "name": "blockscout", - "url": "https://exp.testnet.blockchain.or.th", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "tbsi-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1718.ts b/packages/chains/chains/1718.ts deleted file mode 100644 index a5c4d4ee7af..00000000000 --- a/packages/chains/chains/1718.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Palette Chain Mainnet", - "chain": "PLT", - "rpc": [ - "https://palette-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://palette-rpc.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCM", - "chainId": 1718, - "networkId": 1718, - "icon": { - "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", - "width": 800, - "height": 800, - "format": "png" - }, - "explorers": [ - { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": { - "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", - "width": 800, - "height": 800, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "palette-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/17180.ts b/packages/chains/chains/17180.ts deleted file mode 100644 index 332869dc83c..00000000000 --- a/packages/chains/chains/17180.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Palette Chain Testnet", - "chain": "PLT", - "rpc": [ - "https://palette-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://palette-opennet.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCT", - "chainId": 17180, - "networkId": 17180, - "icon": { - "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", - "width": 800, - "height": 800, - "format": "png" - }, - "explorers": [ - { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": { - "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", - "width": 800, - "height": 800, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "palette-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1773.ts b/packages/chains/chains/1773.ts deleted file mode 100644 index 2110fccc860..00000000000 --- a/packages/chains/chains/1773.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PartyChain", - "chain": "mainnet", - "rpc": [ - "https://partychain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://tea.mining4people.com/rpc", - "http://172.104.194.36:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Grams", - "symbol": "GRAMS", - "decimals": 18 - }, - "infoURL": "TeaPartyCrypto.com", - "shortName": "TeaParty", - "chainId": 1773, - "networkId": 1773, - "icon": { - "url": "ipfs://QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS", - "width": 400, - "height": 400, - "format": "jpg" - }, - "status": "incubating", - "explorers": [ - { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": { - "url": "ipfs://QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS", - "width": 400, - "height": 400, - "format": "jpg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "partychain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1777.ts b/packages/chains/chains/1777.ts deleted file mode 100644 index 82f059d494f..00000000000 --- a/packages/chains/chains/1777.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gauss Mainnet", - "chain": "Gauss", - "icon": { - "url": "ipfs://QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA", - "width": 243, - "height": 243, - "format": "svg" - }, - "rpc": [ - "https://gauss.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.gaussgang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gauss", - "chainId": 1777, - "networkId": 1777, - "explorers": [ - { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "gauss" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/17777.ts b/packages/chains/chains/17777.ts deleted file mode 100644 index 9dfed993d56..00000000000 --- a/packages/chains/chains/17777.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EOS EVM Network", - "chain": "EOS", - "icon": { - "url": "ipfs://QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb", - "width": 500, - "height": 750, - "format": "png" - }, - "rpc": [ - "https://eos-evm-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos", - "chainId": 17777, - "networkId": 17777, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.evm.eosnetwork.com" - }, - { - "url": "https://app.multichain.org" - } - ] - }, - "testnet": false, - "slug": "eos-evm-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18000.ts b/packages/chains/chains/18000.ts deleted file mode 100644 index 738cea3e5d1..00000000000 --- a/packages/chains/chains/18000.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Frontier of Dreams Testnet", - "chain": "Game Network", - "rpc": [ - "https://frontier-of-dreams-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.fod.games/" - ], - "nativeCurrency": { - "name": "ZKST", - "symbol": "ZKST", - "decimals": 18 - }, - "faucets": [], - "shortName": "ZKST", - "chainId": 18000, - "networkId": 18000, - "infoURL": "https://goexosphere.com", - "explorers": [ - { - "name": "Game Network", - "url": "https://explorer.fod.games", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "frontier-of-dreams-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1804.ts b/packages/chains/chains/1804.ts deleted file mode 100644 index 89041ef4e85..00000000000 --- a/packages/chains/chains/1804.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kerleano", - "title": "Proof of Climate awaReness testnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://kerleano.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://cacib-saturn-test.francecentral.cloudapp.azure.com", - "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" - ], - "faucets": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" - ], - "nativeCurrency": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/kerleano", - "shortName": "kerleano", - "chainId": 1804, - "networkId": 1804, - "icon": { - "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", - "width": 334, - "height": 360, - "format": "png" - }, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/kerleano", - "icon": { - "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", - "width": 334, - "height": 360, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "kerleano" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1807.ts b/packages/chains/chains/1807.ts deleted file mode 100644 index 1641932cc2f..00000000000 --- a/packages/chains/chains/1807.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rabbit Analog Testnet Chain", - "chain": "rAna", - "icon": { - "url": "ipfs://QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc", - "width": 310, - "height": 251, - "format": "svg" - }, - "rpc": [ - "https://rabbit-analog-testnet-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rabbit.analog-rpc.com" - ], - "faucets": [ - "https://analogfaucet.com" - ], - "nativeCurrency": { - "name": "Rabbit Analog Test Chain Native Token ", - "symbol": "rAna", - "decimals": 18 - }, - "infoURL": "https://rabbit.analogscan.com", - "shortName": "rAna", - "chainId": 1807, - "networkId": 1807, - "explorers": [ - { - "name": "blockscout", - "url": "https://rabbit.analogscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "rabbit-analog-testnet-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18159.ts b/packages/chains/chains/18159.ts deleted file mode 100644 index 6624d7e3ac9..00000000000 --- a/packages/chains/chains/18159.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Proof Of Memes", - "title": "Proof Of Memes Mainnet", - "chain": "POM", - "icon": { - "url": "ipfs://QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://proof-of-memes.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.memescan.io", - "https://mainnet-rpc2.memescan.io", - "https://mainnet-rpc3.memescan.io", - "https://mainnet-rpc4.memescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Proof Of Memes", - "symbol": "POM", - "decimals": 18 - }, - "infoURL": "https://proofofmemes.org", - "shortName": "pom", - "chainId": 18159, - "networkId": 18159, - "explorers": [ - { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "proof-of-memes" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1818.ts b/packages/chains/chains/1818.ts deleted file mode 100644 index d40dd55e88f..00000000000 --- a/packages/chains/chains/1818.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Cube Chain Mainnet", - "chain": "Cube", - "icon": { - "url": "ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", - "width": 282, - "height": 250, - "format": "png" - }, - "rpc": [ - "https://cube-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://http-mainnet.cube.network", - "wss://ws-mainnet.cube.network", - "https://http-mainnet-sg.cube.network", - "wss://ws-mainnet-sg.cube.network", - "https://http-mainnet-us.cube.network", - "wss://ws-mainnet-us.cube.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cube Chain Native Token", - "symbol": "CUBE", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cube", - "chainId": 1818, - "networkId": 1818, - "slip44": 1818, - "explorers": [ - { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "cube-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1819.ts b/packages/chains/chains/1819.ts deleted file mode 100644 index bd995697a11..00000000000 --- a/packages/chains/chains/1819.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Cube Chain Testnet", - "chain": "Cube", - "icon": { - "url": "ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", - "width": 282, - "height": 250, - "format": "png" - }, - "rpc": [ - "https://cube-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://http-testnet.cube.network", - "wss://ws-testnet.cube.network", - "https://http-testnet-sg.cube.network", - "wss://ws-testnet-sg.cube.network", - "https://http-testnet-jp.cube.network", - "wss://ws-testnet-jp.cube.network", - "https://http-testnet-us.cube.network", - "wss://ws-testnet-us.cube.network" - ], - "faucets": [ - "https://faucet.cube.network" - ], - "nativeCurrency": { - "name": "Cube Chain Test Native Token", - "symbol": "CUBET", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cubet", - "chainId": 1819, - "networkId": 1819, - "slip44": 1819, - "explorers": [ - { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "cube-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18289463.ts b/packages/chains/chains/18289463.ts deleted file mode 100644 index 1d0e2f94260..00000000000 --- a/packages/chains/chains/18289463.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IOLite", - "chain": "ILT", - "rpc": [ - "https://iolite.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://net.iolite.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "IOLite Ether", - "symbol": "ILT", - "decimals": 18 - }, - "infoURL": "https://iolite.io", - "shortName": "ilt", - "chainId": 18289463, - "networkId": 18289463, - "testnet": false, - "slug": "iolite" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1856.ts b/packages/chains/chains/1856.ts deleted file mode 100644 index afef9aa96a0..00000000000 --- a/packages/chains/chains/1856.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Teslafunds", - "chain": "TSF", - "rpc": [ - "https://teslafunds.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://tsfapi.europool.me" - ], - "faucets": [], - "nativeCurrency": { - "name": "Teslafunds Ether", - "symbol": "TSF", - "decimals": 18 - }, - "infoURL": "https://teslafunds.io", - "shortName": "tsf", - "chainId": 1856, - "networkId": 1, - "testnet": false, - "slug": "teslafunds" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18686.ts b/packages/chains/chains/18686.ts deleted file mode 100644 index 1c3fa84bb86..00000000000 --- a/packages/chains/chains/18686.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MXC zkEVM Mainnet", - "chain": "MXC zkEVM", - "icon": { - "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", - "width": 159, - "height": 159, - "format": "png" - }, - "rpc": [ - "https://mxc-zkevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC zkEVM Mainnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://doc.mxc.com/docs/intro", - "shortName": "MXCzkEVM", - "chainId": 18686, - "networkId": 18686, - "explorers": [ - { - "name": "MXC zkEVM Mainnet", - "url": "https://explorer.mxc.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "mxc-zkevm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1881.ts b/packages/chains/chains/1881.ts deleted file mode 100644 index 8953bdc109d..00000000000 --- a/packages/chains/chains/1881.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gitshock Cartenz Testnet", - "chain": "Gitshock Cartenz", - "icon": { - "url": "ipfs://bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://gitshock-cartenz-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.cartenz.works" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Gitshock Cartenz", - "symbol": "tGTFX", - "decimals": 18 - }, - "infoURL": "https://gitshock.com", - "shortName": "gitshockchain", - "chainId": 1881, - "networkId": 1881, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "gitshock-cartenz-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/188881.ts b/packages/chains/chains/188881.ts deleted file mode 100644 index 2af6613ac2b..00000000000 --- a/packages/chains/chains/188881.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Condor Test Network", - "chain": "CONDOR", - "icon": { - "url": "ipfs://QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM", - "width": 752, - "height": 752, - "format": "png" - }, - "rpc": [ - "https://condor-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.condor.systems/rpc" - ], - "faucets": [ - "https://faucet.condor.systems" - ], - "nativeCurrency": { - "name": "Condor Native Token", - "symbol": "CONDOR", - "decimals": 18 - }, - "infoURL": "https://condor.systems", - "shortName": "condor", - "chainId": 188881, - "networkId": 188881, - "explorers": [ - { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" - } - ], - "testnet": true, - "slug": "condor-test-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1890.ts b/packages/chains/chains/1890.ts deleted file mode 100644 index e281dc9ca22..00000000000 --- a/packages/chains/chains/1890.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lightlink Phoenix Mainnet", - "chain": "Lightlink Phoenix Mainnet", - "icon": { - "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", - "width": 600, - "height": 600, - "format": "png" - }, - "rpc": [ - "https://lightlink-phoenix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://replicator-01.phoenix.lightlink.io/rpc/v1", - "https://replicator-02.phoenix.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_phoenix", - "chainId": 1890, - "networkId": 1890, - "explorers": [ - { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": { - "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", - "width": 600, - "height": 600, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "lightlink-phoenix" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1891.ts b/packages/chains/chains/1891.ts deleted file mode 100644 index 6a91d1dffdf..00000000000 --- a/packages/chains/chains/1891.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lightlink Pegasus Testnet", - "chain": "Lightlink Pegasus Testnet", - "icon": { - "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", - "width": 600, - "height": 600, - "format": "png" - }, - "rpc": [ - "https://lightlink-pegasus-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://replicator-01.pegasus.lightlink.io/rpc/v1", - "https://replicator-02.pegasus.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [ - "https://pegasus-faucet-react.vercel.app" - ], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_pegasus", - "chainId": 1891, - "networkId": 1891, - "explorers": [ - { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": { - "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", - "width": 600, - "height": 600, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "lightlink-pegasus-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1898.ts b/packages/chains/chains/1898.ts deleted file mode 100644 index 548e40fa525..00000000000 --- a/packages/chains/chains/1898.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BON Network", - "chain": "BON", - "rpc": [ - "https://bon-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://rpc.boyanet.org:8545", - "ws://rpc.boyanet.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOYACoin", - "symbol": "BOY", - "decimals": 18 - }, - "infoURL": "https://boyanet.org", - "shortName": "boya", - "chainId": 1898, - "networkId": 1, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bon-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/19011.ts b/packages/chains/chains/19011.ts deleted file mode 100644 index 29808beec02..00000000000 --- a/packages/chains/chains/19011.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HOME Verse Mainnet", - "chain": "HOME Verse", - "icon": { - "url": "ipfs://QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU", - "width": 597, - "height": 597, - "format": "png" - }, - "rpc": [ - "https://home-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.mainnet.oasys.homeverse.games/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.homeverse.games/", - "shortName": "HMV", - "chainId": 19011, - "networkId": 19011, - "explorers": [ - { - "name": "HOME Verse Explorer", - "url": "https://explorer.oasys.homeverse.games", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - }, - "testnet": false, - "slug": "home-verse" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1907.ts b/packages/chains/chains/1907.ts deleted file mode 100644 index ec24f641514..00000000000 --- a/packages/chains/chains/1907.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitcichain Mainnet", - "chain": "BITCI", - "icon": { - "url": "ipfs://QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn", - "width": 64, - "height": 64, - "format": "svg" - }, - "rpc": [ - "https://bitcichain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.bitci.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitci", - "symbol": "BITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "bitci", - "chainId": 1907, - "networkId": 1907, - "explorers": [ - { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bitcichain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1908.ts b/packages/chains/chains/1908.ts deleted file mode 100644 index 66c1e4c9b42..00000000000 --- a/packages/chains/chains/1908.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitcichain Testnet", - "chain": "TBITCI", - "icon": { - "url": "ipfs://QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn", - "width": 64, - "height": 64, - "format": "svg" - }, - "rpc": [ - "https://bitcichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.bitcichain.com" - ], - "faucets": [ - "https://faucet.bitcichain.com" - ], - "nativeCurrency": { - "name": "Test Bitci", - "symbol": "TBITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "tbitci", - "chainId": 1908, - "networkId": 1908, - "explorers": [ - { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bitcichain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/192837465.ts b/packages/chains/chains/192837465.ts deleted file mode 100644 index 1a74bd7c310..00000000000 --- a/packages/chains/chains/192837465.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gather Mainnet Network", - "chain": "GTH", - "rpc": [ - "https://gather-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "GTH", - "chainId": 192837465, - "networkId": 192837465, - "icon": { - "url": "ipfs://Qmc9AJGg9aNhoH56n3deaZeUc8Ty1jDYJsW6Lu6hgSZH4S", - "height": 512, - "width": 512, - "format": "png" - }, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.gather.network", - "icon": { - "url": "ipfs://QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz", - "width": 1080, - "height": 1080, - "format": "svg" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "gather-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1945.ts b/packages/chains/chains/1945.ts deleted file mode 100644 index cc234dd0c75..00000000000 --- a/packages/chains/chains/1945.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ONUS Chain Testnet", - "title": "ONUS Chain Testnet", - "chain": "onus", - "rpc": [ - "https://onus-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-testnet", - "chainId": 1945, - "networkId": 1945, - "explorers": [ - { - "name": "Onus explorer testnet", - "url": "https://explorer-testnet.onuschain.io", - "icon": { - "url": "ipfs://bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "onus-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1951.ts b/packages/chains/chains/1951.ts deleted file mode 100644 index 0fef8903985..00000000000 --- a/packages/chains/chains/1951.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "D-Chain Mainnet", - "chain": "D-Chain", - "rpc": [ - "https://d-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" - ], - "nativeCurrency": { - "name": "DOINX", - "symbol": "DOINX", - "decimals": 18 - }, - "shortName": "dchain-mainnet", - "chainId": 1951, - "networkId": 1951, - "icon": { - "url": "ipfs://QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj", - "width": 700, - "height": 495, - "format": "png" - }, - "faucets": [], - "infoURL": "", - "testnet": false, - "slug": "d-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1954.ts b/packages/chains/chains/1954.ts deleted file mode 100644 index e9f3ad44380..00000000000 --- a/packages/chains/chains/1954.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dexilla Testnet", - "chain": "Dexilla", - "rpc": [ - "https://dexilla-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.dexilla.com" - ], - "faucets": [], - "icon": { - "url": "ipfs://QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ", - "width": 512, - "height": 512, - "format": "png" - }, - "nativeCurrency": { - "name": "Dexilla Native Token", - "symbol": "DXZ", - "decimals": 18 - }, - "infoURL": "https://dexilla.com", - "shortName": "Dexilla", - "chainId": 1954, - "networkId": 1954, - "explorers": [ - { - "name": "dos-mainnet", - "url": "https://exp.dexilla.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.dexilla.com" - } - ] - }, - "testnet": true, - "slug": "dexilla-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1967.ts b/packages/chains/chains/1967.ts deleted file mode 100644 index aa921f60b12..00000000000 --- a/packages/chains/chains/1967.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Eleanor", - "title": "Metatime Testnet Eleanor", - "chain": "MTC", - "rpc": [ - "https://eleanor.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.metatime.com/eleanor", - "wss://ws.metatime.com/eleanor" - ], - "faucets": [ - "https://faucet.metatime.com/eleanor" - ], - "nativeCurrency": { - "name": "Eleanor Metacoin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://eleanor.metatime.com", - "shortName": "mtc", - "chainId": 1967, - "networkId": 1967, - "explorers": [ - { - "name": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "eleanor" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1969.ts b/packages/chains/chains/1969.ts deleted file mode 100644 index 3a2f7843055..00000000000 --- a/packages/chains/chains/1969.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Super Smart Chain Testnet", - "chain": "TSCS", - "rpc": [ - "https://super-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnetrpc.scschain.com" - ], - "faucets": [ - "https://testnet.scschain.com" - ], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "TSCS", - "decimals": 18 - }, - "infoURL": "https://testnet.scschain.com", - "shortName": "tscs", - "chainId": 1969, - "networkId": 1969, - "icon": { - "url": "ipfs://QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D", - "width": 130, - "height": 130, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnetscan.scschain.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "super-smart-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1970.ts b/packages/chains/chains/1970.ts deleted file mode 100644 index d0dc1b6ebaf..00000000000 --- a/packages/chains/chains/1970.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Super Smart Chain Mainnet", - "chain": "SCS", - "rpc": [ - "https://super-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.scschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "SCS", - "decimals": 18 - }, - "infoURL": "https://scschain.com", - "shortName": "scs", - "chainId": 1970, - "networkId": 1970, - "icon": { - "url": "ipfs://QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D", - "width": 130, - "height": 130, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.scschain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "super-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1971.ts b/packages/chains/chains/1971.ts deleted file mode 100644 index fe595a135f9..00000000000 --- a/packages/chains/chains/1971.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Atelier", - "title": "Atelier Test Network", - "chain": "ALTR", - "rpc": [ - "https://atelier.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://1971.network/atlr", - "wss://1971.network/atlr" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATLR", - "symbol": "ATLR", - "decimals": 18 - }, - "infoURL": "https://1971.network/", - "shortName": "atlr", - "chainId": 1971, - "networkId": 1971, - "icon": { - "url": "ipfs://bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u", - "width": 200, - "height": 200, - "format": "png" - }, - "testnet": true, - "slug": "atelier" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1975.ts b/packages/chains/chains/1975.ts deleted file mode 100644 index 83cb9efcb61..00000000000 --- a/packages/chains/chains/1975.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ONUS Chain Mainnet", - "title": "ONUS Chain Mainnet", - "chain": "onus", - "rpc": [ - "https://onus-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.onuschain.io", - "wss://ws.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-mainnet", - "chainId": 1975, - "networkId": 1975, - "explorers": [ - { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": { - "url": "ipfs://bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "onus-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/197710212030.ts b/packages/chains/chains/197710212030.ts deleted file mode 100644 index ea579e09b59..00000000000 --- a/packages/chains/chains/197710212030.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ntity Mainnet", - "chain": "Ntity", - "rpc": [ - "https://ntity.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ntity.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt", - "chainId": 197710212030, - "networkId": 197710212030, - "icon": { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 711, - "height": 715, - "format": "svg" - }, - "explorers": [ - { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 711, - "height": 715, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ntity" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/197710212031.ts b/packages/chains/chains/197710212031.ts deleted file mode 100644 index 015648c0501..00000000000 --- a/packages/chains/chains/197710212031.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Haradev Testnet", - "chain": "Ntity", - "rpc": [ - "https://haradev-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://blockchain.haradev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt-haradev", - "chainId": 197710212031, - "networkId": 197710212031, - "icon": { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 711, - "height": 715, - "format": "svg" - }, - "explorers": [ - { - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 711, - "height": 715, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "haradev-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1984.ts b/packages/chains/chains/1984.ts deleted file mode 100644 index 14abe2b7f2d..00000000000 --- a/packages/chains/chains/1984.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Eurus Testnet", - "chain": "EUN", - "rpc": [ - "https://eurus-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.eurus.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "euntest", - "chainId": 1984, - "networkId": 1984, - "icon": { - "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width": 471, - "height": 471, - "format": "svg" - }, - "explorers": [ - { - "name": "testnetexplorer", - "url": "https://testnetexplorer.eurus.network", - "icon": { - "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width": 471, - "height": 471, - "format": "svg" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "eurus-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/19845.ts b/packages/chains/chains/19845.ts deleted file mode 100644 index e89d40bcbea..00000000000 --- a/packages/chains/chains/19845.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BTCIX Network", - "chain": "BTCIX", - "rpc": [ - "https://btcix-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://seed.btcix.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTCIX Network", - "symbol": "BTCIX", - "decimals": 18 - }, - "infoURL": "https://bitcolojix.org", - "shortName": "btcix", - "chainId": 19845, - "networkId": 19845, - "explorers": [ - { - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "btcix-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1987.ts b/packages/chains/chains/1987.ts deleted file mode 100644 index 32604ba2980..00000000000 --- a/packages/chains/chains/1987.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EtherGem", - "chain": "EGEM", - "rpc": [ - "https://ethergem.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonrpc.egem.io/custom" - ], - "faucets": [], - "nativeCurrency": { - "name": "EtherGem Ether", - "symbol": "EGEM", - "decimals": 18 - }, - "infoURL": "https://egem.io", - "shortName": "egem", - "chainId": 1987, - "networkId": 1987, - "slip44": 1987, - "testnet": false, - "slug": "ethergem" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1994.ts b/packages/chains/chains/1994.ts deleted file mode 100644 index 9bb9559139b..00000000000 --- a/packages/chains/chains/1994.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ekta", - "chain": "EKTA", - "rpc": [ - "https://ekta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://main.ekta.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EKTA", - "symbol": "EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "ekta", - "chainId": 1994, - "networkId": 1994, - "icon": { - "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", - "width": 2100, - "height": 2100, - "format": "png" - }, - "explorers": [ - { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": { - "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", - "width": 2100, - "height": 2100, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ekta" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1995.ts b/packages/chains/chains/1995.ts deleted file mode 100644 index bbe831b83d3..00000000000 --- a/packages/chains/chains/1995.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "edeXa Testnet", - "chain": "edeXa TestNetwork", - "rpc": [ - "https://edexa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.edexa.com/rpc", - "https://io-dataseed1.testnet.edexa.io-market.com/rpc" - ], - "faucets": [ - "https://faucet.edexa.com/" - ], - "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 - }, - "infoURL": "https://edexa.com/", - "shortName": "edx", - "chainId": 1995, - "networkId": 1995, - "icon": { - "url": "ipfs://QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR", - "width": 1028, - "height": 1042, - "format": "png" - }, - "explorers": [ - { - "name": "edexa-testnet", - "url": "https://explorer.testnet.edexa.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "edexa-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2000.ts b/packages/chains/chains/2000.ts deleted file mode 100644 index 3db0524fb41..00000000000 --- a/packages/chains/chains/2000.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dogechain Mainnet", - "chain": "DC", - "icon": { - "url": "ipfs://QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs", - "width": 732, - "height": 732, - "format": "png" - }, - "rpc": [ - "https://dogechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.dogechain.dog", - "https://rpc01-sg.dogechain.dog", - "https://rpc.ankr.com/dogechain" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dc", - "chainId": 2000, - "networkId": 2000, - "explorers": [ - { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dogechain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20001.ts b/packages/chains/chains/20001.ts deleted file mode 100644 index e261b473de7..00000000000 --- a/packages/chains/chains/20001.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Camelark Mainnet", - "chainId": 20001, - "shortName": "Camelark", - "chain": "ETHW", - "icon": { - "url": "ipfs://QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ", - "width": 128, - "height": 128, - "format": "png" - }, - "networkId": 20001, - "nativeCurrency": { - "name": "EthereumPoW", - "symbol": "ETHW", - "decimals": 18 - }, - "rpc": [ - "https://camelark.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-http-rpc.camelark.com" - ], - "faucets": [], - "explorers": [ - { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.camelark.com", - "testnet": false, - "slug": "camelark" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2001.ts b/packages/chains/chains/2001.ts deleted file mode 100644 index a46c93e6f06..00000000000 --- a/packages/chains/chains/2001.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Milkomeda C1 Mainnet", - "chain": "milkAda", - "icon": { - "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", - "width": 367, - "height": 367, - "format": "svg" - }, - "rpc": [ - "https://milkomeda-c1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkAda", - "symbol": "mADA", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkAda", - "chainId": 2001, - "networkId": 2001, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "milkomeda-c1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200101.ts b/packages/chains/chains/200101.ts deleted file mode 100644 index 8e7423f40bf..00000000000 --- a/packages/chains/chains/200101.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Milkomeda C1 Testnet", - "chain": "milkTAda", - "icon": { - "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", - "width": 367, - "height": 367, - "format": "svg" - }, - "rpc": [ - "https://milkomeda-c1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-devnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAda", - "symbol": "mTAda", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAda", - "chainId": 200101, - "networkId": 200101, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "milkomeda-c1-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2002.ts b/packages/chains/chains/2002.ts deleted file mode 100644 index cb931a0e262..00000000000 --- a/packages/chains/chains/2002.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Milkomeda A1 Mainnet", - "chain": "milkALGO", - "icon": { - "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", - "width": 367, - "height": 367, - "format": "svg" - }, - "rpc": [ - "https://milkomeda-a1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", - "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkALGO", - "symbol": "mALGO", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkALGO", - "chainId": 2002, - "networkId": 2002, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "milkomeda-a1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200202.ts b/packages/chains/chains/200202.ts deleted file mode 100644 index 6b41dc3fb28..00000000000 --- a/packages/chains/chains/200202.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Milkomeda A1 Testnet", - "chain": "milkTAlgo", - "icon": { - "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", - "width": 367, - "height": 367, - "format": "svg" - }, - "rpc": [ - "https://milkomeda-a1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAlgo", - "symbol": "mTAlgo", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAlgo", - "chainId": 200202, - "networkId": 200202, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "milkomeda-a1-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200625.ts b/packages/chains/chains/200625.ts deleted file mode 100644 index a862e420e09..00000000000 --- a/packages/chains/chains/200625.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Akroma", - "chain": "AKA", - "rpc": [ - "https://akroma.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://remote.akroma.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Akroma Ether", - "symbol": "AKA", - "decimals": 18 - }, - "infoURL": "https://akroma.io", - "shortName": "aka", - "chainId": 200625, - "networkId": 200625, - "slip44": 200625, - "testnet": false, - "slug": "akroma" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2008.ts b/packages/chains/chains/2008.ts deleted file mode 100644 index a53d071d760..00000000000 --- a/packages/chains/chains/2008.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CloudWalk Testnet", - "chain": "CloudWalk Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_testnet", - "chainId": 2008, - "networkId": 2008, - "explorers": [ - { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "cloudwalk-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2009.ts b/packages/chains/chains/2009.ts deleted file mode 100644 index 801bb7f765d..00000000000 --- a/packages/chains/chains/2009.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CloudWalk Mainnet", - "chain": "CloudWalk Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_mainnet", - "chainId": 2009, - "networkId": 2009, - "explorers": [ - { - "name": "CloudWalk Mainnet Explorer", - "url": "https://explorer.mainnet.cloudwalk.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "cloudwalk" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201018.ts b/packages/chains/chains/201018.ts deleted file mode 100644 index f5f234de95f..00000000000 --- a/packages/chains/chains/201018.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Alaya Mainnet", - "chain": "Alaya", - "rpc": [ - "https://alaya.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://openapi.alaya.network/rpc", - "wss://openapi.alaya.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alaya", - "chainId": 201018, - "networkId": 1, - "icon": { - "url": "ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", - "width": 1140, - "height": 1140, - "format": "png" - }, - "explorers": [ - { - "name": "alaya explorer", - "url": "https://scan.alaya.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "alaya" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201030.ts b/packages/chains/chains/201030.ts deleted file mode 100644 index b456b2f5db1..00000000000 --- a/packages/chains/chains/201030.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Alaya Dev Testnet", - "chain": "Alaya", - "rpc": [ - "https://alaya-dev-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnetopenapi.alaya.network/rpc", - "wss://devnetopenapi.alaya.network/ws" - ], - "faucets": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" - ], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alayadev", - "chainId": 201030, - "networkId": 1, - "icon": { - "url": "ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", - "width": 1140, - "height": 1140, - "format": "png" - }, - "explorers": [ - { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" - } - ], - "testnet": true, - "slug": "alaya-dev-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2016.ts b/packages/chains/chains/2016.ts deleted file mode 100644 index 26d93e49dd6..00000000000 --- a/packages/chains/chains/2016.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MainnetZ Mainnet", - "chain": "NetZ", - "icon": { - "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://z-mainnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://mainnetz.io", - "shortName": "NetZm", - "chainId": 2016, - "networkId": 2016, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "z-mainnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2018.ts b/packages/chains/chains/2018.ts deleted file mode 100644 index 2df1fc55923..00000000000 --- a/packages/chains/chains/2018.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PublicMint Devnet", - "title": "Public Mint Devnet", - "chain": "PublicMint", - "rpc": [ - "https://publicmint-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.dev.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_dev", - "chainId": 2018, - "networkId": 2018, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "publicmint-devnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201804.ts b/packages/chains/chains/201804.ts deleted file mode 100644 index a9f55c81a91..00000000000 --- a/packages/chains/chains/201804.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mythical Chain", - "chain": "MYTH", - "rpc": [ - "https://mythical-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://chain-rpc.mythicalgames.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Mythos", - "symbol": "MYTH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://mythicalgames.com/", - "shortName": "myth", - "chainId": 201804, - "networkId": 201804, - "icon": { - "url": "ipfs://bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4", - "width": 350, - "height": 350, - "format": "png" - }, - "explorers": [ - { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": { - "url": "ipfs://bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4", - "width": 350, - "height": 350, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "mythical-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20180430.ts b/packages/chains/chains/20180430.ts deleted file mode 100644 index ac9c55b5873..00000000000 --- a/packages/chains/chains/20180430.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SmartMesh Mainnet", - "chain": "Spectrum", - "rpc": [ - "https://smartmesh.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonapi1.smartmesh.cn" - ], - "faucets": [], - "nativeCurrency": { - "name": "SmartMesh Native Token", - "symbol": "SMT", - "decimals": 18 - }, - "infoURL": "https://smartmesh.io", - "shortName": "spectrum", - "chainId": 20180430, - "networkId": 1, - "explorers": [ - { - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - } - ], - "testnet": false, - "slug": "smartmesh" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20181205.ts b/packages/chains/chains/20181205.ts deleted file mode 100644 index 5e5e296b11a..00000000000 --- a/packages/chains/chains/20181205.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "quarkblockchain", - "chain": "QKI", - "rpc": [ - "https://quarkblockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://hz.rpc.qkiscan.cn", - "https://jp.rpc.qkiscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 - }, - "infoURL": "https://quarkblockchain.org/", - "shortName": "qki", - "chainId": 20181205, - "networkId": 20181205, - "testnet": false, - "slug": "quarkblockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2019.ts b/packages/chains/chains/2019.ts deleted file mode 100644 index d23bbe119b1..00000000000 --- a/packages/chains/chains/2019.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PublicMint Testnet", - "title": "Public Mint Testnet", - "chain": "PublicMint", - "rpc": [ - "https://publicmint-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tst.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_test", - "chainId": 2019, - "networkId": 2019, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "publicmint-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2020.ts b/packages/chains/chains/2020.ts deleted file mode 100644 index 8381d26f327..00000000000 --- a/packages/chains/chains/2020.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PublicMint Mainnet", - "title": "Public Mint Mainnet", - "chain": "PublicMint", - "rpc": [ - "https://publicmint.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint", - "chainId": 2020, - "networkId": 2020, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.publicmint.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "publicmint" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20201022.ts b/packages/chains/chains/20201022.ts deleted file mode 100644 index 01832c9e838..00000000000 --- a/packages/chains/chains/20201022.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Pego Network", - "chain": "PEGO", - "rpc": [ - "https://pego-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://pegorpc.com", - "https://node1.pegorpc.com", - "https://node2.pegorpc.com", - "https://node3.pegorpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pego Native Token", - "symbol": "PG", - "decimals": 18 - }, - "infoURL": "https://pego.network", - "shortName": "pg", - "chainId": 20201022, - "networkId": 20201022, - "icon": { - "url": "ipfs://QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx", - "width": 246, - "height": 247, - "format": "png" - }, - "explorers": [ - { - "name": "Pego Network Explorer", - "url": "https://scan.pego.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "pego-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/202020.ts b/packages/chains/chains/202020.ts deleted file mode 100644 index 390c375a8b9..00000000000 --- a/packages/chains/chains/202020.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Decimal Smart Chain Testnet", - "chain": "tDSC", - "rpc": [ - "https://decimal-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-val.decimalchain.com/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decimal", - "symbol": "tDEL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://decimalchain.com", - "shortName": "tDSC", - "chainId": 202020, - "networkId": 202020, - "icon": { - "url": "ipfs://QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "DSC Explorer Testnet", - "url": "https://testnet.explorer.decimalchain.com", - "icon": { - "url": "ipfs://QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc", - "width": 256, - "height": 256, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "decimal-smart-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2021.ts b/packages/chains/chains/2021.ts deleted file mode 100644 index 3d93bd4c3a8..00000000000 --- a/packages/chains/chains/2021.ts +++ /dev/null @@ -1,63 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Edgeware EdgeEVM Mainnet", - "chain": "EDG", - "icon": { - "url": "ipfs://QmS3ERgAKYTmV7bSWcUPSvrrCC9wHQYxtZqEQYx9Rw4RGA", - "width": 352, - "height": 304, - "format": "png" - }, - "rpc": [ - "https://edgeware-edgeevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://edgeware-evm.jelliedowl.net", - "https://mainnet2.edgewa.re/evm", - "https://mainnet3.edgewa.re/evm", - "https://mainnet4.edgewa.re/evm", - "https://mainnet5.edgewa.re/evm", - "wss://edgeware.jelliedowl.net", - "wss://mainnet2.edgewa.re", - "wss://mainnet3.edgewa.re", - "wss://mainnet4.edgewa.re", - "wss://mainnet5.edgewa.re" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Edgeware", - "symbol": "EDG", - "decimals": 18 - }, - "infoURL": "https://edgeware.io", - "shortName": "edg", - "chainId": 2021, - "networkId": 2021, - "slip44": 523, - "explorers": [ - { - "name": "Edgscan by Bharathcoorg", - "url": "https://edgscan.live", - "standard": "EIP3091" - }, - { - "name": "Subscan", - "url": "https://edgeware.subscan.io", - "standard": "none", - "icon": { - "url": "ipfs://Qma2GfW5nQHuA7nGqdEfwaXPL63G9oTwRTQKaGTfjNtM2W", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": false, - "slug": "edgeware-edgeevm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2021121117.ts b/packages/chains/chains/2021121117.ts deleted file mode 100644 index 8e3b33884b8..00000000000 --- a/packages/chains/chains/2021121117.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DataHopper", - "chain": "HOP", - "rpc": [ - "https://datahopper.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://23.92.21.121:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "DataHoppers", - "symbol": "HOP", - "decimals": 18 - }, - "infoURL": "https://www.DataHopper.com", - "shortName": "hop", - "chainId": 2021121117, - "networkId": 2021121117, - "testnet": false, - "slug": "datahopper" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2022.ts b/packages/chains/chains/2022.ts deleted file mode 100644 index 72f62c64fc1..00000000000 --- a/packages/chains/chains/2022.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Beresheet BereEVM Testnet", - "chain": "EDG", - "rpc": [ - "https://beresheet-bereevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://beresheet-evm.jelliedowl.net", - "wss://beresheet.jelliedowl.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet EDG", - "symbol": "tEDG", - "decimals": 18 - }, - "infoURL": "https://edgeware.io/build", - "shortName": "edgt", - "chainId": 2022, - "networkId": 2022, - "explorers": [ - { - "name": "Edgscan by Bharathcoorg", - "url": "https://testnet.edgscan.live", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "beresheet-bereevm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2023.ts b/packages/chains/chains/2023.ts deleted file mode 100644 index ea1fdeceead..00000000000 --- a/packages/chains/chains/2023.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taycan Testnet", - "chain": "Taycan", - "rpc": [ - "https://taycan-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test-taycan.hupayx.io" - ], - "faucets": [ - "https://ttaycan-faucet.hupayx.io/" - ], - "nativeCurrency": { - "name": "test-Shuffle", - "symbol": "tSFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "taycan-testnet", - "chainId": 2023, - "networkId": 2023, - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - }, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://evmscan-test.hupayx.io", - "standard": "none", - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - } - }, - { - "name": "Taycan Cosmos Explorer", - "url": "https://cosmoscan-test.hupayx.io", - "standard": "none", - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - } - } - ], - "testnet": true, - "slug": "taycan-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2025.ts b/packages/chains/chains/2025.ts deleted file mode 100644 index 303630cbe02..00000000000 --- a/packages/chains/chains/2025.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rangers Protocol Mainnet", - "chain": "Rangers", - "icon": { - "url": "ipfs://QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://rangers-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "RPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "rpg", - "chainId": 2025, - "networkId": 2025, - "slip44": 1008, - "explorers": [ - { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "rangers-protocol" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/202624.ts b/packages/chains/chains/202624.ts deleted file mode 100644 index edf7c90c40c..00000000000 --- a/packages/chains/chains/202624.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Jellie", - "title": "Twala Testnet Jellie", - "shortName": "twl-jellie", - "chain": "ETH", - "chainId": 202624, - "networkId": 202624, - "icon": { - "url": "ipfs://QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK", - "width": 1326, - "height": 1265, - "format": "png" - }, - "nativeCurrency": { - "name": "Twala Coin", - "symbol": "TWL", - "decimals": 18 - }, - "rpc": [ - "https://jellie.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jellie-rpc.twala.io/", - "wss://jellie-rpc-wss.twala.io/" - ], - "faucets": [], - "infoURL": "https://twala.io/", - "explorers": [ - { - "name": "Jellie Blockchain Explorer", - "url": "https://jellie.twala.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK", - "width": 1326, - "height": 1265, - "format": "png" - } - } - ], - "testnet": true, - "slug": "jellie" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2043.ts b/packages/chains/chains/2043.ts deleted file mode 100644 index 4200ade508f..00000000000 --- a/packages/chains/chains/2043.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OriginTrail Parachain", - "chain": "OTP", - "rpc": [ - "https://origintrail-parachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://astrosat.origintrail.network", - "wss://parachain-rpc.origin-trail.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OriginTrail Parachain Token", - "symbol": "OTP", - "decimals": 12 - }, - "infoURL": "https://parachain.origintrail.io", - "shortName": "otp", - "chainId": 2043, - "networkId": 2043, - "testnet": false, - "slug": "origintrail-parachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2044.ts b/packages/chains/chains/2044.ts deleted file mode 100644 index f2070f3718c..00000000000 --- a/packages/chains/chains/2044.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shrapnel Subnet", - "chain": "shrapnel", - "rpc": [ - "https://shrapnel-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/shrapnel/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shrapnel Gas Token", - "symbol": "SHRAPG", - "decimals": 18 - }, - "infoURL": "https://www.shrapnel.com/", - "shortName": "Shrapnel", - "chainId": 2044, - "networkId": 2044, - "testnet": false, - "slug": "shrapnel-subnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2046399126.ts b/packages/chains/chains/2046399126.ts deleted file mode 100644 index d738412bd92..00000000000 --- a/packages/chains/chains/2046399126.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Europa SKALE Chain", - "chain": "europa", - "icon": { - "url": "ipfs://bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre", - "width": 600, - "height": 600, - "format": "png" - }, - "rpc": [ - "https://europa-skale-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.skalenodes.com/v1/elated-tan-skat", - "wss://mainnet.skalenodes.com/v1/elated-tan-skat" - ], - "faucets": [ - "https://ruby.exchange/faucet.html", - "https://sfuel.mylilius.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa", - "chainId": 2046399126, - "networkId": 2046399126, - "explorers": [ - { - "name": "Blockscout", - "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://ruby.exchange/bridge.html" - } - ] - }, - "testnet": false, - "slug": "europa-skale-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2047.ts b/packages/chains/chains/2047.ts deleted file mode 100644 index 17339d17857..00000000000 --- a/packages/chains/chains/2047.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Stratos Testnet", - "chain": "STOS", - "rpc": [ - "https://stratos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://web3-rpc-mesos.thestratos.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-testnet", - "chainId": 2047, - "networkId": 2047, - "explorers": [ - { - "name": "Stratos EVM Explorer (Blockscout)", - "url": "https://web3-explorer-mesos.thestratos.org", - "standard": "none" - }, - { - "name": "Stratos Cosmos Explorer (BigDipper)", - "url": "https://big-dipper-mesos.thestratos.org", - "standard": "none" - } - ], - "testnet": true, - "slug": "stratos-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2048.ts b/packages/chains/chains/2048.ts deleted file mode 100644 index 262d92c9090..00000000000 --- a/packages/chains/chains/2048.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Stratos Mainnet", - "chain": "STOS", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-mainnet", - "chainId": 2048, - "networkId": 2048, - "status": "incubating", - "testnet": false, - "slug": "stratos" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20729.ts b/packages/chains/chains/20729.ts deleted file mode 100644 index a4368621742..00000000000 --- a/packages/chains/chains/20729.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Callisto Testnet", - "chain": "CLO", - "rpc": [ - "https://callisto-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.callisto.network/" - ], - "faucets": [ - "https://faucet.callisto.network/" - ], - "nativeCurrency": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 - }, - "infoURL": "https://callisto.network", - "shortName": "CLOTestnet", - "chainId": 20729, - "networkId": 79, - "testnet": true, - "slug": "callisto-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20736.ts b/packages/chains/chains/20736.ts deleted file mode 100644 index 76acc783086..00000000000 --- a/packages/chains/chains/20736.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "P12 Chain", - "chain": "P12", - "icon": { - "url": "ipfs://bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://p12-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-chain.p12.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hooked P2", - "symbol": "hP2", - "decimals": 18 - }, - "infoURL": "https://p12.network", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "shortName": "p12", - "chainId": 20736, - "networkId": 20736, - "explorers": [ - { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "p12-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2077.ts b/packages/chains/chains/2077.ts deleted file mode 100644 index eb9b2ffcbb2..00000000000 --- a/packages/chains/chains/2077.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quokkacoin Mainnet", - "chain": "Qkacoin", - "rpc": [ - "https://quokkacoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.qkacoin.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qkacoin", - "symbol": "QKA", - "decimals": 18 - }, - "infoURL": "https://qkacoin.org", - "shortName": "QKA", - "chainId": 2077, - "networkId": 2077, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "quokkacoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2099156.ts b/packages/chains/chains/2099156.ts deleted file mode 100644 index 72e93fbc6ee..00000000000 --- a/packages/chains/chains/2099156.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Plian Mainnet Main", - "chain": "Plian", - "rpc": [ - "https://plian-main.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.plian.io/pchain" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-mainnet", - "chainId": 2099156, - "networkId": 2099156, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "plian-main" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2100.ts b/packages/chains/chains/2100.ts deleted file mode 100644 index ee6691f4554..00000000000 --- a/packages/chains/chains/2100.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ecoball Mainnet", - "chain": "ECO", - "rpc": [ - "https://ecoball.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.ecoball.org/ecoball/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ecoball Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "eco", - "chainId": 2100, - "networkId": 2100, - "explorers": [ - { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ecoball" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2101.ts b/packages/chains/chains/2101.ts deleted file mode 100644 index a1434051297..00000000000 --- a/packages/chains/chains/2101.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ecoball Testnet Espuma", - "chain": "ECO", - "rpc": [ - "https://ecoball-testnet-espuma.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.ecoball.org/espuma/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Espuma Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "esp", - "chainId": 2101, - "networkId": 2101, - "explorers": [ - { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ecoball-testnet-espuma" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/210425.ts b/packages/chains/chains/210425.ts deleted file mode 100644 index 67ecefcd029..00000000000 --- a/packages/chains/chains/210425.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PlatON Mainnet", - "chain": "PlatON", - "rpc": [ - "https://platon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://openapi2.platon.network/rpc", - "wss://openapi2.platon.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platon", - "chainId": 210425, - "networkId": 1, - "icon": { - "url": "ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", - "width": 180, - "height": 180, - "format": "png" - }, - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "platon" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2109.ts b/packages/chains/chains/2109.ts deleted file mode 100644 index 1d5d66def9a..00000000000 --- a/packages/chains/chains/2109.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Exosama Network", - "chain": "EXN", - "rpc": [ - "https://exosama-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.exosama.com", - "wss://rpc.exosama.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "exn", - "chainId": 2109, - "networkId": 2109, - "slip44": 2109, - "icon": { - "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", - "width": 468, - "height": 468, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "exosama-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2122.ts b/packages/chains/chains/2122.ts deleted file mode 100644 index 520bf704349..00000000000 --- a/packages/chains/chains/2122.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metaplayerone Mainnet", - "chain": "METAD", - "icon": { - "url": "ipfs://QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf", - "width": 1280, - "height": 1280, - "format": "png" - }, - "rpc": [ - "https://metaplayerone.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.metaplayer.one/" - ], - "faucets": [], - "nativeCurrency": { - "name": "METAD", - "symbol": "METAD", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "Metad", - "chainId": 2122, - "networkId": 2122, - "explorers": [ - { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": { - "url": "ipfs://QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf", - "width": 1280, - "height": 1280, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "metaplayerone" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2124.ts b/packages/chains/chains/2124.ts deleted file mode 100644 index 7048dcce84e..00000000000 --- a/packages/chains/chains/2124.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metaplayerone Dubai Testnet", - "chain": "MP1 Dubai-Testnet", - "rpc": [ - "https://metaplayerone-dubai-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-dubai.mp1network.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metaunit", - "symbol": "MEU", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "MEU", - "chainId": 2124, - "networkId": 2124, - "explorers": [ - { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "metaplayerone-dubai-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/21337.ts b/packages/chains/chains/21337.ts deleted file mode 100644 index df5c129c53a..00000000000 --- a/packages/chains/chains/21337.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CENNZnet Azalea", - "chain": "CENNZnet", - "rpc": [ - "https://cennznet-azalea.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://cennznet.unfrastructure.io/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-a", - "chainId": 21337, - "networkId": 21337, - "icon": { - "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", - "width": 112, - "height": 112, - "format": "svg" - }, - "explorers": [ - { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "cennznet-azalea" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2138.ts b/packages/chains/chains/2138.ts deleted file mode 100644 index a723dd400c4..00000000000 --- a/packages/chains/chains/2138.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Defi Oracle Meta Testnet", - "chain": "dfiometatest", - "icon": { - "url": "ipfs://QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE", - "width": 1000, - "height": 1043, - "format": "png" - }, - "rpc": [ - "https://defi-oracle-meta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.public-2138.defi-oracle.io", - "wss://rpc.public-2138.defi-oracle.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "testEther", - "symbol": "tETH", - "decimals": 18 - }, - "infoURL": "https://defi-oracle.io/", - "shortName": "dfio-meta-test", - "chainId": 2138, - "networkId": 21, - "slip44": 60, - "ens": { - "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" - }, - "explorers": [ - { - "name": "Quorum Explorer", - "url": "https://public-2138.defi-oracle.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "defi-oracle-meta-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2151.ts b/packages/chains/chains/2151.ts deleted file mode 100644 index d383da22fcc..00000000000 --- a/packages/chains/chains/2151.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BOSagora Mainnet", - "chain": "ETH", - "rpc": [ - "https://bosagora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.bosagora.org", - "https://rpc.bosagora.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOSAGORA", - "symbol": "BOA", - "decimals": 18 - }, - "infoURL": "https://docs.bosagora.org", - "shortName": "boa", - "chainId": 2151, - "networkId": 2151, - "icon": { - "url": "ipfs://QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh", - "width": 256, - "height": 257, - "format": "png" - }, - "explorers": [ - { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": { - "url": "ipfs://QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh", - "width": 256, - "height": 257, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bosagora" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2152.ts b/packages/chains/chains/2152.ts deleted file mode 100644 index 24b22196939..00000000000 --- a/packages/chains/chains/2152.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Findora Mainnet", - "chain": "Findora", - "rpc": [ - "https://findora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.findora.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "fra", - "chainId": 2152, - "networkId": 2152, - "explorers": [ - { - "name": "findorascan", - "url": "https://evm.findorascan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "findora" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2153.ts b/packages/chains/chains/2153.ts deleted file mode 100644 index 5433c0edb53..00000000000 --- a/packages/chains/chains/2153.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Findora Testnet", - "chain": "Testnet-anvil", - "rpc": [ - "https://findora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://prod-testnet.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-testnet", - "chainId": 2153, - "networkId": 2153, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "findora-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2154.ts b/packages/chains/chains/2154.ts deleted file mode 100644 index a90707e6ab0..00000000000 --- a/packages/chains/chains/2154.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Findora Forge", - "chain": "Testnet-forge", - "rpc": [ - "https://findora-forge.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://prod-forge.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-forge", - "chainId": 2154, - "networkId": 2154, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "findora-forge" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/21816.ts b/packages/chains/chains/21816.ts deleted file mode 100644 index bbadacffcf9..00000000000 --- a/packages/chains/chains/21816.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "omChain Mainnet", - "chain": "OML", - "icon": { - "url": "ipfs://QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://omchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://seed.omchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "omChain", - "symbol": "OMC", - "decimals": 18 - }, - "infoURL": "https://omchain.io", - "shortName": "omc", - "chainId": 21816, - "networkId": 21816, - "explorers": [ - { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "omchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2199.ts b/packages/chains/chains/2199.ts deleted file mode 100644 index 7647aa3a25b..00000000000 --- a/packages/chains/chains/2199.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Moonsama Network", - "chain": "MSN", - "rpc": [ - "https://moonsama-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.moonsama.com", - "wss://rpc.moonsama.com/ws" - ], - "faucets": [ - "https://multiverse.moonsama.com/faucet" - ], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "msn", - "chainId": 2199, - "networkId": 2199, - "slip44": 2199, - "icon": { - "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", - "width": 468, - "height": 468, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "moonsama-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2202.ts b/packages/chains/chains/2202.ts deleted file mode 100644 index 8f9e8c07673..00000000000 --- a/packages/chains/chains/2202.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Antofy Mainnet", - "chain": "ABN", - "icon": { - "url": "ipfs://QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://antofy.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNm", - "chainId": 2202, - "networkId": 2202, - "explorers": [ - { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "antofy" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22023.ts b/packages/chains/chains/22023.ts deleted file mode 100644 index 0c3bf1913c5..00000000000 --- a/packages/chains/chains/22023.ts +++ /dev/null @@ -1,51 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taycan", - "chain": "Taycan", - "rpc": [ - "https://taycan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://taycan-rpc.hupayx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "shuffle", - "symbol": "SFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "SFL", - "chainId": 22023, - "networkId": 22023, - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - }, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://taycan-evmscan.hupayx.io", - "standard": "none", - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - } - }, - { - "name": "Taycan Cosmos Explorer(BigDipper)", - "url": "https://taycan-cosmoscan.hupayx.io", - "standard": "none", - "icon": { - "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", - "width": 1000, - "height": 1206, - "format": "png" - } - } - ], - "testnet": false, - "slug": "taycan" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2203.ts b/packages/chains/chains/2203.ts deleted file mode 100644 index 57f108d605c..00000000000 --- a/packages/chains/chains/2203.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitcoin EVM", - "chain": "Bitcoin EVM", - "rpc": [ - "https://bitcoin-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://connect.bitcoinevm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://bitcoinevm.com", - "shortName": "BTC", - "chainId": 2203, - "networkId": 2203, - "icon": { - "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", - "width": 200, - "height": 200, - "format": "png" - }, - "explorers": [ - { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": { - "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", - "width": 200, - "height": 200, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "bitcoin-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/220315.ts b/packages/chains/chains/220315.ts deleted file mode 100644 index e77ab60a9c4..00000000000 --- a/packages/chains/chains/220315.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mas Mainnet", - "chain": "MAS", - "rpc": [ - "https://mas.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://node.masnet.ai:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Master Bank", - "symbol": "MAS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://masterbank.org", - "shortName": "mas", - "chainId": 220315, - "networkId": 220315, - "icon": { - "url": "ipfs://QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [ - { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "mas" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22040.ts b/packages/chains/chains/22040.ts deleted file mode 100644 index 04f2669803f..00000000000 --- a/packages/chains/chains/22040.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AirDAO Testnet", - "chain": "ambnet-test", - "icon": { - "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://airdao-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://network.ambrosus-test.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://testnet.airdao.io", - "shortName": "airdao-test", - "chainId": 22040, - "networkId": 22040, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://testnet.airdao.io/explorer", - "standard": "none" - } - ], - "testnet": true, - "slug": "airdao-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22052002.ts b/packages/chains/chains/22052002.ts deleted file mode 100644 index 581738bff09..00000000000 --- a/packages/chains/chains/22052002.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Excelon Mainnet", - "chain": "XLON", - "icon": { - "url": "ipfs://QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP", - "width": 300, - "height": 300, - "format": "png" - }, - "rpc": [ - "https://excelon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://edgewallet1.xlon.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Excelon", - "symbol": "xlon", - "decimals": 18 - }, - "infoURL": "https://xlon.org", - "shortName": "xlon", - "chainId": 22052002, - "networkId": 22052002, - "explorers": [ - { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "excelon" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2206132.ts b/packages/chains/chains/2206132.ts deleted file mode 100644 index a25fb3d5bce..00000000000 --- a/packages/chains/chains/2206132.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PlatON Dev Testnet2", - "chain": "PlatON", - "rpc": [ - "https://platon-dev-testnet2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet2openapi.platon.network/rpc", - "wss://devnet2openapi.platon.network/ws" - ], - "faucets": [ - "https://devnet2faucet.platon.network/faucet" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev2", - "chainId": 2206132, - "networkId": 1, - "icon": { - "url": "ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", - "width": 180, - "height": 180, - "format": "png" - }, - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" - } - ], - "testnet": true, - "slug": "platon-dev-testnet2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2213.ts b/packages/chains/chains/2213.ts deleted file mode 100644 index f21899185ee..00000000000 --- a/packages/chains/chains/2213.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Evanesco Mainnet", - "chain": "EVA", - "rpc": [ - "https://evanesco.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://seed4.evanesco.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "EVA", - "symbol": "EVA", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "evanesco", - "chainId": 2213, - "networkId": 2213, - "icon": { - "url": "ipfs://QmZbmGYdfbMRrWJore3c7hyD6q7B5pXHJqTSNjbZZUK6V8", - "width": 200, - "height": 200, - "format": "png" - }, - "explorers": [ - { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "evanesco" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/222000222.ts b/packages/chains/chains/222000222.ts deleted file mode 100644 index 6138a91e200..00000000000 --- a/packages/chains/chains/222000222.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kanazawa", - "title": "Meld Testnet Kanazawa", - "chain": "Kanazawa", - "rpc": [ - "https://kanazawa.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/meld/testnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", - "width": 4000, - "height": 4000, - "format": "png" - }, - "infoURL": "https://meld.com", - "shortName": "kanazawa", - "chainId": 222000222, - "networkId": 222000222, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/meld", - "icon": { - "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", - "width": 4000, - "height": 4000, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "kanazawa" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2221.ts b/packages/chains/chains/2221.ts deleted file mode 100644 index 2c715958149..00000000000 --- a/packages/chains/chains/2221.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kava EVM Testnet", - "chain": "KAVA", - "rpc": [ - "https://kava-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.testnet.kava.io", - "wss://wevm.testnet.kava.io" - ], - "faucets": [ - "https://faucet.kava.io" - ], - "nativeCurrency": { - "name": "TKava", - "symbol": "TKAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "tkava", - "chainId": 2221, - "networkId": 2221, - "icon": { - "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", - "width": 1186, - "height": 360, - "format": "svg" - }, - "explorers": [ - { - "name": "Kava Testnet Explorer", - "url": "https://explorer.testnet.kava.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", - "width": 1186, - "height": 360, - "format": "svg" - } - } - ], - "testnet": true, - "slug": "kava-evm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2222.ts b/packages/chains/chains/2222.ts deleted file mode 100644 index 8e9f1cb87f2..00000000000 --- a/packages/chains/chains/2222.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kava EVM", - "chain": "KAVA", - "rpc": [ - "https://kava-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.kava.io", - "https://evm2.kava.io", - "wss://wevm.kava.io", - "wss://wevm2.kava.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "kava", - "chainId": 2222, - "networkId": 2222, - "icon": { - "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", - "width": 1186, - "height": 360, - "format": "svg" - }, - "explorers": [ - { - "name": "Kava EVM Explorer", - "url": "https://explorer.kava.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", - "width": 1186, - "height": 360, - "format": "svg" - } - } - ], - "testnet": false, - "slug": "kava-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2223.ts b/packages/chains/chains/2223.ts deleted file mode 100644 index 97d19c9bfd6..00000000000 --- a/packages/chains/chains/2223.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "VChain Mainnet", - "chain": "VChain", - "rpc": [ - "https://vchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bc.vcex.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "VNDT", - "symbol": "VNDT", - "decimals": 18 - }, - "infoURL": "https://bo.vcex.xyz/", - "shortName": "VChain", - "chainId": 2223, - "networkId": 2223, - "explorers": [ - { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "vchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/224168.ts b/packages/chains/chains/224168.ts deleted file mode 100644 index efedd27355d..00000000000 --- a/packages/chains/chains/224168.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taf ECO Chain Mainnet", - "chain": "Taf ECO Chain", - "icon": { - "url": "ipfs://bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://taf-eco-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.tafchain.com/v1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Taf ECO Chain Mainnet", - "symbol": "TAFECO", - "decimals": 18 - }, - "infoURL": "https://www.tafchain.com", - "shortName": "TAFECO", - "chainId": 224168, - "networkId": 224168, - "explorers": [ - { - "name": "Taf ECO Chain Mainnet", - "url": "https://ecoscan.tafchain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "taf-eco-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22776.ts b/packages/chains/chains/22776.ts deleted file mode 100644 index 13ac47f9625..00000000000 --- a/packages/chains/chains/22776.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MAP Mainnet", - "chain": "MAP", - "icon": { - "url": "ipfs://QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://map.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.maplabs.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAP", - "symbol": "MAP", - "decimals": 18 - }, - "infoURL": "https://maplabs.io", - "shortName": "map", - "chainId": 22776, - "networkId": 22776, - "slip44": 60, - "explorers": [ - { - "name": "mapscan", - "url": "https://mapscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "map" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2300.ts b/packages/chains/chains/2300.ts deleted file mode 100644 index df1c9302f32..00000000000 --- a/packages/chains/chains/2300.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BOMB Chain", - "chain": "BOMB", - "rpc": [ - "https://bomb-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.bombchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "BOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombchain.com", - "shortName": "bomb", - "chainId": 2300, - "networkId": 2300, - "icon": { - "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [ - { - "name": "bombscan", - "icon": { - "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", - "width": 1024, - "height": 1024, - "format": "png" - }, - "url": "https://bombscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bomb-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23006.ts b/packages/chains/chains/23006.ts deleted file mode 100644 index 24890d3669e..00000000000 --- a/packages/chains/chains/23006.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Antofy Testnet", - "chain": "ABN", - "icon": { - "url": "ipfs://QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://antofy-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNt", - "chainId": 23006, - "networkId": 23006, - "explorers": [ - { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "antofy-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/230315.ts b/packages/chains/chains/230315.ts deleted file mode 100644 index 98f7e3e3e20..00000000000 --- a/packages/chains/chains/230315.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HashKey Chain Testnet", - "chain": "HashKey", - "rpc": [ - "https://hashkey-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.hashkeychain/rpc" - ], - "faucets": [ - "https://testnet.hashkeychain/faucet" - ], - "nativeCurrency": { - "name": "HashKey Token", - "symbol": "tHSK", - "decimals": 18 - }, - "infoURL": "https://www.hashkey.com", - "shortName": "hsktest", - "chainId": 230315, - "networkId": 230315, - "icon": { - "url": "ipfs://QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE", - "width": 1440, - "height": 448, - "format": "png" - }, - "explorers": [ - { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "hashkey-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2309.ts b/packages/chains/chains/2309.ts deleted file mode 100644 index 1ac0698e94d..00000000000 --- a/packages/chains/chains/2309.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Arevia", - "chain": "Arevia", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Arev", - "symbol": "ARÉV", - "decimals": 18 - }, - "infoURL": "", - "shortName": "arevia", - "chainId": 2309, - "networkId": 2309, - "explorers": [], - "status": "incubating", - "testnet": false, - "slug": "arevia" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23118.ts b/packages/chains/chains/23118.ts deleted file mode 100644 index 446d08a8358..00000000000 --- a/packages/chains/chains/23118.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Opside Testnet", - "chain": "Opside", - "rpc": [ - "https://opside-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testrpc.opside.network" - ], - "faucets": [ - "https://faucet.opside.network" - ], - "nativeCurrency": { - "name": "IDE", - "symbol": "IDE", - "decimals": 18 - }, - "infoURL": "https://opside.network", - "shortName": "opside", - "chainId": 23118, - "networkId": 23118, - "icon": { - "url": "ipfs://QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo", - "width": 591, - "height": 591, - "format": "png" - }, - "explorers": [ - { - "name": "opsideInfo", - "url": "https://opside.info", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "opside-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2323.ts b/packages/chains/chains/2323.ts deleted file mode 100644 index 059b5d98d0f..00000000000 --- a/packages/chains/chains/2323.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SOMA Network Testnet", - "chain": "SOMA", - "rpc": [ - "https://soma-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://data-testnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://faucet.somanetwork.io" - ], - "nativeCurrency": { - "name": "SMA", - "symbol": "tSMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "sma", - "chainId": 2323, - "networkId": 2323, - "icon": { - "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "SOMA Testnet Explorer", - "icon": { - "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", - "width": 500, - "height": 500, - "format": "png" - }, - "url": "https://testnet.somascan.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "soma-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23294.ts b/packages/chains/chains/23294.ts deleted file mode 100644 index 1ec57f92437..00000000000 --- a/packages/chains/chains/23294.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oasis Sapphire", - "chain": "Sapphire", - "icon": { - "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://oasis-sapphire.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sapphire.oasis.io", - "wss://sapphire.oasis.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire", - "chainId": 23294, - "networkId": 23294, - "explorers": [ - { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.sapphire.oasis.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "oasis-sapphire" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23295.ts b/packages/chains/chains/23295.ts deleted file mode 100644 index f40c468feef..00000000000 --- a/packages/chains/chains/23295.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oasis Sapphire Testnet", - "chain": "Sapphire", - "icon": { - "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://oasis-sapphire-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.sapphire.oasis.dev", - "wss://testnet.sapphire.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Test Rose", - "symbol": "TEST", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire-testnet", - "chainId": 23295, - "networkId": 23295, - "explorers": [ - { - "name": "Oasis Sapphire Testnet Explorer", - "url": "https://testnet.explorer.sapphire.oasis.dev", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "oasis-sapphire-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2330.ts b/packages/chains/chains/2330.ts deleted file mode 100644 index b7a9e273152..00000000000 --- a/packages/chains/chains/2330.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Altcoinchain", - "chain": "mainnet", - "rpc": [ - "https://altcoinchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc0.altcoinchain.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Altcoin", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://altcoinchain.org", - "shortName": "alt", - "chainId": 2330, - "networkId": 2330, - "icon": { - "url": "ipfs://QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4", - "width": 720, - "height": 720, - "format": "png" - }, - "status": "active", - "explorers": [ - { - "name": "expedition", - "url": "http://expedition.altcoinchain.org", - "icon": { - "url": "ipfs://QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4", - "width": 720, - "height": 720, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "altcoinchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2332.ts b/packages/chains/chains/2332.ts deleted file mode 100644 index f57718b704a..00000000000 --- a/packages/chains/chains/2332.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SOMA Network Mainnet", - "chain": "SOMA", - "rpc": [ - "https://soma-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://data-mainnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://airdrop.somanetwork.io" - ], - "nativeCurrency": { - "name": "Soma Native Token", - "symbol": "SMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "smam", - "chainId": 2332, - "networkId": 2332, - "icon": { - "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", - "width": 500, - "height": 500, - "format": "png" - }, - "status": "incubating", - "explorers": [ - { - "name": "SOMA Explorer Mainnet", - "icon": { - "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", - "width": 500, - "height": 500, - "format": "png" - }, - "url": "https://somascan.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "soma-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/234666.ts b/packages/chains/chains/234666.ts deleted file mode 100644 index 57d18bd6014..00000000000 --- a/packages/chains/chains/234666.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Haymo Testnet", - "chain": "tHYM", - "rpc": [ - "https://haymo-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet1.haymo.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAYMO", - "symbol": "HYM", - "decimals": 18 - }, - "infoURL": "https://haymoswap.web.app/", - "shortName": "hym", - "chainId": 234666, - "networkId": 234666, - "testnet": true, - "slug": "haymo-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2358.ts b/packages/chains/chains/2358.ts deleted file mode 100644 index 20728d65b36..00000000000 --- a/packages/chains/chains/2358.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kroma Sepolia", - "title": "Kroma Testnet Sepolia", - "chainId": 2358, - "shortName": "kroma-sepolia", - "chain": "ETH", - "networkId": 2358, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://kroma-sepolia.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.sepolia.kroma.network" - ], - "faucets": [], - "infoURL": "https://kroma.network", - "icon": { - "url": "ipfs://QmcYafk2je5rMqgnFPDZJTaLi6dgFgq96vmX2Li6DX441B", - "width": 320, - "height": 320, - "format": "svg" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": { - "url": "ipfs://QmcYafk2je5rMqgnFPDZJTaLi6dgFgq96vmX2Li6DX441B", - "width": 320, - "height": 320, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - }, - "testnet": true, - "slug": "kroma-sepolia" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2399.ts b/packages/chains/chains/2399.ts deleted file mode 100644 index efec3e72341..00000000000 --- a/packages/chains/chains/2399.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BOMB Chain Testnet", - "chain": "BOMB", - "rpc": [ - "https://bomb-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bombchain-testnet.ankr.com/bas_full_rpc_1" - ], - "faucets": [ - "https://faucet.bombchain-testnet.ankr.com/" - ], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "tBOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombmoney.com", - "shortName": "bombt", - "chainId": 2399, - "networkId": 2399, - "icon": { - "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [ - { - "name": "bombscan-testnet", - "icon": { - "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", - "width": 1024, - "height": 1024, - "format": "png" - }, - "url": "https://explorer.bombchain-testnet.ankr.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bomb-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2400.ts b/packages/chains/chains/2400.ts deleted file mode 100644 index 232644f30d7..00000000000 --- a/packages/chains/chains/2400.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TCG Verse Mainnet", - "chain": "TCG Verse", - "icon": { - "url": "ipfs://bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe", - "width": 350, - "height": 350, - "format": "png" - }, - "rpc": [ - "https://tcg-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tcgverse.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://tcgverse.xyz/", - "shortName": "TCGV", - "chainId": 2400, - "networkId": 2400, - "explorers": [ - { - "name": "TCG Verse Explorer", - "url": "https://explorer.tcgverse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - }, - "testnet": false, - "slug": "tcg-verse" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2415.ts b/packages/chains/chains/2415.ts deleted file mode 100644 index 0247e5b7efb..00000000000 --- a/packages/chains/chains/2415.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "XODEX", - "chain": "XODEX", - "rpc": [ - "https://xodex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.xo-dex.com/rpc", - "https://xo-dex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "XODEX Native Token", - "symbol": "XODEX", - "decimals": 18 - }, - "infoURL": "https://xo-dex.com", - "shortName": "xodex", - "chainId": 2415, - "networkId": 10, - "icon": { - "url": "ipfs://QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "XODEX Explorer", - "url": "https://explorer.xo-dex.com", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW", - "width": 256, - "height": 256, - "format": "png" - } - } - ], - "testnet": false, - "slug": "xodex" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/24484.ts b/packages/chains/chains/24484.ts deleted file mode 100644 index 27a3b17e710..00000000000 --- a/packages/chains/chains/24484.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Webchain", - "chain": "WEB", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Webchain Ether", - "symbol": "WEB", - "decimals": 18 - }, - "infoURL": "https://webchain.network", - "shortName": "web", - "chainId": 24484, - "networkId": 37129, - "slip44": 227, - "testnet": false, - "slug": "webchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022926.ts b/packages/chains/chains/245022926.ts deleted file mode 100644 index 7868b31a78b..00000000000 --- a/packages/chains/chains/245022926.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Neon EVM DevNet", - "chain": "Solana", - "rpc": [ - "https://neon-evm-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet.neonevm.org" - ], - "faucets": [ - "https://neonfaucet.org" - ], - "icon": { - "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", - "width": 512, - "height": 512, - "format": "png" - }, - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org", - "shortName": "neonevm-devnet", - "chainId": 245022926, - "networkId": 245022926, - "explorers": [ - { - "name": "native", - "url": "https://devnet.explorer.neon-labs.org", - "standard": "EIP3091" - }, - { - "name": "neonscan", - "url": "https://devnet.neonscan.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "neon-evm-devnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022934.ts b/packages/chains/chains/245022934.ts deleted file mode 100644 index f6502b69645..00000000000 --- a/packages/chains/chains/245022934.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Neon EVM MainNet", - "chain": "Solana", - "rpc": [], - "faucets": [], - "icon": { - "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", - "width": 512, - "height": 512, - "format": "png" - }, - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neonevm.org", - "shortName": "neonevm-mainnet", - "chainId": 245022934, - "networkId": 245022934, - "explorers": [ - { - "name": "neonscan", - "url": "https://neonscan.org", - "standard": "EIP3091" - }, - { - "name": "native", - "url": "https://neon.blockscout.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "neon-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022940.ts b/packages/chains/chains/245022940.ts deleted file mode 100644 index 8a7ec68de9c..00000000000 --- a/packages/chains/chains/245022940.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Neon EVM TestNet", - "chain": "Solana", - "rpc": [ - "https://neon-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.neonevm.org" - ], - "faucets": [], - "icon": { - "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", - "width": 512, - "height": 512, - "format": "png" - }, - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org", - "shortName": "neonevm-testnet", - "chainId": 245022940, - "networkId": 245022940, - "explorers": [ - { - "name": "native", - "url": "https://testnet.explorer.neon-labs.org", - "standard": "EIP3091" - }, - { - "name": "neonscan", - "url": "https://testnet.neonscan.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "neon-evm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/246529.ts b/packages/chains/chains/246529.ts deleted file mode 100644 index 3bd57951da4..00000000000 --- a/packages/chains/chains/246529.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ARTIS sigma1", - "chain": "ARTIS", - "rpc": [ - "https://artis-sigma1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.sigma1.artis.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARTIS sigma1 Ether", - "symbol": "ATS", - "decimals": 18 - }, - "infoURL": "https://artis.eco", - "shortName": "ats", - "chainId": 246529, - "networkId": 246529, - "slip44": 246529, - "testnet": false, - "slug": "artis-sigma1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/246785.ts b/packages/chains/chains/246785.ts deleted file mode 100644 index f1795255f1e..00000000000 --- a/packages/chains/chains/246785.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ARTIS Testnet tau1", - "chain": "ARTIS", - "rpc": [ - "https://artis-testnet-tau1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tau1.artis.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARTIS tau1 Ether", - "symbol": "tATS", - "decimals": 18 - }, - "infoURL": "https://artis.network", - "shortName": "atstau", - "chainId": 246785, - "networkId": 246785, - "testnet": true, - "slug": "artis-testnet-tau1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/247253.ts b/packages/chains/chains/247253.ts deleted file mode 100644 index f1b7f33225f..00000000000 --- a/packages/chains/chains/247253.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Saakuru Testnet", - "chain": "Saakuru", - "icon": { - "url": "ipfs://QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://saakuru-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru-testnet", - "chainId": 247253, - "networkId": 247253, - "explorers": [ - { - "name": "saakuru-explorer-testnet", - "url": "https://explorer-testnet.saakuru.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "saakuru-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/24734.ts b/packages/chains/chains/24734.ts deleted file mode 100644 index bdd4676f41e..00000000000 --- a/packages/chains/chains/24734.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MintMe.com Coin", - "chain": "MINTME", - "rpc": [ - "https://mintme-com-coin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1.mintme.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MintMe.com Coin", - "symbol": "MINTME", - "decimals": 18 - }, - "infoURL": "https://www.mintme.com", - "shortName": "mintme", - "chainId": 24734, - "networkId": 37480, - "testnet": false, - "slug": "mintme-com-coin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2559.ts b/packages/chains/chains/2559.ts deleted file mode 100644 index ad0ca0a5a0f..00000000000 --- a/packages/chains/chains/2559.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kortho Mainnet", - "chain": "Kortho Chain", - "rpc": [ - "https://kortho.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://www.kortho-chain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KorthoChain", - "symbol": "KTO", - "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "ktoc", - "chainId": 2559, - "networkId": 2559, - "testnet": false, - "slug": "kortho" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/256256.ts b/packages/chains/chains/256256.ts deleted file mode 100644 index b08be8c45ce..00000000000 --- a/packages/chains/chains/256256.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CMP-Mainnet", - "chain": "CMP", - "rpc": [ - "https://cmp.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.block.caduceus.foundation", - "wss://mainnet.block.caduceus.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Caduceus Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp-mainnet", - "chainId": 256256, - "networkId": 256256, - "explorers": [ - { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" - } - ], - "testnet": false, - "slug": "cmp" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2569.ts b/packages/chains/chains/2569.ts deleted file mode 100644 index 0e01362ffdc..00000000000 --- a/packages/chains/chains/2569.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TechPay Mainnet", - "chain": "TPC", - "rpc": [ - "https://techpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.techpay.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TechPay", - "symbol": "TPC", - "decimals": 18 - }, - "infoURL": "https://techpay.io/", - "shortName": "tpc", - "chainId": 2569, - "networkId": 2569, - "icon": { - "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", - "width": 578, - "height": 701, - "format": "svg" - }, - "explorers": [ - { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": { - "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", - "width": 578, - "height": 701, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "techpay" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/25888.ts b/packages/chains/chains/25888.ts deleted file mode 100644 index cd33b48c9d2..00000000000 --- a/packages/chains/chains/25888.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Hammer Chain Mainnet", - "chain": "HammerChain", - "rpc": [ - "https://hammer-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://www.hammerchain.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "GOLDT", - "symbol": "GOLDT", - "decimals": 18 - }, - "infoURL": "https://www.hammerchain.io", - "shortName": "GOLDT", - "chainId": 25888, - "networkId": 25888, - "explorers": [ - { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "hammer-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/25925.ts b/packages/chains/chains/25925.ts deleted file mode 100644 index c0fb7388716..00000000000 --- a/packages/chains/chains/25925.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitkub Chain Testnet", - "chain": "BKC", - "icon": { - "url": "ipfs://QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT", - "width": 1000, - "height": 1000, - "format": "png" - }, - "rpc": [ - "https://bitkub-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.bitkubchain.io", - "wss://wss-testnet.bitkubchain.io" - ], - "faucets": [ - "https://faucet.bitkubchain.com" - ], - "nativeCurrency": { - "name": "Bitkub Coin", - "symbol": "tKUB", - "decimals": 18 - }, - "infoURL": "https://www.bitkubchain.com/", - "shortName": "bkct", - "chainId": 25925, - "networkId": 25925, - "explorers": [ - { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": { - "url": "ipfs://QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT", - "width": 1000, - "height": 1000, - "format": "png" - } - } - ], - "testnet": true, - "slug": "bitkub-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26026.ts b/packages/chains/chains/26026.ts deleted file mode 100644 index aa1955a86f7..00000000000 --- a/packages/chains/chains/26026.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ferrum Testnet", - "chain": "tFRM", - "rpc": [ - "https://ferrum-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://testnet.dev.svcs.ferrumnetwork.io:9933" - ], - "faucets": [ - "https://testnet.faucet.ferrumnetwork.io" - ], - "nativeCurrency": { - "name": "Ferrum", - "symbol": "tFRM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ferrum.network", - "shortName": "frm", - "chainId": 26026, - "networkId": 26026, - "explorers": [ - { - "name": "polkadotjs", - "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", - "standard": "none" - } - ], - "testnet": true, - "slug": "ferrum-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2606.ts b/packages/chains/chains/2606.ts deleted file mode 100644 index 98b7257bbf0..00000000000 --- a/packages/chains/chains/2606.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PoCRNet", - "title": "Proof of Climate awaReness mainnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://pocrnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://pocrnet.westeurope.cloudapp.azure.com/http", - "wss://pocrnet.westeurope.cloudapp.azure.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Climate awaReness Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/pocrnet", - "shortName": "pocrnet", - "chainId": 2606, - "networkId": 2606, - "icon": { - "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", - "width": 334, - "height": 360, - "format": "png" - }, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/pocrnet", - "icon": { - "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", - "width": 334, - "height": 360, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "pocrnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2611.ts b/packages/chains/chains/2611.ts deleted file mode 100644 index 63cb42083e0..00000000000 --- a/packages/chains/chains/2611.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Redlight Chain Mainnet", - "chain": "REDLC", - "rpc": [ - "https://redlight-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed2.redlightscan.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "Redlight Coin", - "symbol": "REDLC", - "decimals": 18 - }, - "infoURL": "https://redlight.finance/", - "shortName": "REDLC", - "chainId": 2611, - "networkId": 2611, - "explorers": [ - { - "name": "REDLC Explorer", - "url": "https://redlightscan.finance", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "redlight-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2612.ts b/packages/chains/chains/2612.ts deleted file mode 100644 index 904ca7d8c31..00000000000 --- a/packages/chains/chains/2612.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EZChain C-Chain Mainnet", - "chain": "EZC", - "rpc": [ - "https://ezchain-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "EZChain", - "chainId": 2612, - "networkId": 2612, - "icon": { - "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", - "width": 146, - "height": 48, - "format": "png" - }, - "explorers": [ - { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ezchain-c-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2613.ts b/packages/chains/chains/2613.ts deleted file mode 100644 index bd93404be2d..00000000000 --- a/packages/chains/chains/2613.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EZChain C-Chain Testnet", - "chain": "EZC", - "rpc": [ - "https://ezchain-c-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [ - "https://testnet-faucet.ezchain.com" - ], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "Fuji-EZChain", - "chainId": 2613, - "networkId": 2613, - "icon": { - "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", - "width": 146, - "height": 48, - "format": "png" - }, - "explorers": [ - { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ezchain-c-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2625.ts b/packages/chains/chains/2625.ts deleted file mode 100644 index 61793621238..00000000000 --- a/packages/chains/chains/2625.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "WhiteBIT Network Testnet", - "chain": "WBT", - "rpc": [ - "https://whitebit-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.whitebit.network" - ], - "faucets": [ - "https://explorer.whitebit.network/testnet/faucet" - ], - "nativeCurrency": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 - }, - "infoURL": "https://whitebit.com/wbt", - "shortName": "twbt", - "chainId": 2625, - "networkId": 2625, - "icon": { - "url": "ipfs://QmQqAAn2F98TH5ouRyvReKxQdaGKjE7WJQPEPW6mFFVXUT", - "width": 32, - "height": 32, - "format": "svg" - }, - "explorers": [ - { - "name": "wb-explorer-testnet", - "url": "https://explorer.whitebit.network/testnet", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "whitebit-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26600.ts b/packages/chains/chains/26600.ts deleted file mode 100644 index 05d3edbe902..00000000000 --- a/packages/chains/chains/26600.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Hertz Network Mainnet", - "chain": "HTZ", - "rpc": [ - "https://hertz-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.hertzscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hertz", - "symbol": "HTZ", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.hertz-network.com", - "shortName": "HTZ", - "chainId": 26600, - "networkId": 26600, - "icon": { - "url": "ipfs://Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG", - "width": 162, - "height": 129, - "format": "png" - }, - "explorers": [ - { - "name": "Hertz Scan", - "url": "https://hertzscan.com", - "icon": { - "url": "ipfs://Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG", - "width": 162, - "height": 129, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "hertz-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/266256.ts b/packages/chains/chains/266256.ts deleted file mode 100644 index c6466a6b37f..00000000000 --- a/packages/chains/chains/266256.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gear Zero Network Testnet", - "chain": "GearZero", - "rpc": [ - "https://gear-zero-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://gzn-test.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/testnet", - "shortName": "gz-testnet", - "chainId": 266256, - "networkId": 266256, - "slip44": 266256, - "explorers": [], - "testnet": true, - "slug": "gear-zero-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26863.ts b/packages/chains/chains/26863.ts deleted file mode 100644 index e1bc01cb8c8..00000000000 --- a/packages/chains/chains/26863.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OasisChain Mainnet", - "chain": "OasisChain", - "rpc": [ - "https://oasischain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.oasischain.io", - "https://rpc2.oasischain.io", - "https://rpc3.oasischain.io" - ], - "faucets": [ - "http://faucet.oasischain.io" - ], - "nativeCurrency": { - "name": "OAC", - "symbol": "OAC", - "decimals": 18 - }, - "infoURL": "https://scan.oasischain.io", - "shortName": "OAC", - "chainId": 26863, - "networkId": 26863, - "explorers": [ - { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "oasischain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/27082017.ts b/packages/chains/chains/27082017.ts deleted file mode 100644 index 42446109cad..00000000000 --- a/packages/chains/chains/27082017.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Excoincial Chain Volta-Testnet", - "chain": "TEXL", - "icon": { - "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://excoincial-chain-volta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.exlscan.com" - ], - "faucets": [ - "https://faucet.exlscan.com" - ], - "nativeCurrency": { - "name": "TExlcoin", - "symbol": "TEXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exlvolta", - "chainId": 27082017, - "networkId": 27082017, - "explorers": [ - { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": { - "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "excoincial-chain-volta-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/27082022.ts b/packages/chains/chains/27082022.ts deleted file mode 100644 index 2e22fd2e6d8..00000000000 --- a/packages/chains/chains/27082022.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Excoincial Chain Mainnet", - "chain": "EXL", - "icon": { - "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://excoincial-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.exlscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exlcoin", - "symbol": "EXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exl", - "chainId": 27082022, - "networkId": 27082022, - "explorers": [ - { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": { - "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "excoincial-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/271271.ts b/packages/chains/chains/271271.ts deleted file mode 100644 index 9c68d0d55b8..00000000000 --- a/packages/chains/chains/271271.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EgonCoin Testnet", - "chain": "EGON", - "icon": { - "url": "ipfs://QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://egoncoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpctest.egcscan.com" - ], - "faucets": [ - "https://faucet.egcscan.com" - ], - "nativeCurrency": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 - }, - "infoURL": "https://egcscan.com", - "shortName": "EGONt", - "chainId": 271271, - "networkId": 271271, - "explorers": [ - { - "name": "EgonCoin Testnet", - "url": "https://testnet.egcscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "egoncoin-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/278611351.ts b/packages/chains/chains/278611351.ts deleted file mode 100644 index 85967ba26b2..00000000000 --- a/packages/chains/chains/278611351.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Razor Skale Chain", - "chain": "Razor Schain", - "icon": { - "url": "ipfs://QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK", - "width": 900, - "height": 900, - "format": "png" - }, - "rpc": [ - "https://razor-skale-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" - ], - "faucets": [ - "https://faucet.razorscan.io/" - ], - "nativeCurrency": { - "name": "sFuel", - "symbol": "SFUEL", - "decimals": 18 - }, - "infoURL": "https://razor.network", - "shortName": "razor", - "chainId": 278611351, - "networkId": 278611351, - "explorers": [ - { - "name": "turbulent-unique-scheat", - "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "razor-skale-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/281121.ts b/packages/chains/chains/281121.ts deleted file mode 100644 index 5e10af695e2..00000000000 --- a/packages/chains/chains/281121.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Social Smart Chain Mainnet", - "chain": "SoChain", - "rpc": [ - "https://social-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://socialsmartchain.digitalnext.business" - ], - "faucets": [], - "nativeCurrency": { - "name": "SoChain", - "symbol": "$OC", - "decimals": 18 - }, - "infoURL": "https://digitalnext.business/SocialSmartChain", - "shortName": "SoChain", - "chainId": 281121, - "networkId": 281121, - "explorers": [], - "testnet": false, - "slug": "social-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/28528.ts b/packages/chains/chains/28528.ts deleted file mode 100644 index d586b6a4453..00000000000 --- a/packages/chains/chains/28528.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Optimism Bedrock (Goerli Alpha Testnet)", - "chain": "ETH", - "rpc": [ - "https://optimism-bedrock-goerli-alpha-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://alpha-1-replica-0.bedrock-goerli.optimism.io", - "https://alpha-1-replica-1.bedrock-goerli.optimism.io", - "https://alpha-1-replica-2.bedrock-goerli.optimism.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://community.optimism.io/docs/developers/bedrock", - "shortName": "obgor", - "chainId": 28528, - "networkId": 28528, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "optimism-bedrock-goerli-alpha-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2888.ts b/packages/chains/chains/2888.ts deleted file mode 100644 index 35ab862cca5..00000000000 --- a/packages/chains/chains/2888.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Boba Network Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://boba-network-goerli-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://goerli.boba.network/", - "wss://wss.goerli.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaGoerli", - "chainId": 2888, - "networkId": 2888, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet.bobascan.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - }, - "testnet": true, - "slug": "boba-network-goerli-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/28945486.ts b/packages/chains/chains/28945486.ts deleted file mode 100644 index a5e3f3568e9..00000000000 --- a/packages/chains/chains/28945486.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Auxilium Network Mainnet", - "chain": "AUX", - "rpc": [ - "https://auxilium-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.auxilium.global" - ], - "faucets": [], - "nativeCurrency": { - "name": "Auxilium coin", - "symbol": "AUX", - "decimals": 18 - }, - "infoURL": "https://auxilium.global", - "shortName": "auxi", - "chainId": 28945486, - "networkId": 28945486, - "slip44": 344, - "testnet": false, - "slug": "auxilium-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/29032022.ts b/packages/chains/chains/29032022.ts deleted file mode 100644 index bb2280d816b..00000000000 --- a/packages/chains/chains/29032022.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Flachain Mainnet", - "chain": "FLX", - "icon": { - "url": "ipfs://bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://flachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://flachain.flaexchange.top/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Flacoin", - "symbol": "FLA", - "decimals": 18 - }, - "infoURL": "https://www.flaexchange.top", - "shortName": "fla", - "chainId": 29032022, - "networkId": 29032022, - "explorers": [ - { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "flachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2999.ts b/packages/chains/chains/2999.ts deleted file mode 100644 index 108adbbad85..00000000000 --- a/packages/chains/chains/2999.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BitYuan Mainnet", - "chain": "BTY", - "rpc": [ - "https://bityuan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.bityuan.com/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTY", - "symbol": "BTY", - "decimals": 18 - }, - "infoURL": "https://www.bityuan.com", - "shortName": "bty", - "chainId": 2999, - "networkId": 2999, - "icon": { - "url": "ipfs://QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt", - "width": 91, - "height": 24, - "format": "png" - }, - "explorers": [ - { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "bityuan" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3000.ts b/packages/chains/chains/3000.ts deleted file mode 100644 index 5a873553b9f..00000000000 --- a/packages/chains/chains/3000.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CENNZnet Rata", - "chain": "CENNZnet", - "rpc": [], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-r", - "chainId": 3000, - "networkId": 3000, - "icon": { - "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", - "width": 112, - "height": 112, - "format": "svg" - }, - "testnet": false, - "slug": "cennznet-rata" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3001.ts b/packages/chains/chains/3001.ts deleted file mode 100644 index 2527182cb1f..00000000000 --- a/packages/chains/chains/3001.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CENNZnet Nikau", - "chain": "CENNZnet", - "rpc": [ - "https://cennznet-nikau.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://nikau.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-n", - "chainId": 3001, - "networkId": 3001, - "icon": { - "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", - "width": 112, - "height": 112, - "format": "svg" - }, - "explorers": [ - { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" - } - ], - "testnet": false, - "slug": "cennznet-nikau" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3003.ts b/packages/chains/chains/3003.ts deleted file mode 100644 index 77e57ed2ff8..00000000000 --- a/packages/chains/chains/3003.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Canxium Mainnet", - "chain": "CAU", - "rpc": [ - "https://canxium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.canxium.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 - }, - "infoURL": "https://canxium.org", - "shortName": "cau", - "chainId": 3003, - "networkId": 3003, - "explorers": [ - { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "canxium" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/30067.ts b/packages/chains/chains/30067.ts deleted file mode 100644 index 62bcdf117a5..00000000000 --- a/packages/chains/chains/30067.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Piece testnet", - "chain": "PieceNetwork", - "icon": { - "url": "ipfs://QmWAU39z1kcYshAqkENRH8qUjfR5CJehCxA4GiC33p3HpH", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://piece-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc0.piecenetwork.com" - ], - "faucets": [ - "https://piecenetwork.com/faucet" - ], - "nativeCurrency": { - "name": "ECE", - "symbol": "ECE", - "decimals": 18 - }, - "infoURL": "https://piecenetwork.com", - "shortName": "Piece", - "chainId": 30067, - "networkId": 30067, - "explorers": [ - { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "piece-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3011.ts b/packages/chains/chains/3011.ts deleted file mode 100644 index 9ad61fc2846..00000000000 --- a/packages/chains/chains/3011.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PLAYA3ULL GAMES", - "chain": "3ULL", - "rpc": [ - "https://playa3ull-games.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.mainnet.playa3ull.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "3ULL", - "symbol": "3ULL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://playa3ull.games", - "shortName": "3ULL", - "chainId": 3011, - "networkId": 3011, - "icon": { - "url": "ipfs://bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4", - "width": 512, - "height": 443, - "format": "png" - }, - "explorers": [ - { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": { - "url": "ipfs://bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4", - "width": 512, - "height": 443, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "playa3ull-games" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3031.ts b/packages/chains/chains/3031.ts deleted file mode 100644 index 91526a14a34..00000000000 --- a/packages/chains/chains/3031.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Orlando Chain", - "chain": "ORL", - "rpc": [ - "https://orlando-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.orlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Orlando", - "symbol": "ORL", - "decimals": 18 - }, - "infoURL": "https://orlchain.com", - "shortName": "ORL", - "chainId": 3031, - "networkId": 3031, - "icon": { - "url": "ipfs://QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", - "width": 512, - "height": 528, - "format": "png" - }, - "explorers": [ - { - "name": "Orlando (ORL) Explorer", - "url": "https://orlscan.com", - "icon": { - "url": "ipfs://QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", - "width": 512, - "height": 528, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "orlando-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3068.ts b/packages/chains/chains/3068.ts deleted file mode 100644 index 7ba8421df1d..00000000000 --- a/packages/chains/chains/3068.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bifrost Mainnet", - "title": "The Bifrost Mainnet network", - "chain": "BFC", - "rpc": [ - "https://bifrost.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://public-01.mainnet.thebifrost.io/rpc", - "https://public-02.mainnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "bfc", - "chainId": 3068, - "networkId": 3068, - "icon": { - "url": "ipfs://QmcHvn2Wq91ULyEH5s3uHjosX285hUgyJHwggFJUd3L5uh", - "width": 128, - "height": 128, - "format": "png" - }, - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.mainnet.thebifrost.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bifrost" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31102.ts b/packages/chains/chains/31102.ts deleted file mode 100644 index c0df3d0b02a..00000000000 --- a/packages/chains/chains/31102.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ethersocial Network", - "chain": "ESN", - "rpc": [ - "https://ethersocial-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.esn.gonspool.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethersocial Network Ether", - "symbol": "ESN", - "decimals": 18 - }, - "infoURL": "https://ethersocial.org", - "shortName": "esn", - "chainId": 31102, - "networkId": 1, - "slip44": 31102, - "testnet": false, - "slug": "ethersocial-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/311752642.ts b/packages/chains/chains/311752642.ts deleted file mode 100644 index 5ea6baf7a39..00000000000 --- a/packages/chains/chains/311752642.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OneLedger Mainnet", - "chain": "OLT", - "icon": { - "url": "ipfs://QmRhqq4Gp8G9w27ND3LeFW49o5PxcxrbJsqHbpBFtzEMfC", - "width": 225, - "height": 225, - "format": "png" - }, - "rpc": [ - "https://oneledger.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.oneledger.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "oneledger", - "chainId": 311752642, - "networkId": 311752642, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://mainnet-explorer.oneledger.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "oneledger" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31223.ts b/packages/chains/chains/31223.ts deleted file mode 100644 index de9b2b63930..00000000000 --- a/packages/chains/chains/31223.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CloudTx Mainnet", - "chain": "CLD", - "icon": { - "url": "ipfs://QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3", - "width": 713, - "height": 830, - "format": "png" - }, - "rpc": [ - "https://cloudtx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.cloudtx.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance", - "shortName": "CLDTX", - "chainId": 31223, - "networkId": 31223, - "explorers": [ - { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "cloudtx" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31224.ts b/packages/chains/chains/31224.ts deleted file mode 100644 index 72d3c094c8c..00000000000 --- a/packages/chains/chains/31224.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CloudTx Testnet", - "chain": "CloudTx", - "icon": { - "url": "ipfs://QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3", - "width": 713, - "height": 830, - "format": "png" - }, - "rpc": [ - "https://cloudtx-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.cloudtx.finance" - ], - "faucets": [ - "https://faucet.cloudtx.finance" - ], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance/", - "shortName": "CLD", - "chainId": 31224, - "networkId": 31224, - "explorers": [ - { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "cloudtx-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3125659152.ts b/packages/chains/chains/3125659152.ts deleted file mode 100644 index 647ee5bea8d..00000000000 --- a/packages/chains/chains/3125659152.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Pirl", - "chain": "PIRL", - "rpc": [ - "https://pirl.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://wallrpc.pirl.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pirl Ether", - "symbol": "PIRL", - "decimals": 18 - }, - "infoURL": "https://pirl.io", - "shortName": "pirl", - "chainId": 3125659152, - "networkId": 3125659152, - "slip44": 164, - "testnet": false, - "slug": "pirl" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31337.ts b/packages/chains/chains/31337.ts deleted file mode 100644 index dcd73488273..00000000000 --- a/packages/chains/chains/31337.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "GoChain Testnet", - "chain": "GO", - "rpc": [ - "https://gochain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.gochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoChain Coin", - "symbol": "GO", - "decimals": 18 - }, - "infoURL": "https://gochain.io", - "shortName": "got", - "chainId": 31337, - "networkId": 31337, - "slip44": 6060, - "explorers": [ - { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "gochain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/314159.ts b/packages/chains/chains/314159.ts deleted file mode 100644 index d7c05ac6873..00000000000 --- a/packages/chains/chains/314159.ts +++ /dev/null @@ -1,60 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Filecoin - Calibration testnet", - "chain": "FIL", - "icon": { - "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", - "width": 1000, - "height": 1000, - "format": "png" - }, - "rpc": [ - "https://filecoin-calibration-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.calibration.node.glif.io/rpc/v1", - "https://rpc.ankr.com/filecoin_testnet", - "https://filecoin-calibration.chainstacklabs.com/rpc/v1", - "https://filecoin-calibration.chainup.net/rpc/v1" - ], - "faucets": [ - "https://faucet.calibration.fildev.network/" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-calibration", - "chainId": 314159, - "networkId": 314159, - "slip44": 1, - "explorers": [ - { - "name": "Filscan - Calibration", - "url": "https://calibration.filscan.io", - "standard": "none" - }, - { - "name": "Filscout - Calibration", - "url": "https://calibration.filscout.com/en", - "standard": "none" - }, - { - "name": "Filfox - Calibration", - "url": "https://calibration.filfox.info", - "standard": "none" - }, - { - "name": "Glif Explorer - Calibration", - "url": "https://explorer.glif.io/?network=calibration", - "standard": "none" - }, - { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" - } - ], - "testnet": true, - "slug": "filecoin-calibration-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3141592.ts b/packages/chains/chains/3141592.ts deleted file mode 100644 index 73a41b6b0ad..00000000000 --- a/packages/chains/chains/3141592.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Filecoin - Butterfly testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [ - "https://faucet.butterfly.fildev.network" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-butterfly", - "icon": { - "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", - "width": 1000, - "height": 1000, - "format": "png" - }, - "chainId": 3141592, - "networkId": 3141592, - "slip44": 1, - "explorers": [], - "testnet": true, - "slug": "filecoin-butterfly-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31415926.ts b/packages/chains/chains/31415926.ts deleted file mode 100644 index 0becea536b6..00000000000 --- a/packages/chains/chains/31415926.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Filecoin - Local testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-local", - "icon": { - "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", - "width": 1000, - "height": 1000, - "format": "png" - }, - "chainId": 31415926, - "networkId": 31415926, - "slip44": 1, - "explorers": [], - "testnet": true, - "slug": "filecoin-local-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32520.ts b/packages/chains/chains/32520.ts deleted file mode 100644 index 1c25cd24204..00000000000 --- a/packages/chains/chains/32520.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitgert Mainnet", - "chain": "Brise", - "rpc": [ - "https://bitgert.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.icecreamswap.com", - "https://mainnet-rpc.brisescan.com", - "https://chainrpc.com", - "https://serverrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitrise Token", - "symbol": "Brise", - "decimals": 18 - }, - "infoURL": "https://bitgert.com/", - "shortName": "Brise", - "chainId": 32520, - "networkId": 32520, - "icon": { - "url": "ipfs://QmY3vKe1rG9AyHSGH1ouP3ER3EVUZRtRrFbFZEfEpMSd4V", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "Brise Scan", - "url": "https://brisescan.com", - "icon": { - "url": "ipfs://QmY3vKe1rG9AyHSGH1ouP3ER3EVUZRtRrFbFZEfEpMSd4V", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bitgert" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32659.ts b/packages/chains/chains/32659.ts deleted file mode 100644 index c0c460181dc..00000000000 --- a/packages/chains/chains/32659.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fusion Mainnet", - "chain": "FSN", - "icon": { - "url": "ipfs://QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth", - "width": 31, - "height": 31, - "format": "svg" - }, - "rpc": [ - "https://fusion.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.fusionnetwork.io", - "wss://mainnet.fusionnetwork.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Fusion", - "symbol": "FSN", - "decimals": 18 - }, - "infoURL": "https://fusion.org", - "shortName": "fsn", - "chainId": 32659, - "networkId": 32659, - "slip44": 288, - "explorers": [ - { - "name": "fsnscan", - "url": "https://fsnscan.com", - "icon": { - "url": "ipfs://QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd", - "width": 48, - "height": 51, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "fusion" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32769.ts b/packages/chains/chains/32769.ts deleted file mode 100644 index f9c8dd50ce3..00000000000 --- a/packages/chains/chains/32769.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zilliqa EVM", - "chain": "ZIL", - "rpc": [ - "https://zilliqa-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.zilliqa.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil", - "chainId": 32769, - "networkId": 32769, - "icon": { - "url": "ipfs://QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp", - "width": 2048, - "height": 2048, - "format": "png" - }, - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "zilliqa-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3306.ts b/packages/chains/chains/3306.ts deleted file mode 100644 index 6981fcd7cf0..00000000000 --- a/packages/chains/chains/3306.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Debounce Subnet Testnet", - "chain": "Debounce Network", - "icon": { - "url": "ipfs://bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://debounce-subnet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dev-rpc.debounce.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Debounce Network", - "symbol": "DB", - "decimals": 18 - }, - "infoURL": "https://debounce.network", - "shortName": "debounce-devnet", - "chainId": 3306, - "networkId": 3306, - "explorers": [ - { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "debounce-subnet-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/330844.ts b/packages/chains/chains/330844.ts deleted file mode 100644 index 6b9a7601a59..00000000000 --- a/packages/chains/chains/330844.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TTcoin Smart Chain Mainnet", - "chain": "TSC", - "icon": { - "url": "ipfs://QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://ttcoin-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.tscscan.com" - ], - "faucets": [ - "https://faucet.tscscan.com" - ], - "nativeCurrency": { - "name": "TTcoin", - "symbol": "TC", - "decimals": 18 - }, - "infoURL": "https://ttcoin.info/", - "shortName": "tc", - "chainId": 330844, - "networkId": 330844, - "explorers": [ - { - "name": "TTcoin Smart Chain Explorer", - "url": "https://tscscan.com", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf", - "width": 512, - "height": 512, - "format": "png" - } - } - ], - "testnet": false, - "slug": "ttcoin-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/33101.ts b/packages/chains/chains/33101.ts deleted file mode 100644 index 9972707022b..00000000000 --- a/packages/chains/chains/33101.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zilliqa EVM Testnet", - "chain": "ZIL", - "rpc": [ - "https://zilliqa-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dev-api.zilliqa.com" - ], - "faucets": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-testnet", - "chainId": 33101, - "networkId": 33101, - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "zilliqa-evm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/331769.ts b/packages/chains/chains/331769.ts deleted file mode 100644 index 8f312bbf2ac..00000000000 --- a/packages/chains/chains/331769.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ProofOfPepe Testnet", - "chain": "POPTestnet", - "shortName": "POPTestnet", - "chainId": 331769, - "testnet": true, - "rpc": [ - "https://proofofpepe-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet01.proofofpepe.tech" - ], - "nativeCurrency": { - "name": "POP", - "symbol": "POP", - "decimals": 18 - }, - "explorers": [ - { - "name": "ProofOfPepe Explorer", - "url": "https://pepescan.app/", - "standard": "EIP3091" - } - ], - "slug": "proofofpepe-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333000333.ts b/packages/chains/chains/333000333.ts deleted file mode 100644 index 8f1d3a9f9d5..00000000000 --- a/packages/chains/chains/333000333.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Meld", - "title": "Meld Mainnet", - "chain": "MELD", - "rpc": [ - "https://meld.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/meld/mainnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", - "width": 4000, - "height": 4000, - "format": "png" - }, - "infoURL": "https://meld.com", - "shortName": "meld", - "chainId": 333000333, - "networkId": 333000333, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "icon": { - "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", - "width": 4000, - "height": 4000, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "meld" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3331.ts b/packages/chains/chains/3331.ts deleted file mode 100644 index 29ed1934996..00000000000 --- a/packages/chains/chains/3331.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ZCore Testnet", - "chain": "Beach", - "icon": { - "url": "ipfs://QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4", - "width": 1050, - "height": 1050, - "format": "png" - }, - "rpc": [ - "https://zcore-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.zcore.cash" - ], - "faucets": [ - "https://faucet.zcore.cash" - ], - "nativeCurrency": { - "name": "ZCore", - "symbol": "ZCR", - "decimals": 18 - }, - "infoURL": "https://zcore.cash", - "shortName": "zcrbeach", - "chainId": 3331, - "networkId": 3331, - "testnet": true, - "slug": "zcore-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3333.ts b/packages/chains/chains/3333.ts deleted file mode 100644 index 00987225a36..00000000000 --- a/packages/chains/chains/3333.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Web3Q Testnet", - "chain": "Web3Q", - "rpc": [ - "https://web3q-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://testnet.web3q.io/home.w3q/", - "shortName": "w3q-t", - "chainId": 3333, - "networkId": 3333, - "explorers": [ - { - "name": "w3q-testnet", - "url": "https://explorer.testnet.web3q.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "web3q-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/33333.ts b/packages/chains/chains/33333.ts deleted file mode 100644 index 268d3b7ead3..00000000000 --- a/packages/chains/chains/33333.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aves Mainnet", - "chain": "AVS", - "rpc": [ - "https://aves.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aves", - "symbol": "AVS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://avescoin.io", - "shortName": "avs", - "chainId": 33333, - "networkId": 33333, - "icon": { - "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", - "width": 232, - "height": 232, - "format": "png" - }, - "explorers": [ - { - "name": "avescan", - "url": "https://avescan.io", - "icon": { - "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", - "width": 232, - "height": 232, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "aves" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333331.ts b/packages/chains/chains/333331.ts deleted file mode 100644 index 31707d618d3..00000000000 --- a/packages/chains/chains/333331.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aves Testnet", - "chain": "AVST", - "rpc": [ - "https://aves-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test.rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AvesT", - "symbol": "AVST", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ethereum.org", - "shortName": "avst", - "chainId": 333331, - "networkId": 333331, - "icon": { - "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", - "width": 232, - "height": 232, - "format": "png" - }, - "explorers": [ - { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": { - "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", - "width": 232, - "height": 232, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "aves-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3334.ts b/packages/chains/chains/3334.ts deleted file mode 100644 index 11800817508..00000000000 --- a/packages/chains/chains/3334.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Web3Q Galileo", - "chain": "Web3Q", - "rpc": [ - "https://web3q-galileo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://galileo.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://galileo.web3q.io/home.w3q/", - "shortName": "w3q-g", - "chainId": 3334, - "networkId": 3334, - "explorers": [ - { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "web3q-galileo" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333777.ts b/packages/chains/chains/333777.ts deleted file mode 100644 index 63752c10e7c..00000000000 --- a/packages/chains/chains/333777.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oone Chain Testnet", - "chain": "OONE", - "rpc": [ - "https://oone-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://blockchain-test.adigium.world" - ], - "faucets": [ - "https://apps-test.adigium.com/faucet" - ], - "nativeCurrency": { - "name": "Oone", - "symbol": "tOONE", - "decimals": 18 - }, - "infoURL": "https://oone.world", - "shortName": "oonetest", - "chainId": 333777, - "networkId": 333777, - "explorers": [ - { - "name": "expedition", - "url": "https://explorer-test.adigium.world", - "standard": "none" - } - ], - "testnet": true, - "slug": "oone-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333888.ts b/packages/chains/chains/333888.ts deleted file mode 100644 index a7caed5bc9e..00000000000 --- a/packages/chains/chains/333888.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Polis Testnet", - "chain": "Sparta", - "icon": { - "url": "ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", - "width": 1050, - "height": 1050, - "format": "png" - }, - "rpc": [ - "https://polis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sparta-rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "tPolis", - "symbol": "tPOLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "sparta", - "chainId": 333888, - "networkId": 333888, - "testnet": true, - "slug": "polis-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333999.ts b/packages/chains/chains/333999.ts deleted file mode 100644 index 0bee3f43787..00000000000 --- a/packages/chains/chains/333999.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Polis Mainnet", - "chain": "Olympus", - "icon": { - "url": "ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", - "width": 1050, - "height": 1050, - "format": "png" - }, - "rpc": [ - "https://polis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "Polis", - "symbol": "POLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "olympus", - "chainId": 333999, - "networkId": 333999, - "testnet": false, - "slug": "polis" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3400.ts b/packages/chains/chains/3400.ts deleted file mode 100644 index 0dec2b301ea..00000000000 --- a/packages/chains/chains/3400.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Paribu Net Mainnet", - "chain": "PRB", - "rpc": [ - "https://paribu-net.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.paribu.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prb", - "chainId": 3400, - "networkId": 3400, - "icon": { - "url": "ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", - "width": 2362, - "height": 2362, - "format": "png" - }, - "explorers": [ - { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "paribu-net" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3434.ts b/packages/chains/chains/3434.ts deleted file mode 100644 index 0f5c945ea78..00000000000 --- a/packages/chains/chains/3434.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SecureChain Testnet", - "chain": "SCAI", - "icon": { - "url": "ipfs://Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf", - "width": 150, - "height": 150, - "format": "png" - }, - "rpc": [ - "https://securechain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.securechain.ai" - ], - "faucets": [ - "https://faucet.securechain.ai" - ], - "nativeCurrency": { - "name": "SCAI", - "symbol": "SCAI", - "decimals": 18 - }, - "infoURL": "https://securechain.ai", - "shortName": "SCAIt", - "chainId": 3434, - "networkId": 3434, - "explorers": [ - { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "securechain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/344106930.ts b/packages/chains/chains/344106930.ts deleted file mode 100644 index 0fcaea012a3..00000000000 --- a/packages/chains/chains/344106930.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Calypso NFT Hub (SKALE Testnet)", - "title": "Calypso NFT Hub Testnet", - "chain": "staging-utter-unripe-menkar", - "rpc": [ - "https://calypso-nft-hub-skale-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-testnet", - "chainId": 344106930, - "networkId": 344106930, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", - "icon": { - "url": "ipfs://bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", - "width": 1637, - "height": 1636, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "calypso-nft-hub-skale-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3500.ts b/packages/chains/chains/3500.ts deleted file mode 100644 index 2ba42b03d3e..00000000000 --- a/packages/chains/chains/3500.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Paribu Net Testnet", - "chain": "PRB", - "rpc": [ - "https://paribu-net-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.paribuscan.com" - ], - "faucets": [ - "https://faucet.paribuscan.com" - ], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prbtestnet", - "chainId": 3500, - "networkId": 3500, - "icon": { - "url": "ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", - "width": 2362, - "height": 2362, - "format": "png" - }, - "explorers": [ - { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "paribu-net-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3501.ts b/packages/chains/chains/3501.ts deleted file mode 100644 index 77cee324289..00000000000 --- a/packages/chains/chains/3501.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "JFIN Chain", - "chain": "JFIN", - "rpc": [ - "https://jfin-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.jfinchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "JFIN Coin", - "symbol": "jfin", - "decimals": 18 - }, - "infoURL": "https://jfinchain.com", - "shortName": "jfin", - "chainId": 3501, - "networkId": 3501, - "explorers": [ - { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "jfin-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35011.ts b/packages/chains/chains/35011.ts deleted file mode 100644 index db5be7eaf0f..00000000000 --- a/packages/chains/chains/35011.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "J2O Taro", - "chain": "TARO", - "rpc": [ - "https://j2o-taro.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.j2o.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "TARO Coin", - "symbol": "taro", - "decimals": 18 - }, - "infoURL": "https://j2o.io", - "shortName": "j2o", - "chainId": 35011, - "networkId": 35011, - "explorers": [ - { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": { - "url": "ipfs://QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "j2o-taro" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35441.ts b/packages/chains/chains/35441.ts deleted file mode 100644 index b9d5ff08906..00000000000 --- a/packages/chains/chains/35441.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Q Mainnet", - "chain": "Q", - "rpc": [ - "https://q.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.q.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org", - "shortName": "q", - "chainId": 35441, - "networkId": 35441, - "icon": { - "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", - "width": 585, - "height": 603, - "format": "png" - }, - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.q.org", - "icon": { - "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", - "width": 585, - "height": 603, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "q" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35443.ts b/packages/chains/chains/35443.ts deleted file mode 100644 index db26401ffb2..00000000000 --- a/packages/chains/chains/35443.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Q Testnet", - "chain": "Q", - "rpc": [ - "https://q-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.qtestnet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org/", - "shortName": "q-testnet", - "chainId": 35443, - "networkId": 35443, - "icon": { - "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", - "width": 585, - "height": 603, - "format": "png" - }, - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.qtestnet.org", - "icon": { - "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", - "width": 585, - "height": 603, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "q-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/355113.ts b/packages/chains/chains/355113.ts deleted file mode 100644 index a043e9a90e5..00000000000 --- a/packages/chains/chains/355113.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitfinity Network Testnet", - "chain": "BFT", - "rpc": [ - "https://bitfinity-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.bitfinity.network" - ], - "faucets": [ - "https://bitfinity.network/faucet" - ], - "nativeCurrency": { - "name": "BITFINITY", - "symbol": "BFT", - "decimals": 18 - }, - "infoURL": "https://bitfinity.network", - "shortName": "Bitfinity", - "chainId": 355113, - "networkId": 355113, - "explorers": [ - { - "name": "Bitfinity Block Explorer", - "url": "https://explorer.bitfinity.network", - "icon": { - "url": "ipfs://bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e", - "width": 796, - "height": 129, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bitfinity-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/356256156.ts b/packages/chains/chains/356256156.ts deleted file mode 100644 index a6db93c1fe1..00000000000 --- a/packages/chains/chains/356256156.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gather Testnet Network", - "chain": "GTH", - "rpc": [ - "https://gather-testnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.gather.network" - ], - "faucets": [ - "https://testnet-faucet.gather.network/" - ], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "tGTH", - "chainId": 356256156, - "networkId": 356256156, - "icon": { - "url": "ipfs://Qmc9AJGg9aNhoH56n3deaZeUc8Ty1jDYJsW6Lu6hgSZH4S", - "height": 512, - "width": 512, - "format": "png" - }, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer.gather.network", - "icon": { - "url": "ipfs://QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz", - "width": 1080, - "height": 1080, - "format": "svg" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "gather-testnet-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35855456.ts b/packages/chains/chains/35855456.ts deleted file mode 100644 index 2afaff74aa1..00000000000 --- a/packages/chains/chains/35855456.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Joys Digital Mainnet", - "chain": "JOYS", - "rpc": [ - "https://joys-digital.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node.joys.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "JOYS", - "symbol": "JOYS", - "decimals": 18 - }, - "infoURL": "https://joys.digital", - "shortName": "JOYS", - "chainId": 35855456, - "networkId": 35855456, - "testnet": false, - "slug": "joys-digital" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3601.ts b/packages/chains/chains/3601.ts deleted file mode 100644 index 4ac26c69e52..00000000000 --- a/packages/chains/chains/3601.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PandoProject Mainnet", - "chain": "PandoProject", - "icon": { - "url": "ipfs://QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9", - "width": 1000, - "height": 1628, - "format": "png" - }, - "rpc": [ - "https://pandoproject.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eth-rpc-api.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-mainnet", - "chainId": 3601, - "networkId": 3601, - "explorers": [ - { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "pandoproject" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3602.ts b/packages/chains/chains/3602.ts deleted file mode 100644 index 8e4ddd8e68c..00000000000 --- a/packages/chains/chains/3602.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PandoProject Testnet", - "chain": "PandoProject", - "icon": { - "url": "ipfs://QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9", - "width": 1000, - "height": 1628, - "format": "png" - }, - "rpc": [ - "https://pandoproject-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.ethrpc.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-testnet", - "chainId": 3602, - "networkId": 3602, - "explorers": [ - { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", - "standard": "none" - } - ], - "testnet": true, - "slug": "pandoproject-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3636.ts b/packages/chains/chains/3636.ts deleted file mode 100644 index e8aac1502be..00000000000 --- a/packages/chains/chains/3636.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Botanix Testnet", - "chain": "BTC", - "icon": { - "url": "ipfs://Qmf2iSjcrZwUDKhCVY9ZzfbSV2He2HSssbcG2yMz1mDerm", - "width": 32, - "height": 32, - "format": "png" - }, - "rpc": [ - "https://botanix-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCt", - "chainId": 3636, - "networkId": 3636, - "explorers": [ - { - "name": "Botanix", - "url": "https://testnet.btxtestchain.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "botanix-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3637.ts b/packages/chains/chains/3637.ts deleted file mode 100644 index c760ad040c4..00000000000 --- a/packages/chains/chains/3637.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Botanix Mainnet", - "chain": "BTC", - "icon": { - "url": "ipfs://Qmf2iSjcrZwUDKhCVY9ZzfbSV2He2HSssbcG2yMz1mDerm", - "width": 32, - "height": 32, - "format": "png" - }, - "rpc": [ - "https://botanix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCm", - "chainId": 3637, - "networkId": 3637, - "explorers": [ - { - "name": "Botanix", - "url": "https://btxtestchain.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "botanix" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3666.ts b/packages/chains/chains/3666.ts deleted file mode 100644 index cb8ecda69b9..00000000000 --- a/packages/chains/chains/3666.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Jouleverse Mainnet", - "chain": "Jouleverse", - "rpc": [ - "https://jouleverse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.jnsdao.com:8503" - ], - "faucets": [], - "nativeCurrency": { - "name": "J", - "symbol": "J", - "decimals": 18 - }, - "infoURL": "https://jnsdao.com", - "shortName": "jouleverse", - "chainId": 3666, - "networkId": 3666, - "explorers": [ - { - "name": "jscan", - "url": "https://jscan.jnsdao.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "jouleverse" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3690.ts b/packages/chains/chains/3690.ts deleted file mode 100644 index e727d3a720d..00000000000 --- a/packages/chains/chains/3690.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bittex Mainnet", - "chain": "BTX", - "rpc": [ - "https://bittex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.bittexscan.info", - "https://rpc2.bittexscan.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bittex", - "symbol": "BTX", - "decimals": 18 - }, - "infoURL": "https://bittexscan.com", - "shortName": "btx", - "chainId": 3690, - "networkId": 3690, - "explorers": [ - { - "name": "bittexscan", - "url": "https://bittexscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bittex" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3693.ts b/packages/chains/chains/3693.ts deleted file mode 100644 index 8c6d7751137..00000000000 --- a/packages/chains/chains/3693.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Empire Network", - "chain": "EMPIRE", - "rpc": [ - "https://empire-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.empirenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Empire", - "symbol": "EMPIRE", - "decimals": 18 - }, - "infoURL": "https://www.empirenetwork.io/", - "shortName": "empire", - "chainId": 3693, - "networkId": 3693, - "explorers": [ - { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "empire-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3698.ts b/packages/chains/chains/3698.ts deleted file mode 100644 index bf6f382d242..00000000000 --- a/packages/chains/chains/3698.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SenjePowers Testnet", - "chain": "SPC", - "icon": { - "url": "ipfs://QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy", - "width": 504, - "height": 495, - "format": "png" - }, - "rpc": [ - "https://senjepowers-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCt", - "chainId": 3698, - "networkId": 3698, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "senjepowers-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3699.ts b/packages/chains/chains/3699.ts deleted file mode 100644 index c739739c8fb..00000000000 --- a/packages/chains/chains/3699.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SenjePowers Mainnet", - "chain": "SPC", - "icon": { - "url": "ipfs://QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy", - "width": 504, - "height": 495, - "format": "png" - }, - "rpc": [ - "https://senjepowers.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCm", - "chainId": 3699, - "networkId": 3699, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "senjepowers" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3737.ts b/packages/chains/chains/3737.ts deleted file mode 100644 index e5750deea41..00000000000 --- a/packages/chains/chains/3737.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Crossbell", - "chain": "Crossbell", - "rpc": [ - "https://crossbell.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.crossbell.io" - ], - "faucets": [ - "https://faucet.crossbell.io" - ], - "nativeCurrency": { - "name": "Crossbell Token", - "symbol": "CSB", - "decimals": 18 - }, - "infoURL": "https://crossbell.io", - "shortName": "csb", - "chainId": 3737, - "networkId": 3737, - "icon": { - "url": "ipfs://QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t", - "format": "svg", - "width": 408, - "height": 408 - }, - "explorers": [ - { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "crossbell" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/373737.ts b/packages/chains/chains/373737.ts deleted file mode 100644 index 8a26d632aec..00000000000 --- a/packages/chains/chains/373737.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HAPchain Testnet", - "chain": "HAPchain", - "rpc": [ - "https://hapchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonrpc-test.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap-testnet", - "chainId": 373737, - "networkId": 373737, - "icon": { - "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout-test.hap.land", - "standard": "none", - "icon": { - "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": true, - "slug": "hapchain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3797.ts b/packages/chains/chains/3797.ts deleted file mode 100644 index 4cf4c321a0c..00000000000 --- a/packages/chains/chains/3797.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AlveyChain Mainnet", - "chain": "ALV", - "icon": { - "url": "ipfs://QmSwczpPLBG6ob1a8WLoujthiCPzwEyJNp7WdKRi52qbWX", - "width": 310, - "height": 310, - "format": "png" - }, - "rpc": [ - "https://alveychain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.alveychain.com/rpc", - "https://rpc2.alvey.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "AlveyCoin", - "symbol": "ALV", - "decimals": 18 - }, - "infoURL": "https://alveyscan.com/rpc", - "shortName": "alv", - "chainId": 3797, - "networkId": 3797, - "explorers": [ - { - "name": "AlveyScan", - "url": "https://alveyscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "alveychain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/381931.ts b/packages/chains/chains/381931.ts deleted file mode 100644 index cdea8dbe2a0..00000000000 --- a/packages/chains/chains/381931.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metal C-Chain", - "chain": "Metal", - "rpc": [ - "https://metal-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "metal", - "chainId": 381931, - "networkId": 381931, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "metal-c-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/381932.ts b/packages/chains/chains/381932.ts deleted file mode 100644 index 752436e14b2..00000000000 --- a/packages/chains/chains/381932.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metal Tahoe C-Chain", - "chain": "Metal", - "rpc": [ - "https://metal-tahoe-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://tahoe.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "Tahoe", - "chainId": 381932, - "networkId": 381932, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "metal-tahoe-c-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/383414847825.ts b/packages/chains/chains/383414847825.ts deleted file mode 100644 index 89b3258dc77..00000000000 --- a/packages/chains/chains/383414847825.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zeniq", - "chain": "ZENIQ", - "rpc": [ - "https://zeniq.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://smart.zeniq.network:9545" - ], - "faucets": [ - "https://faucet.zeniq.net/" - ], - "nativeCurrency": { - "name": "Zeniq", - "symbol": "ZENIQ", - "decimals": 18 - }, - "infoURL": "https://www.zeniq.dev/", - "shortName": "zeniq", - "chainId": 383414847825, - "networkId": 383414847825, - "explorers": [ - { - "name": "zeniq-smart-chain-explorer", - "url": "https://smart.zeniq.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "zeniq" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3912.ts b/packages/chains/chains/3912.ts deleted file mode 100644 index 0065c9b7c19..00000000000 --- a/packages/chains/chains/3912.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DRAC Network", - "chain": "DRAC", - "rpc": [ - "https://drac-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://www.dracscan.com/rpc" - ], - "faucets": [ - "https://www.dracscan.io/faucet" - ], - "nativeCurrency": { - "name": "DRAC", - "symbol": "DRAC", - "decimals": 18 - }, - "infoURL": "https://drac.io/", - "shortName": "drac", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "chainId": 3912, - "networkId": 3912, - "icon": { - "url": "ipfs://QmXbsQe7QsVFZJZdBmbZVvS6LgX9ZFoaTMBs9MiQXUzJTw", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "drac-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3939.ts b/packages/chains/chains/3939.ts deleted file mode 100644 index 71357f77d14..00000000000 --- a/packages/chains/chains/3939.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DOS Tesnet", - "chain": "DOS", - "rpc": [ - "https://dos-tesnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "dost", - "chainId": 3939, - "networkId": 3939, - "icon": { - "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": { - "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dos-tesnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3966.ts b/packages/chains/chains/3966.ts deleted file mode 100644 index 7a60cc80181..00000000000 --- a/packages/chains/chains/3966.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DYNO Mainnet", - "chain": "DYNO", - "rpc": [ - "https://dyno.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "DYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "dyno", - "chainId": 3966, - "networkId": 3966, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dyno" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3967.ts b/packages/chains/chains/3967.ts deleted file mode 100644 index 84b01af70d1..00000000000 --- a/packages/chains/chains/3967.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DYNO Testnet", - "chain": "DYNO", - "rpc": [ - "https://dyno-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://tapi.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "tDYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "tdyno", - "chainId": 3967, - "networkId": 3967, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dyno-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/39797.ts b/packages/chains/chains/39797.ts deleted file mode 100644 index ccde231e91d..00000000000 --- a/packages/chains/chains/39797.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Energi Mainnet", - "chain": "NRG", - "rpc": [ - "https://energi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://nodeapi.energi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 - }, - "infoURL": "https://www.energi.world/", - "shortName": "nrg", - "chainId": 39797, - "networkId": 39797, - "slip44": 39797, - "testnet": false, - "slug": "energi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/39815.ts b/packages/chains/chains/39815.ts deleted file mode 100644 index 6c5bab9bd2a..00000000000 --- a/packages/chains/chains/39815.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OHO Mainnet", - "chain": "OHO", - "rpc": [ - "https://oho.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.oho.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "OHO", - "symbol": "OHO", - "decimals": 18 - }, - "infoURL": "https://oho.ai", - "shortName": "oho", - "chainId": 39815, - "networkId": 39815, - "icon": { - "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": { - "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "oho" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3999.ts b/packages/chains/chains/3999.ts deleted file mode 100644 index c2b910feea2..00000000000 --- a/packages/chains/chains/3999.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "YuanChain Mainnet", - "chain": "YCC", - "rpc": [ - "https://yuanchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.yuan.org/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "YCC", - "symbol": "YCC", - "decimals": 18 - }, - "infoURL": "https://www.yuan.org", - "shortName": "ycc", - "chainId": 3999, - "networkId": 3999, - "icon": { - "url": "ipfs://QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4", - "width": 96, - "height": 96, - "format": "png" - }, - "explorers": [ - { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "yuanchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4000.ts b/packages/chains/chains/4000.ts deleted file mode 100644 index 8d87ba2e6db..00000000000 --- a/packages/chains/chains/4000.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ozone Chain Mainnet", - "chain": "OZONE", - "rpc": [ - "https://ozone-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1.ozonechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 - }, - "infoURL": "https://ozonechain.io", - "shortName": "ozo", - "chainId": 4000, - "networkId": 4000, - "icon": { - "url": "ipfs://QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8", - "width": 1600, - "height": 1600, - "format": "png" - }, - "explorers": [ - { - "name": "OZONE Scan", - "url": "https://ozonescan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ozone-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4000003.ts b/packages/chains/chains/4000003.ts deleted file mode 100644 index 697caa68f3b..00000000000 --- a/packages/chains/chains/4000003.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AltLayer Zero Gas Network", - "chain": "ETH", - "rpc": [ - "https://altlayer-zero-gas-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://zero.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-zerogas", - "chainId": 4000003, - "networkId": 4000003, - "icon": { - "url": "ipfs://QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb", - "width": 1080, - "height": 1025, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://zero-explorer.alt.technology", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "altlayer-zero-gas-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4001.ts b/packages/chains/chains/4001.ts deleted file mode 100644 index 0072a850202..00000000000 --- a/packages/chains/chains/4001.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Peperium Chain Testnet", - "chain": "PERIUM", - "rpc": [ - "https://peperium-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.peperium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peperium Chain Testnet", - "symbol": "PERIUM", - "decimals": 18 - }, - "infoURL": "https://peperium.io", - "shortName": "PERIUM", - "chainId": 4001, - "networkId": 4001, - "icon": { - "url": "ipfs://Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf", - "width": 160, - "height": 160, - "format": "png" - }, - "explorers": [ - { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": { - "url": "ipfs://Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf", - "width": 160, - "height": 160, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "peperium-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4002.ts b/packages/chains/chains/4002.ts deleted file mode 100644 index 4f7c5a81e53..00000000000 --- a/packages/chains/chains/4002.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fantom Testnet", - "chain": "FTM", - "rpc": [ - "https://fantom-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://fantom-testnet.publicnode.com", - "https://rpc.testnet.fantom.network" - ], - "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, - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/fantom/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "explorers": [ - { - "name": "ftmscan", - "url": "https://testnet.ftmscan.com", - "icon": { - "url": "ipfs://QmRqbK449Fo9sJ3xMpkPbg6uV1weQj4yVV1xNMP9cdPmjf", - "width": 73, - "height": 73, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "fantom-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/404040.ts b/packages/chains/chains/404040.ts deleted file mode 100644 index f2892c6f1f6..00000000000 --- a/packages/chains/chains/404040.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tipboxcoin Mainnet", - "chain": "TPBX", - "icon": { - "url": "ipfs://QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh", - "width": 192, - "height": 192, - "format": "png" - }, - "rpc": [ - "https://tipboxcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXm", - "chainId": 404040, - "networkId": 404040, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "tipboxcoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4051.ts b/packages/chains/chains/4051.ts deleted file mode 100644 index 67c2f4be67a..00000000000 --- a/packages/chains/chains/4051.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bobaopera Testnet", - "chain": "Bobaopera Testnet", - "rpc": [ - "https://bobaopera-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.bobaopera.boba.network", - "wss://wss.testnet.bobaopera.boba.network", - "https://replica.testnet.bobaopera.boba.network", - "wss://replica-wss.testnet.bobaopera.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaoperaTestnet", - "chainId": 4051, - "networkId": 4051, - "explorers": [ - { - "name": "Bobaopera Testnet block explorer", - "url": "https://blockexplorer.testnet.bobaopera.boba.network", - "standard": "none" - } - ], - "testnet": true, - "slug": "bobaopera-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4061.ts b/packages/chains/chains/4061.ts deleted file mode 100644 index dfbfa8d5ce2..00000000000 --- a/packages/chains/chains/4061.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nahmii 3 Mainnet", - "chain": "Nahmii", - "rpc": [], - "status": "incubating", - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Mainnet", - "chainId": 4061, - "networkId": 4061, - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - }, - "testnet": false, - "slug": "nahmii-3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4062.ts b/packages/chains/chains/4062.ts deleted file mode 100644 index 8e7f8c61f36..00000000000 --- a/packages/chains/chains/4062.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nahmii 3 Testnet", - "chain": "Nahmii", - "rpc": [ - "https://nahmii-3-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ngeth.testnet.n3.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Testnet", - "chainId": 4062, - "networkId": 4062, - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "explorers": [ - { - "name": "Nahmii 3 Testnet Explorer", - "url": "https://explorer.testnet.n3.nahmii.io", - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.testnet.n3.nahmii.io" - } - ] - }, - "testnet": true, - "slug": "nahmii-3-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/408.ts b/packages/chains/chains/408.ts deleted file mode 100644 index 8d2232f9a8f..00000000000 --- a/packages/chains/chains/408.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Omega Mainnet", - "chain": "OmegaNetwork", - "shortName": "OmegaNetwork", - "chainId": 408, - "testnet": false, - "icon": { - "format": "png", - "url": "ipfs://bafkreig676zxfhwhcx5bvvvjxedx6ftr2wq4iiznrwm3c6ozrprbc4oxwm", - "height": 512, - "width": 512 - }, - "rpc": [ - "https://omega.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.omtch.com" - ], - "nativeCurrency": { - "name": "Omega Network Coin", - "symbol": "OMN", - "decimals": 18 - }, - "slug": "omega" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4090.ts b/packages/chains/chains/4090.ts deleted file mode 100644 index 08abf3a3d31..00000000000 --- a/packages/chains/chains/4090.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fastex Chain (Bahamut) Oasis Testnet", - "title": "Bahamut testnet Oasis", - "icon": { - "url": "ipfs://QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP", - "width": 200, - "height": 200, - "format": "png" - }, - "chain": "Fastex Chain (Bahamut)", - "rpc": [ - "https://fastex-chain-bahamut-oasis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.oasis.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.oasis.fastexchain.com" - ], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastexchain.com", - "shortName": "Oasis", - "chainId": 4090, - "networkId": 4090, - "explorers": [ - { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "fastex-chain-bahamut-oasis-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4096.ts b/packages/chains/chains/4096.ts deleted file mode 100644 index f261cf9ab6b..00000000000 --- a/packages/chains/chains/4096.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitindi Testnet", - "chain": "BNI", - "icon": { - "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", - "width": 60, - "height": 72, - "format": "png" - }, - "rpc": [ - "https://bitindi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.bitindi.org", - "https://testnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIt", - "chainId": 4096, - "networkId": 4096, - "explorers": [ - { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bitindi-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4099.ts b/packages/chains/chains/4099.ts deleted file mode 100644 index 0bd64c27742..00000000000 --- a/packages/chains/chains/4099.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitindi Mainnet", - "chain": "BNI", - "icon": { - "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", - "width": 60, - "height": 72, - "format": "png" - }, - "rpc": [ - "https://bitindi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - " https://rpc-mainnet.bitindi.org", - "https://mainnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIm", - "chainId": 4099, - "networkId": 4099, - "explorers": [ - { - "name": "Bitindi", - "url": "https://bitindiscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bitindi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4102.ts b/packages/chains/chains/4102.ts deleted file mode 100644 index debc4d525a2..00000000000 --- a/packages/chains/chains/4102.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AIOZ Network Testnet", - "chain": "AIOZ", - "icon": { - "url": "ipfs://QmRAGPFhvQiXgoJkui7WHajpKctGFrJNhHqzYdwcWt5V3Z", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://aioz-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eth-ds.testnet.aioz.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "testAIOZ", - "symbol": "AIOZ", - "decimals": 18 - }, - "infoURL": "https://aioz.network", - "shortName": "aioz-testnet", - "chainId": 4102, - "networkId": 4102, - "slip44": 60, - "explorers": [ - { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "aioz-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/411.ts b/packages/chains/chains/411.ts new file mode 100644 index 00000000000..f81e9f0434d --- /dev/null +++ b/packages/chains/chains/411.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Pepe Chain Mainnet", + "chain": "PC", + "status": "active", + "icon": { + "url": "ipfs://bafkreibjsc3gww3moti27za2hpyq552aevux3yv5y2ntdklksyr4v4uavy", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://pepe-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.pepe-chain.vip" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "PEPE", + "decimals": 18 + }, + "infoURL": "https://pepe-chain.vip", + "shortName": "pepe", + "chainId": 411, + "networkId": 411, + "explorers": [ + { + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "pepe-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4141.ts b/packages/chains/chains/4141.ts deleted file mode 100644 index 46b125d482e..00000000000 --- a/packages/chains/chains/4141.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tipboxcoin Testnet", - "chain": "TPBX", - "icon": { - "url": "ipfs://QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh", - "width": 192, - "height": 192, - "format": "png" - }, - "rpc": [ - "https://tipboxcoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXt", - "chainId": 4141, - "networkId": 4141, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "tipboxcoin-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/41500.ts b/packages/chains/chains/41500.ts deleted file mode 100644 index 3ff3d8b4956..00000000000 --- a/packages/chains/chains/41500.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Opulent-X BETA", - "chainId": 41500, - "shortName": "ox-beta", - "chain": "Opulent-X", - "networkId": 41500, - "nativeCurrency": { - "name": "Oxyn Gas", - "symbol": "OXYN", - "decimals": 18 - }, - "rpc": [ - "https://opulent-x-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://connect.opulent-x.com" - ], - "faucets": [], - "infoURL": "https://beta.opulent-x.com", - "explorers": [ - { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "opulent-x-beta" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4181.ts b/packages/chains/chains/4181.ts deleted file mode 100644 index b17febbef3c..00000000000 --- a/packages/chains/chains/4181.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PHI Network V1", - "chain": "PHI V1", - "rpc": [ - "https://phi-network-v1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.phi.network", - "https://rpc2.phi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 - }, - "infoURL": "https://phi.network", - "shortName": "PHIv1", - "chainId": 4181, - "networkId": 4181, - "icon": { - "url": "ipfs://bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "PHI Explorer", - "url": "https://explorer.phi.network", - "icon": { - "url": "ipfs://bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "phi-network-v1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4201.ts b/packages/chains/chains/4201.ts deleted file mode 100644 index b7dd8fdaada..00000000000 --- a/packages/chains/chains/4201.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "LUKSO Testnet", - "chain": "LUKSO Testnet", - "icon": { - "url": "ipfs://Qmeg9sFF5tAGi6MCx7YjtVHW6a23zqvHRK1xwzSdp9iE7z", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://lukso-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.lukso.network", - "wss://ws-rpc.testnet.lukso.network" - ], - "faucets": [ - "https://faucet.testnet.lukso.network" - ], - "nativeCurrency": { - "name": "TestLYX", - "symbol": "LYXt", - "decimals": 18 - }, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" - } - ], - "infoURL": "https://lukso.network", - "shortName": "lukso-testnet", - "chainId": 4201, - "networkId": 4201, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "testnet": true, - "slug": "lukso-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/420420.ts b/packages/chains/chains/420420.ts deleted file mode 100644 index 464043dfbdc..00000000000 --- a/packages/chains/chains/420420.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kekchain", - "chain": "kek", - "rpc": [ - "https://kekchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KEK", - "symbol": "KEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "KEK", - "chainId": 420420, - "networkId": 103090, - "icon": { - "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", - "width": 401, - "height": 401, - "format": "svg" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://mainnet-explorer.kekchain.com", - "icon": { - "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", - "width": 401, - "height": 401, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "kekchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/420666.ts b/packages/chains/chains/420666.ts deleted file mode 100644 index d58f97fb80d..00000000000 --- a/packages/chains/chains/420666.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Kekchain (kektest)", - "chain": "kek", - "rpc": [ - "https://kekchain-kektest.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tKEK", - "symbol": "tKEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "tKEK", - "chainId": 420666, - "networkId": 1, - "icon": { - "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", - "width": 401, - "height": 401, - "format": "svg" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.kekchain.com", - "icon": { - "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", - "width": 401, - "height": 401, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "kekchain-kektest" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42069.ts b/packages/chains/chains/42069.ts deleted file mode 100644 index bd7cc188574..00000000000 --- a/packages/chains/chains/42069.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "pegglecoin", - "chain": "42069", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 - }, - "infoURL": "https://teampeggle.com", - "shortName": "PC", - "chainId": 42069, - "networkId": 42069, - "testnet": false, - "slug": "pegglecoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42161.ts b/packages/chains/chains/42161.ts deleted file mode 100644 index d0776100e47..00000000000 --- a/packages/chains/chains/42161.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Arbitrum One", - "chainId": 42161, - "shortName": "arb1", - "chain": "ETH", - "networkId": 42161, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://arbitrum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", - "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", - "https://arb1.arbitrum.io/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Arbitrum Explorer", - "url": "https://explorer.arbitrum.io", - "standard": "EIP3091" - }, - { - "name": "Arbiscan", - "url": "https://arbiscan.io", - "standard": "EIP3091" - } - ], - "infoURL": "https://arbitrum.io", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - }, - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/arbitrum/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "testnet": false, - "slug": "arbitrum" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/421611.ts b/packages/chains/chains/421611.ts deleted file mode 100644 index f10c3da8113..00000000000 --- a/packages/chains/chains/421611.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Arbitrum Rinkeby", - "title": "Arbitrum Testnet Rinkeby", - "chainId": 421611, - "shortName": "arb-rinkeby", - "chain": "ETH", - "networkId": 421611, - "nativeCurrency": { - "name": "Arbitrum Rinkeby Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://arbitrum-rinkeby.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rinkeby.arbitrum.io/rpc" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], - "infoURL": "https://arbitrum.io", - "explorers": [ - { - "name": "arbiscan-testnet", - "url": "https://testnet.arbiscan.io", - "standard": "EIP3091" - }, - { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - }, - "testnet": true, - "slug": "arbitrum-rinkeby" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/421613.ts b/packages/chains/chains/421613.ts deleted file mode 100644 index 9dceb756e70..00000000000 --- a/packages/chains/chains/421613.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Arbitrum Goerli", - "title": "Arbitrum Goerli Rollup Testnet", - "chainId": 421613, - "shortName": "arb-goerli", - "chain": "ETH", - "networkId": 421613, - "nativeCurrency": { - "name": "Arbitrum Goerli Ether", - "symbol": "AGOR", - "decimals": 18 - }, - "rpc": [ - "https://arbitrum-goerli.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://arbitrum-goerli.infura.io/v3/${INFURA_API_KEY}", - "https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}", - "https://goerli-rollup.arbitrum.io/rpc/" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/", - "explorers": [ - { - "name": "Arbitrum Goerli Rollup Explorer", - "url": "https://goerli-rollup-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.arbitrum.io/" - } - ] - }, - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/arbitrum/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "testnet": true, - "slug": "arbitrum-goerli" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4216137055.ts b/packages/chains/chains/4216137055.ts deleted file mode 100644 index 80ead67130f..00000000000 --- a/packages/chains/chains/4216137055.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OneLedger Testnet Frankenstein", - "chain": "OLT", - "icon": { - "url": "ipfs://QmRhqq4Gp8G9w27ND3LeFW49o5PxcxrbJsqHbpBFtzEMfC", - "width": 225, - "height": 225, - "format": "png" - }, - "rpc": [ - "https://oneledger-testnet-frankenstein.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://frankenstein-rpc.oneledger.network" - ], - "faucets": [ - "https://frankenstein-faucet.oneledger.network" - ], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "frankenstein", - "chainId": 4216137055, - "networkId": 4216137055, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://frankenstein-explorer.oneledger.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "oneledger-testnet-frankenstein" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42170.ts b/packages/chains/chains/42170.ts deleted file mode 100644 index 144c9ac51ea..00000000000 --- a/packages/chains/chains/42170.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Arbitrum Nova", - "chainId": 42170, - "shortName": "arb-nova", - "chain": "ETH", - "networkId": 42170, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://arbitrum-nova.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://nova.arbitrum.io/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Arbitrum Nova Chain Explorer", - "url": "https://nova-explorer.arbitrum.io", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "infoURL": "https://arbitrum.io", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - }, - "testnet": false, - "slug": "arbitrum-nova" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42220.ts b/packages/chains/chains/42220.ts deleted file mode 100644 index 520c4a92d9e..00000000000 --- a/packages/chains/chains/42220.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Celo Mainnet", - "chainId": 42220, - "shortName": "celo", - "chain": "CELO", - "networkId": 42220, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://celo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://forno.celo.org", - "wss://forno.celo.org/ws" - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "infoURL": "https://docs.celo.org/", - "explorers": [ - { - "name": "Celoscan", - "url": "https://celoscan.io", - "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "celo" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42261.ts b/packages/chains/chains/42261.ts deleted file mode 100644 index 94a07f1afa5..00000000000 --- a/packages/chains/chains/42261.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oasis Emerald Testnet", - "chain": "Emerald", - "icon": { - "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://oasis-emerald-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.emerald.oasis.dev/", - "wss://testnet.emerald.oasis.dev/ws" - ], - "faucets": [ - "https://faucet.testnet.oasis.dev/" - ], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/emerald", - "shortName": "emerald-testnet", - "chainId": 42261, - "networkId": 42261, - "explorers": [ - { - "name": "Oasis Emerald Testnet Explorer", - "url": "https://testnet.explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "oasis-emerald-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42262.ts b/packages/chains/chains/42262.ts deleted file mode 100644 index a242eb34ef3..00000000000 --- a/packages/chains/chains/42262.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oasis Emerald", - "chain": "Emerald", - "icon": { - "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://oasis-emerald.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://emerald.oasis.dev", - "wss://emerald.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/emerald", - "shortName": "emerald", - "chainId": 42262, - "networkId": 42262, - "explorers": [ - { - "name": "Oasis Emerald Explorer", - "url": "https://explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "oasis-emerald" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4242.ts b/packages/chains/chains/4242.ts deleted file mode 100644 index 858f52f87fb..00000000000 --- a/packages/chains/chains/4242.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nexi Mainnet", - "chain": "Nexi", - "icon": { - "url": "ipfs://bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti", - "width": 512, - "height": 578, - "format": "png" - }, - "rpc": [ - "https://nexi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.chain.nexi.technology/", - "https://chain.nexilix.com", - "https://chain.nexi.evmnode.online" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nexi", - "symbol": "NEXI", - "decimals": 18 - }, - "infoURL": "https://www.nexi.technology/", - "shortName": "nexi", - "chainId": 4242, - "networkId": 4242, - "slip44": 2500, - "explorers": [ - { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "nexi" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/424242.ts b/packages/chains/chains/424242.ts deleted file mode 100644 index 58b3897c3fe..00000000000 --- a/packages/chains/chains/424242.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fastex Chain testnet", - "chain": "FTN", - "title": "Fastex Chain testnet", - "rpc": [ - "https://fastex-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.fastexchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastex.com", - "shortName": "fastexTestnet", - "chainId": 424242, - "networkId": 424242, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "fastex-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4281033.ts b/packages/chains/chains/4281033.ts deleted file mode 100644 index d96d5b304fe..00000000000 --- a/packages/chains/chains/4281033.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Worlds Caldera", - "chain": "WCal", - "rpc": [ - "https://worlds-caldera.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://worlds-test.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://caldera.xyz/", - "shortName": "worldscal", - "chainId": 4281033, - "networkId": 4281033, - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "explorers": [], - "testnet": true, - "slug": "worlds-caldera" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43110.ts b/packages/chains/chains/43110.ts deleted file mode 100644 index 73333551854..00000000000 --- a/packages/chains/chains/43110.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Athereum", - "chain": "ATH", - "rpc": [ - "https://athereum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ava.network:21015/ext/evm/rpc" - ], - "faucets": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], - "nativeCurrency": { - "name": "Athereum Ether", - "symbol": "ATH", - "decimals": 18 - }, - "infoURL": "https://athereum.ava.network", - "shortName": "avaeth", - "chainId": 43110, - "networkId": 43110, - "testnet": false, - "slug": "athereum" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43113.ts b/packages/chains/chains/43113.ts deleted file mode 100644 index 9234da5f51d..00000000000 --- a/packages/chains/chains/43113.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Avalanche Fuji Testnet", - "chain": "AVAX", - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/avalanche/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "rpc": [ - "https://avalanche-fuji.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://avalanche-fuji.infura.io/v3/${INFURA_API_KEY}", - "https://api.avax-test.network/ext/bc/C/rpc", - "https://avalanche-fuji-c-chain.publicnode.com" - ], - "faucets": [ - "https://faucet.avax.network/", - "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, - "explorers": [ - { - "name": "snowtrace", - "url": "https://testnet.snowtrace.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "avalanche-fuji" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43114.ts b/packages/chains/chains/43114.ts deleted file mode 100644 index bd9bf54c71c..00000000000 --- a/packages/chains/chains/43114.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Avalanche C-Chain", - "chain": "AVAX", - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/avalanche/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "rpc": [ - "https://avalanche.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://avalanche-mainnet.infura.io/v3/${INFURA_API_KEY}", - "https://api.avax.network/ext/bc/C/rpc", - "https://avalanche-c-chain.publicnode.com" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "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" - } - ], - "testnet": false, - "slug": "avalanche" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/431140.ts b/packages/chains/chains/431140.ts deleted file mode 100644 index e0f508bdc9a..00000000000 --- a/packages/chains/chains/431140.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Markr Go", - "chain": "Unified", - "icon": { - "url": "ipfs://QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh", - "width": 84, - "height": 84, - "format": "png" - }, - "rpc": [ - "https://markr-go.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.markr.io/ext/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "infoURL": "https://www.markr.io/", - "shortName": "markr-go", - "chainId": 431140, - "networkId": 431140, - "explorers": [], - "status": "incubating", - "testnet": false, - "slug": "markr-go" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43214913.ts b/packages/chains/chains/43214913.ts deleted file mode 100644 index 9c7704e5c3d..00000000000 --- a/packages/chains/chains/43214913.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "maistestsubnet", - "chain": "MAI", - "rpc": [ - "https://maistestsubnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "maistestsubnet", - "symbol": "MAI", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mais", - "chainId": 43214913, - "networkId": 43214913, - "explorers": [ - { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", - "standard": "none" - } - ], - "testnet": true, - "slug": "maistestsubnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/432201.ts b/packages/chains/chains/432201.ts deleted file mode 100644 index 8c339596b84..00000000000 --- a/packages/chains/chains/432201.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dexalot Subnet Testnet", - "chain": "DEXALOT", - "icon": { - "url": "ipfs://QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://dexalot-subnet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/dexalot/testnet/rpc" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=dexalot" - ], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "dexalot-testnet", - "chainId": 432201, - "networkId": 432201, - "explorers": [ - { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/dexalot", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dexalot-subnet-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/432204.ts b/packages/chains/chains/432204.ts deleted file mode 100644 index 7e21eab5233..00000000000 --- a/packages/chains/chains/432204.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dexalot Subnet", - "chain": "DEXALOT", - "icon": { - "url": "ipfs://QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://dexalot-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/dexalot/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "dexalot", - "chainId": 432204, - "networkId": 432204, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dexalot-subnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4328.ts b/packages/chains/chains/4328.ts deleted file mode 100644 index c834abd6d22..00000000000 --- a/packages/chains/chains/4328.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bobafuji Testnet", - "chain": "Bobafuji Testnet", - "rpc": [ - "https://bobafuji-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.avax.boba.network", - "wss://wss.testnet.avax.boba.network", - "https://replica.testnet.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaFujiTestnet", - "chainId": 4328, - "networkId": 4328, - "explorers": [ - { - "name": "Bobafuji Testnet block explorer", - "url": "https://blockexplorer.testnet.avax.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - }, - "testnet": true, - "slug": "bobafuji-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43288.ts b/packages/chains/chains/43288.ts deleted file mode 100644 index 93eac31ce16..00000000000 --- a/packages/chains/chains/43288.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Boba Avax", - "chain": "Boba Avax", - "rpc": [ - "https://boba-avax.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://avax.boba.network", - "wss://wss.avax.boba.network", - "https://replica.avax.boba.network", - "wss://replica-wss.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://docs.boba.network/for-developers/network-avalanche", - "shortName": "bobaavax", - "chainId": 43288, - "networkId": 43288, - "explorers": [ - { - "name": "Boba Avax Explorer", - "url": "https://blockexplorer.avax.boba.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "boba-avax" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4444.ts b/packages/chains/chains/4444.ts deleted file mode 100644 index ffd8ae8a6d9..00000000000 --- a/packages/chains/chains/4444.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Htmlcoin Mainnet", - "chain": "mainnet", - "rpc": [ - "https://htmlcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://janus.htmlcoin.com/api/" - ], - "faucets": [ - "https://gruvin.me/htmlcoin" - ], - "nativeCurrency": { - "name": "Htmlcoin", - "symbol": "HTML", - "decimals": 8 - }, - "infoURL": "https://htmlcoin.com", - "shortName": "html", - "chainId": 4444, - "networkId": 4444, - "icon": { - "url": "ipfs://QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2", - "width": 1000, - "height": 1000, - "format": "png" - }, - "status": "active", - "explorers": [ - { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": { - "url": "ipfs://QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2", - "width": 1000, - "height": 1000, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "htmlcoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/44444.ts b/packages/chains/chains/44444.ts deleted file mode 100644 index 6e53e66cb21..00000000000 --- a/packages/chains/chains/44444.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Frenchain", - "chain": "fren", - "rpc": [ - "https://frenchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-02.frenscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "FREN", - "symbol": "FREN", - "decimals": 18 - }, - "infoURL": "https://frenchain.app", - "shortName": "FREN", - "chainId": 44444, - "networkId": 44444, - "icon": { - "url": "ipfs://QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4", - "width": 128, - "height": 128, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://frenscan.io", - "icon": { - "url": "ipfs://QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4", - "width": 128, - "height": 128, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "frenchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/444900.ts b/packages/chains/chains/444900.ts deleted file mode 100644 index 2176804bc52..00000000000 --- a/packages/chains/chains/444900.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Weelink Testnet", - "chain": "WLK", - "rpc": [ - "https://weelink-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://weelinknode1c.gw002.oneitfarm.com" - ], - "faucets": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], - "nativeCurrency": { - "name": "Weelink Chain Token", - "symbol": "tWLK", - "decimals": 18 - }, - "infoURL": "https://weelink.cloud", - "shortName": "wlkt", - "chainId": 444900, - "networkId": 444900, - "explorers": [ - { - "name": "weelink-testnet", - "url": "https://weelink.cloud/#/blockView/overview", - "standard": "none" - } - ], - "testnet": true, - "slug": "weelink-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/44787.ts b/packages/chains/chains/44787.ts deleted file mode 100644 index c06668bba9a..00000000000 --- a/packages/chains/chains/44787.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Celo Alfajores Testnet", - "chainId": 44787, - "shortName": "ALFA", - "chain": "CELO", - "networkId": 44787, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://celo-alfajores-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "wss://alfajores-forno.celo-testnet.org/ws", - "https://alfajores-forno.celo-testnet.org" - ], - "faucets": [ - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet", - "https://celo.org/developers/faucet" - ], - "infoURL": "https://docs.celo.org/", - "explorers": [ - { - "name": "Celoscan", - "url": "https://alfajores.celoscan.io/", - "standard": "EIP3091" - }, - { - "name": "Celoscan", - "url": "https://celoscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "celo-alfajores-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/45000.ts b/packages/chains/chains/45000.ts deleted file mode 100644 index f7af28386d0..00000000000 --- a/packages/chains/chains/45000.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Autobahn Network", - "chain": "TXL", - "rpc": [ - "https://autobahn-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.autobahn.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "TXL", - "symbol": "TXL", - "decimals": 18 - }, - "infoURL": "https://autobahn.network", - "shortName": "AutobahnNetwork", - "chainId": 45000, - "networkId": 45000, - "icon": { - "url": "ipfs://QmZP19pbqTco4vaP9siduLWP8pdYArFK3onfR55tvjr12s", - "width": 489, - "height": 489, - "format": "png" - }, - "explorers": [ - { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": { - "url": "ipfs://QmZP19pbqTco4vaP9siduLWP8pdYArFK3onfR55tvjr12s", - "width": 489, - "height": 489, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "autobahn-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/46688.ts b/packages/chains/chains/46688.ts deleted file mode 100644 index 51efadb9a6a..00000000000 --- a/packages/chains/chains/46688.ts +++ /dev/null @@ -1,50 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fusion Testnet", - "chain": "FSN", - "icon": { - "url": "ipfs://QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth", - "width": 31, - "height": 31, - "format": "svg" - }, - "rpc": [ - "https://fusion-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.fusionnetwork.io", - "wss://testnet.fusionnetwork.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Fusion", - "symbol": "T-FSN", - "decimals": 18 - }, - "infoURL": "https://fusion.org", - "shortName": "tfsn", - "chainId": 46688, - "networkId": 46688, - "slip44": 288, - "explorers": [ - { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": { - "url": "ipfs://QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd", - "width": 48, - "height": 51, - "format": "svg" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "fusion-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4689.ts b/packages/chains/chains/4689.ts deleted file mode 100644 index 5da2878c128..00000000000 --- a/packages/chains/chains/4689.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IoTeX Network Mainnet", - "chain": "iotex.io", - "rpc": [ - "https://iotex-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://babel-api.mainnet.iotex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-mainnet", - "chainId": 4689, - "networkId": 4689, - "explorers": [ - { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - } - ], - "icon": { - "url": "ipfs://QmQKHQrvtyUC5b5B76ke5GPTGXoGTVCubXS6gHgzCAswKo", - "width": 250, - "height": 250, - "format": "png" - }, - "testnet": false, - "slug": "iotex-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4690.ts b/packages/chains/chains/4690.ts deleted file mode 100644 index 34b56daee86..00000000000 --- a/packages/chains/chains/4690.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IoTeX Network Testnet", - "chain": "iotex.io", - "rpc": [ - "https://iotex-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://babel-api.testnet.iotex.io" - ], - "faucets": [ - "https://faucet.iotex.io/" - ], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-testnet", - "chainId": 4690, - "networkId": 4690, - "explorers": [ - { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - } - ], - "icon": { - "url": "ipfs://QmQKHQrvtyUC5b5B76ke5GPTGXoGTVCubXS6gHgzCAswKo", - "width": 250, - "height": 250, - "format": "png" - }, - "testnet": true, - "slug": "iotex-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/471100.ts b/packages/chains/chains/471100.ts deleted file mode 100644 index 6af97b22e6c..00000000000 --- a/packages/chains/chains/471100.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Patex Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://patex-sepolia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test-rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://patex.io/", - "shortName": "psep", - "chainId": 471100, - "networkId": 471100, - "testnet": true, - "slug": "patex-sepolia-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/474142.ts b/packages/chains/chains/474142.ts deleted file mode 100644 index d22f7abcb09..00000000000 --- a/packages/chains/chains/474142.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OpenChain Mainnet", - "chain": "OpenChain", - "rpc": [ - "https://openchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" - ], - "faucets": [], - "nativeCurrency": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 - }, - "infoURL": "https://www.openchain.live", - "shortName": "oc", - "chainId": 474142, - "networkId": 474142, - "explorers": [ - { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - } - ], - "testnet": false, - "slug": "openchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4759.ts b/packages/chains/chains/4759.ts deleted file mode 100644 index fc666a4ffdf..00000000000 --- a/packages/chains/chains/4759.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MEVerse Chain Testnet", - "chain": "MEVerse", - "rpc": [ - "https://meverse-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.meversetestnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "TESTMEV", - "chainId": 4759, - "networkId": 4759, - "icon": { - "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", - "width": 800, - "height": 800, - "format": "png" - }, - "explorers": [ - { - "name": "MEVerse Chain Testnet Explorer", - "url": "https://testnet.meversescan.io", - "standard": "none", - "icon": { - "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", - "width": 800, - "height": 800, - "format": "png" - } - } - ], - "testnet": true, - "slug": "meverse-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4777.ts b/packages/chains/chains/4777.ts deleted file mode 100644 index b7727ffada8..00000000000 --- a/packages/chains/chains/4777.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BlackFort Exchange Network Testnet", - "chain": "TBXN", - "rpc": [ - "https://blackfort-exchange-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Testnet Token", - "symbol": "TBXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "TBXN", - "chainId": 4777, - "networkId": 4777, - "icon": { - "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", - "width": 1968, - "height": 1968, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.blackfort.network", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "blackfort-exchange-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/47805.ts b/packages/chains/chains/47805.ts deleted file mode 100644 index 073e49f8464..00000000000 --- a/packages/chains/chains/47805.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "REI Network", - "chain": "REI", - "rpc": [ - "https://rei-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.rei.network", - "wss://rpc.rei.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "REI", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://rei.network/", - "shortName": "REI", - "chainId": 47805, - "networkId": 47805, - "explorers": [ - { - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "rei-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/486217935.ts b/packages/chains/chains/486217935.ts deleted file mode 100644 index 5e6f1dcf3cd..00000000000 --- a/packages/chains/chains/486217935.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gather Devnet Network", - "chain": "GTH", - "rpc": [ - "https://gather-devnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://devnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "dGTH", - "chainId": 486217935, - "networkId": 486217935, - "explorers": [ - { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "gather-devnet-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49049.ts b/packages/chains/chains/49049.ts deleted file mode 100644 index 232529d36f5..00000000000 --- a/packages/chains/chains/49049.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Wireshape Floripa Testnet", - "title": "Wireshape Floripa Testnet", - "chain": "Wireshape", - "icon": { - "url": "ipfs://QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx", - "width": 1280, - "height": 1280, - "format": "png" - }, - "rpc": [ - "https://wireshape-floripa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-floripa.wireshape.org", - "https://wireshape-floripa-testnet.rpc.thirdweb.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "WIRE", - "symbol": "WIRE", - "decimals": 18 - }, - "infoURL": "https://wireshape.org", - "shortName": "floripa", - "chainId": 49049, - "networkId": 49049, - "explorers": [ - { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "wireshape-floripa-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49088.ts b/packages/chains/chains/49088.ts deleted file mode 100644 index c29df6c93ff..00000000000 --- a/packages/chains/chains/49088.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bifrost Testnet", - "title": "The Bifrost Testnet network", - "chain": "BFC", - "rpc": [ - "https://bifrost-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://public-01.testnet.thebifrost.io/rpc", - "https://public-02.testnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "tbfc", - "chainId": 49088, - "networkId": 49088, - "icon": { - "url": "ipfs://QmcHvn2Wq91ULyEH5s3uHjosX285hUgyJHwggFJUd3L5uh", - "width": 128, - "height": 128, - "format": "png" - }, - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.testnet.thebifrost.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bifrost-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4918.ts b/packages/chains/chains/4918.ts deleted file mode 100644 index 2cfed05a12d..00000000000 --- a/packages/chains/chains/4918.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Venidium Testnet", - "chain": "XVM", - "rpc": [ - "https://venidium-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-evm-testnet.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "txvm", - "chainId": 4918, - "networkId": 4918, - "explorers": [ - { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "venidium-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4919.ts b/packages/chains/chains/4919.ts deleted file mode 100644 index a0b1cd91a64..00000000000 --- a/packages/chains/chains/4919.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Venidium Mainnet", - "chain": "XVM", - "icon": { - "url": "ipfs://bafkreiaplwlym5g27jm4mjhotfqq6al2cxp3fnkmzdusqjg7wnipq5wn2e", - "width": 1000, - "height": 1000, - "format": "png" - }, - "rpc": [ - "https://venidium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4919, - "networkId": 4919, - "explorers": [ - { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "venidium" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49797.ts b/packages/chains/chains/49797.ts deleted file mode 100644 index 0b121d77beb..00000000000 --- a/packages/chains/chains/49797.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Energi Testnet", - "chain": "NRG", - "rpc": [ - "https://energi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://nodeapi.test.energi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 - }, - "infoURL": "https://www.energi.world/", - "shortName": "tnrg", - "chainId": 49797, - "networkId": 49797, - "slip44": 49797, - "testnet": true, - "slug": "energi-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4999.ts b/packages/chains/chains/4999.ts deleted file mode 100644 index 5f9f941d48a..00000000000 --- a/packages/chains/chains/4999.ts +++ /dev/null @@ -1,51 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BlackFort Exchange Network", - "chain": "BXN", - "rpc": [ - "https://blackfort-exchange-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.blackfort.network/rpc", - "https://mainnet-1.blackfort.network/rpc", - "https://mainnet-2.blackfort.network/rpc", - "https://mainnet-3.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Token", - "symbol": "BXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "BXN", - "chainId": 4999, - "networkId": 4999, - "icon": { - "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", - "width": 1968, - "height": 1968, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "blackfort-exchange-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/500.ts b/packages/chains/chains/500.ts deleted file mode 100644 index bef960eabd3..00000000000 --- a/packages/chains/chains/500.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Camino C-Chain", - "chain": "CAM", - "rpc": [ - "https://camino-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.camino.network/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.network/", - "shortName": "Camino", - "chainId": 500, - "networkId": 1000, - "icon": { - "url": "ipfs://QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", - "width": 768, - "height": 768, - "format": "png" - }, - "explorers": [ - { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } - ], - "testnet": false, - "slug": "camino-c-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5000.ts b/packages/chains/chains/5000.ts deleted file mode 100644 index aa25d8e87b3..00000000000 --- a/packages/chains/chains/5000.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mantle", - "chain": "ETH", - "icon": { - "url": "ipfs://QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o", - "width": 225, - "height": 225, - "format": "png" - }, - "rpc": [ - "https://mantle.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.mantle.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Mantle", - "symbol": "MNT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle", - "chainId": 5000, - "networkId": 5000, - "explorers": [ - { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.mantle.xyz" - } - ] - }, - "testnet": false, - "slug": "mantle" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/50001.ts b/packages/chains/chains/50001.ts deleted file mode 100644 index 763fd41c61b..00000000000 --- a/packages/chains/chains/50001.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Liveplex OracleEVM", - "chain": "Liveplex OracleEVM Network", - "rpc": [ - "https://liveplex-oracleevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.oracle.liveplex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "LOE", - "chainId": 50001, - "networkId": 50001, - "explorers": [], - "testnet": false, - "slug": "liveplex-oracleevm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5001.ts b/packages/chains/chains/5001.ts deleted file mode 100644 index ff05d6849d6..00000000000 --- a/packages/chains/chains/5001.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mantle Testnet", - "chain": "ETH", - "rpc": [ - "https://mantle-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.mantle.xyz" - ], - "faucets": [ - "https://faucet.testnet.mantle.xyz" - ], - "nativeCurrency": { - "name": "Testnet Mantle", - "symbol": "MNT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle-testnet", - "chainId": 5001, - "networkId": 5001, - "explorers": [ - { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "mantle-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5002.ts b/packages/chains/chains/5002.ts deleted file mode 100644 index 1b88681d316..00000000000 --- a/packages/chains/chains/5002.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Treasurenet Mainnet Alpha", - "chain": "Treasurenet Mainnet Alpha", - "icon": { - "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", - "width": 1844, - "height": 1920, - "format": "png" - }, - "rpc": [ - "https://treasurenet-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node0.treasurenet.io", - "https://node1.treasurenet.io", - "https://node2.treasurenet.io", - "https://node3.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.treasurenet.io", - "shortName": "treasurenet", - "chainId": 5002, - "networkId": 5002, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.treasurenet.io", - "icon": { - "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", - "width": 1844, - "height": 1920, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "treasurenet-alpha" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/50021.ts b/packages/chains/chains/50021.ts deleted file mode 100644 index 53580dd0387..00000000000 --- a/packages/chains/chains/50021.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "GTON Testnet", - "chain": "GTON Testnet", - "rpc": [ - "https://gton-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "tgton", - "chainId": 50021, - "networkId": 50021, - "explorers": [ - { - "name": "GTON Testnet Network Explorer", - "url": "https://explorer.testnet.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3" - }, - "testnet": true, - "slug": "gton-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5005.ts b/packages/chains/chains/5005.ts deleted file mode 100644 index 51969663700..00000000000 --- a/packages/chains/chains/5005.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Treasurenet Testnet", - "chain": "Treasurenet Testnet", - "icon": { - "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", - "width": 1844, - "height": 1920, - "format": "png" - }, - "rpc": [ - "https://treasurenet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node0.testnet.treasurenet.io", - "https://node1.testnet.treasurenet.io", - "https://node2.testnet.treasurenet.io", - "https://node3.testnet.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.testnet.treasurenet.io", - "shortName": "tntest", - "chainId": 5005, - "networkId": 5005, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.testnet.treasurenet.io", - "icon": { - "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", - "width": 1844, - "height": 1920, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "treasurenet-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/501.ts b/packages/chains/chains/501.ts deleted file mode 100644 index 0c1b34a1c03..00000000000 --- a/packages/chains/chains/501.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Columbus Test Network", - "chain": "CAM", - "rpc": [ - "https://columbus-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://columbus.camino.network/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.network/", - "shortName": "Columbus", - "chainId": 501, - "networkId": 1001, - "icon": { - "url": "ipfs://QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", - "width": 768, - "height": 768, - "format": "png" - }, - "explorers": [ - { - "name": "blockexplorer", - "url": "https://suite.camino.network/explorer", - "standard": "none" - } - ], - "testnet": true, - "slug": "columbus-test-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/503129905.ts b/packages/chains/chains/503129905.ts deleted file mode 100644 index 973b14be9c9..00000000000 --- a/packages/chains/chains/503129905.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nebula Staging", - "chain": "staging-faint-slimy-achird", - "rpc": [ - "https://nebula-staging.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", - "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-staging", - "chainId": 503129905, - "networkId": 503129905, - "explorers": [ - { - "name": "nebula", - "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", - "icon": { - "url": "ipfs://QmfQkfmQuoUUUKwF1yCcrPEzFcWLaqNyiSv5YMcSj6zs74", - "width": 500, - "height": 500, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "nebula-staging" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/51178.ts b/packages/chains/chains/51178.ts deleted file mode 100644 index d859b380482..00000000000 --- a/packages/chains/chains/51178.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Opside Testnet Pre-Alpha", - "chain": "ETH", - "rpc": [ - "https://opside-testnet-pre-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://pre-alpha-us-http-geth.opside.network", - "https://pre-alpha-hk-http-geth.opside.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "IDE Test Token", - "symbol": "IDE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://opsi.de/", - "shortName": "Opside-Testnet", - "chainId": 51178, - "networkId": 51178, - "icon": { - "url": "ipfs://QmZnE2ygPL2ZGuzHGvFCHmrqxwdurrhz3K1yPnwLzKbgay", - "width": 401, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "OpsideTestnetInfo", - "url": "https://pre-alpha.opside.info", - "icon": { - "url": "ipfs://QmZnE2ygPL2ZGuzHGvFCHmrqxwdurrhz3K1yPnwLzKbgay", - "width": 401, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "opside-testnet-pre-alpha" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/512.ts b/packages/chains/chains/512.ts deleted file mode 100644 index dac78127848..00000000000 --- a/packages/chains/chains/512.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Double-A Chain Mainnet", - "chain": "AAC", - "rpc": [ - "https://double-a-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.acuteangle.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aac", - "chainId": 512, - "networkId": 512, - "slip44": 1512, - "explorers": [ - { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } - ], - "icon": { - "url": "ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", - "width": 512, - "height": 512, - "format": "png" - }, - "testnet": false, - "slug": "double-a-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/512512.ts b/packages/chains/chains/512512.ts deleted file mode 100644 index 2c4d512c551..00000000000 --- a/packages/chains/chains/512512.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CMP-Testnet", - "chain": "CMP", - "rpc": [ - "https://cmp-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://galaxy.block.caduceus.foundation", - "wss://galaxy.block.caduceus.foundation" - ], - "faucets": [ - "https://dev.caduceus.foundation/testNetwork" - ], - "nativeCurrency": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp", - "chainId": 512512, - "networkId": 512512, - "explorers": [ - { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", - "standard": "none" - } - ], - "testnet": true, - "slug": "cmp-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/513.ts b/packages/chains/chains/513.ts deleted file mode 100644 index b661b76e34d..00000000000 --- a/packages/chains/chains/513.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Double-A Chain Testnet", - "chain": "AAC", - "icon": { - "url": "ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://double-a-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.acuteangle.com" - ], - "faucets": [ - "https://scan-testnet.acuteangle.com/faucet" - ], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aact", - "chainId": 513, - "networkId": 513, - "explorers": [ - { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "double-a-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/513100.ts b/packages/chains/chains/513100.ts deleted file mode 100644 index 71d5d541de8..00000000000 --- a/packages/chains/chains/513100.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ethereum Fair", - "chainId": 513100, - "networkId": 513100, - "shortName": "ethf", - "chain": "ETHF", - "nativeCurrency": { - "name": "EthereumFair", - "symbol": "ETHF", - "decimals": 18 - }, - "rpc": [ - "https://ethereum-fair.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.etherfair.org" - ], - "faucets": [], - "explorers": [ - { - "name": "etherfair", - "url": "https://www.oklink.com/ethf", - "standard": "EIP3091" - } - ], - "infoURL": "https://etherfair.org", - "testnet": false, - "slug": "ethereum-fair" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/516.ts b/packages/chains/chains/516.ts deleted file mode 100644 index 533ce622d44..00000000000 --- a/packages/chains/chains/516.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gear Zero Network Mainnet", - "chain": "GearZero", - "rpc": [ - "https://gear-zero-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://gzn.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/mainnet", - "shortName": "gz-mainnet", - "chainId": 516, - "networkId": 516, - "slip44": 516, - "explorers": [], - "testnet": false, - "slug": "gear-zero-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5165.ts b/packages/chains/chains/5165.ts deleted file mode 100644 index 300d1dc5153..00000000000 --- a/packages/chains/chains/5165.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fastex Chain (Bahamut)", - "title": "Bahamut mainnet Sahara", - "chain": "Fastex Chain (Bahamut)", - "icon": { - "url": "ipfs://QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [ - "https://fastex-chain-bahamut.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.sahara.bahamutchain.com", - "https://rpc2.sahara.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "shortName": "ftn", - "infoURL": "https://fastexchain.com", - "chainId": 5165, - "networkId": 5165, - "explorers": [ - { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "fastex-chain-bahamut" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5167003.ts b/packages/chains/chains/5167003.ts deleted file mode 100644 index 7ea6ffd09bd..00000000000 --- a/packages/chains/chains/5167003.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MXC Wannsee zkEVM Testnet", - "chain": "MXC zkEVM", - "icon": { - "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", - "width": 159, - "height": 159, - "format": "png" - }, - "rpc": [ - "https://mxc-wannsee-zkevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://wannsee-rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC Wannsee zkEVM Testnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://wannsee.mxc.com/docs/intro", - "shortName": "MXC", - "chainId": 5167003, - "networkId": 5167003, - "explorers": [ - { - "name": "MXC Wannsee zkEVM Testnet", - "url": "https://wannsee-explorer.mxc.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "mxc-wannsee-zkevm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/51712.ts b/packages/chains/chains/51712.ts deleted file mode 100644 index bcbf554acbd..00000000000 --- a/packages/chains/chains/51712.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sardis Mainnet", - "chain": "SRDX", - "icon": { - "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://sardis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXm", - "chainId": 51712, - "networkId": 51712, - "explorers": [ - { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "sardis" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5177.ts b/packages/chains/chains/5177.ts deleted file mode 100644 index f0de177e6de..00000000000 --- a/packages/chains/chains/5177.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TLChain Network Mainnet", - "chain": "TLC", - "icon": { - "url": "ipfs://QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3", - "width": 2048, - "height": 2048, - "format": "png" - }, - "rpc": [ - "https://tlchain-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.tlxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 - }, - "infoURL": "https://tlchain.network/", - "shortName": "tlc", - "chainId": 5177, - "networkId": 5177, - "explorers": [ - { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "tlchain-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5197.ts b/packages/chains/chains/5197.ts deleted file mode 100644 index dc409c7562b..00000000000 --- a/packages/chains/chains/5197.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "EraSwap Mainnet", - "chain": "ESN", - "icon": { - "url": "ipfs://QmV1wZ1RVXeD7216aiVBpLkbBBHWNuoTvcSzpVQsqi2uaH", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [ - "https://eraswap.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.eraswap.network", - "https://rpc-mumbai.mainnet.eraswap.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "EraSwap", - "symbol": "ES", - "decimals": 18 - }, - "infoURL": "https://eraswap.info/", - "shortName": "es", - "chainId": 5197, - "networkId": 5197, - "testnet": false, - "slug": "eraswap" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/520.ts b/packages/chains/chains/520.ts deleted file mode 100644 index da127642b70..00000000000 --- a/packages/chains/chains/520.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "XT Smart Chain Mainnet", - "chain": "XSC", - "icon": { - "url": "ipfs://QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s", - "width": 98, - "height": 96, - "format": "png" - }, - "rpc": [ - "https://xt-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://datarpc1.xsc.pub", - "https://datarpc2.xsc.pub", - "https://datarpc3.xsc.pub" - ], - "faucets": [ - "https://xsc.pub/faucet" - ], - "nativeCurrency": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 - }, - "infoURL": "https://xsc.pub/", - "shortName": "xt", - "chainId": 520, - "networkId": 1024, - "explorers": [ - { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "xt-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5234.ts b/packages/chains/chains/5234.ts deleted file mode 100644 index c38ecc9d80a..00000000000 --- a/packages/chains/chains/5234.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Humanode Mainnet", - "chain": "HMND", - "rpc": [ - "https://humanode.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://explorer-rpc-http.mainnet.stages.humanode.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "HMND", - "symbol": "HMND", - "decimals": 18 - }, - "infoURL": "https://humanode.io", - "shortName": "hmnd", - "chainId": 5234, - "networkId": 5234, - "explorers": [], - "testnet": false, - "slug": "humanode" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/529.ts b/packages/chains/chains/529.ts deleted file mode 100644 index 83b83e561ea..00000000000 --- a/packages/chains/chains/529.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Firechain Mainnet", - "chain": "FIRE", - "icon": { - "url": "ipfs://QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://firechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.rpc1.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "fire", - "chainId": 529, - "networkId": 529, - "explorers": [], - "status": "incubating", - "testnet": false, - "slug": "firechain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/530.ts b/packages/chains/chains/530.ts deleted file mode 100644 index cde13f42369..00000000000 --- a/packages/chains/chains/530.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "F(x)Core Mainnet Network", - "chain": "Fxcore", - "rpc": [ - "https://f-x-core-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://fx-json-web3.functionx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 - }, - "infoURL": "https://functionx.io/", - "shortName": "FxCore", - "chainId": 530, - "networkId": 530, - "icon": { - "url": "ipfs://bafkreifrf2iq3k3dqfbvp3pacwuxu33up3usmrhojt5ielyfty7xkixu3i", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "f-x-core-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5315.ts b/packages/chains/chains/5315.ts deleted file mode 100644 index 9649e241939..00000000000 --- a/packages/chains/chains/5315.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Uzmi Network Mainnet", - "chain": "UZMI", - "rpc": [ - "https://uzmi-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://network.uzmigames.com.br/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 - }, - "infoURL": "https://uzmigames.com.br/", - "shortName": "UZMI", - "chainId": 5315, - "networkId": 5315, - "testnet": false, - "slug": "uzmi-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534.ts b/packages/chains/chains/534.ts deleted file mode 100644 index 3d36fe138be..00000000000 --- a/packages/chains/chains/534.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Candle", - "chain": "Candle", - "rpc": [ - "https://candle.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://candle-rpc.com/", - "https://rpc.cndlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 - }, - "infoURL": "https://candlelabs.org/", - "shortName": "CNDL", - "chainId": 534, - "networkId": 534, - "slip44": 674, - "explorers": [ - { - "name": "candleexplorer", - "url": "https://candleexplorer.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "candle" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534351.ts b/packages/chains/chains/534351.ts deleted file mode 100644 index 554fa5042bd..00000000000 --- a/packages/chains/chains/534351.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Scroll Sepolia Testnet", - "chain": "ETH", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-sepolia", - "chainId": 534351, - "networkId": 534351, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - }, - "testnet": true, - "slug": "scroll-sepolia-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534352.ts b/packages/chains/chains/534352.ts deleted file mode 100644 index 46d42062aac..00000000000 --- a/packages/chains/chains/534352.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Scroll", - "chain": "ETH", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr", - "chainId": 534352, - "networkId": 534352, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - }, - "testnet": false, - "slug": "scroll" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534353.ts b/packages/chains/chains/534353.ts deleted file mode 100644 index 27a8ff7c923..00000000000 --- a/packages/chains/chains/534353.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Scroll Alpha Testnet", - "chain": "ETH", - "status": "active", - "rpc": [ - "https://scroll-alpha-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://alpha-rpc.scroll.io/l2" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-alpha", - "chainId": 534353, - "networkId": 534353, - "explorers": [ - { - "name": "Scroll Alpha Testnet Block Explorer", - "url": "https://blockscout.scroll.io", - "standard": "EIP3091" - }, - { - "name": "Scroll Alpha Testnet Block Explorer", - "url": "https://scrollscan.co", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [] - }, - "testnet": true, - "slug": "scroll-alpha-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534849.ts b/packages/chains/chains/534849.ts deleted file mode 100644 index 6f67542353a..00000000000 --- a/packages/chains/chains/534849.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shinarium Beta", - "chain": "Shinarium", - "rpc": [ - "https://shinarium-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.shinarium.org" - ], - "faucets": [ - "https://faucet.shinarium.org" - ], - "nativeCurrency": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 - }, - "infoURL": "https://shinarium.org", - "shortName": "shi", - "chainId": 534849, - "networkId": 534849, - "explorers": [ - { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "shinarium-beta" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/535037.ts b/packages/chains/chains/535037.ts deleted file mode 100644 index a8495739331..00000000000 --- a/packages/chains/chains/535037.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BeanEco SmartChain", - "title": "BESC Mainnet", - "chain": "BESC", - "rpc": [ - "https://beaneco-smartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.bescscan.io" - ], - "faucets": [ - "faucet.bescscan.ion" - ], - "nativeCurrency": { - "name": "BeanEco SmartChain", - "symbol": "BESC", - "decimals": 18 - }, - "infoURL": "besceco.finance", - "shortName": "BESC", - "chainId": 535037, - "networkId": 535037, - "explorers": [ - { - "name": "bescscan", - "url": "https://Bescscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "beaneco-smartchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/53935.ts b/packages/chains/chains/53935.ts deleted file mode 100644 index 433eb414192..00000000000 --- a/packages/chains/chains/53935.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DFK Chain", - "chain": "DFK", - "icon": { - "url": "ipfs://QmQB48m15TzhUFrmu56QCRQjkrkgUaKfgCmKE8o3RzmuPJ", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://dfk-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 - }, - "infoURL": "https://defikingdoms.com", - "shortName": "DFK", - "chainId": 53935, - "networkId": 53935, - "explorers": [ - { - "name": "ethernal", - "url": "https://explorer.dfkchain.com", - "icon": { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width": 1000, - "height": 1628, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "dfk-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/54211.ts b/packages/chains/chains/54211.ts deleted file mode 100644 index dcc53a0e12d..00000000000 --- a/packages/chains/chains/54211.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Haqq Chain Testnet", - "chain": "TestEdge2", - "rpc": [ - "https://haqq-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.eth.testedge2.haqq.network" - ], - "faucets": [ - "https://testedge2.haqq.network" - ], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLMT", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLMT", - "chainId": 54211, - "networkId": 54211, - "explorers": [ - { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "haqq-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/54321.ts b/packages/chains/chains/54321.ts deleted file mode 100644 index 6665cd6185c..00000000000 --- a/packages/chains/chains/54321.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Toronet Testnet", - "chain": "Toronet", - "icon": { - "url": "ipfs://QmciSvgLatP6jhgdazuiyD3fSrhipfAN7wC943v1qxcrpv", - "width": 846, - "height": 733, - "format": "png" - }, - "rpc": [ - "https://toronet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://testnet.toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "ToronetTestnet", - "chainId": 54321, - "networkId": 54321, - "ens": { - "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" - } - ], - "testnet": true, - "slug": "toronet-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55004.ts b/packages/chains/chains/55004.ts deleted file mode 100644 index 775d176e7a2..00000000000 --- a/packages/chains/chains/55004.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Titan", - "chain": "ETH", - "rpc": [ - "https://titan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.titan.tokamak.network", - "wss://rpc.titan.tokamak.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://tokamak.network", - "shortName": "teth", - "chainId": 55004, - "networkId": 55004, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "titan" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/555.ts b/packages/chains/chains/555.ts deleted file mode 100644 index 8e0a4f75d3a..00000000000 --- a/packages/chains/chains/555.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vela1 Chain Mainnet", - "chain": "VELA1", - "rpc": [ - "https://vela1-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.velaverse.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "CLASS COIN", - "symbol": "CLASS", - "decimals": 18 - }, - "infoURL": "https://velaverse.io", - "shortName": "CLASS", - "chainId": 555, - "networkId": 555, - "explorers": [ - { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "vela1-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5551.ts b/packages/chains/chains/5551.ts deleted file mode 100644 index 598092abe72..00000000000 --- a/packages/chains/chains/5551.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nahmii Mainnet", - "chain": "Nahmii", - "rpc": [ - "https://nahmii.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://l2.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii", - "chainId": 5551, - "networkId": 5551, - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "explorers": [ - { - "name": "Nahmii mainnet explorer", - "url": "https://explorer.nahmii.io", - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - }, - "testnet": false, - "slug": "nahmii" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5553.ts b/packages/chains/chains/5553.ts deleted file mode 100644 index 80f28277b26..00000000000 --- a/packages/chains/chains/5553.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nahmii Testnet", - "chain": "Nahmii", - "rpc": [ - "https://nahmii-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://l2.testnet.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "NahmiiTestnet", - "chainId": 5553, - "networkId": 5553, - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.testnet.nahmii.io", - "icon": { - "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", - "width": 384, - "height": 384, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - }, - "testnet": true, - "slug": "nahmii-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555.ts b/packages/chains/chains/5555.ts deleted file mode 100644 index 6f05da044ce..00000000000 --- a/packages/chains/chains/5555.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Chain Verse Mainnet", - "chain": "CVERSE", - "icon": { - "url": "ipfs://QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk", - "width": 1000, - "height": 1436, - "format": "png" - }, - "rpc": [ - "https://chain-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.chainverse.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://chainverse.info", - "shortName": "cverse", - "chainId": 5555, - "networkId": 5555, - "explorers": [ - { - "name": "Chain Verse Explorer", - "url": "https://explorer.chainverse.info", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "chain-verse" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55555.ts b/packages/chains/chains/55555.ts deleted file mode 100644 index a505b93577b..00000000000 --- a/packages/chains/chains/55555.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "REI Chain Mainnet", - "chain": "REI", - "icon": { - "url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf", - "width": 591, - "height": 591, - "format": "svg" - }, - "rpc": [ - "https://rei-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rei-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55555" - ], - "nativeCurrency": { - "name": "Rei", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "reichain", - "chainId": 55555, - "networkId": 55555, - "explorers": [ - { - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "rei-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555555.ts b/packages/chains/chains/5555555.ts deleted file mode 100644 index baf4894cb17..00000000000 --- a/packages/chains/chains/5555555.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Imversed Mainnet", - "chain": "Imversed", - "rpc": [ - "https://imversed.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonrpc.imversed.network", - "https://ws-jsonrpc.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed", - "chainId": 5555555, - "networkId": 5555555, - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "Imversed EVM explorer (Blockscout)", - "url": "https://txe.imversed.network", - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "imversed" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555558.ts b/packages/chains/chains/5555558.ts deleted file mode 100644 index 6242aabc72d..00000000000 --- a/packages/chains/chains/5555558.ts +++ /dev/null @@ -1,52 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Imversed Testnet", - "chain": "Imversed", - "rpc": [ - "https://imversed-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonrpc-test.imversed.network", - "https://ws-jsonrpc-test.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed-testnet", - "chainId": 5555558, - "networkId": 5555558, - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "Imversed EVM Explorer (Blockscout)", - "url": "https://txe-test.imversed.network", - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": { - "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", - "width": 400, - "height": 400, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "imversed-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55556.ts b/packages/chains/chains/55556.ts deleted file mode 100644 index 38880c9c07f..00000000000 --- a/packages/chains/chains/55556.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "REI Chain Testnet", - "chain": "REI", - "icon": { - "url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf", - "width": 591, - "height": 591, - "format": "svg" - }, - "rpc": [ - "https://rei-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rei-testnet-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55556" - ], - "nativeCurrency": { - "name": "tRei", - "symbol": "tREI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "trei", - "chainId": 55556, - "networkId": 55556, - "explorers": [ - { - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "rei-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/558.ts b/packages/chains/chains/558.ts deleted file mode 100644 index 1d364e26031..00000000000 --- a/packages/chains/chains/558.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tao Network", - "chain": "TAO", - "rpc": [ - "https://tao-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.tao.network", - "http://rpc.testnet.tao.network:8545", - "https://rpc.tao.network", - "wss://rpc.tao.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tao", - "symbol": "TAO", - "decimals": 18 - }, - "infoURL": "https://tao.network", - "shortName": "tao", - "chainId": 558, - "networkId": 558, - "testnet": true, - "slug": "tao-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5611.ts b/packages/chains/chains/5611.ts deleted file mode 100644 index a0de115177b..00000000000 --- a/packages/chains/chains/5611.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "opBNB", - "chain": "opBNB", - "shortName": "opBNB", - "chainId": 5611, - "testnet": true, - "nativeCurrency": { - "name": "Testnet bnb", - "symbol": "Tbnb", - "decimals": 18 - }, - "rpc": [ - "https://opbnb.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://opbnb-testnet-rpc.bnbchain.org" - ], - "explorers": [ - { - "name": "opBNB Scan", - "url": "https://opbnbscan.com/", - "standard": "" - } - ], - "faucets": [ - "https://opbnb-testnet-bridge.bnbchain.org/" - ], - "infoURL": "https://docs.bnbchain.org/", - "icon": { - "url": "ipfs://QmfFvfFsQKby3M32uqr8T55ENBnTHL8bkdeeu6rYVL2n4z/opbnblogo.svg", - "height": 512, - "width": 512, - "format": "svg" - }, - "slug": "opbnb" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/56288.ts b/packages/chains/chains/56288.ts deleted file mode 100644 index f35057e2214..00000000000 --- a/packages/chains/chains/56288.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Boba BNB Mainnet", - "chain": "Boba BNB Mainnet", - "rpc": [ - "https://boba-bnb.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://bnb.boba.network", - "http://boba-bnb.gateway.tenderly.co/", - "http://gateway.tenderly.co/public/boba-bnb", - "https://replica.bnb.boba.network", - "wss://boba-bnb.gateway.tenderly.co/", - "wss://gateway.tenderly.co/public/boba-bnb" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnb", - "chainId": 56288, - "networkId": 56288, - "explorers": [ - { - "name": "Boba BNB block explorer", - "url": "https://blockexplorer.bnb.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - }, - "testnet": false, - "slug": "boba-bnb" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/568.ts b/packages/chains/chains/568.ts deleted file mode 100644 index 59969aec49b..00000000000 --- a/packages/chains/chains/568.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dogechain Testnet", - "chain": "DC", - "icon": { - "url": "ipfs://QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs", - "width": 732, - "height": 732, - "format": "png" - }, - "rpc": [ - "https://dogechain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.dogechain.dog" - ], - "faucets": [ - "https://faucet.dogechain.dog" - ], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dct", - "chainId": 568, - "networkId": 568, - "explorers": [ - { - "name": "dogechain testnet explorer", - "url": "https://explorer-testnet.dogechain.dog", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dogechain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/570.ts b/packages/chains/chains/570.ts deleted file mode 100644 index ddbb4e98509..00000000000 --- a/packages/chains/chains/570.ts +++ /dev/null @@ -1,33 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rollux Mainnet", - "chain": "SYS", - "rpc": [ - "https://rollux.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.rollux.com", - "https://rollux.public-rpc.com", - "wss://rpc.rollux.com/wss", - "https://rpc.ankr.com/rollux/${ANKR_API_KEY}" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "sys-rollux", - "chainId": 570, - "networkId": 570, - "explorers": [ - { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "rollux" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5700.ts b/packages/chains/chains/5700.ts deleted file mode 100644 index ced417d2e0d..00000000000 --- a/packages/chains/chains/5700.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Syscoin Tanenbaum Testnet", - "chain": "SYS", - "rpc": [ - "https://syscoin-tanenbaum-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tanenbaum.io", - "wss://rpc.tanenbaum.io/wss" - ], - "faucets": [ - "https://faucet.tanenbaum.io" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "tSYS", - "decimals": 18 - }, - "infoURL": "https://syscoin.org", - "shortName": "tsys", - "chainId": 5700, - "networkId": 5700, - "explorers": [ - { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "syscoin-tanenbaum-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/57000.ts b/packages/chains/chains/57000.ts deleted file mode 100644 index db117de64be..00000000000 --- a/packages/chains/chains/57000.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rollux Testnet", - "chain": "SYS", - "rpc": [ - "https://rollux-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-tanenbaum.rollux.com", - "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", - "wss://rpc-tanenbaum.rollux.com/wss" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "TSYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "tsys-rollux", - "chainId": 57000, - "networkId": 57000, - "explorers": [ - { - "name": "Rollux Testnet Explorer", - "url": "https://rollux.tanenbaum.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "rollux-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5729.ts b/packages/chains/chains/5729.ts deleted file mode 100644 index eaa9c93545a..00000000000 --- a/packages/chains/chains/5729.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Hika Network Testnet", - "title": "Hika Network Testnet", - "chain": "HIK", - "icon": { - "url": "ipfs://QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp", - "width": 350, - "height": 84, - "format": "png" - }, - "rpc": [ - "https://hika-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.hika.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hik Token", - "symbol": "HIK", - "decimals": 18 - }, - "infoURL": "https://hika.network/", - "shortName": "hik", - "chainId": 5729, - "networkId": 5729, - "explorers": [ - { - "name": "Hika Network Testnet Explorer", - "url": "https://scan-testnet.hika.network", - "standard": "none" - } - ], - "testnet": true, - "slug": "hika-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5758.ts b/packages/chains/chains/5758.ts deleted file mode 100644 index 6e94bb4404d..00000000000 --- a/packages/chains/chains/5758.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SatoshiChain Testnet", - "chain": "SATS", - "icon": { - "url": "ipfs://QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7", - "width": 1251, - "height": 1251, - "format": "png" - }, - "rpc": [ - "https://satoshichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.satoshichain.io" - ], - "faucets": [ - "https://faucet.satoshichain.io" - ], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "satst", - "chainId": 5758, - "networkId": 5758, - "explorers": [ - { - "name": "SatoshiChain Testnet Explorer", - "url": "https://testnet.satoshiscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "satoshichain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5777.ts b/packages/chains/chains/5777.ts deleted file mode 100644 index 1b0f93e4a77..00000000000 --- a/packages/chains/chains/5777.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ganache", - "title": "Ganache GUI Ethereum Testnet", - "chain": "ETH", - "icon": { - "url": "ipfs://Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW", - "width": 267, - "height": 300, - "format": "png" - }, - "rpc": [ - "https://ganache.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://127.0.0.1:7545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ganache Test Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://trufflesuite.com/ganache/", - "shortName": "ggui", - "chainId": 5777, - "networkId": 5777, - "explorers": [], - "testnet": true, - "slug": "ganache" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/58008.ts b/packages/chains/chains/58008.ts deleted file mode 100644 index 6749c807e8e..00000000000 --- a/packages/chains/chains/58008.ts +++ /dev/null @@ -1,57 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sepolia PGN (Public Goods Network)", - "chain": "ETH", - "rpc": [ - "https://sepolia-pgn-public-goods-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sepolia.publicgoods.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://publicgoods.network/", - "shortName": "sepPGN", - "chainId": 58008, - "networkId": 58008, - "icon": { - "url": "ipfs://QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS", - "width": 574, - "height": 574, - "format": "svg" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://pgn-bridge.vercel.app/bridge" - } - ] - }, - "testnet": false, - "slug": "sepolia-pgn-public-goods-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5851.ts b/packages/chains/chains/5851.ts deleted file mode 100644 index 80d617d4b48..00000000000 --- a/packages/chains/chains/5851.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ontology Testnet", - "chain": "Ontology", - "icon": { - "url": "ipfs://bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://ontology-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://polaris1.ont.io:20339", - "http://polaris2.ont.io:20339", - "http://polaris3.ont.io:20339", - "http://polaris4.ont.io:20339", - "https://polaris1.ont.io:10339", - "https://polaris2.ont.io:10339", - "https://polaris3.ont.io:10339", - "https://polaris4.ont.io:10339" - ], - "faucets": [ - "https://developer.ont.io/" - ], - "nativeCurrency": { - "name": "ONG", - "symbol": "ONG", - "decimals": 18 - }, - "infoURL": "https://ont.io/", - "shortName": "OntologyTestnet", - "chainId": 5851, - "networkId": 5851, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ontology-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5869.ts b/packages/chains/chains/5869.ts deleted file mode 100644 index 659db7b00b9..00000000000 --- a/packages/chains/chains/5869.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Wegochain Rubidium Mainnet", - "chain": "RBD", - "rpc": [ - "https://wegochain-rubidium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://proxy.wegochain.io", - "http://wallet.wegochain.io:7764" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rubid", - "symbol": "RBD", - "decimals": 18 - }, - "infoURL": "https://www.wegochain.io", - "shortName": "rbd", - "chainId": 5869, - "networkId": 5869, - "explorers": [ - { - "name": "wegoscan2", - "url": "https://scan2.wegochain.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "wegochain-rubidium" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/59140.ts b/packages/chains/chains/59140.ts deleted file mode 100644 index 20985c229ae..00000000000 --- a/packages/chains/chains/59140.ts +++ /dev/null @@ -1,56 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Linea Testnet", - "title": "Linea Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://linea-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}", - "https://rpc.goerli.linea.build", - "wss://rpc.goerli.linea.build" - ], - "faucets": [ - "https://faucetlink.to/goerli" - ], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea-testnet", - "chainId": 59140, - "networkId": 59140, - "icon": { - "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", - "width": 97, - "height": 102, - "format": "svg" - }, - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" - } - ] - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.goerli.linea.build", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", - "width": 97, - "height": 102, - "format": "svg" - } - } - ], - "status": "active", - "testnet": true, - "slug": "linea-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/59144.ts b/packages/chains/chains/59144.ts deleted file mode 100644 index db6a6958deb..00000000000 --- a/packages/chains/chains/59144.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Linea Mainnet", - "chain": "Linea Mainnet", - "shortName": "linea-mainnet", - "chainId": 59144, - "testnet": false, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://linea.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", - "https://rpc.linea.build" - ], - "explorers": [ - { - "name": "lineascan", - "url": "https://lineascan.build", - "standard": "EIP3091" - }, - { - "name": "Linea Scan", - "url": "https://lineascan.build", - "standard": "" - } - ], - "faucets": [ - "https://www.infura.io/faucet/linea" - ], - "infoURL": "https://docs.linea.build/overview", - "icon": { - "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", - "height": 512, - "width": 512, - "format": "svg" - }, - "slug": "linea" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/592.ts b/packages/chains/chains/592.ts deleted file mode 100644 index d168697c012..00000000000 --- a/packages/chains/chains/592.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Astar", - "chain": "ASTR", - "rpc": [ - "https://astar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.astar.network", - "https://rpc.astar.network:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astar", - "symbol": "ASTR", - "decimals": 18 - }, - "infoURL": "https://astar.network/", - "shortName": "astr", - "chainId": 592, - "networkId": 592, - "icon": { - "url": "ipfs://Qmdvmx3p6gXBCLUMU1qivscaTNkT6h3URdhUTZCHLwKudg", - "width": 1000, - "height": 1000, - "format": "png" - }, - "explorers": [ - { - "name": "subscan", - "url": "https://astar.subscan.io", - "standard": "none", - "icon": { - "url": "ipfs://Qma2GfW5nQHuA7nGqdEfwaXPL63G9oTwRTQKaGTfjNtM2W", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": false, - "slug": "astar" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/595.ts b/packages/chains/chains/595.ts deleted file mode 100644 index d0c8700d44d..00000000000 --- a/packages/chains/chains/595.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Acala Mandala Testnet", - "chain": "mACA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Acala Mandala Token", - "symbol": "mACA", - "decimals": 18 - }, - "infoURL": "https://acala.network", - "shortName": "maca", - "chainId": 595, - "networkId": 595, - "testnet": true, - "slug": "acala-mandala-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/596.ts b/packages/chains/chains/596.ts deleted file mode 100644 index 7bd6031044f..00000000000 --- a/packages/chains/chains/596.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Karura Network Testnet", - "chain": "KAR", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "infoURL": "https://karura.network", - "shortName": "tkar", - "chainId": 596, - "networkId": 596, - "slip44": 596, - "testnet": true, - "slug": "karura-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/597.ts b/packages/chains/chains/597.ts deleted file mode 100644 index 18ac47cd376..00000000000 --- a/packages/chains/chains/597.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Acala Network Testnet", - "chain": "ACA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "infoURL": "https://acala.network", - "shortName": "taca", - "chainId": 597, - "networkId": 597, - "slip44": 597, - "testnet": true, - "slug": "acala-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/599.ts b/packages/chains/chains/599.ts deleted file mode 100644 index 9e17bf858de..00000000000 --- a/packages/chains/chains/599.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Metis Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://metis-goerli-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://goerli.gateway.metisdevops.link" - ], - "faucets": [ - "https://goerli.faucet.metisdevops.link" - ], - "nativeCurrency": { - "name": "Goerli Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-goerli", - "chainId": 599, - "networkId": 599, - "explorers": [ - { - "name": "blockscout", - "url": "https://goerli.explorer.metisdevops.link", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://testnet-bridge.metis.io" - } - ] - }, - "icon": { - "url": "ipfs://QmbWKNucbMtrMPPkHG5ZmVmvNUo8CzqHHcrpk1C2BVQsEG/2022_H-Brand_Stacked_WhiteGreen.svg", - "format": "svg", - "height": 512, - "width": 512 - }, - "testnet": true, - "slug": "metis-goerli-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/600.ts b/packages/chains/chains/600.ts deleted file mode 100644 index 168fdddf6bc..00000000000 --- a/packages/chains/chains/600.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Meshnyan testnet", - "chain": "MeshTestChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mesh-chain-testnet", - "chainId": 600, - "networkId": 600, - "testnet": true, - "slug": "meshnyan-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60000.ts b/packages/chains/chains/60000.ts deleted file mode 100644 index f5f9a7c0b4b..00000000000 --- a/packages/chains/chains/60000.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Testnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-testnet-chain-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test0", - "chainId": 60000, - "networkId": 60000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "thinkium-testnet-chain-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60001.ts b/packages/chains/chains/60001.ts deleted file mode 100644 index 99f48ff3624..00000000000 --- a/packages/chains/chains/60001.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Testnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-testnet-chain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test1.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test1", - "chainId": 60001, - "networkId": 60001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "thinkium-testnet-chain-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60002.ts b/packages/chains/chains/60002.ts deleted file mode 100644 index 96e5bd0500c..00000000000 --- a/packages/chains/chains/60002.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Testnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-testnet-chain-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test2.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test2", - "chainId": 60002, - "networkId": 60002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "thinkium-testnet-chain-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60103.ts b/packages/chains/chains/60103.ts deleted file mode 100644 index 2ccd92bda7a..00000000000 --- a/packages/chains/chains/60103.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Testnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-testnet-chain-103.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test103.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test103", - "chainId": 60103, - "networkId": 60103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "thinkium-testnet-chain-103" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6022140761023.ts b/packages/chains/chains/6022140761023.ts deleted file mode 100644 index 236d3c96c24..00000000000 --- a/packages/chains/chains/6022140761023.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Molereum Network", - "chain": "ETH", - "rpc": [ - "https://molereum-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://molereum.jdubedition.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Molereum Ether", - "symbol": "MOLE", - "decimals": 18 - }, - "infoURL": "https://github.com/Jdubedition/molereum", - "shortName": "mole", - "chainId": 6022140761023, - "networkId": 6022140761023, - "testnet": false, - "slug": "molereum-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6065.ts b/packages/chains/chains/6065.ts deleted file mode 100644 index 1a726880ed5..00000000000 --- a/packages/chains/chains/6065.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tres Testnet", - "chain": "TresLeches", - "rpc": [ - "https://tres-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-test.tresleches.finance/" - ], - "faucets": [ - "http://faucet.tresleches.finance:8080" - ], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESTEST", - "chainId": 6065, - "networkId": 6065, - "icon": { - "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": { - "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "tres-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6066.ts b/packages/chains/chains/6066.ts deleted file mode 100644 index 5f13c84a7f4..00000000000 --- a/packages/chains/chains/6066.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tres Mainnet", - "chain": "TresLeches", - "rpc": [ - "https://tres.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tresleches.finance/", - "https://rpc.treschain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESMAIN", - "chainId": 6066, - "networkId": 6066, - "icon": { - "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": { - "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "tres" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6102.ts b/packages/chains/chains/6102.ts deleted file mode 100644 index 45b5893f02e..00000000000 --- a/packages/chains/chains/6102.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Cascadia Testnet", - "chain": "Cascadia", - "rpc": [ - "https://cascadia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.cascadia.foundation" - ], - "faucets": [ - "https://www.cascadia.foundation/faucet" - ], - "nativeCurrency": { - "name": "CC", - "symbol": "tCC", - "decimals": 18 - }, - "infoURL": "https://www.cascadia.foundation", - "shortName": "cascadia", - "chainId": 6102, - "networkId": 6102, - "icon": { - "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "Cascadia EVM Explorer", - "url": "https://explorer.cascadia.foundation", - "standard": "none", - "icon": { - "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", - "width": 256, - "height": 256, - "format": "png" - } - }, - { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": { - "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", - "width": 256, - "height": 256, - "format": "png" - } - } - ], - "testnet": true, - "slug": "cascadia-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6118.ts b/packages/chains/chains/6118.ts deleted file mode 100644 index b2ce4d8da7f..00000000000 --- a/packages/chains/chains/6118.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "UPTN Testnet", - "chain": "UPTN", - "icon": { - "url": "ipfs://Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5", - "width": 128, - "height": 128, - "format": "png" - }, - "rpc": [ - "https://uptn-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node-api.alp.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN-TEST", - "chainId": 6118, - "networkId": 6118, - "explorers": [ - { - "name": "UPTN Testnet Explorer", - "url": "https://testnet.explorer.uptn.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "uptn-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6119.ts b/packages/chains/chains/6119.ts deleted file mode 100644 index 890d983521f..00000000000 --- a/packages/chains/chains/6119.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "UPTN", - "chain": "UPTN", - "icon": { - "url": "ipfs://Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5", - "width": 128, - "height": 128, - "format": "png" - }, - "rpc": [ - "https://uptn.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node-api.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN", - "chainId": 6119, - "networkId": 6119, - "explorers": [ - { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "uptn" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/614.ts b/packages/chains/chains/614.ts deleted file mode 100644 index f65851d2bf0..00000000000 --- a/packages/chains/chains/614.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Graphlinq Blockchain Mainnet", - "chain": "GLQ Blockchain", - "rpc": [ - "https://graphlinq-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://glq-dataseed.graphlinq.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GLQ", - "symbol": "GLQ", - "decimals": 18 - }, - "infoURL": "https://graphlinq.io", - "shortName": "glq", - "chainId": 614, - "networkId": 614, - "explorers": [ - { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "graphlinq-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61717561.ts b/packages/chains/chains/61717561.ts deleted file mode 100644 index f489f725033..00000000000 --- a/packages/chains/chains/61717561.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aquachain", - "chain": "AQUA", - "rpc": [ - "https://aquachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://c.onical.org", - "https://tx.aquacha.in/api" - ], - "faucets": [ - "https://aquacha.in/faucet" - ], - "nativeCurrency": { - "name": "Aquachain Ether", - "symbol": "AQUA", - "decimals": 18 - }, - "infoURL": "https://aquachain.github.io", - "shortName": "aqua", - "chainId": 61717561, - "networkId": 61717561, - "slip44": 61717561, - "testnet": false, - "slug": "aquachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61800.ts b/packages/chains/chains/61800.ts deleted file mode 100644 index 7626930753e..00000000000 --- a/packages/chains/chains/61800.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AxelChain Dev-Net", - "chain": "AXEL", - "rpc": [ - "https://axelchain-dev-net.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://aium-rpc-dev.viacube.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Axelium", - "symbol": "AIUM", - "decimals": 18 - }, - "infoURL": "https://www.axel.org", - "shortName": "aium-dev", - "chainId": 61800, - "networkId": 61800, - "icon": { - "url": "ipfs://QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2", - "width": 40, - "height": 40, - "format": "svg" - }, - "explorers": [ - { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "axelchain-dev-net" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61803.ts b/packages/chains/chains/61803.ts deleted file mode 100644 index de05051756c..00000000000 --- a/packages/chains/chains/61803.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Etica Mainnet", - "chain": "Etica Protocol (ETI/EGAZ)", - "icon": { - "url": "ipfs://QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU", - "width": 360, - "height": 361, - "format": "png" - }, - "rpc": [ - "https://etica.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eticamainnet.eticascan.org", - "https://eticamainnet.eticaprotocol.org" - ], - "faucets": [ - "http://faucet.etica-stats.org/" - ], - "nativeCurrency": { - "name": "EGAZ", - "symbol": "EGAZ", - "decimals": 18 - }, - "infoURL": "https://eticaprotocol.org", - "shortName": "Etica", - "chainId": 61803, - "networkId": 61803, - "explorers": [ - { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" - }, - { - "name": "eticastats", - "url": "http://explorer.etica-stats.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "etica" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61916.ts b/packages/chains/chains/61916.ts deleted file mode 100644 index 179e734ee61..00000000000 --- a/packages/chains/chains/61916.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DoKEN Super Chain Mainnet", - "chain": "DoKEN Super Chain", - "rpc": [ - "https://doken-super-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sgrpc.doken.dev", - "https://nyrpc.doken.dev", - "https://ukrpc.doken.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "DoKEN", - "symbol": "DKN", - "decimals": 18 - }, - "infoURL": "https://doken.dev/", - "shortName": "DoKEN", - "chainId": 61916, - "networkId": 61916, - "icon": { - "url": "ipfs://bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu", - "width": 200, - "height": 200, - "format": "png" - }, - "explorers": [ - { - "name": "DSC Scan", - "url": "https://explore.doken.dev", - "icon": { - "url": "ipfs://bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu", - "width": 200, - "height": 200, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "doken-super-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/62320.ts b/packages/chains/chains/62320.ts deleted file mode 100644 index be5ae324dfb..00000000000 --- a/packages/chains/chains/62320.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Celo Baklava Testnet", - "chainId": 62320, - "shortName": "BKLV", - "chain": "CELO", - "networkId": 62320, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://celo-baklava-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://baklava-forno.celo-testnet.org" - ], - "faucets": [ - "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" - ], - "infoURL": "https://docs.celo.org/", - "testnet": true, - "slug": "celo-baklava-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/62621.ts b/packages/chains/chains/62621.ts deleted file mode 100644 index cd371ce6881..00000000000 --- a/packages/chains/chains/62621.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MultiVAC Mainnet", - "chain": "MultiVAC", - "icon": { - "url": "ipfs://QmWb1gthhbzkiLdgcP8ccZprGbJVjFcW8Rn4uJjrw4jd3B", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [ - "https://multivac.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.mtv.ac", - "https://rpc-eu.mtv.ac" - ], - "faucets": [], - "nativeCurrency": { - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 18 - }, - "infoURL": "https://mtv.ac", - "shortName": "mtv", - "chainId": 62621, - "networkId": 62621, - "explorers": [ - { - "name": "MultiVAC Explorer", - "url": "https://e.mtv.ac", - "standard": "none" - } - ], - "testnet": false, - "slug": "multivac" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/63000.ts b/packages/chains/chains/63000.ts deleted file mode 100644 index 913fbedb7ff..00000000000 --- a/packages/chains/chains/63000.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "eCredits Mainnet", - "chain": "ECS", - "rpc": [ - "https://ecredits.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ecredits.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs", - "chainId": 63000, - "networkId": 63000, - "icon": { - "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", - "width": 32, - "height": 32, - "format": "png" - }, - "explorers": [ - { - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "icon": { - "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", - "width": 32, - "height": 32, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ecredits" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/63001.ts b/packages/chains/chains/63001.ts deleted file mode 100644 index 5ea91b43fb3..00000000000 --- a/packages/chains/chains/63001.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "eCredits Testnet", - "chain": "ECS", - "rpc": [ - "https://ecredits-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tst.ecredits.com" - ], - "faucets": [ - "https://faucet.tst.ecredits.com" - ], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs-testnet", - "chainId": 63001, - "networkId": 63001, - "icon": { - "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", - "width": 32, - "height": 32, - "format": "png" - }, - "explorers": [ - { - "name": "eCredits TestNet Explorer", - "url": "https://explorer.tst.ecredits.com", - "icon": { - "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", - "width": 32, - "height": 32, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ecredits-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/634.ts b/packages/chains/chains/634.ts deleted file mode 100644 index 9ade5a790db..00000000000 --- a/packages/chains/chains/634.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Avocado", - "chain": "Avocado", - "rpc": [ - "https://avocado.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.avocado.instadapp.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://avocado.instadapp.io", - "shortName": "avocado", - "chainId": 634, - "networkId": 634, - "icon": { - "url": "ipfs://Qma9rJSgy32UL1iXtXKFZQJA6FjkcUcDU4HR6y13Wu1vjn", - "width": 600, - "height": 600, - "format": "png" - }, - "explorers": [ - { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": { - "url": "ipfs://Qma9rJSgy32UL1iXtXKFZQJA6FjkcUcDU4HR6y13Wu1vjn", - "width": 600, - "height": 600, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "avocado" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/641230.ts b/packages/chains/chains/641230.ts deleted file mode 100644 index 6bfa3526cd7..00000000000 --- a/packages/chains/chains/641230.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bear Network Chain Mainnet", - "chain": "BRNKC", - "icon": { - "url": "ipfs://QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv", - "width": 1067, - "height": 1067, - "format": "png" - }, - "rpc": [ - "https://bear-network-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://brnkc-mainnet.bearnetwork.net", - "https://brnkc-mainnet1.bearnetwork.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bear Network Chain Native Token", - "symbol": "BRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKC", - "chainId": 641230, - "networkId": 641230, - "explorers": [ - { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bear-network-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/647.ts b/packages/chains/chains/647.ts deleted file mode 100644 index 0242c696921..00000000000 --- a/packages/chains/chains/647.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "SX Network Testnet", - "chain": "SX", - "icon": { - "url": "ipfs://QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF", - "width": 896, - "height": 690, - "format": "png" - }, - "rpc": [ - "https://sx-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.toronto.sx.technology" - ], - "faucets": [ - "https://faucet.toronto.sx.technology" - ], - "nativeCurrency": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 - }, - "infoURL": "https://www.sx.technology", - "shortName": "SX-Testnet", - "chainId": 647, - "networkId": 647, - "explorers": [ - { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "sx-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/648.ts b/packages/chains/chains/648.ts deleted file mode 100644 index 5429d615f07..00000000000 --- a/packages/chains/chains/648.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Endurance Smart Chain Mainnet", - "chain": "ACE", - "rpc": [ - "https://endurance-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-endurance.fusionist.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Endurance Chain Native Token", - "symbol": "ACE", - "decimals": 18 - }, - "infoURL": "https://ace.fusionist.io/", - "shortName": "ace", - "chainId": 648, - "networkId": 648, - "explorers": [ - { - "name": "Endurance Scan", - "url": "https://explorer.endurance.fusionist.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "endurance-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65010000.ts b/packages/chains/chains/65010000.ts deleted file mode 100644 index 4c0dd7fc8f4..00000000000 --- a/packages/chains/chains/65010000.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Autonity Bakerloo (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://autonity-bakerloo-thames-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-0", - "chainId": 65010000, - "networkId": 65010000, - "icon": { - "url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB", - "width": 1000, - "height": 1000, - "format": "png" - }, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "autonity-bakerloo-thames-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6502.ts b/packages/chains/chains/6502.ts deleted file mode 100644 index 274803be02d..00000000000 --- a/packages/chains/chains/6502.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Peerpay", - "chain": "P2P", - "rpc": [ - "https://peerpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://peerpay.su.gy/p2p" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peerpay", - "symbol": "P2P", - "decimals": 18 - }, - "infoURL": "https://peerpay.su.gy", - "shortName": "Peerpay", - "chainId": 6502, - "networkId": 6502, - "explorers": [], - "testnet": false, - "slug": "peerpay" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65100000.ts b/packages/chains/chains/65100000.ts deleted file mode 100644 index 0eb136649a8..00000000000 --- a/packages/chains/chains/65100000.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Autonity Piccadilly (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://autonity-piccadilly-thames-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-0", - "chainId": 65100000, - "networkId": 65100000, - "icon": { - "url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB", - "width": 1000, - "height": 1000, - "format": "png" - }, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "autonity-piccadilly-thames-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/651940.ts b/packages/chains/chains/651940.ts deleted file mode 100644 index 68a08871456..00000000000 --- a/packages/chains/chains/651940.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ALL Mainnet", - "chain": "ALL", - "icon": { - "url": "ipfs://bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i", - "width": 1000, - "height": 1000, - "format": "png" - }, - "rpc": [ - "https://all.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.alltra.global" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALL", - "symbol": "ALL", - "decimals": 18 - }, - "infoURL": "https://alltra.world", - "shortName": "ALL", - "chainId": 651940, - "networkId": 651940, - "explorers": [ - { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "all" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65450.ts b/packages/chains/chains/65450.ts deleted file mode 100644 index 5f32651f3c7..00000000000 --- a/packages/chains/chains/65450.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Scolcoin Mainnet", - "chain": "SCOLWEI", - "rpc": [ - "https://scolcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.scolcoin.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC", - "chainId": 65450, - "networkId": 65450, - "icon": { - "url": "ipfs://QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt", - "width": 792, - "height": 822, - "format": "png" - }, - "explorers": [ - { - "name": "Scolscan Explorer", - "url": "https://explorer.scolcoin.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "scolcoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6552.ts b/packages/chains/chains/6552.ts deleted file mode 100644 index 7c109c1f37c..00000000000 --- a/packages/chains/chains/6552.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Scolcoin WeiChain Testnet", - "chain": "SCOLWEI-testnet", - "rpc": [ - "https://scolcoin-weichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.scolcoin.com" - ], - "faucets": [ - "https://faucet.scolcoin.com" - ], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC-test", - "chainId": 6552, - "networkId": 6552, - "icon": { - "url": "ipfs://QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt", - "width": 792, - "height": 822, - "format": "png" - }, - "explorers": [ - { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "scolcoin-weichain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6565.ts b/packages/chains/chains/6565.ts deleted file mode 100644 index 1c306214ca0..00000000000 --- a/packages/chains/chains/6565.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fox Testnet Network", - "chain": "FOX", - "rpc": [ - "https://fox-testnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet-v1.foxchain.app/", - "https://rpc2-testnet-v1.foxchain.app/", - "https://rpc3-testnet-v1.foxchain.app" - ], - "faucets": [ - "https://faucet.foxchain.app" - ], - "nativeCurrency": { - "name": "FOX Native Token", - "symbol": "tFOX", - "decimals": 18 - }, - "infoURL": "https://foxchain.app", - "shortName": "fox", - "chainId": 6565, - "networkId": 6565, - "icon": { - "url": "ipfs://Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M", - "width": 100, - "height": 100, - "format": "png" - }, - "explorers": [ - { - "name": "FOX Testnet Explorer", - "icon": { - "url": "ipfs://Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M", - "width": 100, - "height": 100, - "format": "png" - }, - "url": "https://testnet.foxscan.app", - "standard": "none" - } - ], - "testnet": true, - "slug": "fox-testnet-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6626.ts b/packages/chains/chains/6626.ts deleted file mode 100644 index a114080966c..00000000000 --- a/packages/chains/chains/6626.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Pixie Chain Mainnet", - "chain": "PixieChain", - "rpc": [ - "https://pixie-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://http-mainnet.chain.pixie.xyz", - "wss://ws-mainnet.chain.pixie.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pixie Chain Native Token", - "symbol": "PIX", - "decimals": 18 - }, - "infoURL": "https://chain.pixie.xyz", - "shortName": "pixie-chain", - "chainId": 6626, - "networkId": 6626, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - } - ], - "testnet": false, - "slug": "pixie-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666.ts b/packages/chains/chains/666.ts deleted file mode 100644 index a2b4782a8a0..00000000000 --- a/packages/chains/chains/666.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Pixie Chain Testnet", - "chain": "PixieChain", - "rpc": [ - "https://pixie-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://http-testnet.chain.pixie.xyz", - "wss://ws-testnet.chain.pixie.xyz" - ], - "faucets": [ - "https://chain.pixie.xyz/faucet" - ], - "nativeCurrency": { - "name": "Pixie Chain Testnet Native Token", - "symbol": "PCTT", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.chain.pixie.xyz", - "shortName": "pixie-chain-testnet", - "chainId": 666, - "networkId": 666, - "testnet": true, - "slug": "pixie-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666301171999.ts b/packages/chains/chains/666301171999.ts deleted file mode 100644 index 9bd2ccbc52f..00000000000 --- a/packages/chains/chains/666301171999.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PDC Mainnet", - "chain": "IPDC", - "rpc": [ - "https://pdc.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.ipdc.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PDC", - "symbol": "PDC", - "decimals": 18 - }, - "infoURL": "https://ipdc.io", - "shortName": "ipdc", - "chainId": 666301171999, - "networkId": 666301171999, - "explorers": [ - { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "pdc" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666666.ts b/packages/chains/chains/666666.ts deleted file mode 100644 index 4d74c2d4eda..00000000000 --- a/packages/chains/chains/666666.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vision - Vpioneer Test Chain", - "chain": "Vision-Vpioneer", - "rpc": [ - "https://vision-vpioneer-test-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://vpioneer.infragrid.v.network/ethereum/compatible" - ], - "faucets": [ - "https://vpioneerfaucet.visionscan.org" - ], - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "infoURL": "https://visionscan.org", - "shortName": "vpioneer", - "chainId": 666666, - "networkId": 666666, - "slip44": 60, - "testnet": true, - "slug": "vision-vpioneer-test-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6688.ts b/packages/chains/chains/6688.ts deleted file mode 100644 index 7a07600bd6c..00000000000 --- a/packages/chains/chains/6688.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IRIShub", - "chain": "IRIShub", - "rpc": [ - "https://irishub.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evmrpc.irishub-1.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "iris", - "chainId": 6688, - "networkId": 6688, - "icon": { - "url": "ipfs://QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW", - "width": 1062, - "height": 1062, - "format": "png" - }, - "explorers": [ - { - "name": "IRISHub Cosmos Explorer (IOBScan)", - "url": "https://irishub.iobscan.io", - "standard": "none", - "icon": { - "url": "ipfs://QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW", - "width": 1062, - "height": 1062, - "format": "png" - } - } - ], - "testnet": false, - "slug": "irishub" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/67588.ts b/packages/chains/chains/67588.ts deleted file mode 100644 index 610e2cc9bb5..00000000000 --- a/packages/chains/chains/67588.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Cosmic Chain", - "chain": "COSMIC", - "rpc": [ - "https://cosmic-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://testnet.cosmicchain.site:3344" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cosmic Chain", - "symbol": "COSMIC", - "decimals": 18 - }, - "infoURL": "https://cosmicchain.site", - "shortName": "Cosmic", - "chainId": 67588, - "networkId": 3344, - "testnet": true, - "slug": "cosmic-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6789.ts b/packages/chains/chains/6789.ts deleted file mode 100644 index 6fdbaca9970..00000000000 --- a/packages/chains/chains/6789.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gold Smart Chain Mainnet", - "chain": "STAND", - "icon": { - "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", - "width": 396, - "height": 418, - "format": "png" - }, - "rpc": [ - "https://gold-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDm", - "chainId": 6789, - "networkId": 6789, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "gold-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/686.ts b/packages/chains/chains/686.ts deleted file mode 100644 index 60b8d7f0b6f..00000000000 --- a/packages/chains/chains/686.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Karura Network", - "chain": "KAR", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "infoURL": "https://karura.network", - "shortName": "kar", - "chainId": 686, - "networkId": 686, - "slip44": 686, - "testnet": false, - "slug": "karura-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/69420.ts b/packages/chains/chains/69420.ts deleted file mode 100644 index 9a475ba527b..00000000000 --- a/packages/chains/chains/69420.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Condrieu", - "title": "Ethereum Verkle Testnet Condrieu", - "chain": "ETH", - "rpc": [ - "https://condrieu.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.condrieu.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.condrieu.ethdevops.io" - ], - "nativeCurrency": { - "name": "Condrieu Testnet Ether", - "symbol": "CTE", - "decimals": 18 - }, - "infoURL": "https://condrieu.ethdevops.io", - "shortName": "cndr", - "chainId": 69420, - "networkId": 69420, - "explorers": [ - { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "condrieu" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6969.ts b/packages/chains/chains/6969.ts deleted file mode 100644 index 25df6c7d111..00000000000 --- a/packages/chains/chains/6969.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Tomb Chain Mainnet", - "chain": "Tomb Chain", - "rpc": [ - "https://tomb-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.tombchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tomb", - "symbol": "TOMB", - "decimals": 18 - }, - "infoURL": "https://tombchain.com/", - "shortName": "tombchain", - "chainId": 6969, - "networkId": 6969, - "explorers": [ - { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-250", - "bridges": [ - { - "url": "https://lif3.com/bridge" - } - ] - }, - "testnet": false, - "slug": "tomb-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6999.ts b/packages/chains/chains/6999.ts deleted file mode 100644 index dcb04123ce1..00000000000 --- a/packages/chains/chains/6999.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PolySmartChain", - "chain": "PSC", - "rpc": [ - "https://polysmartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://seed0.polysmartchain.com/", - "https://seed1.polysmartchain.com/", - "https://seed2.polysmartchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PSC", - "symbol": "PSC", - "decimals": 18 - }, - "infoURL": "https://www.polysmartchain.com/", - "shortName": "psc", - "chainId": 6999, - "networkId": 6999, - "testnet": false, - "slug": "polysmartchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/700.ts b/packages/chains/chains/700.ts deleted file mode 100644 index d06344e513d..00000000000 --- a/packages/chains/chains/700.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Star Social Testnet", - "chain": "SNS", - "rpc": [ - "https://star-social-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://avastar.cc/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 - }, - "infoURL": "https://info.avastar.cc", - "shortName": "SNS", - "chainId": 700, - "networkId": 700, - "explorers": [ - { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "star-social-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7000.ts b/packages/chains/chains/7000.ts deleted file mode 100644 index f7b8d2cd514..00000000000 --- a/packages/chains/chains/7000.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ZetaChain Mainnet", - "chain": "ZetaChain", - "icon": { - "url": "ipfs://QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy", - "width": 712, - "height": 712, - "format": "png" - }, - "rpc": [ - "https://zetachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.mainnet.zetachain.com/evm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 - }, - "infoURL": "https://zetachain.com/docs/", - "shortName": "zetachain-mainnet", - "chainId": 7000, - "networkId": 7000, - "status": "incubating", - "explorers": [ - { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.mainnet.zetachain.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "zetachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70000.ts b/packages/chains/chains/70000.ts deleted file mode 100644 index c8477e55150..00000000000 --- a/packages/chains/chains/70000.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Mainnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-chain-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://proxy.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM0", - "chainId": 70000, - "networkId": 70000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "thinkium-chain-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70001.ts b/packages/chains/chains/70001.ts deleted file mode 100644 index 481fc76e6c7..00000000000 --- a/packages/chains/chains/70001.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Mainnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-chain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://proxy1.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM1", - "chainId": 70001, - "networkId": 70001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "thinkium-chain-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70002.ts b/packages/chains/chains/70002.ts deleted file mode 100644 index 778fdbeb1b7..00000000000 --- a/packages/chains/chains/70002.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Mainnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-chain-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://proxy2.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM2", - "chainId": 70002, - "networkId": 70002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "thinkium-chain-2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7001.ts b/packages/chains/chains/7001.ts deleted file mode 100644 index 1fb96057445..00000000000 --- a/packages/chains/chains/7001.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ZetaChain Athens Testnet", - "chain": "ZetaChain", - "icon": { - "url": "ipfs://QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy", - "width": 712, - "height": 712, - "format": "png" - }, - "rpc": [ - "https://zetachain-athens-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.athens2.zetachain.com/evm" - ], - "faucets": [ - "https://labs.zetachain.com/get-zeta" - ], - "nativeCurrency": { - "name": "Zeta", - "symbol": "aZETA", - "decimals": 18 - }, - "infoURL": "https://zetachain.com/docs", - "shortName": "zetachain-athens", - "chainId": 7001, - "networkId": 7001, - "status": "active", - "explorers": [ - { - "name": "ZetaChain Athens Testnet Explorer", - "url": "https://explorer.athens.zetachain.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "zetachain-athens-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70103.ts b/packages/chains/chains/70103.ts deleted file mode 100644 index 0fec289b77f..00000000000 --- a/packages/chains/chains/70103.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Thinkium Mainnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://thinkium-chain-103.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://proxy103.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM103", - "chainId": 70103, - "networkId": 70103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "thinkium-chain-103" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7027.ts b/packages/chains/chains/7027.ts deleted file mode 100644 index b0e232ed00f..00000000000 --- a/packages/chains/chains/7027.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ella the heart", - "chain": "ella", - "icon": { - "url": "ipfs://QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://ella-the-heart.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.ella.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ella", - "symbol": "ELLA", - "decimals": 18 - }, - "infoURL": "https://ella.network", - "shortName": "ELLA", - "chainId": 7027, - "networkId": 7027, - "explorers": [ - { - "name": "Ella", - "url": "https://ella.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ella-the-heart" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/707.ts b/packages/chains/chains/707.ts deleted file mode 100644 index 39bc1d8d282..00000000000 --- a/packages/chains/chains/707.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BlockChain Station Mainnet", - "chain": "BCS", - "rpc": [ - "https://blockchain-station.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.bcsdev.io", - "wss://rpc-ws-mainnet.bcsdev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BCS Token", - "symbol": "BCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "bcs", - "chainId": 707, - "networkId": 707, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "blockchain-station" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7070.ts b/packages/chains/chains/7070.ts deleted file mode 100644 index 90c29b2587f..00000000000 --- a/packages/chains/chains/7070.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Planq Mainnet", - "chain": "Planq", - "icon": { - "url": "ipfs://QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D", - "width": 256, - "height": 256, - "format": "png" - }, - "rpc": [ - "https://planq.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-rpc.planq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Planq", - "symbol": "PLQ", - "decimals": 18 - }, - "infoURL": "https://planq.network", - "shortName": "planq", - "chainId": 7070, - "networkId": 7070, - "explorers": [ - { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" - }, - { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" - } - ], - "testnet": false, - "slug": "planq" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/708.ts b/packages/chains/chains/708.ts deleted file mode 100644 index 6f55406d368..00000000000 --- a/packages/chains/chains/708.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BlockChain Station Testnet", - "chain": "BCS", - "rpc": [ - "https://blockchain-station-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.bcsdev.io", - "wss://rpc-ws-testnet.bcsdev.io" - ], - "faucets": [ - "https://faucet.bcsdev.io" - ], - "nativeCurrency": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "tbcs", - "chainId": 708, - "networkId": 708, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "blockchain-station-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71111.ts b/packages/chains/chains/71111.ts deleted file mode 100644 index cf8572788ec..00000000000 --- a/packages/chains/chains/71111.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "GuapcoinX", - "chain": "GuapcoinX", - "rpc": [ - "https://guapcoinx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.guapcoinx.com/", - "https://rpc-mainnet-1.guapcoinx.com/", - "https://rpc-mainnet-2.guapcoinx.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GuapcoinX", - "symbol": "GuapX", - "decimals": 18 - }, - "infoURL": "https://guapcoin.org/", - "shortName": "GuapX", - "chainId": 71111, - "networkId": 71111, - "icon": { - "url": "ipfs://QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB", - "width": 800, - "height": 800, - "format": "png" - }, - "explorers": [ - { - "name": "GuapcoinX Explorer", - "url": "http://explorer.guapcoinx.com", - "standard": "none", - "icon": { - "url": "ipfs://QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB", - "width": 800, - "height": 800, - "format": "png" - } - } - ], - "testnet": false, - "slug": "guapcoinx" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71393.ts b/packages/chains/chains/71393.ts deleted file mode 100644 index 360a8fa9bcb..00000000000 --- a/packages/chains/chains/71393.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Polyjuice Testnet", - "chain": "CKB", - "icon": { - "url": "ipfs://QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe", - "width": 1001, - "height": 1629, - "format": "png" - }, - "rpc": [ - "https://polyjuice-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://godwoken-testnet-web3-rpc.ckbapp.dev", - "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" - ], - "faucets": [ - "https://faucet.nervos.org/" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 - }, - "infoURL": "https://github.com/nervosnetwork/godwoken", - "shortName": "ckb", - "chainId": 71393, - "networkId": 1, - "testnet": true, - "slug": "polyjuice-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71401.ts b/packages/chains/chains/71401.ts deleted file mode 100644 index 47f362ddc99..00000000000 --- a/packages/chains/chains/71401.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Godwoken Testnet v1", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://godwoken-testnet-v1.ckbapp.dev", - "https://v1.testnet.godwoken.io/rpc" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], - "nativeCurrency": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-testnet-v1", - "chainId": 71401, - "networkId": 71401, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.testnet.gwscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "godwoken-testnet-v1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71402.ts b/packages/chains/chains/71402.ts deleted file mode 100644 index 0254efcdfad..00000000000 --- a/packages/chains/chains/71402.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Godwoken Mainnet", - "chain": "GWT", - "rpc": [ - "https://godwoken.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://v1.mainnet.godwoken.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pCKB", - "symbol": "pCKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-mainnet-v1", - "chainId": 71402, - "networkId": 71402, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.gwscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "godwoken" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7171.ts b/packages/chains/chains/7171.ts deleted file mode 100644 index 55b5c39c60e..00000000000 --- a/packages/chains/chains/7171.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitrock Mainnet", - "chain": "Bitrock", - "icon": { - "url": "ipfs://QmfXZCAh3HWS2bJroUStN9TieL4QA9QArMotie3X4pwBfj", - "width": 72, - "height": 72, - "format": "svg" - }, - "rpc": [ - "https://bitrock.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://connect.bit-rock.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "bitrock", - "chainId": 7171, - "networkId": 7171, - "explorers": [ - { - "name": "Bitrock Explorer", - "url": "https://scan.bit-rock.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "bitrock" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/719.ts b/packages/chains/chains/719.ts deleted file mode 100644 index ab232a3fc9c..00000000000 --- a/packages/chains/chains/719.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shibarium Beta", - "chain": "Shibarium", - "icon": { - "url": "ipfs://QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://shibarium-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://puppynet.shibrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://beta.shibariumtech.com", - "shortName": "shibarium", - "chainId": 719, - "networkId": 719, - "explorers": [ - { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "shibarium-beta" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/721.ts b/packages/chains/chains/721.ts deleted file mode 100644 index b1cdb9ef62a..00000000000 --- a/packages/chains/chains/721.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lycan Chain", - "chain": "LYC", - "rpc": [ - "https://lycan-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.lycanchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lycan", - "symbol": "LYC", - "decimals": 18 - }, - "infoURL": "https://lycanchain.com", - "shortName": "LYC", - "chainId": 721, - "networkId": 721, - "icon": { - "url": "ipfs://Qmc8hsCbUUjnJDnXrDhFh4V1xk1gJwZbUyNJ39p72javji", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.lycanchain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "lycan-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7225878.ts b/packages/chains/chains/7225878.ts deleted file mode 100644 index 770438a3d09..00000000000 --- a/packages/chains/chains/7225878.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Saakuru Mainnet", - "chain": "Saakuru", - "icon": { - "url": "ipfs://QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://saakuru.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru", - "chainId": 7225878, - "networkId": 7225878, - "explorers": [ - { - "name": "saakuru-explorer", - "url": "https://explorer.saakuru.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "saakuru" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7331.ts b/packages/chains/chains/7331.ts deleted file mode 100644 index 2001e01e928..00000000000 --- a/packages/chains/chains/7331.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "KLYNTAR", - "chain": "KLY", - "rpc": [ - "https://klyntar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.klyntar.org/kly_evm_rpc", - "https://evm.klyntarscan.org/kly_evm_rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLYNTAR", - "symbol": "KLY", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://klyntar.org", - "shortName": "kly", - "chainId": 7331, - "networkId": 7331, - "icon": { - "url": "ipfs://QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [], - "status": "incubating", - "testnet": false, - "slug": "klyntar" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7332.ts b/packages/chains/chains/7332.ts deleted file mode 100644 index 653882e8d26..00000000000 --- a/packages/chains/chains/7332.ts +++ /dev/null @@ -1,49 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Horizen EON", - "shortName": "EON", - "chain": "EON", - "icon": { - "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", - "width": 1213, - "height": 1213, - "format": "png" - }, - "rpc": [ - "https://horizen-eon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eon-rpc.horizenlabs.io/ethv1" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Zencash", - "symbol": "ZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 7332, - "networkId": 7332, - "slip44": 121, - "explorers": [ - { - "name": "Horizen EON Block Explorer", - "url": "https://eon-explorer.horizenlabs.io", - "icon": { - "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", - "width": 1213, - "height": 1213, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "horizen-eon" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7341.ts b/packages/chains/chains/7341.ts deleted file mode 100644 index d1f10ee93ff..00000000000 --- a/packages/chains/chains/7341.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shyft Mainnet", - "chain": "SHYFT", - "icon": { - "url": "ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", - "width": 400, - "height": 400, - "format": "svg" - }, - "rpc": [ - "https://shyft.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.shyft.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shyft", - "symbol": "SHYFT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyft", - "chainId": 7341, - "networkId": 7341, - "slip44": 2147490989, - "explorers": [ - { - "name": "Shyft BX", - "url": "https://bx.shyft.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "shyft" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7355310.ts b/packages/chains/chains/7355310.ts deleted file mode 100644 index 49b5792b9d9..00000000000 --- a/packages/chains/chains/7355310.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OpenVessel", - "chain": "VSL", - "icon": { - "url": "ipfs://QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX", - "width": 600, - "height": 529, - "format": "png" - }, - "rpc": [ - "https://openvessel.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-external.openvessel.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Vessel ETH", - "symbol": "VETH", - "decimals": 18 - }, - "infoURL": "https://www.openvessel.io", - "shortName": "vsl", - "chainId": 7355310, - "networkId": 7355310, - "explorers": [ - { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "openvessel" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/73799.ts b/packages/chains/chains/73799.ts deleted file mode 100644 index 7daf9c11633..00000000000 --- a/packages/chains/chains/73799.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Energy Web Volta Testnet", - "chain": "Volta", - "rpc": [ - "https://energy-web-volta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://volta-rpc.energyweb.org", - "wss://volta-rpc.energyweb.org/ws" - ], - "faucets": [ - "https://voltafaucet.energyweb.org" - ], - "nativeCurrency": { - "name": "Volta Token", - "symbol": "VT", - "decimals": 18 - }, - "infoURL": "https://energyweb.org", - "shortName": "vt", - "chainId": 73799, - "networkId": 73799, - "testnet": true, - "slug": "energy-web-volta-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/73927.ts b/packages/chains/chains/73927.ts deleted file mode 100644 index 35ba7eca46f..00000000000 --- a/packages/chains/chains/73927.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mixin Virtual Machine", - "chain": "MVM", - "rpc": [ - "https://mixin-virtual-machine.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://geth.mvm.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://mvm.dev", - "shortName": "mvm", - "chainId": 73927, - "networkId": 73927, - "icon": { - "url": "ipfs://QmeuDgSprukzfV7fi9XYHYcfmT4aZZZU7idgShtRS8Vf6V", - "width": 471, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": { - "url": "ipfs://QmeuDgSprukzfV7fi9XYHYcfmT4aZZZU7idgShtRS8Vf6V", - "width": 471, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "mixin-virtual-machine" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/741.ts b/packages/chains/chains/741.ts deleted file mode 100644 index 2dda0132b44..00000000000 --- a/packages/chains/chains/741.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vention Smart Chain Testnet", - "chain": "VSCT", - "icon": { - "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", - "width": 250, - "height": 250, - "format": "png" - }, - "rpc": [ - "https://vention-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node-testnet.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://testnet.ventionscan.io", - "shortName": "vsct", - "chainId": 741, - "networkId": 741, - "explorers": [ - { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "vention-smart-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/742.ts b/packages/chains/chains/742.ts deleted file mode 100644 index 352f2135ccd..00000000000 --- a/packages/chains/chains/742.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Script Testnet", - "chain": "SPAY", - "rpc": [ - "https://script-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testeth-rpc-api.script.tv/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Script", - "symbol": "SPAY", - "decimals": 18 - }, - "infoURL": "https://token.script.tv", - "shortName": "SPAY", - "chainId": 742, - "networkId": 742, - "explorers": [ - { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } - ], - "testnet": true, - "slug": "script-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7484.ts b/packages/chains/chains/7484.ts deleted file mode 100644 index ad8fb6ebb4f..00000000000 --- a/packages/chains/chains/7484.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Raba Network Mainnet", - "chain": "Raba", - "icon": { - "url": "ipfs://QmatP9qMHEYoXqRDyHMTyjYRQa6j6Gk7pmv1QLxQkvpGRP", - "width": 787, - "height": 750, - "format": "png" - }, - "rpc": [ - "https://raba-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.x.raba.app/", - "wss://rpc.x.raba.app/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raba", - "symbol": "RABA", - "decimals": 18 - }, - "infoURL": "https://x.raba.app/", - "shortName": "raba", - "chainId": 7484, - "networkId": 7484, - "explorers": [ - { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" - } - ], - "testnet": false, - "slug": "raba-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/75000.ts b/packages/chains/chains/75000.ts deleted file mode 100644 index 9424ef15f52..00000000000 --- a/packages/chains/chains/75000.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ResinCoin Mainnet", - "chain": "RESIN", - "icon": { - "url": "ipfs://QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb", - "width": 460, - "height": 460, - "format": "png" - }, - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "RESIN", - "decimals": 18 - }, - "infoURL": "https://resincoin.dev", - "shortName": "resin", - "chainId": 75000, - "networkId": 75000, - "explorers": [ - { - "name": "ResinScan", - "url": "https://explorer.resincoin.dev", - "standard": "none" - } - ], - "testnet": false, - "slug": "resincoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/751230.ts b/packages/chains/chains/751230.ts deleted file mode 100644 index 21371e6fbc8..00000000000 --- a/packages/chains/chains/751230.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bear Network Chain Testnet", - "chain": "BRNKCTEST", - "icon": { - "url": "ipfs://QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv", - "width": 1067, - "height": 1067, - "format": "png" - }, - "rpc": [ - "https://bear-network-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://brnkc-test.bearnetwork.net" - ], - "faucets": [ - "https://faucet.bearnetwork.net" - ], - "nativeCurrency": { - "name": "Bear Network Chain Testnet Token", - "symbol": "tBRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKCTEST", - "chainId": 751230, - "networkId": 751230, - "explorers": [ - { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bear-network-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7518.ts b/packages/chains/chains/7518.ts deleted file mode 100644 index 01abb632a5b..00000000000 --- a/packages/chains/chains/7518.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MEVerse Chain Mainnet", - "chain": "MEVerse", - "rpc": [ - "https://meverse-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.meversemainnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "MEV", - "chainId": 7518, - "networkId": 7518, - "icon": { - "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", - "width": 800, - "height": 800, - "format": "png" - }, - "explorers": [ - { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": { - "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", - "width": 800, - "height": 800, - "format": "png" - } - } - ], - "testnet": false, - "slug": "meverse-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7575.ts b/packages/chains/chains/7575.ts deleted file mode 100644 index 5c78475873a..00000000000 --- a/packages/chains/chains/7575.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ADIL Testnet", - "chain": "ADIL", - "icon": { - "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://adil-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.adilchain-rpc.io" - ], - "faucets": [ - "https://testnet-faucet.adil-scan.io" - ], - "nativeCurrency": { - "name": "Testnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "tadil", - "chainId": 7575, - "networkId": 7575, - "explorers": [ - { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "adil-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7576.ts b/packages/chains/chains/7576.ts deleted file mode 100644 index f08599a5570..00000000000 --- a/packages/chains/chains/7576.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Adil Chain V2 Mainnet", - "chain": "ADIL", - "icon": { - "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://adil-chain-v2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "adil", - "chainId": 7576, - "networkId": 7576, - "explorers": [ - { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "adil-chain-v2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/766.ts b/packages/chains/chains/766.ts deleted file mode 100644 index 1bd67d669b4..00000000000 --- a/packages/chains/chains/766.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QL1", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://ql1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.qom.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "qom", - "chainId": 766, - "networkId": 766, - "icon": { - "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", - "width": 518, - "height": 518, - "format": "png" - }, - "explorers": [ - { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": { - "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", - "width": 518, - "height": 518, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "ql1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7668.ts b/packages/chains/chains/7668.ts deleted file mode 100644 index 55850c1f46f..00000000000 --- a/packages/chains/chains/7668.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "The Root Network - Mainnet", - "chain": "TRN", - "rpc": [ - "https://the-root-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://root.rootnet.live/archive", - "wss://root.rootnet.live/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-mainnet", - "chainId": 7668, - "networkId": 7668, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.live", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "the-root-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7668378.ts b/packages/chains/chains/7668378.ts deleted file mode 100644 index a6d164bc7fe..00000000000 --- a/packages/chains/chains/7668378.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QL1 Testnet", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://ql1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.qom.one" - ], - "faucets": [ - "https://faucet.qom.one" - ], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "tqom", - "chainId": 7668378, - "networkId": 7668378, - "icon": { - "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", - "width": 518, - "height": 518, - "format": "png" - }, - "explorers": [ - { - "name": "QL1 Testnet Explorer", - "url": "https://testnet.qom.one", - "icon": { - "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", - "width": 518, - "height": 518, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "ql1-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7672.ts b/packages/chains/chains/7672.ts deleted file mode 100644 index 718dd30e719..00000000000 --- a/packages/chains/chains/7672.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "The Root Network - Porcini Testnet", - "chain": "TRN", - "rpc": [ - "https://the-root-network-porcini-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://porcini.rootnet.app/archive", - "wss://porcini.rootnet.app/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-porcini", - "chainId": 7672, - "networkId": 7672, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "the-root-network-porcini-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7700.ts b/packages/chains/chains/7700.ts deleted file mode 100644 index 31ae3de0048..00000000000 --- a/packages/chains/chains/7700.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Canto", - "chain": "Canto", - "rpc": [ - "https://canto.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://canto.slingshot.finance", - "https://canto.neobase.one", - "https://mainnode.plexnode.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "canto", - "chainId": 7700, - "networkId": 7700, - "explorers": [ - { - "name": "Canto EVM Explorer (Blockscout)", - "url": "https://evm.explorer.canto.io", - "standard": "none" - }, - { - "name": "Canto Cosmos Explorer", - "url": "https://cosmos-explorers.neobase.one", - "standard": "none" - }, - { - "name": "Canto EVM Explorer (Blockscout)", - "url": "https://tuber.build", - "standard": "none" - } - ], - "testnet": false, - "slug": "canto" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7701.ts b/packages/chains/chains/7701.ts deleted file mode 100644 index c245fee3352..00000000000 --- a/packages/chains/chains/7701.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Canto Tesnet", - "chain": "Canto", - "rpc": [ - "https://canto-tesnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-archive.plexnode.wtf" - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "TestnetCanto", - "chainId": 7701, - "networkId": 7701, - "explorers": [ - { - "name": "Canto Testnet EVM Explorer (Blockscout)", - "url": "https://testnet.tuber.build", - "standard": "none" - } - ], - "testnet": true, - "slug": "canto-tesnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/776.ts b/packages/chains/chains/776.ts deleted file mode 100644 index 0b62d55014c..00000000000 --- a/packages/chains/chains/776.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OpenChain Testnet", - "chain": "OpenChain Testnet", - "rpc": [], - "faucets": [ - "https://faucet.openchain.info/" - ], - "nativeCurrency": { - "name": "Openchain Testnet", - "symbol": "TOPC", - "decimals": 18 - }, - "infoURL": "https://testnet.openchain.info/", - "shortName": "opc", - "chainId": 776, - "networkId": 776, - "explorers": [ - { - "name": "OPEN CHAIN TESTNET", - "url": "https://testnet.openchain.info", - "standard": "none" - } - ], - "testnet": true, - "slug": "openchain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/77612.ts b/packages/chains/chains/77612.ts deleted file mode 100644 index 69e4691e5ce..00000000000 --- a/packages/chains/chains/77612.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vention Smart Chain Mainnet", - "chain": "VSC", - "icon": { - "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", - "width": 250, - "height": 250, - "format": "png" - }, - "rpc": [ - "https://vention-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://ventionscan.io", - "shortName": "vscm", - "chainId": 77612, - "networkId": 77612, - "explorers": [ - { - "name": "ventionscan", - "url": "https://ventionscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "vention-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7762959.ts b/packages/chains/chains/7762959.ts deleted file mode 100644 index 48123092d54..00000000000 --- a/packages/chains/chains/7762959.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Musicoin", - "chain": "MUSIC", - "rpc": [ - "https://musicoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mewapi.musicoin.tw" - ], - "faucets": [], - "nativeCurrency": { - "name": "Musicoin", - "symbol": "MUSIC", - "decimals": 18 - }, - "infoURL": "https://musicoin.tw", - "shortName": "music", - "chainId": 7762959, - "networkId": 7762959, - "slip44": 184, - "testnet": false, - "slug": "musicoin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/777.ts b/packages/chains/chains/777.ts deleted file mode 100644 index 689164c08c0..00000000000 --- a/packages/chains/chains/777.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "cheapETH", - "chain": "cheapETH", - "rpc": [ - "https://cheapeth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node.cheapeth.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "cTH", - "symbol": "cTH", - "decimals": 18 - }, - "infoURL": "https://cheapeth.org/", - "shortName": "cth", - "chainId": 777, - "networkId": 777, - "testnet": false, - "slug": "cheapeth" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7771.ts b/packages/chains/chains/7771.ts deleted file mode 100644 index 4ff7b5eac85..00000000000 --- a/packages/chains/chains/7771.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bitrock Testnet", - "chain": "Bitrock", - "icon": { - "url": "ipfs://QmfXZCAh3HWS2bJroUStN9TieL4QA9QArMotie3X4pwBfj", - "width": 72, - "height": 72, - "format": "svg" - }, - "rpc": [ - "https://bitrock-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.bit-rock.io" - ], - "faucets": [ - "https://faucet.bit-rock.io" - ], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "tbitrock", - "chainId": 7771, - "networkId": 7771, - "explorers": [ - { - "name": "Bitrock Testnet Explorer", - "url": "https://testnetscan.bit-rock.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "bitrock-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7777.ts b/packages/chains/chains/7777.ts deleted file mode 100644 index c76805ed9ec..00000000000 --- a/packages/chains/chains/7777.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rise of the Warbots Testnet", - "chain": "nmactest", - "rpc": [ - "https://rise-of-the-warbots-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet1.riseofthewarbots.com", - "https://testnet2.riseofthewarbots.com", - "https://testnet3.riseofthewarbots.com", - "https://testnet4.riseofthewarbots.com", - "https://testnet5.riseofthewarbots.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 - }, - "infoURL": "https://riseofthewarbots.com/", - "shortName": "RiseOfTheWarbotsTestnet", - "chainId": 7777, - "networkId": 7777, - "explorers": [ - { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } - ], - "testnet": true, - "slug": "rise-of-the-warbots-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/77777.ts b/packages/chains/chains/77777.ts deleted file mode 100644 index a1ee30742bf..00000000000 --- a/packages/chains/chains/77777.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Toronet Mainnet", - "chain": "Toronet", - "icon": { - "url": "ipfs://QmciSvgLatP6jhgdazuiyD3fSrhipfAN7wC943v1qxcrpv", - "width": 846, - "height": 733, - "format": "png" - }, - "rpc": [ - "https://toronet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "Toronet", - "chainId": 77777, - "networkId": 77777, - "ens": { - "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", - "standard": "none" - } - ], - "testnet": false, - "slug": "toronet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7777777.ts b/packages/chains/chains/7777777.ts deleted file mode 100644 index b5c2853cd0f..00000000000 --- a/packages/chains/chains/7777777.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zora", - "chain": "ETH", - "rpc": [ - "https://zora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.zora.energy/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmZ6qaRwTPFEZUspwMUjaxC6KhmzcELdRQcQzS3P72Dzts/Vector.svg", - "height": 512, - "width": 512, - "format": "svg" - }, - "infoURL": "https://zora.energy", - "shortName": "zora", - "chainId": 7777777, - "networkId": 7777777, - "explorers": [ - { - "name": "Zora Network Explorer", - "url": "https://explorer.zora.energy", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "zora" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/78110.ts b/packages/chains/chains/78110.ts deleted file mode 100644 index 04dc1e0e693..00000000000 --- a/packages/chains/chains/78110.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Firenze test network", - "chain": "ETH", - "rpc": [ - "https://firenze-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ethnode.primusmoney.com/firenze" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firenze Ether", - "symbol": "FIN", - "decimals": 18 - }, - "infoURL": "https://primusmoney.com", - "shortName": "firenze", - "chainId": 78110, - "networkId": 78110, - "testnet": true, - "slug": "firenze-test-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/78281.ts b/packages/chains/chains/78281.ts deleted file mode 100644 index f6d93e24534..00000000000 --- a/packages/chains/chains/78281.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dragonfly Mainnet (Hexapod)", - "chain": "Dragonfly", - "icon": { - "url": "ipfs://QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ", - "width": 512, - "height": 366, - "format": "png" - }, - "rpc": [ - "https://dragonfly-hexapod.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dragonfly-rpc.switch.ch", - "https://dragonfly-rpc.kore-technologies.ch", - "https://dragonfly-rpc.phoenix-systems.io", - "https://dragonfly-rpc.block-spirit.ch" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dragonfly", - "symbol": "DFLY", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "dfly", - "chainId": 78281, - "networkId": 78281, - "explorers": [ - { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dragonfly-hexapod" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/786.ts b/packages/chains/chains/786.ts deleted file mode 100644 index 78c83936133..00000000000 --- a/packages/chains/chains/786.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MAAL Sharia Chain", - "chain": "MAAL", - "icon": { - "url": "ipfs://bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://maal-sharia-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1-mainnet.maalscan.io/", - "https://node2-mainnet.maalscan.io/", - "https://node3-mainnet.maalscan.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 - }, - "infoURL": "https://www.maalblockchain.com/", - "shortName": "maal", - "chainId": 786, - "networkId": 786, - "explorers": [ - { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "maal-sharia-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/787.ts b/packages/chains/chains/787.ts deleted file mode 100644 index 33b1b5d9df5..00000000000 --- a/packages/chains/chains/787.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Acala Network", - "chain": "ACA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "infoURL": "https://acala.network", - "shortName": "aca", - "chainId": 787, - "networkId": 787, - "slip44": 787, - "testnet": false, - "slug": "acala-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7878.ts b/packages/chains/chains/7878.ts deleted file mode 100644 index 1f38f53a000..00000000000 --- a/packages/chains/chains/7878.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Hazlor Testnet", - "chain": "SCAS", - "rpc": [ - "https://hazlor-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://hatlas.rpc.hazlor.com:8545", - "wss://hatlas.rpc.hazlor.com:8546" - ], - "faucets": [ - "https://faucet.hazlor.com" - ], - "nativeCurrency": { - "name": "Hazlor Test Coin", - "symbol": "TSCAS", - "decimals": 18 - }, - "infoURL": "https://hazlor.com", - "shortName": "tscas", - "chainId": 7878, - "networkId": 7878, - "explorers": [ - { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "hazlor-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/788.ts b/packages/chains/chains/788.ts deleted file mode 100644 index 982dbec4a40..00000000000 --- a/packages/chains/chains/788.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Aerochain Testnet", - "chain": "Aerochain", - "rpc": [ - "https://aerochain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.aerochain.id/" - ], - "faucets": [ - "https://faucet.aerochain.id/" - ], - "nativeCurrency": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 - }, - "infoURL": "https://aerochaincoin.org/", - "shortName": "taero", - "chainId": 788, - "networkId": 788, - "explorers": [ - { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "aerochain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/789.ts b/packages/chains/chains/789.ts deleted file mode 100644 index c8b941142ad..00000000000 --- a/packages/chains/chains/789.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Patex", - "chain": "ETH", - "icon": { - "url": "ipfs://QmTNTSNn3t5WpSEzQmUYbkxYkBKaH6QahyVdVrRKyPHChr", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://patex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://patex.io/", - "shortName": "peth", - "chainId": 789, - "networkId": 789, - "explorers": [ - { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": { - "url": "ipfs://QmTNTSNn3t5WpSEzQmUYbkxYkBKaH6QahyVdVrRKyPHChr", - "width": 800, - "height": 800, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "patex" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7895.ts b/packages/chains/chains/7895.ts deleted file mode 100644 index f63dc926628..00000000000 --- a/packages/chains/chains/7895.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "ARDENIUM Athena", - "chain": "ATHENA", - "rpc": [ - "https://ardenium-athena.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-athena.ardescan.com/" - ], - "faucets": [ - "https://faucet-athena.ardescan.com/" - ], - "nativeCurrency": { - "name": "ARD", - "symbol": "tARD", - "decimals": 18 - }, - "infoURL": "https://ardenium.org", - "shortName": "ard", - "chainId": 7895, - "networkId": 7895, - "icon": { - "url": "ipfs://QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG", - "width": 120, - "height": 120, - "format": "png" - }, - "explorers": [ - { - "name": "ARDENIUM Athena Explorer", - "icon": { - "url": "ipfs://QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG", - "width": 120, - "height": 120, - "format": "png" - }, - "url": "https://testnet.ardscan.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "ardenium-athena" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7979.ts b/packages/chains/chains/7979.ts deleted file mode 100644 index 85e55ba5fab..00000000000 --- a/packages/chains/chains/7979.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DOS Chain", - "chain": "DOS", - "rpc": [ - "https://dos-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://main.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "https://doschain.io", - "shortName": "dos", - "chainId": 7979, - "networkId": 7979, - "icon": { - "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "DOScan", - "url": "https://doscan.io", - "icon": { - "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dos-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/79879.ts b/packages/chains/chains/79879.ts deleted file mode 100644 index 9d429ecf544..00000000000 --- a/packages/chains/chains/79879.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Gold Smart Chain Testnet", - "chain": "STAND", - "icon": { - "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", - "width": 396, - "height": 418, - "format": "png" - }, - "rpc": [ - "https://gold-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDt", - "chainId": 79879, - "networkId": 79879, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://testnet.goldsmartchain.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "gold-smart-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/800.ts b/packages/chains/chains/800.ts deleted file mode 100644 index 56bc8ed6191..00000000000 --- a/packages/chains/chains/800.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lucid Blockchain", - "chain": "Lucid", - "icon": { - "url": "ipfs://bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://lucid-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.lucidcoin.io" - ], - "faucets": [ - "https://faucet.lucidcoin.io" - ], - "nativeCurrency": { - "name": "LUCID", - "symbol": "LUCID", - "decimals": 18 - }, - "infoURL": "https://lucidcoin.io", - "shortName": "LUCID", - "chainId": 800, - "networkId": 800, - "explorers": [ - { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "lucid-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8000.ts b/packages/chains/chains/8000.ts deleted file mode 100644 index be467cfea62..00000000000 --- a/packages/chains/chains/8000.ts +++ /dev/null @@ -1,51 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Teleport", - "chain": "Teleport", - "rpc": [ - "https://teleport.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-rpc.teleport.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport", - "chainId": 8000, - "networkId": 8000, - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - }, - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.teleport.network", - "standard": "none", - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - } - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - } - } - ], - "testnet": false, - "slug": "teleport" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/800001.ts b/packages/chains/chains/800001.ts deleted file mode 100644 index b730193a73f..00000000000 --- a/packages/chains/chains/800001.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "OctaSpace", - "chain": "OCTA", - "rpc": [ - "https://octaspace.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.octa.space", - "wss://rpc.octa.space" - ], - "faucets": [], - "nativeCurrency": { - "name": "OctaSpace", - "symbol": "OCTA", - "decimals": 18 - }, - "infoURL": "https://octa.space", - "shortName": "octa", - "chainId": 800001, - "networkId": 800001, - "icon": { - "url": "ipfs://QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.octa.space", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "octaspace" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/80001.ts b/packages/chains/chains/80001.ts deleted file mode 100644 index fa0381c17e3..00000000000 --- a/packages/chains/chains/80001.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mumbai", - "title": "Polygon Testnet Mumbai", - "chain": "Polygon", - "icon": { - "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/polygon/512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "rpc": [ - "https://mumbai.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://polygon-mumbai.infura.io/v3/${INFURA_API_KEY}", - "https://polygon-mumbai.g.alchemy.com/v2/${ALCHEMY_API_KEY}", - "https://matic-mumbai.chainstacklabs.com", - "https://rpc-mumbai.maticvigil.com", - "https://matic-testnet-archive-rpc.bwarelabs.com", - "https://polygon-mumbai-bor.publicnode.com" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/", - "shortName": "maticmum", - "chainId": 80001, - "networkId": 80001, - "explorers": [ - { - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "mumbai" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8001.ts b/packages/chains/chains/8001.ts deleted file mode 100644 index 4c0b2430a36..00000000000 --- a/packages/chains/chains/8001.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Teleport Testnet", - "chain": "Teleport", - "rpc": [ - "https://teleport-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-rpc.testnet.teleport.network" - ], - "faucets": [ - "https://chain-docs.teleport.network/testnet/faucet.html" - ], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport-testnet", - "chainId": 8001, - "networkId": 8001, - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - }, - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.testnet.teleport.network", - "standard": "none", - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - } - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": { - "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", - "width": 390, - "height": 390, - "format": "svg" - } - } - ], - "testnet": true, - "slug": "teleport-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8007736.ts b/packages/chains/chains/8007736.ts deleted file mode 100644 index 319548172e8..00000000000 --- a/packages/chains/chains/8007736.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Plian Mainnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://plian-subchain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.plian.io/child_0" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-mainnet-l2", - "chainId": 8007736, - "networkId": 8007736, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-2099156", - "type": "L2" - }, - "testnet": false, - "slug": "plian-subchain-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8029.ts b/packages/chains/chains/8029.ts deleted file mode 100644 index 07ba9785868..00000000000 --- a/packages/chains/chains/8029.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MDGL Testnet", - "chain": "MDGL", - "rpc": [ - "https://mdgl-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.mdgl.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MDGL Token", - "symbol": "MDGLT", - "decimals": 18 - }, - "infoURL": "https://mdgl.io", - "shortName": "mdgl", - "chainId": 8029, - "networkId": 8029, - "testnet": true, - "slug": "mdgl-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/803.ts b/packages/chains/chains/803.ts deleted file mode 100644 index 2ea3c637bb4..00000000000 --- a/packages/chains/chains/803.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Haic", - "chain": "Haic", - "rpc": [ - "https://haic.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://orig.haichain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 - }, - "infoURL": "https://www.haichain.io/", - "shortName": "haic", - "chainId": 803, - "networkId": 803, - "testnet": false, - "slug": "haic" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/808.ts b/packages/chains/chains/808.ts deleted file mode 100644 index bd750acd0af..00000000000 --- a/packages/chains/chains/808.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Portal Fantasy Chain Test", - "chain": "PF", - "icon": { - "url": "ipfs://QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [ - "https://portal-fantasy-chain-test.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://subnets.avax.network/portal-fantasy/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PFTEST", - "chainId": 808, - "networkId": 808, - "explorers": [], - "testnet": true, - "slug": "portal-fantasy-chain-test" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8080.ts b/packages/chains/chains/8080.ts deleted file mode 100644 index db8ef017bd4..00000000000 --- a/packages/chains/chains/8080.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shardeum Liberty 1.X", - "chain": "Shardeum", - "icon": { - "url": "ipfs://Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD", - "width": 609, - "height": 533, - "format": "png" - }, - "rpc": [ - "https://shardeum-liberty-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://liberty10.shardeum.org/" - ], - "faucets": [ - "https://faucet.liberty10.shardeum.org" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Liberty10", - "chainId": 8080, - "networkId": 8080, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-liberty10.shardeum.org", - "standard": "EIP3091" - } - ], - "redFlags": [ - "reusedChainId" - ], - "testnet": false, - "slug": "shardeum-liberty-1-x" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8081.ts b/packages/chains/chains/8081.ts deleted file mode 100644 index 4ec838b7d81..00000000000 --- a/packages/chains/chains/8081.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shardeum Sphinx DApp 1.X", - "shortName": "Sphinx", - "chain": "Shardeum", - "chainId": 8081, - "icon": { - "height": 1200, - "width": 1200, - "url": "ipfs://QmQWzHUy4kmk1eGksDREGQL3GWrssdAPBxHt4aKGAFHSfJ", - "format": "png" - }, - "rpc": [ - "https://shardeum-sphinx-dapp-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dapps.shardeum.org/sphinx" - ], - "nativeCurrency": { - "name": "Shardeum", - "symbol": "SHM", - "decimals": 18 - }, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-dapps.shardeum.org", - "standard": "EIP3091" - } - ], - "faucets": [ - "https://faucet-dapps.shardeum.org/" - ], - "infoURL": "https://docs.shardeum.org/", - "testnet": true, - "slug": "shardeum-sphinx-dapp-1-x" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8082.ts b/packages/chains/chains/8082.ts deleted file mode 100644 index d4f4277ac63..00000000000 --- a/packages/chains/chains/8082.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Shardeum Sphinx 1.X", - "chain": "Shardeum", - "icon": { - "url": "ipfs://Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD", - "width": 609, - "height": 533, - "format": "png" - }, - "rpc": [ - "https://shardeum-sphinx-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sphinx.shardeum.org/" - ], - "faucets": [ - "https://faucet-sphinx.shardeum.org/" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Sphinx10", - "chainId": 8082, - "networkId": 8082, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "EIP3091" - } - ], - "redFlags": [ - "reusedChainId" - ], - "testnet": false, - "slug": "shardeum-sphinx-1-x" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8086.ts b/packages/chains/chains/8086.ts deleted file mode 100644 index d573808f34a..00000000000 --- a/packages/chains/chains/8086.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BitEth", - "chain": "BTE", - "rpc": [ - "https://biteth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.biteth.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitEth", - "symbol": "BTE", - "decimals": 18 - }, - "infoURL": "https://biteth.org", - "shortName": "BitEth", - "chainId": 8086, - "networkId": 8086, - "explorers": [], - "testnet": false, - "slug": "biteth" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8098.ts b/packages/chains/chains/8098.ts deleted file mode 100644 index 6d69af5c78c..00000000000 --- a/packages/chains/chains/8098.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "StreamuX Blockchain", - "chain": "StreamuX", - "rpc": [ - "https://streamux-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "StreamuX", - "symbol": "SmuX", - "decimals": 18 - }, - "infoURL": "https://www.streamux.cloud", - "shortName": "StreamuX", - "chainId": 8098, - "networkId": 8098, - "testnet": false, - "slug": "streamux-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/813.ts b/packages/chains/chains/813.ts deleted file mode 100644 index 6b30b7170b9..00000000000 --- a/packages/chains/chains/813.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Qitmeer", - "chain": "MEER", - "rpc": [ - "https://qitmeer.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-dataseed1.meerscan.io", - "https://evm-dataseed2.meerscan.io", - "https://evm-dataseed3.meerscan.io", - "https://evm-dataseed.meerscan.com", - "https://evm-dataseed1.meerscan.com", - "https://evm-dataseed2.meerscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meer", - "chainId": 813, - "networkId": 813, - "slip44": 813, - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "meerscan", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "url": "https://evm.meerscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "qitmeer" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8131.ts b/packages/chains/chains/8131.ts deleted file mode 100644 index 98dae01dae7..00000000000 --- a/packages/chains/chains/8131.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Qitmeer Network Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meertest", - "chainId": 8131, - "networkId": 8131, - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "meerscan testnet", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "url": "https://testnet.qng.meerscan.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "qitmeer-network-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8132.ts b/packages/chains/chains/8132.ts deleted file mode 100644 index fc416971ae3..00000000000 --- a/packages/chains/chains/8132.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Qitmeer Network Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meermix", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 8132, - "networkId": 8132, - "status": "incubating", - "testnet": false, - "slug": "qitmeer-network-mixnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8133.ts b/packages/chains/chains/8133.ts deleted file mode 100644 index 6e24178ec8a..00000000000 --- a/packages/chains/chains/8133.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Qitmeer Network Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meerpriv", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 8133, - "networkId": 8133, - "status": "incubating", - "testnet": false, - "slug": "qitmeer-network-privnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8134.ts b/packages/chains/chains/8134.ts deleted file mode 100644 index 80a6041ad1a..00000000000 --- a/packages/chains/chains/8134.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Amana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amana", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 8134, - "networkId": 8134, - "status": "incubating", - "testnet": false, - "slug": "amana" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81341.ts b/packages/chains/chains/81341.ts deleted file mode 100644 index 2616f9a2739..00000000000 --- a/packages/chains/chains/81341.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Amana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanatest", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81341, - "networkId": 81341, - "status": "incubating", - "testnet": true, - "slug": "amana-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81342.ts b/packages/chains/chains/81342.ts deleted file mode 100644 index 4c678292b0c..00000000000 --- a/packages/chains/chains/81342.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Amana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanamix", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81342, - "networkId": 81342, - "status": "incubating", - "testnet": false, - "slug": "amana-mixnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81343.ts b/packages/chains/chains/81343.ts deleted file mode 100644 index 6bddafc687a..00000000000 --- a/packages/chains/chains/81343.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Amana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanapriv", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81343, - "networkId": 81343, - "status": "incubating", - "testnet": false, - "slug": "amana-privnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8135.ts b/packages/chains/chains/8135.ts deleted file mode 100644 index b5218fcfc8d..00000000000 --- a/packages/chains/chains/8135.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Flana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flana", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 8135, - "networkId": 8135, - "status": "incubating", - "testnet": false, - "slug": "flana" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81351.ts b/packages/chains/chains/81351.ts deleted file mode 100644 index ee149b4aacb..00000000000 --- a/packages/chains/chains/81351.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Flana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanatest", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81351, - "networkId": 81351, - "status": "incubating", - "testnet": true, - "slug": "flana-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81352.ts b/packages/chains/chains/81352.ts deleted file mode 100644 index f2e9fa81104..00000000000 --- a/packages/chains/chains/81352.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Flana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanamix", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81352, - "networkId": 81352, - "status": "incubating", - "testnet": false, - "slug": "flana-mixnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81353.ts b/packages/chains/chains/81353.ts deleted file mode 100644 index c8322e777a6..00000000000 --- a/packages/chains/chains/81353.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Flana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanapriv", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81353, - "networkId": 81353, - "status": "incubating", - "testnet": false, - "slug": "flana-privnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8136.ts b/packages/chains/chains/8136.ts deleted file mode 100644 index 8485054d7a0..00000000000 --- a/packages/chains/chains/8136.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mizana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizana", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 8136, - "networkId": 8136, - "status": "incubating", - "testnet": false, - "slug": "mizana" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81361.ts b/packages/chains/chains/81361.ts deleted file mode 100644 index 1975c048f7d..00000000000 --- a/packages/chains/chains/81361.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mizana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanatest", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81361, - "networkId": 81361, - "status": "incubating", - "testnet": true, - "slug": "mizana-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81362.ts b/packages/chains/chains/81362.ts deleted file mode 100644 index 4fd02773669..00000000000 --- a/packages/chains/chains/81362.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mizana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanamix", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81362, - "networkId": 81362, - "status": "incubating", - "testnet": false, - "slug": "mizana-mixnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81363.ts b/packages/chains/chains/81363.ts deleted file mode 100644 index f5b195cc9dd..00000000000 --- a/packages/chains/chains/81363.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mizana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanapriv", - "icon": { - "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", - "width": 512, - "height": 512, - "format": "png" - }, - "chainId": 81363, - "networkId": 81363, - "status": "incubating", - "testnet": false, - "slug": "mizana-privnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/818.ts b/packages/chains/chains/818.ts deleted file mode 100644 index fc75f5aa941..00000000000 --- a/packages/chains/chains/818.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BeOne Chain Mainnet", - "chain": "BOC", - "icon": { - "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://beone-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed1.beonechain.com", - "https://dataseed2.beonechain.com", - "https://dataseed-us1.beonechain.com", - "https://dataseed-us2.beonechain.com", - "https://dataseed-uk1.beonechain.com", - "https://dataseed-uk2.beonechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BeOne Chain Mainnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://beonechain.com", - "shortName": "BOC", - "chainId": 818, - "networkId": 818, - "slip44": 8181, - "explorers": [ - { - "name": "BeOne Chain Mainnet", - "url": "https://beonescan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "beone-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8181.ts b/packages/chains/chains/8181.ts deleted file mode 100644 index 18b64af60c0..00000000000 --- a/packages/chains/chains/8181.ts +++ /dev/null @@ -1,44 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BeOne Chain Testnet", - "chain": "BOC", - "rpc": [ - "https://beone-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://pre-boc1.beonechain.com", - "https://pre-boc2.beonechain.com", - "https://pre-boc3.beonechain.com" - ], - "faucets": [ - "https://testnet.beonescan.com/faucet" - ], - "nativeCurrency": { - "name": "BeOne Chain Testnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://testnet.beonescan.com", - "shortName": "tBOC", - "chainId": 8181, - "networkId": 8181, - "icon": { - "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "BeOne Chain Testnet", - "url": "https://testnet.beonescan.com", - "icon": { - "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", - "width": 500, - "height": 500, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": true, - "slug": "beone-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/820.ts b/packages/chains/chains/820.ts deleted file mode 100644 index fbb6d563385..00000000000 --- a/packages/chains/chains/820.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Callisto Mainnet", - "chain": "CLO", - "rpc": [ - "https://callisto.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.callisto.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 - }, - "infoURL": "https://callisto.network", - "shortName": "clo", - "chainId": 820, - "networkId": 1, - "slip44": 820, - "testnet": false, - "slug": "callisto" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8217.ts b/packages/chains/chains/8217.ts deleted file mode 100644 index 8a7db20f128..00000000000 --- a/packages/chains/chains/8217.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Klaytn Mainnet Cypress", - "chain": "KLAY", - "rpc": [ - "https://klaytn-cypress.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://klaytn.blockpi.network/v1/rpc/public", - "https://klaytn-mainnet-rpc.allthatnode.com:8551", - "https://public-en-cypress.klaytn.net", - "https://public-node-api.klaytnapi.com/v1/cypress" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "infoURL": "https://www.klaytn.com/", - "shortName": "Cypress", - "chainId": 8217, - "networkId": 8217, - "slip44": 8217, - "explorers": [ - { - "name": "klaytnfinder", - "url": "https://www.klaytnfinder.io/", - "standard": "none" - }, - { - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", - "standard": "none" - } - ], - "icon": { - "format": "png", - "url": "ipfs://bafkreigtgdivlmfvf7trqjqy4vkz2d26xk3iif6av265v4klu5qavsugm4", - "height": 1000, - "width": 1000 - }, - "testnet": false, - "slug": "klaytn-cypress" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8272.ts b/packages/chains/chains/8272.ts deleted file mode 100644 index 54c2363e3c8..00000000000 --- a/packages/chains/chains/8272.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Blockton Blockchain", - "chain": "Blockton Blockchain", - "icon": { - "url": "ipfs://bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://blockton-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.blocktonscan.com/" - ], - "faucets": [ - "https://faucet.blocktonscan.com/" - ], - "nativeCurrency": { - "name": "BLOCKTON", - "symbol": "BTON", - "decimals": 18 - }, - "infoURL": "https://blocktoncoin.com", - "shortName": "BTON", - "chainId": 8272, - "networkId": 8272, - "explorers": [ - { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "blockton-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/827431.ts b/packages/chains/chains/827431.ts deleted file mode 100644 index 45d6feddf00..00000000000 --- a/packages/chains/chains/827431.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CURVE Mainnet", - "chain": "CURVE", - "icon": { - "url": "ipfs://QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg", - "width": 150, - "height": 150, - "format": "png" - }, - "rpc": [ - "https://curve.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-rpc.curvescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Curve", - "symbol": "CURVE", - "decimals": 18 - }, - "infoURL": "https://curvescan.io", - "shortName": "CURVEm", - "chainId": 827431, - "networkId": 827431, - "explorers": [ - { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "curve" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8285.ts b/packages/chains/chains/8285.ts deleted file mode 100644 index 9de94a00e9a..00000000000 --- a/packages/chains/chains/8285.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "KorthoTest", - "chain": "Kortho", - "rpc": [ - "https://korthotest.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://www.krotho-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kortho Test", - "symbol": "KTO", - "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "Kortho", - "chainId": 8285, - "networkId": 8285, - "testnet": true, - "slug": "korthotest" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8387.ts b/packages/chains/chains/8387.ts deleted file mode 100644 index 886479dcd5c..00000000000 --- a/packages/chains/chains/8387.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dracones Financial Services", - "title": "The Dracones Mainnet", - "chain": "FUCK", - "rpc": [ - "https://dracones-financial-services.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.dracones.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Functionally Universal Coin Kind", - "symbol": "FUCK", - "decimals": 18 - }, - "infoURL": "https://wolfery.com", - "shortName": "fuck", - "chainId": 8387, - "networkId": 8387, - "icon": { - "url": "ipfs://bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [], - "testnet": false, - "slug": "dracones-financial-services" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/841.ts b/packages/chains/chains/841.ts deleted file mode 100644 index f5fec4b2142..00000000000 --- a/packages/chains/chains/841.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taraxa Mainnet", - "chain": "Tara", - "icon": { - "url": "ipfs://QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D", - "width": 310, - "height": 310, - "format": "png" - }, - "rpc": [ - "https://taraxa.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.mainnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "tara", - "chainId": 841, - "networkId": 841, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "taraxa" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/842.ts b/packages/chains/chains/842.ts deleted file mode 100644 index d3b746b9cb8..00000000000 --- a/packages/chains/chains/842.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Taraxa Testnet", - "chain": "Tara", - "icon": { - "url": "ipfs://QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D", - "width": 310, - "height": 310, - "format": "png" - }, - "rpc": [ - "https://taraxa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.testnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "taratest", - "chainId": 842, - "networkId": 842, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "taraxa-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8453.ts b/packages/chains/chains/8453.ts deleted file mode 100644 index 687828e64d2..00000000000 --- a/packages/chains/chains/8453.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Base", - "chain": "ETH", - "rpc": [ - "https://base.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://developer-access-mainnet.base.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "base", - "chainId": 8453, - "networkId": 8453, - "icon": { - "url": "ipfs://QmW5Vn15HeRkScMfPcW12ZdZcC2yUASpu6eCsECRdEmjjj/base-512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "explorers": [ - { - "name": "basescout", - "url": "https://base.blockscout.com", - "standard": "none" - }, - { - "name": "basescan", - "url": "https://basescan.org", - "standard": "none" - } - ], - "status": "active", - "testnet": false, - "slug": "base" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/84531.ts b/packages/chains/chains/84531.ts deleted file mode 100644 index f58d48c4c42..00000000000 --- a/packages/chains/chains/84531.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Base Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://base-goerli.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://goerli.base.org" - ], - "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, - "icon": { - "url": "ipfs://QmW5Vn15HeRkScMfPcW12ZdZcC2yUASpu6eCsECRdEmjjj/base-512.png", - "height": 512, - "width": 512, - "format": "png" - }, - "explorers": [ - { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "standard": "none" - }, - { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" - } - ], - "testnet": true, - "slug": "base-goerli" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/846000.ts b/packages/chains/chains/846000.ts deleted file mode 100644 index 8d772ae95de..00000000000 --- a/packages/chains/chains/846000.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "4GoodNetwork", - "chain": "4GN", - "rpc": [ - "https://4goodnetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://chain.deptofgood.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "APTA", - "symbol": "APTA", - "decimals": 18 - }, - "infoURL": "https://bloqs4good.com", - "shortName": "bloqs4good", - "chainId": 846000, - "networkId": 846000, - "testnet": false, - "slug": "4goodnetwork" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/85449.ts b/packages/chains/chains/85449.ts deleted file mode 100644 index 054cbb05f6d..00000000000 --- a/packages/chains/chains/85449.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "CYBERTRUST", - "chain": "CYBER", - "rpc": [ - "https://cybertrust.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "http://testnet.cybertrust.space:48501" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyber Trust", - "symbol": "CYBER", - "decimals": 18 - }, - "infoURL": "https://cybertrust.space", - "shortName": "Cyber", - "chainId": 85449, - "networkId": 48501, - "testnet": true, - "slug": "cybertrust" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/859.ts b/packages/chains/chains/859.ts deleted file mode 100644 index 573e8551322..00000000000 --- a/packages/chains/chains/859.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zeeth Chain Dev", - "chain": "ZeethChainDev", - "rpc": [ - "https://zeeth-chain-dev.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.dev.zeeth.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "zeethdev", - "chainId": 859, - "networkId": 859, - "explorers": [ - { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "zeeth-chain-dev" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8654.ts b/packages/chains/chains/8654.ts deleted file mode 100644 index fba6558cd30..00000000000 --- a/packages/chains/chains/8654.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Toki Network", - "chain": "TOKI", - "rpc": [ - "https://toki-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki", - "chainId": 8654, - "networkId": 8654, - "icon": { - "url": "ipfs://QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [], - "testnet": false, - "slug": "toki-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8655.ts b/packages/chains/chains/8655.ts deleted file mode 100644 index b7f21829a06..00000000000 --- a/packages/chains/chains/8655.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Toki Testnet", - "chain": "TOKI", - "rpc": [ - "https://toki-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki-testnet", - "chainId": 8655, - "networkId": 8655, - "icon": { - "url": "ipfs://QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [], - "testnet": true, - "slug": "toki-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/868.ts b/packages/chains/chains/868.ts deleted file mode 100644 index a5a6d910c5e..00000000000 --- a/packages/chains/chains/868.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Fantasia Chain Mainnet", - "chain": "FSC", - "rpc": [ - "https://fantasia-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-data1.fantasiachain.com/", - "https://mainnet-data2.fantasiachain.com/", - "https://mainnet-data3.fantasiachain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FST", - "symbol": "FST", - "decimals": 18 - }, - "infoURL": "https://fantasia.technology/", - "shortName": "FSCMainnet", - "chainId": 868, - "networkId": 868, - "explorers": [ - { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "fantasia-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8723.ts b/packages/chains/chains/8723.ts deleted file mode 100644 index 4d2e2333394..00000000000 --- a/packages/chains/chains/8723.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TOOL Global Mainnet", - "chain": "OLO", - "rpc": [ - "https://tool-global.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet-web3.wolot.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://ibdt.io", - "shortName": "olo", - "chainId": 8723, - "networkId": 8723, - "slip44": 479, - "explorers": [ - { - "name": "OLO Block Explorer", - "url": "https://www.olo.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "tool-global" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8724.ts b/packages/chains/chains/8724.ts deleted file mode 100644 index 72edbab98be..00000000000 --- a/packages/chains/chains/8724.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TOOL Global Testnet", - "chain": "OLO", - "rpc": [ - "https://tool-global-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-web3.wolot.io" - ], - "faucets": [ - "https://testnet-explorer.wolot.io" - ], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.wolot.io", - "shortName": "tolo", - "chainId": 8724, - "networkId": 8724, - "slip44": 479, - "testnet": true, - "slug": "tool-global-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8738.ts b/packages/chains/chains/8738.ts deleted file mode 100644 index 756e28c9b37..00000000000 --- a/packages/chains/chains/8738.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Alph Network", - "chain": "ALPH", - "rpc": [ - "https://alph-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.alph.network", - "wss://rpc.alph.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alph Network", - "symbol": "ALPH", - "decimals": 18 - }, - "infoURL": "https://alph.network", - "shortName": "alph", - "chainId": 8738, - "networkId": 8738, - "explorers": [ - { - "name": "alphscan", - "url": "https://explorer.alph.network", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "alph-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/876.ts b/packages/chains/chains/876.ts deleted file mode 100644 index 187aaa29976..00000000000 --- a/packages/chains/chains/876.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Bandai Namco Research Verse Mainnet", - "chain": "Bandai Namco Research Verse", - "icon": { - "url": "ipfs://bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq", - "width": 2048, - "height": 2048, - "format": "png" - }, - "rpc": [ - "https://bandai-namco-research-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.main.oasvrs.bnken.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.bandainamco-mirai.com/en/", - "shortName": "BNKEN", - "chainId": 876, - "networkId": 876, - "explorers": [ - { - "name": "Bandai Namco Research Verse Explorer", - "url": "https://explorer.main.oasvrs.bnken.net", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - }, - "testnet": false, - "slug": "bandai-namco-research-verse" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8768.ts b/packages/chains/chains/8768.ts deleted file mode 100644 index 7a6474a017f..00000000000 --- a/packages/chains/chains/8768.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TMY Chain", - "chain": "TMY", - "icon": { - "url": "ipfs://Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH", - "width": 1024, - "height": 1023, - "format": "svg" - }, - "rpc": [ - "https://tmy-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://node1.tmyblockchain.org/rpc" - ], - "faucets": [ - "https://faucet.tmychain.org/" - ], - "nativeCurrency": { - "name": "TMY", - "symbol": "TMY", - "decimals": 18 - }, - "infoURL": "https://tmychain.org/", - "shortName": "tmy", - "chainId": 8768, - "networkId": 8768, - "testnet": false, - "slug": "tmy-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/877.ts b/packages/chains/chains/877.ts deleted file mode 100644 index cdab7d3c4dd..00000000000 --- a/packages/chains/chains/877.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dexit Network", - "chain": "DXT", - "rpc": [ - "https://dexit-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dxt.dexit.network" - ], - "faucets": [ - "https://faucet.dexit.network" - ], - "nativeCurrency": { - "name": "Dexit network", - "symbol": "DXT", - "decimals": 18 - }, - "infoURL": "https://dexit.network", - "shortName": "DXT", - "chainId": 877, - "networkId": 877, - "explorers": [ - { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "dexit-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8794598.ts b/packages/chains/chains/8794598.ts deleted file mode 100644 index 80297c02619..00000000000 --- a/packages/chains/chains/8794598.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "HAPchain", - "chain": "HAPchain", - "rpc": [ - "https://hapchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://jsonrpc.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap", - "chainId": 8794598, - "networkId": 8794598, - "icon": { - "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout.hap.land", - "standard": "none", - "icon": { - "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": false, - "slug": "hapchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/880.ts b/packages/chains/chains/880.ts deleted file mode 100644 index 022f8d5a8ae..00000000000 --- a/packages/chains/chains/880.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Ambros Chain Mainnet", - "chain": "ambroschain", - "rpc": [ - "https://ambros-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.ambros.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBROS", - "decimals": 18 - }, - "infoURL": "https://ambros.network", - "shortName": "ambros", - "chainId": 880, - "networkId": 880, - "explorers": [ - { - "name": "Ambros Chain Explorer", - "url": "https://ambrosscan.com", - "standard": "none" - } - ], - "testnet": false, - "slug": "ambros-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8848.ts b/packages/chains/chains/8848.ts deleted file mode 100644 index 44b0817fc80..00000000000 --- a/packages/chains/chains/8848.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MARO Blockchain Mainnet", - "chain": "MARO Blockchain", - "icon": { - "url": "ipfs://bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa", - "width": 160, - "height": 160, - "format": "png" - }, - "rpc": [ - "https://maro-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.ma.ro" - ], - "faucets": [], - "nativeCurrency": { - "name": "MARO", - "symbol": "MARO", - "decimals": 18 - }, - "infoURL": "https://ma.ro/", - "shortName": "maro", - "chainId": 8848, - "networkId": 8848, - "explorers": [ - { - "name": "MARO Scan", - "url": "https://scan.ma.ro/#", - "standard": "none" - } - ], - "testnet": false, - "slug": "maro-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/888.ts b/packages/chains/chains/888.ts deleted file mode 100644 index 3e4ffaca724..00000000000 --- a/packages/chains/chains/888.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Wanchain", - "chain": "WAN", - "rpc": [ - "https://wanchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://gwan-ssl.wandevs.org:56891/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 - }, - "infoURL": "https://www.wanscan.org", - "shortName": "wan", - "chainId": 888, - "networkId": 888, - "slip44": 5718350, - "testnet": false, - "slug": "wanchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8880.ts b/packages/chains/chains/8880.ts deleted file mode 100644 index 5a21b664381..00000000000 --- a/packages/chains/chains/8880.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Unique", - "icon": { - "url": "ipfs://QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR", - "width": 48, - "height": 48, - "format": "svg" - }, - "chain": "UNQ", - "rpc": [ - "https://unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.unique.network", - "https://eu-rpc.unique.network", - "https://asia-rpc.unique.network", - "https://us-rpc.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Unique", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "unq", - "chainId": 8880, - "networkId": 8880, - "explorers": [ - { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" - } - ], - "testnet": false, - "slug": "unique" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8881.ts b/packages/chains/chains/8881.ts deleted file mode 100644 index 89f4d459ef3..00000000000 --- a/packages/chains/chains/8881.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quartz by Unique", - "icon": { - "url": "ipfs://QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp", - "width": 48, - "height": 48, - "format": "svg" - }, - "chain": "UNQ", - "rpc": [ - "https://quartz-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-quartz.unique.network", - "https://quartz.api.onfinality.io/public-ws", - "https://eu-rpc-quartz.unique.network", - "https://asia-rpc-quartz.unique.network", - "https://us-rpc-quartz.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "qtz", - "chainId": 8881, - "networkId": 8881, - "explorers": [ - { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" - } - ], - "testnet": false, - "slug": "quartz-by-unique" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8882.ts b/packages/chains/chains/8882.ts deleted file mode 100644 index 644c722cb71..00000000000 --- a/packages/chains/chains/8882.ts +++ /dev/null @@ -1,39 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Opal testnet by Unique", - "icon": { - "url": "ipfs://QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc", - "width": 48, - "height": 48, - "format": "svg" - }, - "chain": "UNQ", - "rpc": [ - "https://opal-testnet-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-opal.unique.network", - "https://us-rpc-opal.unique.network", - "https://eu-rpc-opal.unique.network", - "https://asia-rpc-opal.unique.network" - ], - "faucets": [ - "https://t.me/unique2faucet_opal_bot" - ], - "nativeCurrency": { - "name": "Opal", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "opl", - "chainId": 8882, - "networkId": 8882, - "explorers": [ - { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", - "standard": "none" - } - ], - "testnet": true, - "slug": "opal-testnet-by-unique" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8883.ts b/packages/chains/chains/8883.ts deleted file mode 100644 index eb6f1787ff1..00000000000 --- a/packages/chains/chains/8883.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Sapphire by Unique", - "icon": { - "url": "ipfs://Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf", - "width": 48, - "height": 48, - "format": "svg" - }, - "chain": "UNQ", - "rpc": [ - "https://sapphire-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-sapphire.unique.network", - "https://us-rpc-sapphire.unique.network", - "https://eu-rpc-sapphire.unique.network", - "https://asia-rpc-sapphire.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "sph", - "chainId": 8883, - "networkId": 8883, - "explorers": [ - { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" - } - ], - "testnet": false, - "slug": "sapphire-by-unique" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888.ts b/packages/chains/chains/8888.ts deleted file mode 100644 index 45a7cd5c943..00000000000 --- a/packages/chains/chains/8888.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "XANAChain", - "chain": "XANAChain", - "rpc": [ - "https://xanachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.xana.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "XETA", - "symbol": "XETA", - "decimals": 18 - }, - "infoURL": "https://xanachain.xana.net/", - "shortName": "XANAChain", - "chainId": 8888, - "networkId": 8888, - "icon": { - "url": "ipfs://QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj", - "width": 512, - "height": 512, - "format": "png" - }, - "explorers": [ - { - "name": "XANAChain", - "url": "https://xanachain.xana.net", - "standard": "EIP3091" - } - ], - "redFlags": [ - "reusedChainId" - ], - "testnet": false, - "slug": "xanachain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88880.ts b/packages/chains/chains/88880.ts deleted file mode 100644 index 8c08f740580..00000000000 --- a/packages/chains/chains/88880.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Chiliz Scoville Testnet", - "chain": "CHZ", - "rpc": [ - "https://chiliz-scoville-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://scoville-rpc.chiliz.com" - ], - "faucets": [ - "https://scoville-faucet.chiliz.com" - ], - "nativeCurrency": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED", - "width": 400, - "height": 400, - "format": "png" - }, - "infoURL": "https://www.chiliz.com/en/chain", - "shortName": "chz", - "chainId": 88880, - "networkId": 88880, - "explorers": [ - { - "name": "scoville-explorer", - "url": "https://scoville-explorer.chiliz.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "chiliz-scoville-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88888.ts b/packages/chains/chains/88888.ts deleted file mode 100644 index 2e2c9498da4..00000000000 --- a/packages/chains/chains/88888.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "IVAR Chain Mainnet", - "chain": "IVAR", - "icon": { - "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", - "width": 519, - "height": 519, - "format": "svg" - }, - "rpc": [ - "https://ivar-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "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" - } - ], - "testnet": false, - "slug": "ivar-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/888888.ts b/packages/chains/chains/888888.ts deleted file mode 100644 index ca84fd93a8f..00000000000 --- a/packages/chains/chains/888888.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vision - Mainnet", - "chain": "Vision", - "rpc": [ - "https://vision.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://infragrid.v.network/ethereum/compatible" - ], - "faucets": [], - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "infoURL": "https://www.v.network", - "explorers": [ - { - "name": "Visionscan", - "url": "https://www.visionscan.org", - "standard": "EIP3091" - } - ], - "shortName": "vision", - "chainId": 888888, - "networkId": 888888, - "slip44": 60, - "testnet": false, - "slug": "vision" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888881.ts b/packages/chains/chains/8888881.ts deleted file mode 100644 index bfed14d7449..00000000000 --- a/packages/chains/chains/8888881.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quarix Testnet", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix-testnet", - "chainId": 8888881, - "networkId": 8888881, - "icon": { - "url": "ipfs://QmZmY6xVNzRAGwyT64PuyHaQ33BR84HEWvTVf6YHPW7kvQ", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [], - "testnet": true, - "slug": "quarix-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888888.ts b/packages/chains/chains/8888888.ts deleted file mode 100644 index c2d13353729..00000000000 --- a/packages/chains/chains/8888888.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Quarix", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix", - "chainId": 8888888, - "networkId": 8888888, - "icon": { - "url": "ipfs://QmZmY6xVNzRAGwyT64PuyHaQ33BR84HEWvTVf6YHPW7kvQ", - "width": 1024, - "height": 1024, - "format": "png" - }, - "explorers": [], - "testnet": false, - "slug": "quarix" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88888888.ts b/packages/chains/chains/88888888.ts deleted file mode 100644 index 50dc2d5d3e0..00000000000 --- a/packages/chains/chains/88888888.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "T.E.A.M Blockchain", - "chain": "TEAM", - "icon": { - "url": "ipfs://QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt", - "width": 248, - "height": 248, - "format": "png" - }, - "rpc": [ - "https://t-e-a-m-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.teamblockchain.team" - ], - "faucets": [], - "nativeCurrency": { - "name": "TEAM", - "symbol": "$TEAM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://teamblockchain.team", - "shortName": "team", - "chainId": 88888888, - "networkId": 88888888, - "explorers": [ - { - "name": "teamscan", - "url": "https://teamblockchain.team", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "t-e-a-m-blockchain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8889.ts b/packages/chains/chains/8889.ts deleted file mode 100644 index d4a46d03479..00000000000 --- a/packages/chains/chains/8889.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Vyvo Smart Chain", - "chain": "VSC", - "rpc": [ - "https://vyvo-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://vsc-dataseed.vyvo.org:8889" - ], - "faucets": [], - "nativeCurrency": { - "name": "VSC", - "symbol": "VSC", - "decimals": 18 - }, - "infoURL": "https://vsc-dataseed.vyvo.org", - "shortName": "vsc", - "chainId": 8889, - "networkId": 8889, - "testnet": false, - "slug": "vyvo-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8898.ts b/packages/chains/chains/8898.ts deleted file mode 100644 index 17dffea5404..00000000000 --- a/packages/chains/chains/8898.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mammoth Mainnet", - "title": "Mammoth Chain", - "chain": "MMT", - "rpc": [ - "https://mammoth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://dataseed.mmtscan.io", - "https://dataseed1.mmtscan.io", - "https://dataseed2.mmtscan.io" - ], - "faucets": [ - "https://faucet.mmtscan.io/" - ], - "nativeCurrency": { - "name": "Mammoth Token", - "symbol": "MMT", - "decimals": 18 - }, - "infoURL": "https://mmtchain.io/", - "shortName": "mmt", - "chainId": 8898, - "networkId": 8898, - "icon": { - "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", - "width": 250, - "height": 250, - "format": "png" - }, - "explorers": [ - { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", - "width": 250, - "height": 250, - "format": "png" - } - } - ], - "testnet": false, - "slug": "mammoth" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8899.ts b/packages/chains/chains/8899.ts deleted file mode 100644 index a336027c1fe..00000000000 --- a/packages/chains/chains/8899.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "JIBCHAIN L1", - "chain": "JBC", - "rpc": [ - "https://jibchain-l1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-l1.jibchain.net" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "JIBCOIN", - "symbol": "JBC", - "decimals": 18 - }, - "infoURL": "https://jibchain.net", - "shortName": "jbc", - "chainId": 8899, - "networkId": 8899, - "explorers": [ - { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "jibchain-l1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8989.ts b/packages/chains/chains/8989.ts deleted file mode 100644 index 85c2b38e2b3..00000000000 --- a/packages/chains/chains/8989.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Giant Mammoth Mainnet", - "title": "Giant Mammoth Chain", - "chain": "GMMT", - "rpc": [ - "https://giant-mammoth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-asia.gmmtchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Giant Mammoth Coin", - "symbol": "GMMT", - "decimals": 18 - }, - "infoURL": "https://gmmtchain.io/", - "shortName": "gmmt", - "chainId": 8989, - "networkId": 8989, - "icon": { - "url": "ipfs://QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF", - "width": 468, - "height": 518, - "format": "png" - }, - "explorers": [ - { - "name": "gmmtscan", - "url": "https://scan.gmmtchain.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF", - "width": 468, - "height": 518, - "format": "png" - } - } - ], - "testnet": false, - "slug": "giant-mammoth" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8995.ts b/packages/chains/chains/8995.ts deleted file mode 100644 index 1004918b302..00000000000 --- a/packages/chains/chains/8995.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "bloxberg", - "chain": "bloxberg", - "rpc": [ - "https://bloxberg.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://core.bloxberg.org" - ], - "faucets": [ - "https://faucet.bloxberg.org/" - ], - "nativeCurrency": { - "name": "BERG", - "symbol": "U+25B3", - "decimals": 18 - }, - "infoURL": "https://bloxberg.org", - "shortName": "berg", - "chainId": 8995, - "networkId": 8995, - "testnet": false, - "slug": "bloxberg" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/900.ts b/packages/chains/chains/900.ts deleted file mode 100644 index 59650de80d4..00000000000 --- a/packages/chains/chains/900.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Garizon Testnet Stage0", - "chain": "GAR", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "rpc": [ - "https://garizon-testnet-stage0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://s0-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s0", - "chainId": 900, - "networkId": 900, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "garizon-testnet-stage0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9000.ts b/packages/chains/chains/9000.ts deleted file mode 100644 index f0736c3e0c3..00000000000 --- a/packages/chains/chains/9000.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Evmos Testnet", - "chain": "Evmos", - "rpc": [ - "https://evmos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://eth.bd.evmos.dev:8545" - ], - "faucets": [ - "https://faucet.evmos.dev" - ], - "nativeCurrency": { - "name": "test-Evmos", - "symbol": "tEVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos-testnet", - "chainId": 9000, - "networkId": 9000, - "icon": { - "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "Evmos Explorer (Escan)", - "url": "https://testnet.escan.live", - "standard": "none", - "icon": { - "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": true, - "slug": "evmos-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/900000.ts b/packages/chains/chains/900000.ts deleted file mode 100644 index ba45535eb30..00000000000 --- a/packages/chains/chains/900000.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Posichain Mainnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://posichain-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.posichain.org", - "https://api.s0.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-s0", - "chainId": 900000, - "networkId": 900000, - "explorers": [ - { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "posichain-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9001.ts b/packages/chains/chains/9001.ts deleted file mode 100644 index ed6f62e1374..00000000000 --- a/packages/chains/chains/9001.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Evmos", - "chain": "Evmos", - "rpc": [ - "https://evmos.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evmos-evm.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evmos", - "symbol": "EVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos", - "chainId": 9001, - "networkId": 9001, - "icon": { - "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", - "width": 400, - "height": 400, - "format": "png" - }, - "explorers": [ - { - "name": "Evmos Explorer (Escan)", - "url": "https://escan.live", - "standard": "none", - "icon": { - "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", - "width": 400, - "height": 400, - "format": "png" - } - } - ], - "testnet": false, - "slug": "evmos" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/901.ts b/packages/chains/chains/901.ts deleted file mode 100644 index 5ef686847ad..00000000000 --- a/packages/chains/chains/901.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Garizon Testnet Stage1", - "chain": "GAR", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "rpc": [ - "https://garizon-testnet-stage1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://s1-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s1", - "chainId": 901, - "networkId": 901, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - }, - "testnet": true, - "slug": "garizon-testnet-stage1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9012.ts b/packages/chains/chains/9012.ts deleted file mode 100644 index 03005b05bb3..00000000000 --- a/packages/chains/chains/9012.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "BerylBit Mainnet", - "chain": "BRB", - "rpc": [ - "https://berylbit.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mainnet.berylbit.io" - ], - "faucets": [ - "https://t.me/BerylBit" - ], - "nativeCurrency": { - "name": "BerylBit Chain Native Token", - "symbol": "BRB", - "decimals": 18 - }, - "infoURL": "https://www.beryl-bit.com", - "shortName": "brb", - "chainId": 9012, - "networkId": 9012, - "icon": { - "url": "ipfs://QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi", - "width": 162, - "height": 162, - "format": "png" - }, - "explorers": [ - { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "berylbit" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/902.ts b/packages/chains/chains/902.ts deleted file mode 100644 index 79c01b4c4d9..00000000000 --- a/packages/chains/chains/902.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Garizon Testnet Stage2", - "chain": "GAR", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "rpc": [ - "https://garizon-testnet-stage2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://s2-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s2", - "chainId": 902, - "networkId": 902, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - }, - "testnet": true, - "slug": "garizon-testnet-stage2" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/90210.ts b/packages/chains/chains/90210.ts deleted file mode 100644 index a50f0ad216c..00000000000 --- a/packages/chains/chains/90210.ts +++ /dev/null @@ -1,32 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Beverly Hills", - "title": "Ethereum multi-client Verkle Testnet Beverly Hills", - "chain": "ETH", - "rpc": [ - "https://beverly-hills.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.beverlyhills.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.beverlyhills.ethdevops.io" - ], - "nativeCurrency": { - "name": "Beverly Hills Testnet Ether", - "symbol": "BVE", - "decimals": 18 - }, - "infoURL": "https://beverlyhills.ethdevops.io", - "shortName": "bvhl", - "chainId": 90210, - "networkId": 90210, - "status": "incubating", - "explorers": [ - { - "name": "Beverly Hills explorer", - "url": "https://explorer.beverlyhills.ethdevops.io", - "standard": "none" - } - ], - "testnet": true, - "slug": "beverly-hills" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/903.ts b/packages/chains/chains/903.ts deleted file mode 100644 index aa12d6b4c54..00000000000 --- a/packages/chains/chains/903.ts +++ /dev/null @@ -1,46 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Garizon Testnet Stage3", - "chain": "GAR", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "rpc": [ - "https://garizon-testnet-stage3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://s3-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s3", - "chainId": 903, - "networkId": 903, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - }, - "testnet": true, - "slug": "garizon-testnet-stage3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/909.ts b/packages/chains/chains/909.ts deleted file mode 100644 index a4f3ae1f12f..00000000000 --- a/packages/chains/chains/909.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Portal Fantasy Chain", - "chain": "PF", - "icon": { - "url": "ipfs://QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc", - "width": 200, - "height": 200, - "format": "png" - }, - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PF", - "chainId": 909, - "networkId": 909, - "explorers": [], - "status": "incubating", - "testnet": false, - "slug": "portal-fantasy-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/910.ts b/packages/chains/chains/910.ts deleted file mode 100644 index eaacef2df65..00000000000 --- a/packages/chains/chains/910.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "DecentraBone Layer1 Testnet", - "chain": "DBONE", - "rpc": [ - "https://decentrabone-layer1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://layer1test.decentrabone.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DecentraBone", - "symbol": "DBONE", - "decimals": 18 - }, - "infoURL": "https://decentrabone.com", - "shortName": "DBONE", - "chainId": 910, - "networkId": 910, - "testnet": true, - "slug": "decentrabone-layer1-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9100.ts b/packages/chains/chains/9100.ts deleted file mode 100644 index c6707385a9c..00000000000 --- a/packages/chains/chains/9100.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Genesis Coin", - "chain": "Genesis", - "rpc": [ - "https://genesis-coin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://genesis-gn.com", - "wss://genesis-gn.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GN Coin", - "symbol": "GNC", - "decimals": 18 - }, - "infoURL": "https://genesis-gn.com", - "shortName": "GENEC", - "chainId": 9100, - "networkId": 9100, - "testnet": false, - "slug": "genesis-coin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/910000.ts b/packages/chains/chains/910000.ts deleted file mode 100644 index b2d1776ba66..00000000000 --- a/packages/chains/chains/910000.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Posichain Testnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://posichain-testnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s0.t.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-t-s0", - "chainId": 910000, - "networkId": 910000, - "explorers": [ - { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "posichain-testnet-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/91002.ts b/packages/chains/chains/91002.ts deleted file mode 100644 index 90592ad1104..00000000000 --- a/packages/chains/chains/91002.ts +++ /dev/null @@ -1,37 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nautilus Chain", - "title": "Nautilus Trition Testnet", - "chain": "ETH", - "icon": { - "url": "ipfs://QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM", - "width": 500, - "height": 500, - "format": "png" - }, - "rpc": [ - "https://nautilus-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://triton.api.nautchain.xyz" - ], - "faucets": [ - "https://faucet.eclipse.builders" - ], - "nativeCurrency": { - "name": "Nautilus Zebec Testnet Tokens", - "symbol": "tZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUT", - "chainId": 91002, - "networkId": 91002, - "explorers": [ - { - "name": "Nautscan", - "url": "https://triton.nautscan.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "nautilus-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/917.ts b/packages/chains/chains/917.ts deleted file mode 100644 index 097e7137cf1..00000000000 --- a/packages/chains/chains/917.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rinia Testnet", - "chain": "FIRE", - "icon": { - "url": "ipfs://QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1", - "width": 512, - "height": 512, - "format": "png" - }, - "rpc": [ - "https://rinia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rinia.rpc1.thefirechain.com" - ], - "faucets": [ - "https://faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "tfire", - "chainId": 917, - "networkId": 917, - "explorers": [], - "status": "incubating", - "testnet": true, - "slug": "rinia-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/919.ts b/packages/chains/chains/919.ts deleted file mode 100644 index 79161e9462f..00000000000 --- a/packages/chains/chains/919.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mode Testnet ", - "chain": "ModeTest", - "shortName": "ModeTest", - "chainId": 919, - "testnet": true, - "rpc": [ - "https://mode-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://sepolia.mode.network/" - ], - "explorers": [ - { - "name": "mode-sepolia-vtnhnpim72", - "url": "https://sepolia.explorer.mode.network/", - "standard": "EIP3091" - } - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": { - "height": 2160, - "width": 2160, - "format": "png", - "url": "ipfs://bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou" - }, - "slug": "mode-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/920000.ts b/packages/chains/chains/920000.ts deleted file mode 100644 index e52cd2b11b6..00000000000 --- a/packages/chains/chains/920000.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Posichain Devnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://posichain-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s0.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s0", - "chainId": 920000, - "networkId": 920000, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "posichain-devnet-shard-0" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/920001.ts b/packages/chains/chains/920001.ts deleted file mode 100644 index 6efb3051cd9..00000000000 --- a/packages/chains/chains/920001.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Posichain Devnet Shard 1", - "chain": "PSC", - "rpc": [ - "https://posichain-devnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.s1.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s1", - "chainId": 920001, - "networkId": 920001, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "posichain-devnet-shard-1" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/92001.ts b/packages/chains/chains/92001.ts deleted file mode 100644 index 7ae7d056966..00000000000 --- a/packages/chains/chains/92001.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lambda Testnet", - "chain": "Lambda", - "rpc": [ - "https://lambda-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm.lambda.top/" - ], - "faucets": [ - "https://faucet.lambda.top" - ], - "nativeCurrency": { - "name": "test-Lamb", - "symbol": "LAMB", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "lambda-testnet", - "chainId": 92001, - "networkId": 92001, - "icon": { - "url": "ipfs://QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy", - "width": 500, - "height": 500, - "format": "png" - }, - "explorers": [ - { - "name": "Lambda EVM Explorer", - "url": "https://explorer.lambda.top", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy", - "width": 500, - "height": 500, - "format": "png" - } - } - ], - "testnet": true, - "slug": "lambda-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9223.ts b/packages/chains/chains/9223.ts deleted file mode 100644 index 708db6d251b..00000000000 --- a/packages/chains/chains/9223.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Codefin Mainnet", - "chain": "COF", - "icon": { - "url": "ipfs://QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp", - "width": 1024, - "height": 1024, - "format": "png" - }, - "rpc": [ - "https://codefin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://chain-rpc.codefin.pro" - ], - "faucets": [], - "nativeCurrency": { - "name": "Codefin", - "symbol": "COF", - "decimals": 18 - }, - "infoURL": "https://network.codefin.pro", - "shortName": "COF", - "chainId": 9223, - "networkId": 9223, - "explorers": [ - { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "codefin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/923018.ts b/packages/chains/chains/923018.ts deleted file mode 100644 index 8fcaa670c6e..00000000000 --- a/packages/chains/chains/923018.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "FNCY Testnet", - "chain": "FNCY", - "rpc": [ - "https://fncy-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://fncy-testnet-seed.fncy.world" - ], - "faucets": [ - "https://faucet-testnet.fncy.world" - ], - "nativeCurrency": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 - }, - "infoURL": "https://fncyscan-testnet.fncy.world", - "shortName": "tFNCY", - "chainId": 923018, - "networkId": 923018, - "icon": { - "url": "ipfs://QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD", - "width": 256, - "height": 256, - "format": "png" - }, - "explorers": [ - { - "name": "fncy scan testnet", - "url": "https://fncyscan-testnet.fncy.world", - "icon": { - "url": "ipfs://QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD", - "width": 256, - "height": 256, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "fncy-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9339.ts b/packages/chains/chains/9339.ts deleted file mode 100644 index a209c577a0c..00000000000 --- a/packages/chains/chains/9339.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Dogcoin Testnet", - "chain": "DOGS", - "icon": { - "url": "ipfs://QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3", - "width": 160, - "height": 171, - "format": "png" - }, - "rpc": [ - "https://dogcoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.dogcoin.me" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSt", - "chainId": 9339, - "networkId": 9339, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "dogcoin-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/942.ts b/packages/chains/chains/942.ts deleted file mode 100644 index e964e5c8f9a..00000000000 --- a/packages/chains/chains/942.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PulseChain Testnet v3", - "shortName": "t3pls", - "chain": "t3PLS", - "chainId": 942, - "networkId": 942, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://pulsechain-testnet-v3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.v3.testnet.pulsechain.com/", - "wss://rpc.v3.testnet.pulsechain.com/" - ], - "faucets": [ - "https://faucet.v3.testnet.pulsechain.com/" - ], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - }, - "testnet": true, - "slug": "pulsechain-testnet-v3" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/943.ts b/packages/chains/chains/943.ts deleted file mode 100644 index e814b59075d..00000000000 --- a/packages/chains/chains/943.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PulseChain Testnet v4", - "shortName": "t4pls", - "chain": "t4PLS", - "chainId": 943, - "networkId": 943, - "icon": { - "url": "ipfs://Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj", - "width": 433, - "height": 402, - "format": "png" - }, - "infoURL": "https://pulsechain.com", - "rpc": [ - "https://pulsechain-testnet-v4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.v4.testnet.pulsechain.com/", - "wss://rpc.v4.testnet.pulsechain.com/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.v4.testnet.pulsechain.com/" - ], - "ens": { - "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - }, - "status": "incubating", - "explorers": [], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - }, - "testnet": true, - "slug": "pulsechain-testnet-v4" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9527.ts b/packages/chains/chains/9527.ts deleted file mode 100644 index 4abe28bbbca..00000000000 --- a/packages/chains/chains/9527.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Rangers Protocol Testnet Robin", - "chain": "Rangers", - "icon": { - "url": "ipfs://QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG", - "width": 2000, - "height": 2000, - "format": "png" - }, - "rpc": [ - "https://rangers-protocol-testnet-robin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://robin.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [ - "https://robin-faucet.rangersprotocol.com" - ], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "tRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "trpg", - "chainId": 9527, - "networkId": 9527, - "explorers": [ - { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } - ], - "testnet": true, - "slug": "rangers-protocol-testnet-robin" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9528.ts b/packages/chains/chains/9528.ts deleted file mode 100644 index 52008ee596e..00000000000 --- a/packages/chains/chains/9528.ts +++ /dev/null @@ -1,30 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "QEasyWeb3 Testnet", - "chain": "QET", - "rpc": [ - "https://qeasyweb3-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://qeasyweb3.com" - ], - "faucets": [ - "http://faucet.qeasyweb3.com" - ], - "nativeCurrency": { - "name": "QET", - "symbol": "QET", - "decimals": 18 - }, - "infoURL": "https://www.qeasyweb3.com", - "shortName": "QETTest", - "chainId": 9528, - "networkId": 9528, - "explorers": [ - { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "qeasyweb3-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/955305.ts b/packages/chains/chains/955305.ts deleted file mode 100644 index 43b608d73e2..00000000000 --- a/packages/chains/chains/955305.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Eluvio Content Fabric", - "chain": "Eluvio", - "rpc": [ - "https://eluvio-content-fabric.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://host-76-74-28-226.contentfabric.io/eth/", - "https://host-76-74-28-232.contentfabric.io/eth/", - "https://host-76-74-29-2.contentfabric.io/eth/", - "https://host-76-74-29-8.contentfabric.io/eth/", - "https://host-76-74-29-34.contentfabric.io/eth/", - "https://host-76-74-29-35.contentfabric.io/eth/", - "https://host-154-14-211-98.contentfabric.io/eth/", - "https://host-154-14-192-66.contentfabric.io/eth/", - "https://host-60-240-133-202.contentfabric.io/eth/", - "https://host-64-235-250-98.contentfabric.io/eth/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ELV", - "symbol": "ELV", - "decimals": 18 - }, - "infoURL": "https://eluv.io", - "shortName": "elv", - "chainId": 955305, - "networkId": 955305, - "slip44": 1011, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "eluvio-content-fabric" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9559.ts b/packages/chains/chains/9559.ts deleted file mode 100644 index 36f8f9d84d5..00000000000 --- a/packages/chains/chains/9559.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Neonlink Testnet", - "chain": "Neonlink", - "rpc": [ - "https://neonlink-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.neonlink.io" - ], - "faucets": [ - "https://faucet.neonlink.io/" - ], - "nativeCurrency": { - "name": "Neonlink Native Token", - "symbol": "tNEON", - "decimals": 18 - }, - "infoURL": "https://neonlink.io", - "shortName": "testneon", - "chainId": 9559, - "networkId": 9559, - "icon": { - "url": "ipfs://QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz", - "width": 512, - "height": 512, - "format": "svg" - }, - "explorers": [ - { - "name": "Neon Blockchain Explorer", - "url": "https://testnet-scan.neonlink.io", - "standard": "EIP3091", - "icon": { - "url": "ipfs://QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz", - "width": 512, - "height": 512, - "format": "svg" - } - } - ], - "testnet": true, - "slug": "neonlink-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/956.ts b/packages/chains/chains/956.ts deleted file mode 100644 index 7903ab40906..00000000000 --- a/packages/chains/chains/956.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "muNode Testnet", - "chain": "munode", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://munode.dev/", - "shortName": "munode", - "chainId": 956, - "networkId": 956, - "testnet": true, - "slug": "munode-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/96970.ts b/packages/chains/chains/96970.ts deleted file mode 100644 index e715d816a2c..00000000000 --- a/packages/chains/chains/96970.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Mantis Testnet (Hexapod)", - "chain": "Mantis", - "icon": { - "url": "ipfs://Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy", - "width": 512, - "height": 330, - "format": "png" - }, - "rpc": [ - "https://mantis-testnet-hexapod.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://mantis-rpc.switch.ch", - "https://mantis-rpc.kore-technologies.ch", - "https://mantis-rpc.phoenix-systems.io" - ], - "faucets": [ - "https://mantis.switch.ch/faucet", - "https://mantis.kore-technologies.ch/faucet", - "https://mantis.phoenix-systems.io/faucet", - "https://mantis.block-spirit.ch/faucet" - ], - "nativeCurrency": { - "name": "Mantis", - "symbol": "MANTIS", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "mantis", - "chainId": 96970, - "networkId": 96970, - "explorers": [ - { - "name": "Mantis Blockscout", - "url": "https://blockscout.mantis.hexapod.network", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "mantis-testnet-hexapod" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/970.ts b/packages/chains/chains/970.ts deleted file mode 100644 index 489e74a26ac..00000000000 --- a/packages/chains/chains/970.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oort Mainnet", - "chain": "Oort Mainnet", - "rpc": [ - "https://oort.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "ccn", - "chainId": 970, - "networkId": 970, - "icon": { - "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", - "width": 1043, - "height": 1079, - "format": "png" - }, - "testnet": false, - "slug": "oort" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9700.ts b/packages/chains/chains/9700.ts deleted file mode 100644 index c65df92a7a2..00000000000 --- a/packages/chains/chains/9700.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oort MainnetDev", - "title": "Oort MainnetDev", - "chain": "MainnetDev", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "MainnetDev", - "chainId": 9700, - "networkId": 9700, - "icon": { - "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", - "width": 1043, - "height": 1079, - "format": "png" - }, - "testnet": false, - "slug": "oort-dev" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/971.ts b/packages/chains/chains/971.ts deleted file mode 100644 index 31360728039..00000000000 --- a/packages/chains/chains/971.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oort Huygens", - "chain": "Huygens", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Huygens", - "chainId": 971, - "networkId": 971, - "icon": { - "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", - "width": 1043, - "height": 1079, - "format": "png" - }, - "testnet": false, - "slug": "oort-huygens" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/972.ts b/packages/chains/chains/972.ts deleted file mode 100644 index 8eb74f9ebbf..00000000000 --- a/packages/chains/chains/972.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Oort Ascraeus", - "title": "Oort Ascraeus", - "chain": "Ascraeus", - "rpc": [ - "https://oort-ascraeus.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ascraeus-rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCNA", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Ascraeus", - "chainId": 972, - "networkId": 972, - "icon": { - "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", - "width": 1043, - "height": 1079, - "format": "png" - }, - "testnet": false, - "slug": "oort-ascraeus" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9728.ts b/packages/chains/chains/9728.ts deleted file mode 100644 index 889e67d19d9..00000000000 --- a/packages/chains/chains/9728.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Boba BNB Testnet", - "chain": "Boba BNB Testnet", - "rpc": [ - "https://boba-bnb-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.bnb.boba.network", - "wss://wss.testnet.bnb.boba.network", - "https://replica.testnet.bnb.boba.network", - "wss://replica-wss.testnet.bnb.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnbTestnet", - "chainId": 9728, - "networkId": 9728, - "explorers": [ - { - "name": "Boba BNB Testnet block explorer", - "url": "https://blockexplorer.testnet.bnb.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - }, - "testnet": true, - "slug": "boba-bnb-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9768.ts b/packages/chains/chains/9768.ts deleted file mode 100644 index fc3882b5945..00000000000 --- a/packages/chains/chains/9768.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "MainnetZ Testnet", - "chain": "NetZ", - "icon": { - "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", - "width": 400, - "height": 400, - "format": "png" - }, - "rpc": [ - "https://z-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://testnet.mainnetz.io", - "shortName": "NetZt", - "chainId": 9768, - "networkId": 9768, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "z-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/977.ts b/packages/chains/chains/977.ts deleted file mode 100644 index e403362d6f2..00000000000 --- a/packages/chains/chains/977.ts +++ /dev/null @@ -1,24 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Nepal Blockchain Network", - "chain": "YETI", - "rpc": [ - "https://nepal-blockchain-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://api.nepalblockchain.dev", - "https://api.nepalblockchain.network" - ], - "faucets": [ - "https://faucet.nepalblockchain.network" - ], - "nativeCurrency": { - "name": "Nepal Blockchain Network Ether", - "symbol": "YETI", - "decimals": 18 - }, - "infoURL": "https://nepalblockchain.network", - "shortName": "yeti", - "chainId": 977, - "networkId": 977, - "testnet": false, - "slug": "nepal-blockchain-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9779.ts b/packages/chains/chains/9779.ts deleted file mode 100644 index a480287ba47..00000000000 --- a/packages/chains/chains/9779.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "PepeNetwork Mainnet", - "chain": "PepeNetwork", - "rpc": [ - "https://pepenetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-mainnet.pepenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pepe", - "symbol": "WPEPE", - "decimals": 18 - }, - "infoURL": "https://pepenetwork.io", - "shortName": "pn", - "chainId": 9779, - "networkId": 9779, - "icon": { - "url": "ipfs://QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", - "width": 960, - "height": 944, - "format": "png" - }, - "explorers": [ - { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": { - "url": "ipfs://QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", - "width": 960, - "height": 944, - "format": "png" - }, - "standard": "none" - } - ], - "testnet": false, - "slug": "pepenetwork" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9790.ts b/packages/chains/chains/9790.ts deleted file mode 100644 index 59fc9fc75d1..00000000000 --- a/packages/chains/chains/9790.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Carbon EVM", - "chain": "Carbon", - "icon": { - "url": "ipfs://QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", - "width": 1600, - "height": 1600, - "format": "png" - }, - "rpc": [ - "https://carbon-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon", - "chainId": 9790, - "networkId": 9790, - "explorers": [], - "testnet": false, - "slug": "carbon-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9792.ts b/packages/chains/chains/9792.ts deleted file mode 100644 index 1ef77f0dc78..00000000000 --- a/packages/chains/chains/9792.ts +++ /dev/null @@ -1,28 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Carbon EVM Testnet", - "chain": "Carbon", - "icon": { - "url": "ipfs://QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", - "width": 1600, - "height": 1600, - "format": "png" - }, - "rpc": [ - "https://carbon-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://test-evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon-testnet", - "chainId": 9792, - "networkId": 9792, - "explorers": [], - "testnet": true, - "slug": "carbon-evm-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/980.ts b/packages/chains/chains/980.ts deleted file mode 100644 index 372ab986c92..00000000000 --- a/packages/chains/chains/980.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TOP Mainnet EVM", - "chain": "TOP", - "icon": { - "url": "ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [ - "https://top-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://ethapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top_evm", - "chainId": 980, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "top-evm" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/985.ts b/packages/chains/chains/985.ts deleted file mode 100644 index 1672322e30f..00000000000 --- a/packages/chains/chains/985.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Memo Smart Chain Mainnet", - "chain": "MEMO", - "rpc": [ - "https://memo-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://chain.metamemo.one:8501", - "wss://chain.metamemo.one:16801" - ], - "faucets": [ - "https://faucet.metamemo.one/" - ], - "nativeCurrency": { - "name": "Memo", - "symbol": "CMEMO", - "decimals": 18 - }, - "infoURL": "www.memolabs.org", - "shortName": "memochain", - "chainId": 985, - "networkId": 985, - "icon": { - "url": "ipfs://bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq", - "width": 128, - "height": 128, - "format": "png" - }, - "explorers": [ - { - "name": "Memo Mainnet Explorer", - "url": "https://scan.metamemo.one:8080", - "icon": { - "url": "ipfs://bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq", - "width": 128, - "height": 128, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": false, - "slug": "memo-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/989.ts b/packages/chains/chains/989.ts deleted file mode 100644 index d2bee4bbdf3..00000000000 --- a/packages/chains/chains/989.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "TOP Mainnet", - "chain": "TOP", - "icon": { - "url": "ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", - "width": 800, - "height": 800, - "format": "png" - }, - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top", - "chainId": 989, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ], - "testnet": false, - "slug": "top" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99415706.ts b/packages/chains/chains/99415706.ts deleted file mode 100644 index 94249438a05..00000000000 --- a/packages/chains/chains/99415706.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Joys Digital TestNet", - "chain": "TOYS", - "rpc": [ - "https://joys-digital-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://toys.joys.cash/" - ], - "faucets": [ - "https://faucet.joys.digital/" - ], - "nativeCurrency": { - "name": "TOYS", - "symbol": "TOYS", - "decimals": 18 - }, - "infoURL": "https://joys.digital", - "shortName": "TOYS", - "chainId": 99415706, - "networkId": 99415706, - "testnet": true, - "slug": "joys-digital-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/997.ts b/packages/chains/chains/997.ts deleted file mode 100644 index cae5ad349ca..00000000000 --- a/packages/chains/chains/997.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "5ireChain Thunder", - "chain": "5ireChain", - "rpc": [ - "https://5irechain-thunder.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc-testnet.5ire.network" - ], - "faucets": [ - "https://explorer.5ire.network/faucet" - ], - "nativeCurrency": { - "name": "5ire Token", - "symbol": "5ire", - "decimals": 18 - }, - "infoURL": "https://5ire.org", - "shortName": "5ire", - "chainId": 997, - "networkId": 997, - "icon": { - "url": "ipfs://QmaZDNDFLWESH4i3XqwEWfWBb1HPnQSNbDAr74nr2x8QAk", - "width": 800, - "height": 800, - "format": "svg" - }, - "explorers": [ - { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": { - "url": "ipfs://QmaZDNDFLWESH4i3XqwEWfWBb1HPnQSNbDAr74nr2x8QAk", - "width": 800, - "height": 800, - "format": "svg" - } - } - ], - "testnet": true, - "slug": "5irechain-thunder" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/998.ts b/packages/chains/chains/998.ts deleted file mode 100644 index 2c18ef07931..00000000000 --- a/packages/chains/chains/998.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Lucky Network", - "chain": "LN", - "rpc": [ - "https://lucky-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.luckynetwork.org", - "wss://ws.lnscan.org", - "https://rpc.lnscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 - }, - "infoURL": "https://luckynetwork.org", - "shortName": "ln", - "chainId": 998, - "networkId": 998, - "icon": { - "url": "ipfs://bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m", - "width": 205, - "height": 28, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } - ], - "testnet": false, - "slug": "lucky-network" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/999.ts b/packages/chains/chains/999.ts deleted file mode 100644 index d1ec502a2d1..00000000000 --- a/packages/chains/chains/999.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "Zora Testnet", - "chain": "ETH", - "rpc": [ - "https://zora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.rpc.zora.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "GETH", - "decimals": 18 - }, - "icon": { - "url": "ipfs://QmZ6qaRwTPFEZUspwMUjaxC6KhmzcELdRQcQzS3P72Dzts/Vector.svg", - "height": 512, - "width": 512, - "format": "svg" - }, - "shortName": "Zora", - "chainId": 999, - "networkId": 999, - "testnet": true, - "slug": "zora-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9997.ts b/packages/chains/chains/9997.ts deleted file mode 100644 index 4c21eb291f8..00000000000 --- a/packages/chains/chains/9997.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "AltLayer Testnet", - "chain": "ETH", - "rpc": [ - "https://altlayer-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet-rollup-api.altlayer.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-testnet", - "chainId": 9997, - "networkId": 9997, - "icon": { - "url": "ipfs://QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb", - "width": 1080, - "height": 1025, - "format": "png" - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-rollup-explorer.altlayer.io", - "icon": { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - }, - "standard": "EIP3091" - } - ], - "testnet": true, - "slug": "altlayer-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9999.ts b/packages/chains/chains/9999.ts deleted file mode 100644 index 0d6f3d8fa8f..00000000000 --- a/packages/chains/chains/9999.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "myOwn Testnet", - "chain": "myOwn", - "rpc": [ - "https://myown-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://geth.dev.bccloud.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "MYN", - "symbol": "MYN", - "decimals": 18 - }, - "infoURL": "https://docs.bccloud.net/", - "shortName": "myn", - "chainId": 9999, - "networkId": 9999, - "testnet": true, - "slug": "myown-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99998.ts b/packages/chains/chains/99998.ts deleted file mode 100644 index b87da51e33c..00000000000 --- a/packages/chains/chains/99998.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "UB Smart Chain(testnet)", - "chain": "USC", - "rpc": [ - "https://ub-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://testnet.rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site", - "shortName": "usctest", - "chainId": 99998, - "networkId": 99998, - "testnet": true, - "slug": "ub-smart-chain-testnet" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99999.ts b/packages/chains/chains/99999.ts deleted file mode 100644 index 4385be2bf7b..00000000000 --- a/packages/chains/chains/99999.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Chain } from "../src/types"; -export default { - "name": "UB Smart Chain", - "chain": "USC", - "rpc": [ - "https://ub-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", - "https://rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site/", - "shortName": "usc", - "chainId": 99999, - "networkId": 99999, - "testnet": false, - "slug": "ub-smart-chain" -} as const satisfies Chain; \ No newline at end of file diff --git a/packages/wallets/src/evm/wallets/smart-wallet.ts b/packages/wallets/src/evm/wallets/smart-wallet.ts index e707fe2ca71..12d35bca7e7 100644 --- a/packages/wallets/src/evm/wallets/smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/smart-wallet.ts @@ -41,18 +41,18 @@ export class SmartWallet return "Smart Wallet" as const; } - constructor(options: WalletOptions, id?: string) { - super(id || SmartWallet.id, { + constructor(options: WalletOptions) { + super(options.walletId || SmartWallet.id, { ...options, }); this.enableConnectApp = options?.enableConnectApp || false; this.#wcWallet = this.enableConnectApp ? new WalletConnectV2Handler({ - walletConnectWalletMetadata: options?.walletConnectWalletMetadata, - walletConenctV2ProjectId: options?.walletConenctV2ProjectId, - walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, - }) + walletConnectWalletMetadata: options?.walletConnectWalletMetadata, + walletConenctV2ProjectId: options?.walletConenctV2ProjectId, + walletConnectV2RelayUrl: options?.walletConnectV2RelayUrl, + }) : new NoOpWalletConnectHandler(); } diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index b46be0ed3bf..35ce3a07bfa 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -17,8 +17,7 @@ export class TokenBoundSmartWallet extends SmartWallet { } constructor(options: WalletOptions) { - super(options, - TokenBoundSmartWallet.id + super(options ); } } \ No newline at end of file From 279b2605ccc931ba9aab0d6b4db190b53d90c8fb Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Mon, 24 Jul 2023 17:07:34 +0100 Subject: [PATCH 04/15] update with clientId & secretKey & requested changes --- .../connectors/token-bound-smart-wallet/index.ts | 13 ++++++------- .../connectors/token-bound-smart-wallet/types.ts | 3 ++- .../src/evm/wallets/token-bound-smart-wallet.ts | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 5ff536332dc..02c8e3dfa66 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -18,7 +18,8 @@ export class TokenBoundConnnector extends SmartWalletConnector { const smartWalletConfig: SmartWalletConfig = { chain: config.chain, factoryAddress: config.factoryAddress, - thirdwebApiKey: config.thirdwebApiKey, + clientId: config.clientId, + secretKey: config.secretKey, gasless: config.gasless, bundlerUrl: config.bundlerUrl, paymasterUrl: config.paymasterUrl, @@ -47,25 +48,23 @@ export class TokenBoundConnnector extends SmartWalletConnector { protected defaultTokenBoundFactoryInfo(): FactoryContractInfo { return { - createAccount: async (factory: SmartContract, implementation: SmartContract, chainId: Number, tokenContract: SmartContract, tokenId: Number) => { + createAccount: async (factory: SmartContract, implementation: SmartContract, chainId: Number, tokenContract: SmartContract, tokenId: Number, salt: Number = 1) => { return factory.prepare("createAccount", [ implementation, chainId, tokenContract, tokenId, - // TODO salt - 1, + salt, ethers.utils.toUtf8Bytes(""), ]); }, - getAccountAddress: async (factory, implementation, chainId, tokenContract, tokenId) => { + getAccountAddress: async (factory, implementation, chainId, tokenContract, tokenId, salt = 1) => { return await factory.call("address", [ implementation, chainId, tokenContract, tokenId, - // TODO salt - 1 + salt ]); }, }; diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index c6f2be424c6..3ca622f0ee3 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -37,7 +37,8 @@ export type FactoryContractInfo = { implementation: SmartContract, chainId: Number, tokenContract: SmartContract, - tokenId: Number + tokenId: Number, + salt: Number ) => Promise; }; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 35ce3a07bfa..3e2a6b3fc8e 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -11,12 +11,12 @@ export class TokenBoundSmartWallet extends SmartWallet { "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/smart-wallet.svg", }; - static id = walletIds.tokenBoundSmartWallet; public get walletName() { return "Token Bound Smart Wallet" as "Smart Wallet"; } constructor(options: WalletOptions) { + options.walletId = walletIds.tokenBoundSmartWallet; super(options ); } From 2db5249a67b217bb5496c894655e182409ddbec5 Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Mon, 24 Jul 2023 17:43:48 +0100 Subject: [PATCH 05/15] fix build --- packages/chains/chains/1000.ts | 32 +++++++++ packages/chains/chains/10000.ts | 24 +++++++ packages/chains/chains/100000.ts | 21 ++++++ packages/chains/chains/100001.ts | 33 +++++++++ packages/chains/chains/100002.ts | 33 +++++++++ packages/chains/chains/100003.ts | 33 +++++++++ packages/chains/chains/100004.ts | 33 +++++++++ packages/chains/chains/100005.ts | 33 +++++++++ packages/chains/chains/100006.ts | 33 +++++++++ packages/chains/chains/100007.ts | 33 +++++++++ packages/chains/chains/100008.ts | 33 +++++++++ packages/chains/chains/100009.ts | 30 +++++++++ packages/chains/chains/10001.ts | 22 ++++++ packages/chains/chains/100010.ts | 27 ++++++++ packages/chains/chains/1001.ts | 23 +++++++ packages/chains/chains/10024.ts | 38 +++++++++++ packages/chains/chains/1004.ts | 41 ++++++++++++ packages/chains/chains/10067275.ts | 32 +++++++++ packages/chains/chains/1007.ts | 21 ++++++ packages/chains/chains/1008.ts | 40 +++++++++++ packages/chains/chains/10086.ts | 21 ++++++ packages/chains/chains/1010.ts | 22 ++++++ packages/chains/chains/10101.ts | 23 +++++++ packages/chains/chains/101010.ts | 36 ++++++++++ packages/chains/chains/10101010.ts | 36 ++++++++++ packages/chains/chains/1012.ts | 21 ++++++ packages/chains/chains/10200.ts | 44 ++++++++++++ packages/chains/chains/1022.ts | 18 +++++ packages/chains/chains/1023.ts | 18 +++++ packages/chains/chains/1024.ts | 21 ++++++ packages/chains/chains/10248.ts | 28 ++++++++ packages/chains/chains/1028.ts | 28 ++++++++ packages/chains/chains/1030.ts | 34 ++++++++++ packages/chains/chains/103090.ts | 41 ++++++++++++ packages/chains/chains/1031.ts | 28 ++++++++ packages/chains/chains/1038.ts | 42 ++++++++++++ packages/chains/chains/1039.ts | 37 ++++++++++ packages/chains/chains/10507.ts | 34 ++++++++++ packages/chains/chains/10508.ts | 37 ++++++++++ packages/chains/chains/1072.ts | 38 +++++++++++ packages/chains/chains/1079.ts | 35 ++++++++++ packages/chains/chains/10823.ts | 35 ++++++++++ packages/chains/chains/1088.ts | 43 ++++++++++++ packages/chains/chains/108801.ts | 31 +++++++++ packages/chains/chains/10946.ts | 42 ++++++++++++ packages/chains/chains/10947.ts | 43 ++++++++++++ packages/chains/chains/1099.ts | 26 +++++++ packages/chains/chains/110000.ts | 21 ++++++ packages/chains/chains/110001.ts | 33 +++++++++ packages/chains/chains/110002.ts | 33 +++++++++ packages/chains/chains/110003.ts | 33 +++++++++ packages/chains/chains/110004.ts | 33 +++++++++ packages/chains/chains/110005.ts | 33 +++++++++ packages/chains/chains/110006.ts | 33 +++++++++ packages/chains/chains/110007.ts | 33 +++++++++ packages/chains/chains/110008.ts | 33 +++++++++ packages/chains/chains/1101.ts | 50 ++++++++++++++ packages/chains/chains/111000.ts | 40 +++++++++++ packages/chains/chains/1111.ts | 29 ++++++++ packages/chains/chains/11110.ts | 52 ++++++++++++++ packages/chains/chains/11111.ts | 36 ++++++++++ packages/chains/chains/111111.ts | 52 ++++++++++++++ packages/chains/chains/11115.ts | 53 +++++++++++++++ packages/chains/chains/11119.ts | 31 +++++++++ packages/chains/chains/1112.ts | 31 +++++++++ packages/chains/chains/111222333444.ts | 37 ++++++++++ packages/chains/chains/1115.ts | 42 ++++++++++++ packages/chains/chains/11155111.ts | 38 +++++++++++ packages/chains/chains/1116.ts | 41 ++++++++++++ packages/chains/chains/1117.ts | 36 ++++++++++ packages/chains/chains/1122334455.ts | 22 ++++++ packages/chains/chains/11235.ts | 28 ++++++++ packages/chains/chains/112358.ts | 41 ++++++++++++ packages/chains/chains/11297108099.ts | 34 ++++++++++ packages/chains/chains/11297108109.ts | 34 ++++++++++ packages/chains/chains/1130.ts | 27 ++++++++ packages/chains/chains/1131.ts | 26 +++++++ packages/chains/chains/1138.ts | 34 ++++++++++ packages/chains/chains/1139.ts | 22 ++++++ packages/chains/chains/1140.ts | 23 +++++++ packages/chains/chains/11437.ts | 31 +++++++++ packages/chains/chains/1146703430.ts | 41 ++++++++++++ packages/chains/chains/1149.ts | 40 +++++++++++ packages/chains/chains/11612.ts | 36 ++++++++++ packages/chains/chains/1170.ts | 40 +++++++++++ packages/chains/chains/1177.ts | 48 +++++++++++++ packages/chains/chains/11888.ts | 43 ++++++++++++ packages/chains/chains/1197.ts | 34 ++++++++++ packages/chains/chains/12009.ts | 34 ++++++++++ packages/chains/chains/1201.ts | 21 ++++++ packages/chains/chains/1202.ts | 29 ++++++++ packages/chains/chains/12051.ts | 30 +++++++++ packages/chains/chains/12052.ts | 31 +++++++++ packages/chains/chains/12123.ts | 36 ++++++++++ packages/chains/chains/1213.ts | 28 ++++++++ packages/chains/chains/1214.ts | 40 +++++++++++ packages/chains/chains/1229.ts | 34 ++++++++++ packages/chains/chains/1230.ts | 40 +++++++++++ packages/chains/chains/12306.ts | 49 ++++++++++++++ packages/chains/chains/1231.ts | 40 +++++++++++ packages/chains/chains/12321.ts | 29 ++++++++ packages/chains/chains/1234.ts | 50 ++++++++++++++ packages/chains/chains/12345.ts | 47 +++++++++++++ packages/chains/chains/123456.ts | 34 ++++++++++ packages/chains/chains/1243.ts | 34 ++++++++++ packages/chains/chains/1244.ts | 36 ++++++++++ packages/chains/chains/1246.ts | 28 ++++++++ packages/chains/chains/1252.ts | 42 ++++++++++++ packages/chains/chains/12715.ts | 35 ++++++++++ packages/chains/chains/1273227453.ts | 37 ++++++++++ packages/chains/chains/1280.ts | 28 ++++++++ packages/chains/chains/1284.ts | 29 ++++++++ packages/chains/chains/1285.ts | 29 ++++++++ packages/chains/chains/1287.ts | 29 ++++++++ packages/chains/chains/1288.ts | 22 ++++++ packages/chains/chains/1294.ts | 31 +++++++++ packages/chains/chains/1297.ts | 31 +++++++++ packages/chains/chains/13000.ts | 28 ++++++++ packages/chains/chains/1311.ts | 28 ++++++++ packages/chains/chains/1313114.ts | 29 ++++++++ packages/chains/chains/1313161554.ts | 28 ++++++++ packages/chains/chains/1313161555.ts | 28 ++++++++ packages/chains/chains/1313161556.ts | 18 +++++ packages/chains/chains/1313500.ts | 21 ++++++ packages/chains/chains/1314.ts | 34 ++++++++++ packages/chains/chains/131419.ts | 40 +++++++++++ packages/chains/chains/1319.ts | 35 ++++++++++ packages/chains/chains/1320.ts | 36 ++++++++++ packages/chains/chains/13308.ts | 48 +++++++++++++ packages/chains/chains/1337.ts | 25 +++++++ packages/chains/chains/13371337.ts | 21 ++++++ packages/chains/chains/1337702.ts | 32 +++++++++ packages/chains/chains/1337802.ts | 44 ++++++++++++ packages/chains/chains/1337803.ts | 43 ++++++++++++ packages/chains/chains/1338.ts | 29 ++++++++ packages/chains/chains/13381.ts | 34 ++++++++++ packages/chains/chains/1339.ts | 29 ++++++++ packages/chains/chains/1351057110.ts | 37 ++++++++++ packages/chains/chains/1353.ts | 40 +++++++++++ packages/chains/chains/1369.ts | 34 ++++++++++ packages/chains/chains/1380996178.ts | 45 +++++++++++++ packages/chains/chains/13812.ts | 28 ++++++++ packages/chains/chains/1388.ts | 34 ++++++++++ packages/chains/chains/1392.ts | 34 ++++++++++ packages/chains/chains/14000.ts | 28 ++++++++ packages/chains/chains/142857.ts | 34 ++++++++++ packages/chains/chains/14288640.ts | 35 ++++++++++ packages/chains/chains/1433.ts | 35 ++++++++++ packages/chains/chains/1440.ts | 28 ++++++++ packages/chains/chains/1440001.ts | 31 +++++++++ packages/chains/chains/1442.ts | 35 ++++++++++ packages/chains/chains/1452.ts | 34 ++++++++++ packages/chains/chains/1455.ts | 36 ++++++++++ packages/chains/chains/1482601649.ts | 35 ++++++++++ packages/chains/chains/1501.ts | 29 ++++++++ packages/chains/chains/1506.ts | 28 ++++++++ packages/chains/chains/1507.ts | 28 ++++++++ packages/chains/chains/1515.ts | 30 +++++++++ packages/chains/chains/15551.ts | 28 ++++++++ packages/chains/chains/15555.ts | 30 +++++++++ packages/chains/chains/15557.ts | 43 ++++++++++++ packages/chains/chains/1559.ts | 41 ++++++++++++ packages/chains/chains/1564830818.ts | 37 ++++++++++ packages/chains/chains/1582.ts | 36 ++++++++++ packages/chains/chains/16000.ts | 21 ++++++ packages/chains/chains/16001.ts | 23 +++++++ packages/chains/chains/1618.ts | 21 ++++++ packages/chains/chains/1620.ts | 22 ++++++ packages/chains/chains/16507.ts | 34 ++++++++++ packages/chains/chains/1657.ts | 21 ++++++ packages/chains/chains/1663.ts | 52 ++++++++++++++ packages/chains/chains/16658437.ts | 28 ++++++++ packages/chains/chains/1666600000.ts | 31 +++++++++ packages/chains/chains/1666600001.ts | 21 ++++++ packages/chains/chains/1666600002.ts | 21 ++++++ packages/chains/chains/1666600003.ts | 21 ++++++ packages/chains/chains/1666700000.ts | 30 +++++++++ packages/chains/chains/1666700001.ts | 21 ++++++ packages/chains/chains/1666700002.ts | 21 ++++++ packages/chains/chains/1666700003.ts | 21 ++++++ packages/chains/chains/1666900000.ts | 30 +++++++++ packages/chains/chains/16688.ts | 48 +++++++++++++ packages/chains/chains/167005.ts | 35 ++++++++++ packages/chains/chains/167006.ts | 35 ++++++++++ packages/chains/chains/16718.ts | 34 ++++++++++ packages/chains/chains/1688.ts | 27 ++++++++ packages/chains/chains/16888.ts | 36 ++++++++++ packages/chains/chains/1701.ts | 42 ++++++++++++ packages/chains/chains/1707.ts | 29 ++++++++ packages/chains/chains/1708.ts | 31 +++++++++ packages/chains/chains/1718.ts | 41 ++++++++++++ packages/chains/chains/17180.ts | 41 ++++++++++++ packages/chains/chains/1773.ts | 42 ++++++++++++ packages/chains/chains/1777.ts | 34 ++++++++++ packages/chains/chains/17777.ts | 46 +++++++++++++ packages/chains/chains/18000.ts | 28 ++++++++ packages/chains/chains/1804.ts | 45 +++++++++++++ packages/chains/chains/1807.ts | 36 ++++++++++ packages/chains/chains/18159.ts | 38 +++++++++++ packages/chains/chains/1818.ts | 40 +++++++++++ packages/chains/chains/1819.ts | 44 ++++++++++++ packages/chains/chains/18289463.ts | 21 ++++++ packages/chains/chains/1856.ts | 21 ++++++ packages/chains/chains/18686.ts | 34 ++++++++++ packages/chains/chains/1881.ts | 42 ++++++++++++ packages/chains/chains/188881.ts | 36 ++++++++++ packages/chains/chains/1890.ts | 46 +++++++++++++ packages/chains/chains/1891.ts | 48 +++++++++++++ packages/chains/chains/1898.ts | 29 ++++++++ packages/chains/chains/19011.ts | 38 +++++++++++ packages/chains/chains/1907.ts | 34 ++++++++++ packages/chains/chains/1908.ts | 36 ++++++++++ packages/chains/chains/192837465.ts | 40 +++++++++++ packages/chains/chains/1945.ts | 35 ++++++++++ packages/chains/chains/1951.ts | 27 ++++++++ packages/chains/chains/1954.ts | 43 ++++++++++++ packages/chains/chains/1967.ts | 32 +++++++++ packages/chains/chains/1969.ts | 36 ++++++++++ packages/chains/chains/1970.ts | 34 ++++++++++ packages/chains/chains/1971.ts | 29 ++++++++ packages/chains/chains/1975.ts | 36 ++++++++++ packages/chains/chains/197710212030.ts | 40 +++++++++++ packages/chains/chains/197710212031.ts | 40 +++++++++++ packages/chains/chains/1984.ts | 40 +++++++++++ packages/chains/chains/19845.ts | 28 ++++++++ packages/chains/chains/1987.ts | 22 ++++++ packages/chains/chains/1994.ts | 40 +++++++++++ packages/chains/chains/1995.ts | 37 ++++++++++ packages/chains/chains/2000.ts | 36 ++++++++++ packages/chains/chains/20001.ts | 34 ++++++++++ packages/chains/chains/2001.ts | 35 ++++++++++ packages/chains/chains/200101.ts | 35 ++++++++++ packages/chains/chains/2002.ts | 35 ++++++++++ packages/chains/chains/200202.ts | 34 ++++++++++ packages/chains/chains/200625.ts | 22 ++++++ packages/chains/chains/2008.ts | 25 +++++++ packages/chains/chains/2009.ts | 25 +++++++ packages/chains/chains/201018.ts | 35 ++++++++++ packages/chains/chains/201030.ts | 37 ++++++++++ packages/chains/chains/2016.ts | 36 ++++++++++ packages/chains/chains/2018.ts | 30 +++++++++ packages/chains/chains/201804.ts | 48 +++++++++++++ packages/chains/chains/20180430.ts | 28 ++++++++ packages/chains/chains/20181205.ts | 22 ++++++ packages/chains/chains/2019.ts | 30 +++++++++ packages/chains/chains/2020.ts | 30 +++++++++ packages/chains/chains/20201022.ts | 37 ++++++++++ packages/chains/chains/202020.ts | 48 +++++++++++++ packages/chains/chains/2021.ts | 63 +++++++++++++++++ packages/chains/chains/2021121117.ts | 21 ++++++ packages/chains/chains/2022.ts | 29 ++++++++ packages/chains/chains/2023.ts | 53 +++++++++++++++ packages/chains/chains/2025.ts | 35 ++++++++++ packages/chains/chains/202624.ts | 42 ++++++++++++ packages/chains/chains/2043.ts | 22 ++++++ packages/chains/chains/2044.ts | 21 ++++++ packages/chains/chains/2046399126.ts | 47 +++++++++++++ packages/chains/chains/2047.ts | 33 +++++++++ packages/chains/chains/2048.ts | 19 ++++++ packages/chains/chains/20729.ts | 23 +++++++ packages/chains/chains/20736.ts | 42 ++++++++++++ packages/chains/chains/2077.ts | 28 ++++++++ packages/chains/chains/2099156.ts | 28 ++++++++ packages/chains/chains/2100.ts | 28 ++++++++ packages/chains/chains/2101.ts | 28 ++++++++ packages/chains/chains/210425.ts | 35 ++++++++++ packages/chains/chains/2109.ts | 42 ++++++++++++ packages/chains/chains/2122.ts | 40 +++++++++++ packages/chains/chains/2124.ts | 28 ++++++++ packages/chains/chains/21337.ts | 34 ++++++++++ packages/chains/chains/2138.ts | 47 +++++++++++++ packages/chains/chains/2151.ts | 41 ++++++++++++ packages/chains/chains/2152.ts | 28 ++++++++ packages/chains/chains/2153.ts | 28 ++++++++ packages/chains/chains/2154.ts | 28 ++++++++ packages/chains/chains/21816.ts | 34 ++++++++++ packages/chains/chains/2199.ts | 44 ++++++++++++ packages/chains/chains/2202.ts | 36 ++++++++++ packages/chains/chains/22023.ts | 51 ++++++++++++++ packages/chains/chains/2203.ts | 40 +++++++++++ packages/chains/chains/220315.ts | 42 ++++++++++++ packages/chains/chains/22040.ts | 34 ++++++++++ packages/chains/chains/22052002.ts | 34 ++++++++++ packages/chains/chains/2206132.ts | 37 ++++++++++ packages/chains/chains/2213.ts | 34 ++++++++++ packages/chains/chains/222000222.ts | 42 ++++++++++++ packages/chains/chains/2221.ts | 43 ++++++++++++ packages/chains/chains/2222.ts | 43 ++++++++++++ packages/chains/chains/2223.ts | 28 ++++++++ packages/chains/chains/224168.ts | 34 ++++++++++ packages/chains/chains/22776.ts | 35 ++++++++++ packages/chains/chains/2300.ts | 40 +++++++++++ packages/chains/chains/23006.ts | 36 ++++++++++ packages/chains/chains/230315.ts | 36 ++++++++++ packages/chains/chains/2309.ts | 20 ++++++ packages/chains/chains/23118.ts | 36 ++++++++++ packages/chains/chains/2323.ts | 42 ++++++++++++ packages/chains/chains/23294.ts | 35 ++++++++++ packages/chains/chains/23295.ts | 35 ++++++++++ packages/chains/chains/2330.ts | 41 ++++++++++++ packages/chains/chains/2332.ts | 43 ++++++++++++ packages/chains/chains/234666.ts | 21 ++++++ packages/chains/chains/2358.ts | 50 ++++++++++++++ packages/chains/chains/2399.ts | 42 ++++++++++++ packages/chains/chains/2400.ts | 38 +++++++++++ packages/chains/chains/2415.ts | 41 ++++++++++++ packages/chains/chains/24484.ts | 19 ++++++ packages/chains/chains/245022926.ts | 41 ++++++++++++ packages/chains/chains/245022934.ts | 36 ++++++++++ packages/chains/chains/245022940.ts | 39 +++++++++++ packages/chains/chains/246529.ts | 22 ++++++ packages/chains/chains/246785.ts | 21 ++++++ packages/chains/chains/247253.ts | 34 ++++++++++ packages/chains/chains/24734.ts | 21 ++++++ packages/chains/chains/2559.ts | 21 ++++++ packages/chains/chains/256256.ts | 29 ++++++++ packages/chains/chains/2569.ts | 40 +++++++++++ packages/chains/chains/25888.ts | 28 ++++++++ packages/chains/chains/25925.ts | 43 ++++++++++++ packages/chains/chains/26026.ts | 38 +++++++++++ packages/chains/chains/2606.ts | 43 ++++++++++++ packages/chains/chains/2611.ts | 28 ++++++++ packages/chains/chains/2612.ts | 34 ++++++++++ packages/chains/chains/2613.ts | 36 ++++++++++ packages/chains/chains/2625.ts | 36 ++++++++++ packages/chains/chains/26600.ts | 48 +++++++++++++ packages/chains/chains/266256.ts | 23 +++++++ packages/chains/chains/26863.ts | 32 +++++++++ packages/chains/chains/27082017.ts | 42 ++++++++++++ packages/chains/chains/27082022.ts | 40 +++++++++++ packages/chains/chains/271271.ts | 36 ++++++++++ packages/chains/chains/278611351.ts | 36 ++++++++++ packages/chains/chains/281121.ts | 22 ++++++ packages/chains/chains/28528.ts | 30 +++++++++ packages/chains/chains/2888.ts | 38 +++++++++++ packages/chains/chains/28945486.ts | 22 ++++++ packages/chains/chains/29032022.ts | 42 ++++++++++++ packages/chains/chains/2999.ts | 34 ++++++++++ packages/chains/chains/3000.ts | 26 +++++++ packages/chains/chains/3001.ts | 36 ++++++++++ packages/chains/chains/3003.ts | 28 ++++++++ packages/chains/chains/30067.ts | 36 ++++++++++ packages/chains/chains/3011.ts | 45 +++++++++++++ packages/chains/chains/3031.ts | 40 +++++++++++ packages/chains/chains/3068.ts | 36 ++++++++++ packages/chains/chains/31102.ts | 22 ++++++ packages/chains/chains/311752642.ts | 34 ++++++++++ packages/chains/chains/31223.ts | 34 ++++++++++ packages/chains/chains/31224.ts | 36 ++++++++++ packages/chains/chains/3125659152.ts | 22 ++++++ packages/chains/chains/31337.ts | 29 ++++++++ packages/chains/chains/314159.ts | 60 +++++++++++++++++ packages/chains/chains/3141592.ts | 29 ++++++++ packages/chains/chains/31415926.ts | 27 ++++++++ packages/chains/chains/32520.ts | 43 ++++++++++++ packages/chains/chains/32659.ts | 50 ++++++++++++++ packages/chains/chains/32769.ts | 34 ++++++++++ packages/chains/chains/3306.ts | 34 ++++++++++ packages/chains/chains/330844.ts | 42 ++++++++++++ packages/chains/chains/33101.ts | 30 +++++++++ packages/chains/chains/331769.ts | 25 +++++++ packages/chains/chains/333000333.ts | 42 ++++++++++++ packages/chains/chains/3331.ts | 29 ++++++++ packages/chains/chains/3333.ts | 28 ++++++++ packages/chains/chains/33333.ts | 48 +++++++++++++ packages/chains/chains/333331.ts | 48 +++++++++++++ packages/chains/chains/3334.ts | 28 ++++++++ packages/chains/chains/333777.ts | 30 +++++++++ packages/chains/chains/333888.ts | 29 ++++++++ packages/chains/chains/333999.ts | 29 ++++++++ packages/chains/chains/3400.ts | 34 ++++++++++ packages/chains/chains/3434.ts | 36 ++++++++++ packages/chains/chains/344106930.ts | 37 ++++++++++ packages/chains/chains/3500.ts | 36 ++++++++++ packages/chains/chains/3501.ts | 28 ++++++++ packages/chains/chains/35011.ts | 42 ++++++++++++ packages/chains/chains/35441.ts | 40 +++++++++++ packages/chains/chains/35443.ts | 40 +++++++++++ packages/chains/chains/355113.ts | 36 ++++++++++ packages/chains/chains/356256156.ts | 42 ++++++++++++ packages/chains/chains/35855456.ts | 21 ++++++ packages/chains/chains/3601.ts | 34 ++++++++++ packages/chains/chains/3602.ts | 34 ++++++++++ packages/chains/chains/3636.ts | 36 ++++++++++ packages/chains/chains/3637.ts | 36 ++++++++++ packages/chains/chains/3666.ts | 28 ++++++++ packages/chains/chains/3690.ts | 29 ++++++++ packages/chains/chains/3693.ts | 28 ++++++++ packages/chains/chains/3698.ts | 36 ++++++++++ packages/chains/chains/3699.ts | 36 ++++++++++ packages/chains/chains/3737.ts | 36 ++++++++++ packages/chains/chains/373737.ts | 40 +++++++++++ packages/chains/chains/3797.ts | 35 ++++++++++ packages/chains/chains/381931.ts | 29 ++++++++ packages/chains/chains/381932.ts | 29 ++++++++ packages/chains/chains/383414847825.ts | 30 +++++++++ packages/chains/chains/3912.ts | 44 ++++++++++++ packages/chains/chains/3939.ts | 40 +++++++++++ packages/chains/chains/3966.ts | 30 +++++++++ packages/chains/chains/3967.ts | 30 +++++++++ packages/chains/chains/39797.ts | 22 ++++++ packages/chains/chains/39815.ts | 40 +++++++++++ packages/chains/chains/3999.ts | 34 ++++++++++ packages/chains/chains/4000.ts | 34 ++++++++++ packages/chains/chains/4000003.ts | 48 +++++++++++++ packages/chains/chains/4001.ts | 40 +++++++++++ packages/chains/chains/4002.ts | 43 ++++++++++++ packages/chains/chains/404040.ts | 36 ++++++++++ packages/chains/chains/4051.ts | 31 +++++++++ packages/chains/chains/4061.ts | 34 ++++++++++ packages/chains/chains/4062.ts | 49 ++++++++++++++ packages/chains/chains/408.ts | 24 +++++++ packages/chains/chains/4090.ts | 45 +++++++++++++ packages/chains/chains/4096.ts | 37 ++++++++++ packages/chains/chains/4099.ts | 37 ++++++++++ packages/chains/chains/4102.ts | 35 ++++++++++ packages/chains/chains/4141.ts | 36 ++++++++++ packages/chains/chains/41500.ts | 28 ++++++++ packages/chains/chains/4181.ts | 41 ++++++++++++ packages/chains/chains/4201.ts | 45 +++++++++++++ packages/chains/chains/420420.ts | 40 +++++++++++ packages/chains/chains/420666.ts | 40 +++++++++++ packages/chains/chains/42069.ts | 18 +++++ packages/chains/chains/42161.ts | 50 ++++++++++++++ packages/chains/chains/421611.ts | 45 +++++++++++++ packages/chains/chains/421613.ts | 46 +++++++++++++ packages/chains/chains/4216137055.ts | 36 ++++++++++ packages/chains/chains/42170.ts | 43 ++++++++++++ packages/chains/chains/42220.ts | 36 ++++++++++ packages/chains/chains/42261.ts | 37 ++++++++++ packages/chains/chains/42262.ts | 35 ++++++++++ packages/chains/chains/4242.ts | 37 ++++++++++ packages/chains/chains/424242.ts | 37 ++++++++++ packages/chains/chains/4281033.ts | 36 ++++++++++ packages/chains/chains/42888.ts | 37 ++++++++++ packages/chains/chains/43110.ts | 23 +++++++ packages/chains/chains/43113.ts | 39 +++++++++++ packages/chains/chains/43114.ts | 44 ++++++++++++ packages/chains/chains/431140.ts | 29 ++++++++ packages/chains/chains/43214913.ts | 28 ++++++++ packages/chains/chains/432201.ts | 36 ++++++++++ packages/chains/chains/432204.ts | 34 ++++++++++ packages/chains/chains/4328.ts | 39 +++++++++++ packages/chains/chains/43288.ts | 31 +++++++++ packages/chains/chains/4444.ts | 43 ++++++++++++ packages/chains/chains/44444.ts | 40 +++++++++++ packages/chains/chains/444900.ts | 30 +++++++++ packages/chains/chains/44787.ts | 37 ++++++++++ packages/chains/chains/45000.ts | 40 +++++++++++ packages/chains/chains/46688.ts | 50 ++++++++++++++ packages/chains/chains/4689.ts | 34 ++++++++++ packages/chains/chains/4690.ts | 36 ++++++++++ packages/chains/chains/471100.ts | 21 ++++++ packages/chains/chains/474142.ts | 28 ++++++++ packages/chains/chains/4759.ts | 40 +++++++++++ packages/chains/chains/4777.ts | 48 +++++++++++++ packages/chains/chains/47805.ts | 29 ++++++++ packages/chains/chains/486217935.ts | 28 ++++++++ packages/chains/chains/49049.ts | 36 ++++++++++ packages/chains/chains/49088.ts | 36 ++++++++++ packages/chains/chains/4918.ts | 28 ++++++++ packages/chains/chains/4919.ts | 34 ++++++++++ packages/chains/chains/49797.ts | 22 ++++++ packages/chains/chains/4999.ts | 51 ++++++++++++++ packages/chains/chains/500.ts | 34 ++++++++++ packages/chains/chains/5000.ts | 43 ++++++++++++ packages/chains/chains/50001.ts | 22 ++++++ packages/chains/chains/5001.ts | 30 +++++++++ packages/chains/chains/5002.ts | 48 +++++++++++++ packages/chains/chains/50021.ts | 32 +++++++++ packages/chains/chains/5005.ts | 48 +++++++++++++ packages/chains/chains/501.ts | 34 ++++++++++ packages/chains/chains/503129905.ts | 35 ++++++++++ packages/chains/chains/51178.ts | 49 ++++++++++++++ packages/chains/chains/512.ts | 35 ++++++++++ packages/chains/chains/512512.ts | 31 +++++++++ packages/chains/chains/513.ts | 36 ++++++++++ packages/chains/chains/513100.ts | 28 ++++++++ packages/chains/chains/516.ts | 23 +++++++ packages/chains/chains/5165.ts | 44 ++++++++++++ packages/chains/chains/5167003.ts | 34 ++++++++++ packages/chains/chains/51712.ts | 36 ++++++++++ packages/chains/chains/5177.ts | 34 ++++++++++ packages/chains/chains/5197.ts | 28 ++++++++ packages/chains/chains/520.ts | 38 +++++++++++ packages/chains/chains/5234.ts | 22 ++++++ packages/chains/chains/529.ts | 29 ++++++++ packages/chains/chains/530.ts | 34 ++++++++++ packages/chains/chains/5315.ts | 21 ++++++ packages/chains/chains/534.ts | 30 +++++++++ packages/chains/chains/534351.ts | 25 +++++++ packages/chains/chains/534352.ts | 25 +++++++ packages/chains/chains/534353.ts | 39 +++++++++++ packages/chains/chains/534849.ts | 36 ++++++++++ packages/chains/chains/535037.ts | 31 +++++++++ packages/chains/chains/53935.ts | 40 +++++++++++ packages/chains/chains/54211.ts | 30 +++++++++ packages/chains/chains/54321.ts | 37 ++++++++++ packages/chains/chains/55004.ts | 29 ++++++++ packages/chains/chains/555.ts | 28 ++++++++ packages/chains/chains/5551.ts | 49 ++++++++++++++ packages/chains/chains/5553.ts | 49 ++++++++++++++ packages/chains/chains/5555.ts | 34 ++++++++++ packages/chains/chains/55555.ts | 36 ++++++++++ packages/chains/chains/5555555.ts | 52 ++++++++++++++ packages/chains/chains/5555558.ts | 52 ++++++++++++++ packages/chains/chains/55556.ts | 36 ++++++++++ packages/chains/chains/558.ts | 24 +++++++ packages/chains/chains/5611.ts | 35 ++++++++++ packages/chains/chains/56288.ts | 42 ++++++++++++ packages/chains/chains/568.ts | 36 ++++++++++ packages/chains/chains/570.ts | 33 +++++++++ packages/chains/chains/5700.ts | 31 +++++++++ packages/chains/chains/57000.ts | 32 +++++++++ packages/chains/chains/5729.ts | 35 ++++++++++ packages/chains/chains/5758.ts | 36 ++++++++++ packages/chains/chains/5777.ts | 29 ++++++++ packages/chains/chains/58008.ts | 57 ++++++++++++++++ packages/chains/chains/5851.ts | 43 ++++++++++++ packages/chains/chains/5869.ts | 29 ++++++++ packages/chains/chains/59140.ts | 67 +++++++++++++++++++ packages/chains/chains/59144.ts | 41 ++++++++++++ packages/chains/chains/592.ts | 41 ++++++++++++ packages/chains/chains/595.ts | 18 +++++ packages/chains/chains/596.ts | 19 ++++++ packages/chains/chains/597.ts | 19 ++++++ packages/chains/chains/599.ts | 45 +++++++++++++ packages/chains/chains/600.ts | 18 +++++ packages/chains/chains/60000.ts | 30 +++++++++ packages/chains/chains/60001.ts | 30 +++++++++ packages/chains/chains/60002.ts | 30 +++++++++ packages/chains/chains/60103.ts | 30 +++++++++ packages/chains/chains/6022140761023.ts | 21 ++++++ packages/chains/chains/6065.ts | 42 ++++++++++++ packages/chains/chains/6066.ts | 41 ++++++++++++ packages/chains/chains/6102.ts | 53 +++++++++++++++ packages/chains/chains/6118.ts | 39 +++++++++++ packages/chains/chains/6119.ts | 39 +++++++++++ packages/chains/chains/614.ts | 28 ++++++++ packages/chains/chains/61717561.ts | 25 +++++++ packages/chains/chains/61800.ts | 34 ++++++++++ packages/chains/chains/61803.ts | 42 ++++++++++++ packages/chains/chains/61916.ts | 42 ++++++++++++ packages/chains/chains/62320.ts | 24 +++++++ packages/chains/chains/62621.ts | 35 ++++++++++ packages/chains/chains/63000.ts | 40 +++++++++++ packages/chains/chains/63001.ts | 42 ++++++++++++ packages/chains/chains/634.ts | 40 +++++++++++ packages/chains/chains/641230.ts | 35 ++++++++++ packages/chains/chains/647.ts | 36 ++++++++++ packages/chains/chains/648.ts | 28 ++++++++ packages/chains/chains/65010000.ts | 37 ++++++++++ packages/chains/chains/6502.ts | 22 ++++++ packages/chains/chains/65100000.ts | 37 ++++++++++ packages/chains/chains/651940.ts | 34 ++++++++++ packages/chains/chains/65450.ts | 34 ++++++++++ packages/chains/chains/6552.ts | 36 ++++++++++ packages/chains/chains/6565.ts | 44 ++++++++++++ packages/chains/chains/6626.ts | 29 ++++++++ packages/chains/chains/666.ts | 24 +++++++ packages/chains/chains/666301171999.ts | 28 ++++++++ packages/chains/chains/666666.ts | 24 +++++++ packages/chains/chains/6688.ts | 48 +++++++++++++ packages/chains/chains/67588.ts | 21 ++++++ packages/chains/chains/6789.ts | 36 ++++++++++ packages/chains/chains/686.ts | 19 ++++++ packages/chains/chains/69420.ts | 31 +++++++++ packages/chains/chains/6969.ts | 37 ++++++++++ packages/chains/chains/6999.ts | 23 +++++++ packages/chains/chains/700.ts | 28 ++++++++ packages/chains/chains/7000.ts | 35 ++++++++++ packages/chains/chains/70000.ts | 28 ++++++++ packages/chains/chains/70001.ts | 28 ++++++++ packages/chains/chains/70002.ts | 28 ++++++++ packages/chains/chains/7001.ts | 37 ++++++++++ packages/chains/chains/70103.ts | 28 ++++++++ packages/chains/chains/7027.ts | 34 ++++++++++ packages/chains/chains/707.ts | 29 ++++++++ packages/chains/chains/7070.ts | 39 +++++++++++ packages/chains/chains/708.ts | 31 +++++++++ packages/chains/chains/71111.ts | 42 ++++++++++++ packages/chains/chains/71393.ts | 30 +++++++++ packages/chains/chains/71401.ts | 31 +++++++++ packages/chains/chains/71402.ts | 28 ++++++++ packages/chains/chains/7171.ts | 34 ++++++++++ packages/chains/chains/719.ts | 34 ++++++++++ packages/chains/chains/721.ts | 34 ++++++++++ packages/chains/chains/7225878.ts | 34 ++++++++++ packages/chains/chains/7331.ts | 38 +++++++++++ packages/chains/chains/7332.ts | 49 ++++++++++++++ packages/chains/chains/7341.ts | 35 ++++++++++ packages/chains/chains/7355310.ts | 34 ++++++++++ packages/chains/chains/73799.ts | 24 +++++++ packages/chains/chains/73927.ts | 40 +++++++++++ packages/chains/chains/741.ts | 36 ++++++++++ packages/chains/chains/742.ts | 28 ++++++++ packages/chains/chains/7484.ts | 35 ++++++++++ packages/chains/chains/75000.ts | 31 +++++++++ packages/chains/chains/751230.ts | 36 ++++++++++ packages/chains/chains/7518.ts | 40 +++++++++++ packages/chains/chains/7575.ts | 36 ++++++++++ packages/chains/chains/7576.ts | 34 ++++++++++ packages/chains/chains/766.ts | 41 ++++++++++++ packages/chains/chains/7668.ts | 29 ++++++++ packages/chains/chains/7668378.ts | 43 ++++++++++++ packages/chains/chains/7672.ts | 29 ++++++++ packages/chains/chains/7700.ts | 40 +++++++++++ packages/chains/chains/7701.ts | 28 ++++++++ packages/chains/chains/776.ts | 27 ++++++++ packages/chains/chains/77612.ts | 36 ++++++++++ packages/chains/chains/7762959.ts | 22 ++++++ packages/chains/chains/777.ts | 21 ++++++ packages/chains/chains/7771.ts | 36 ++++++++++ packages/chains/chains/7777.ts | 32 +++++++++ packages/chains/chains/77777.ts | 37 ++++++++++ packages/chains/chains/7777777.ts | 34 ++++++++++ packages/chains/chains/78110.ts | 21 ++++++ packages/chains/chains/78281.ts | 43 ++++++++++++ packages/chains/chains/786.ts | 36 ++++++++++ packages/chains/chains/787.ts | 19 ++++++ packages/chains/chains/7878.ts | 31 +++++++++ packages/chains/chains/788.ts | 30 +++++++++ packages/chains/chains/789.ts | 48 +++++++++++++ packages/chains/chains/7895.ts | 42 ++++++++++++ packages/chains/chains/7979.ts | 40 +++++++++++ packages/chains/chains/79879.ts | 36 ++++++++++ packages/chains/chains/800.ts | 36 ++++++++++ packages/chains/chains/8000.ts | 51 ++++++++++++++ packages/chains/chains/800001.ts | 41 ++++++++++++ packages/chains/chains/80001.ts | 42 ++++++++++++ packages/chains/chains/8001.ts | 53 +++++++++++++++ packages/chains/chains/8007736.ts | 32 +++++++++ packages/chains/chains/8029.ts | 21 ++++++ packages/chains/chains/803.ts | 21 ++++++ packages/chains/chains/808.ts | 28 ++++++++ packages/chains/chains/8080.ts | 39 +++++++++++ packages/chains/chains/8081.ts | 35 ++++++++++ packages/chains/chains/8082.ts | 39 +++++++++++ packages/chains/chains/8086.ts | 22 ++++++ packages/chains/chains/8098.ts | 21 ++++++ packages/chains/chains/813.ts | 46 +++++++++++++ packages/chains/chains/8131.ts | 37 ++++++++++ packages/chains/chains/8132.ts | 25 +++++++ packages/chains/chains/8133.ts | 25 +++++++ packages/chains/chains/8134.ts | 25 +++++++ packages/chains/chains/81341.ts | 25 +++++++ packages/chains/chains/81342.ts | 25 +++++++ packages/chains/chains/81343.ts | 25 +++++++ packages/chains/chains/8135.ts | 25 +++++++ packages/chains/chains/81351.ts | 25 +++++++ packages/chains/chains/81352.ts | 25 +++++++ packages/chains/chains/81353.ts | 25 +++++++ packages/chains/chains/8136.ts | 25 +++++++ packages/chains/chains/81361.ts | 25 +++++++ packages/chains/chains/81362.ts | 25 +++++++ packages/chains/chains/81363.ts | 25 +++++++ packages/chains/chains/818.ts | 40 +++++++++++ packages/chains/chains/8181.ts | 44 ++++++++++++ packages/chains/chains/820.ts | 22 ++++++ packages/chains/chains/8217.ts | 43 ++++++++++++ packages/chains/chains/8272.ts | 36 ++++++++++ packages/chains/chains/827431.ts | 34 ++++++++++ packages/chains/chains/8285.ts | 21 ++++++ packages/chains/chains/8387.ts | 29 ++++++++ packages/chains/chains/841.ts | 34 ++++++++++ packages/chains/chains/842.ts | 34 ++++++++++ packages/chains/chains/8453.ts | 40 +++++++++++ packages/chains/chains/84531.ts | 41 ++++++++++++ packages/chains/chains/846000.ts | 21 ++++++ packages/chains/chains/85449.ts | 21 ++++++ packages/chains/chains/859.ts | 28 ++++++++ packages/chains/chains/8654.ts | 28 ++++++++ packages/chains/chains/8655.ts | 28 ++++++++ packages/chains/chains/868.ts | 30 +++++++++ packages/chains/chains/8723.ts | 29 ++++++++ packages/chains/chains/8724.ts | 24 +++++++ packages/chains/chains/8738.ts | 29 ++++++++ packages/chains/chains/876.ts | 38 +++++++++++ packages/chains/chains/8768.ts | 29 ++++++++ packages/chains/chains/877.ts | 30 +++++++++ packages/chains/chains/8794598.ts | 40 +++++++++++ packages/chains/chains/880.ts | 28 ++++++++ packages/chains/chains/8848.ts | 34 ++++++++++ packages/chains/chains/888.ts | 22 ++++++ packages/chains/chains/8880.ts | 37 ++++++++++ packages/chains/chains/8881.ts | 38 +++++++++++ packages/chains/chains/8882.ts | 39 +++++++++++ packages/chains/chains/8883.ts | 37 ++++++++++ packages/chains/chains/8888.ts | 37 ++++++++++ packages/chains/chains/88880.ts | 36 ++++++++++ packages/chains/chains/88888.ts | 36 ++++++++++ packages/chains/chains/888888.ts | 29 ++++++++ packages/chains/chains/8888881.ts | 26 +++++++ packages/chains/chains/8888888.ts | 26 +++++++ packages/chains/chains/88888888.ts | 42 ++++++++++++ packages/chains/chains/8889.ts | 21 ++++++ packages/chains/chains/8898.ts | 45 +++++++++++++ packages/chains/chains/8899.ts | 36 ++++++++++ packages/chains/chains/8989.ts | 41 ++++++++++++ packages/chains/chains/8995.ts | 23 +++++++ packages/chains/chains/900.ts | 42 ++++++++++++ packages/chains/chains/9000.ts | 42 ++++++++++++ packages/chains/chains/900000.ts | 31 +++++++++ packages/chains/chains/9001.ts | 40 +++++++++++ packages/chains/chains/901.ts | 46 +++++++++++++ packages/chains/chains/9012.ts | 36 ++++++++++ packages/chains/chains/902.ts | 46 +++++++++++++ packages/chains/chains/90210.ts | 32 +++++++++ packages/chains/chains/903.ts | 46 +++++++++++++ packages/chains/chains/909.ts | 26 +++++++ packages/chains/chains/910.ts | 21 ++++++ packages/chains/chains/9100.ts | 22 ++++++ packages/chains/chains/910000.ts | 30 +++++++++ packages/chains/chains/91002.ts | 37 ++++++++++ packages/chains/chains/917.ts | 31 +++++++++ packages/chains/chains/919.ts | 31 +++++++++ packages/chains/chains/920000.ts | 30 +++++++++ packages/chains/chains/920001.ts | 30 +++++++++ packages/chains/chains/92001.ts | 42 ++++++++++++ packages/chains/chains/9223.ts | 34 ++++++++++ packages/chains/chains/923018.ts | 42 ++++++++++++ packages/chains/chains/9339.ts | 36 ++++++++++ packages/chains/chains/942.ts | 24 +++++++ packages/chains/chains/943.ts | 43 ++++++++++++ packages/chains/chains/9527.ts | 36 ++++++++++ packages/chains/chains/9528.ts | 30 +++++++++ packages/chains/chains/955305.ts | 38 +++++++++++ packages/chains/chains/9559.ts | 42 ++++++++++++ packages/chains/chains/956.ts | 18 +++++ packages/chains/chains/96970.ts | 47 +++++++++++++ packages/chains/chains/970.ts | 27 ++++++++ packages/chains/chains/9700.ts | 25 +++++++ packages/chains/chains/971.ts | 24 +++++++ packages/chains/chains/972.ts | 28 ++++++++ packages/chains/chains/9728.ts | 40 +++++++++++ packages/chains/chains/9768.ts | 36 ++++++++++ packages/chains/chains/977.ts | 24 +++++++ packages/chains/chains/9779.ts | 40 +++++++++++ packages/chains/chains/9790.ts | 28 ++++++++ packages/chains/chains/9792.ts | 28 ++++++++ packages/chains/chains/980.ts | 34 ++++++++++ packages/chains/chains/985.ts | 43 ++++++++++++ packages/chains/chains/989.ts | 31 +++++++++ packages/chains/chains/990.ts | 36 ++++++++++ packages/chains/chains/99099.ts | 36 ++++++++++ packages/chains/chains/99415706.ts | 23 +++++++ packages/chains/chains/997.ts | 42 ++++++++++++ packages/chains/chains/998.ts | 41 ++++++++++++ packages/chains/chains/999.ts | 26 +++++++ packages/chains/chains/9997.ts | 48 +++++++++++++ packages/chains/chains/9999.ts | 21 ++++++ packages/chains/chains/99998.ts | 21 ++++++ packages/chains/chains/99999.ts | 21 ++++++ .../token-bound-smart-wallet/package.json | 7 ++ .../token-bound-smart-wallet/package.json | 7 ++ packages/wallets/package.json | 14 ++++ 756 files changed, 25515 insertions(+) create mode 100644 packages/chains/chains/1000.ts create mode 100644 packages/chains/chains/10000.ts create mode 100644 packages/chains/chains/100000.ts create mode 100644 packages/chains/chains/100001.ts create mode 100644 packages/chains/chains/100002.ts create mode 100644 packages/chains/chains/100003.ts create mode 100644 packages/chains/chains/100004.ts create mode 100644 packages/chains/chains/100005.ts create mode 100644 packages/chains/chains/100006.ts create mode 100644 packages/chains/chains/100007.ts create mode 100644 packages/chains/chains/100008.ts create mode 100644 packages/chains/chains/100009.ts create mode 100644 packages/chains/chains/10001.ts create mode 100644 packages/chains/chains/100010.ts create mode 100644 packages/chains/chains/1001.ts create mode 100644 packages/chains/chains/10024.ts create mode 100644 packages/chains/chains/1004.ts create mode 100644 packages/chains/chains/10067275.ts create mode 100644 packages/chains/chains/1007.ts create mode 100644 packages/chains/chains/1008.ts create mode 100644 packages/chains/chains/10086.ts create mode 100644 packages/chains/chains/1010.ts create mode 100644 packages/chains/chains/10101.ts create mode 100644 packages/chains/chains/101010.ts create mode 100644 packages/chains/chains/10101010.ts create mode 100644 packages/chains/chains/1012.ts create mode 100644 packages/chains/chains/10200.ts create mode 100644 packages/chains/chains/1022.ts create mode 100644 packages/chains/chains/1023.ts create mode 100644 packages/chains/chains/1024.ts create mode 100644 packages/chains/chains/10248.ts create mode 100644 packages/chains/chains/1028.ts create mode 100644 packages/chains/chains/1030.ts create mode 100644 packages/chains/chains/103090.ts create mode 100644 packages/chains/chains/1031.ts create mode 100644 packages/chains/chains/1038.ts create mode 100644 packages/chains/chains/1039.ts create mode 100644 packages/chains/chains/10507.ts create mode 100644 packages/chains/chains/10508.ts create mode 100644 packages/chains/chains/1072.ts create mode 100644 packages/chains/chains/1079.ts create mode 100644 packages/chains/chains/10823.ts create mode 100644 packages/chains/chains/1088.ts create mode 100644 packages/chains/chains/108801.ts create mode 100644 packages/chains/chains/10946.ts create mode 100644 packages/chains/chains/10947.ts create mode 100644 packages/chains/chains/1099.ts create mode 100644 packages/chains/chains/110000.ts create mode 100644 packages/chains/chains/110001.ts create mode 100644 packages/chains/chains/110002.ts create mode 100644 packages/chains/chains/110003.ts create mode 100644 packages/chains/chains/110004.ts create mode 100644 packages/chains/chains/110005.ts create mode 100644 packages/chains/chains/110006.ts create mode 100644 packages/chains/chains/110007.ts create mode 100644 packages/chains/chains/110008.ts create mode 100644 packages/chains/chains/1101.ts create mode 100644 packages/chains/chains/111000.ts create mode 100644 packages/chains/chains/1111.ts create mode 100644 packages/chains/chains/11110.ts create mode 100644 packages/chains/chains/11111.ts create mode 100644 packages/chains/chains/111111.ts create mode 100644 packages/chains/chains/11115.ts create mode 100644 packages/chains/chains/11119.ts create mode 100644 packages/chains/chains/1112.ts create mode 100644 packages/chains/chains/111222333444.ts create mode 100644 packages/chains/chains/1115.ts create mode 100644 packages/chains/chains/11155111.ts create mode 100644 packages/chains/chains/1116.ts create mode 100644 packages/chains/chains/1117.ts create mode 100644 packages/chains/chains/1122334455.ts create mode 100644 packages/chains/chains/11235.ts create mode 100644 packages/chains/chains/112358.ts create mode 100644 packages/chains/chains/11297108099.ts create mode 100644 packages/chains/chains/11297108109.ts create mode 100644 packages/chains/chains/1130.ts create mode 100644 packages/chains/chains/1131.ts create mode 100644 packages/chains/chains/1138.ts create mode 100644 packages/chains/chains/1139.ts create mode 100644 packages/chains/chains/1140.ts create mode 100644 packages/chains/chains/11437.ts create mode 100644 packages/chains/chains/1146703430.ts create mode 100644 packages/chains/chains/1149.ts create mode 100644 packages/chains/chains/11612.ts create mode 100644 packages/chains/chains/1170.ts create mode 100644 packages/chains/chains/1177.ts create mode 100644 packages/chains/chains/11888.ts create mode 100644 packages/chains/chains/1197.ts create mode 100644 packages/chains/chains/12009.ts create mode 100644 packages/chains/chains/1201.ts create mode 100644 packages/chains/chains/1202.ts create mode 100644 packages/chains/chains/12051.ts create mode 100644 packages/chains/chains/12052.ts create mode 100644 packages/chains/chains/12123.ts create mode 100644 packages/chains/chains/1213.ts create mode 100644 packages/chains/chains/1214.ts create mode 100644 packages/chains/chains/1229.ts create mode 100644 packages/chains/chains/1230.ts create mode 100644 packages/chains/chains/12306.ts create mode 100644 packages/chains/chains/1231.ts create mode 100644 packages/chains/chains/12321.ts create mode 100644 packages/chains/chains/1234.ts create mode 100644 packages/chains/chains/12345.ts create mode 100644 packages/chains/chains/123456.ts create mode 100644 packages/chains/chains/1243.ts create mode 100644 packages/chains/chains/1244.ts create mode 100644 packages/chains/chains/1246.ts create mode 100644 packages/chains/chains/1252.ts create mode 100644 packages/chains/chains/12715.ts create mode 100644 packages/chains/chains/1273227453.ts create mode 100644 packages/chains/chains/1280.ts create mode 100644 packages/chains/chains/1284.ts create mode 100644 packages/chains/chains/1285.ts create mode 100644 packages/chains/chains/1287.ts create mode 100644 packages/chains/chains/1288.ts create mode 100644 packages/chains/chains/1294.ts create mode 100644 packages/chains/chains/1297.ts create mode 100644 packages/chains/chains/13000.ts create mode 100644 packages/chains/chains/1311.ts create mode 100644 packages/chains/chains/1313114.ts create mode 100644 packages/chains/chains/1313161554.ts create mode 100644 packages/chains/chains/1313161555.ts create mode 100644 packages/chains/chains/1313161556.ts create mode 100644 packages/chains/chains/1313500.ts create mode 100644 packages/chains/chains/1314.ts create mode 100644 packages/chains/chains/131419.ts create mode 100644 packages/chains/chains/1319.ts create mode 100644 packages/chains/chains/1320.ts create mode 100644 packages/chains/chains/13308.ts create mode 100644 packages/chains/chains/1337.ts create mode 100644 packages/chains/chains/13371337.ts create mode 100644 packages/chains/chains/1337702.ts create mode 100644 packages/chains/chains/1337802.ts create mode 100644 packages/chains/chains/1337803.ts create mode 100644 packages/chains/chains/1338.ts create mode 100644 packages/chains/chains/13381.ts create mode 100644 packages/chains/chains/1339.ts create mode 100644 packages/chains/chains/1351057110.ts create mode 100644 packages/chains/chains/1353.ts create mode 100644 packages/chains/chains/1369.ts create mode 100644 packages/chains/chains/1380996178.ts create mode 100644 packages/chains/chains/13812.ts create mode 100644 packages/chains/chains/1388.ts create mode 100644 packages/chains/chains/1392.ts create mode 100644 packages/chains/chains/14000.ts create mode 100644 packages/chains/chains/142857.ts create mode 100644 packages/chains/chains/14288640.ts create mode 100644 packages/chains/chains/1433.ts create mode 100644 packages/chains/chains/1440.ts create mode 100644 packages/chains/chains/1440001.ts create mode 100644 packages/chains/chains/1442.ts create mode 100644 packages/chains/chains/1452.ts create mode 100644 packages/chains/chains/1455.ts create mode 100644 packages/chains/chains/1482601649.ts create mode 100644 packages/chains/chains/1501.ts create mode 100644 packages/chains/chains/1506.ts create mode 100644 packages/chains/chains/1507.ts create mode 100644 packages/chains/chains/1515.ts create mode 100644 packages/chains/chains/15551.ts create mode 100644 packages/chains/chains/15555.ts create mode 100644 packages/chains/chains/15557.ts create mode 100644 packages/chains/chains/1559.ts create mode 100644 packages/chains/chains/1564830818.ts create mode 100644 packages/chains/chains/1582.ts create mode 100644 packages/chains/chains/16000.ts create mode 100644 packages/chains/chains/16001.ts create mode 100644 packages/chains/chains/1618.ts create mode 100644 packages/chains/chains/1620.ts create mode 100644 packages/chains/chains/16507.ts create mode 100644 packages/chains/chains/1657.ts create mode 100644 packages/chains/chains/1663.ts create mode 100644 packages/chains/chains/16658437.ts create mode 100644 packages/chains/chains/1666600000.ts create mode 100644 packages/chains/chains/1666600001.ts create mode 100644 packages/chains/chains/1666600002.ts create mode 100644 packages/chains/chains/1666600003.ts create mode 100644 packages/chains/chains/1666700000.ts create mode 100644 packages/chains/chains/1666700001.ts create mode 100644 packages/chains/chains/1666700002.ts create mode 100644 packages/chains/chains/1666700003.ts create mode 100644 packages/chains/chains/1666900000.ts create mode 100644 packages/chains/chains/16688.ts create mode 100644 packages/chains/chains/167005.ts create mode 100644 packages/chains/chains/167006.ts create mode 100644 packages/chains/chains/16718.ts create mode 100644 packages/chains/chains/1688.ts create mode 100644 packages/chains/chains/16888.ts create mode 100644 packages/chains/chains/1701.ts create mode 100644 packages/chains/chains/1707.ts create mode 100644 packages/chains/chains/1708.ts create mode 100644 packages/chains/chains/1718.ts create mode 100644 packages/chains/chains/17180.ts create mode 100644 packages/chains/chains/1773.ts create mode 100644 packages/chains/chains/1777.ts create mode 100644 packages/chains/chains/17777.ts create mode 100644 packages/chains/chains/18000.ts create mode 100644 packages/chains/chains/1804.ts create mode 100644 packages/chains/chains/1807.ts create mode 100644 packages/chains/chains/18159.ts create mode 100644 packages/chains/chains/1818.ts create mode 100644 packages/chains/chains/1819.ts create mode 100644 packages/chains/chains/18289463.ts create mode 100644 packages/chains/chains/1856.ts create mode 100644 packages/chains/chains/18686.ts create mode 100644 packages/chains/chains/1881.ts create mode 100644 packages/chains/chains/188881.ts create mode 100644 packages/chains/chains/1890.ts create mode 100644 packages/chains/chains/1891.ts create mode 100644 packages/chains/chains/1898.ts create mode 100644 packages/chains/chains/19011.ts create mode 100644 packages/chains/chains/1907.ts create mode 100644 packages/chains/chains/1908.ts create mode 100644 packages/chains/chains/192837465.ts create mode 100644 packages/chains/chains/1945.ts create mode 100644 packages/chains/chains/1951.ts create mode 100644 packages/chains/chains/1954.ts create mode 100644 packages/chains/chains/1967.ts create mode 100644 packages/chains/chains/1969.ts create mode 100644 packages/chains/chains/1970.ts create mode 100644 packages/chains/chains/1971.ts create mode 100644 packages/chains/chains/1975.ts create mode 100644 packages/chains/chains/197710212030.ts create mode 100644 packages/chains/chains/197710212031.ts create mode 100644 packages/chains/chains/1984.ts create mode 100644 packages/chains/chains/19845.ts create mode 100644 packages/chains/chains/1987.ts create mode 100644 packages/chains/chains/1994.ts create mode 100644 packages/chains/chains/1995.ts create mode 100644 packages/chains/chains/2000.ts create mode 100644 packages/chains/chains/20001.ts create mode 100644 packages/chains/chains/2001.ts create mode 100644 packages/chains/chains/200101.ts create mode 100644 packages/chains/chains/2002.ts create mode 100644 packages/chains/chains/200202.ts create mode 100644 packages/chains/chains/200625.ts create mode 100644 packages/chains/chains/2008.ts create mode 100644 packages/chains/chains/2009.ts create mode 100644 packages/chains/chains/201018.ts create mode 100644 packages/chains/chains/201030.ts create mode 100644 packages/chains/chains/2016.ts create mode 100644 packages/chains/chains/2018.ts create mode 100644 packages/chains/chains/201804.ts create mode 100644 packages/chains/chains/20180430.ts create mode 100644 packages/chains/chains/20181205.ts create mode 100644 packages/chains/chains/2019.ts create mode 100644 packages/chains/chains/2020.ts create mode 100644 packages/chains/chains/20201022.ts create mode 100644 packages/chains/chains/202020.ts create mode 100644 packages/chains/chains/2021.ts create mode 100644 packages/chains/chains/2021121117.ts create mode 100644 packages/chains/chains/2022.ts create mode 100644 packages/chains/chains/2023.ts create mode 100644 packages/chains/chains/2025.ts create mode 100644 packages/chains/chains/202624.ts create mode 100644 packages/chains/chains/2043.ts create mode 100644 packages/chains/chains/2044.ts create mode 100644 packages/chains/chains/2046399126.ts create mode 100644 packages/chains/chains/2047.ts create mode 100644 packages/chains/chains/2048.ts create mode 100644 packages/chains/chains/20729.ts create mode 100644 packages/chains/chains/20736.ts create mode 100644 packages/chains/chains/2077.ts create mode 100644 packages/chains/chains/2099156.ts create mode 100644 packages/chains/chains/2100.ts create mode 100644 packages/chains/chains/2101.ts create mode 100644 packages/chains/chains/210425.ts create mode 100644 packages/chains/chains/2109.ts create mode 100644 packages/chains/chains/2122.ts create mode 100644 packages/chains/chains/2124.ts create mode 100644 packages/chains/chains/21337.ts create mode 100644 packages/chains/chains/2138.ts create mode 100644 packages/chains/chains/2151.ts create mode 100644 packages/chains/chains/2152.ts create mode 100644 packages/chains/chains/2153.ts create mode 100644 packages/chains/chains/2154.ts create mode 100644 packages/chains/chains/21816.ts create mode 100644 packages/chains/chains/2199.ts create mode 100644 packages/chains/chains/2202.ts create mode 100644 packages/chains/chains/22023.ts create mode 100644 packages/chains/chains/2203.ts create mode 100644 packages/chains/chains/220315.ts create mode 100644 packages/chains/chains/22040.ts create mode 100644 packages/chains/chains/22052002.ts create mode 100644 packages/chains/chains/2206132.ts create mode 100644 packages/chains/chains/2213.ts create mode 100644 packages/chains/chains/222000222.ts create mode 100644 packages/chains/chains/2221.ts create mode 100644 packages/chains/chains/2222.ts create mode 100644 packages/chains/chains/2223.ts create mode 100644 packages/chains/chains/224168.ts create mode 100644 packages/chains/chains/22776.ts create mode 100644 packages/chains/chains/2300.ts create mode 100644 packages/chains/chains/23006.ts create mode 100644 packages/chains/chains/230315.ts create mode 100644 packages/chains/chains/2309.ts create mode 100644 packages/chains/chains/23118.ts create mode 100644 packages/chains/chains/2323.ts create mode 100644 packages/chains/chains/23294.ts create mode 100644 packages/chains/chains/23295.ts create mode 100644 packages/chains/chains/2330.ts create mode 100644 packages/chains/chains/2332.ts create mode 100644 packages/chains/chains/234666.ts create mode 100644 packages/chains/chains/2358.ts create mode 100644 packages/chains/chains/2399.ts create mode 100644 packages/chains/chains/2400.ts create mode 100644 packages/chains/chains/2415.ts create mode 100644 packages/chains/chains/24484.ts create mode 100644 packages/chains/chains/245022926.ts create mode 100644 packages/chains/chains/245022934.ts create mode 100644 packages/chains/chains/245022940.ts create mode 100644 packages/chains/chains/246529.ts create mode 100644 packages/chains/chains/246785.ts create mode 100644 packages/chains/chains/247253.ts create mode 100644 packages/chains/chains/24734.ts create mode 100644 packages/chains/chains/2559.ts create mode 100644 packages/chains/chains/256256.ts create mode 100644 packages/chains/chains/2569.ts create mode 100644 packages/chains/chains/25888.ts create mode 100644 packages/chains/chains/25925.ts create mode 100644 packages/chains/chains/26026.ts create mode 100644 packages/chains/chains/2606.ts create mode 100644 packages/chains/chains/2611.ts create mode 100644 packages/chains/chains/2612.ts create mode 100644 packages/chains/chains/2613.ts create mode 100644 packages/chains/chains/2625.ts create mode 100644 packages/chains/chains/26600.ts create mode 100644 packages/chains/chains/266256.ts create mode 100644 packages/chains/chains/26863.ts create mode 100644 packages/chains/chains/27082017.ts create mode 100644 packages/chains/chains/27082022.ts create mode 100644 packages/chains/chains/271271.ts create mode 100644 packages/chains/chains/278611351.ts create mode 100644 packages/chains/chains/281121.ts create mode 100644 packages/chains/chains/28528.ts create mode 100644 packages/chains/chains/2888.ts create mode 100644 packages/chains/chains/28945486.ts create mode 100644 packages/chains/chains/29032022.ts create mode 100644 packages/chains/chains/2999.ts create mode 100644 packages/chains/chains/3000.ts create mode 100644 packages/chains/chains/3001.ts create mode 100644 packages/chains/chains/3003.ts create mode 100644 packages/chains/chains/30067.ts create mode 100644 packages/chains/chains/3011.ts create mode 100644 packages/chains/chains/3031.ts create mode 100644 packages/chains/chains/3068.ts create mode 100644 packages/chains/chains/31102.ts create mode 100644 packages/chains/chains/311752642.ts create mode 100644 packages/chains/chains/31223.ts create mode 100644 packages/chains/chains/31224.ts create mode 100644 packages/chains/chains/3125659152.ts create mode 100644 packages/chains/chains/31337.ts create mode 100644 packages/chains/chains/314159.ts create mode 100644 packages/chains/chains/3141592.ts create mode 100644 packages/chains/chains/31415926.ts create mode 100644 packages/chains/chains/32520.ts create mode 100644 packages/chains/chains/32659.ts create mode 100644 packages/chains/chains/32769.ts create mode 100644 packages/chains/chains/3306.ts create mode 100644 packages/chains/chains/330844.ts create mode 100644 packages/chains/chains/33101.ts create mode 100644 packages/chains/chains/331769.ts create mode 100644 packages/chains/chains/333000333.ts create mode 100644 packages/chains/chains/3331.ts create mode 100644 packages/chains/chains/3333.ts create mode 100644 packages/chains/chains/33333.ts create mode 100644 packages/chains/chains/333331.ts create mode 100644 packages/chains/chains/3334.ts create mode 100644 packages/chains/chains/333777.ts create mode 100644 packages/chains/chains/333888.ts create mode 100644 packages/chains/chains/333999.ts create mode 100644 packages/chains/chains/3400.ts create mode 100644 packages/chains/chains/3434.ts create mode 100644 packages/chains/chains/344106930.ts create mode 100644 packages/chains/chains/3500.ts create mode 100644 packages/chains/chains/3501.ts create mode 100644 packages/chains/chains/35011.ts create mode 100644 packages/chains/chains/35441.ts create mode 100644 packages/chains/chains/35443.ts create mode 100644 packages/chains/chains/355113.ts create mode 100644 packages/chains/chains/356256156.ts create mode 100644 packages/chains/chains/35855456.ts create mode 100644 packages/chains/chains/3601.ts create mode 100644 packages/chains/chains/3602.ts create mode 100644 packages/chains/chains/3636.ts create mode 100644 packages/chains/chains/3637.ts create mode 100644 packages/chains/chains/3666.ts create mode 100644 packages/chains/chains/3690.ts create mode 100644 packages/chains/chains/3693.ts create mode 100644 packages/chains/chains/3698.ts create mode 100644 packages/chains/chains/3699.ts create mode 100644 packages/chains/chains/3737.ts create mode 100644 packages/chains/chains/373737.ts create mode 100644 packages/chains/chains/3797.ts create mode 100644 packages/chains/chains/381931.ts create mode 100644 packages/chains/chains/381932.ts create mode 100644 packages/chains/chains/383414847825.ts create mode 100644 packages/chains/chains/3912.ts create mode 100644 packages/chains/chains/3939.ts create mode 100644 packages/chains/chains/3966.ts create mode 100644 packages/chains/chains/3967.ts create mode 100644 packages/chains/chains/39797.ts create mode 100644 packages/chains/chains/39815.ts create mode 100644 packages/chains/chains/3999.ts create mode 100644 packages/chains/chains/4000.ts create mode 100644 packages/chains/chains/4000003.ts create mode 100644 packages/chains/chains/4001.ts create mode 100644 packages/chains/chains/4002.ts create mode 100644 packages/chains/chains/404040.ts create mode 100644 packages/chains/chains/4051.ts create mode 100644 packages/chains/chains/4061.ts create mode 100644 packages/chains/chains/4062.ts create mode 100644 packages/chains/chains/408.ts create mode 100644 packages/chains/chains/4090.ts create mode 100644 packages/chains/chains/4096.ts create mode 100644 packages/chains/chains/4099.ts create mode 100644 packages/chains/chains/4102.ts create mode 100644 packages/chains/chains/4141.ts create mode 100644 packages/chains/chains/41500.ts create mode 100644 packages/chains/chains/4181.ts create mode 100644 packages/chains/chains/4201.ts create mode 100644 packages/chains/chains/420420.ts create mode 100644 packages/chains/chains/420666.ts create mode 100644 packages/chains/chains/42069.ts create mode 100644 packages/chains/chains/42161.ts create mode 100644 packages/chains/chains/421611.ts create mode 100644 packages/chains/chains/421613.ts create mode 100644 packages/chains/chains/4216137055.ts create mode 100644 packages/chains/chains/42170.ts create mode 100644 packages/chains/chains/42220.ts create mode 100644 packages/chains/chains/42261.ts create mode 100644 packages/chains/chains/42262.ts create mode 100644 packages/chains/chains/4242.ts create mode 100644 packages/chains/chains/424242.ts create mode 100644 packages/chains/chains/4281033.ts create mode 100644 packages/chains/chains/42888.ts create mode 100644 packages/chains/chains/43110.ts create mode 100644 packages/chains/chains/43113.ts create mode 100644 packages/chains/chains/43114.ts create mode 100644 packages/chains/chains/431140.ts create mode 100644 packages/chains/chains/43214913.ts create mode 100644 packages/chains/chains/432201.ts create mode 100644 packages/chains/chains/432204.ts create mode 100644 packages/chains/chains/4328.ts create mode 100644 packages/chains/chains/43288.ts create mode 100644 packages/chains/chains/4444.ts create mode 100644 packages/chains/chains/44444.ts create mode 100644 packages/chains/chains/444900.ts create mode 100644 packages/chains/chains/44787.ts create mode 100644 packages/chains/chains/45000.ts create mode 100644 packages/chains/chains/46688.ts create mode 100644 packages/chains/chains/4689.ts create mode 100644 packages/chains/chains/4690.ts create mode 100644 packages/chains/chains/471100.ts create mode 100644 packages/chains/chains/474142.ts create mode 100644 packages/chains/chains/4759.ts create mode 100644 packages/chains/chains/4777.ts create mode 100644 packages/chains/chains/47805.ts create mode 100644 packages/chains/chains/486217935.ts create mode 100644 packages/chains/chains/49049.ts create mode 100644 packages/chains/chains/49088.ts create mode 100644 packages/chains/chains/4918.ts create mode 100644 packages/chains/chains/4919.ts create mode 100644 packages/chains/chains/49797.ts create mode 100644 packages/chains/chains/4999.ts create mode 100644 packages/chains/chains/500.ts create mode 100644 packages/chains/chains/5000.ts create mode 100644 packages/chains/chains/50001.ts create mode 100644 packages/chains/chains/5001.ts create mode 100644 packages/chains/chains/5002.ts create mode 100644 packages/chains/chains/50021.ts create mode 100644 packages/chains/chains/5005.ts create mode 100644 packages/chains/chains/501.ts create mode 100644 packages/chains/chains/503129905.ts create mode 100644 packages/chains/chains/51178.ts create mode 100644 packages/chains/chains/512.ts create mode 100644 packages/chains/chains/512512.ts create mode 100644 packages/chains/chains/513.ts create mode 100644 packages/chains/chains/513100.ts create mode 100644 packages/chains/chains/516.ts create mode 100644 packages/chains/chains/5165.ts create mode 100644 packages/chains/chains/5167003.ts create mode 100644 packages/chains/chains/51712.ts create mode 100644 packages/chains/chains/5177.ts create mode 100644 packages/chains/chains/5197.ts create mode 100644 packages/chains/chains/520.ts create mode 100644 packages/chains/chains/5234.ts create mode 100644 packages/chains/chains/529.ts create mode 100644 packages/chains/chains/530.ts create mode 100644 packages/chains/chains/5315.ts create mode 100644 packages/chains/chains/534.ts create mode 100644 packages/chains/chains/534351.ts create mode 100644 packages/chains/chains/534352.ts create mode 100644 packages/chains/chains/534353.ts create mode 100644 packages/chains/chains/534849.ts create mode 100644 packages/chains/chains/535037.ts create mode 100644 packages/chains/chains/53935.ts create mode 100644 packages/chains/chains/54211.ts create mode 100644 packages/chains/chains/54321.ts create mode 100644 packages/chains/chains/55004.ts create mode 100644 packages/chains/chains/555.ts create mode 100644 packages/chains/chains/5551.ts create mode 100644 packages/chains/chains/5553.ts create mode 100644 packages/chains/chains/5555.ts create mode 100644 packages/chains/chains/55555.ts create mode 100644 packages/chains/chains/5555555.ts create mode 100644 packages/chains/chains/5555558.ts create mode 100644 packages/chains/chains/55556.ts create mode 100644 packages/chains/chains/558.ts create mode 100644 packages/chains/chains/5611.ts create mode 100644 packages/chains/chains/56288.ts create mode 100644 packages/chains/chains/568.ts create mode 100644 packages/chains/chains/570.ts create mode 100644 packages/chains/chains/5700.ts create mode 100644 packages/chains/chains/57000.ts create mode 100644 packages/chains/chains/5729.ts create mode 100644 packages/chains/chains/5758.ts create mode 100644 packages/chains/chains/5777.ts create mode 100644 packages/chains/chains/58008.ts create mode 100644 packages/chains/chains/5851.ts create mode 100644 packages/chains/chains/5869.ts create mode 100644 packages/chains/chains/59140.ts create mode 100644 packages/chains/chains/59144.ts create mode 100644 packages/chains/chains/592.ts create mode 100644 packages/chains/chains/595.ts create mode 100644 packages/chains/chains/596.ts create mode 100644 packages/chains/chains/597.ts create mode 100644 packages/chains/chains/599.ts create mode 100644 packages/chains/chains/600.ts create mode 100644 packages/chains/chains/60000.ts create mode 100644 packages/chains/chains/60001.ts create mode 100644 packages/chains/chains/60002.ts create mode 100644 packages/chains/chains/60103.ts create mode 100644 packages/chains/chains/6022140761023.ts create mode 100644 packages/chains/chains/6065.ts create mode 100644 packages/chains/chains/6066.ts create mode 100644 packages/chains/chains/6102.ts create mode 100644 packages/chains/chains/6118.ts create mode 100644 packages/chains/chains/6119.ts create mode 100644 packages/chains/chains/614.ts create mode 100644 packages/chains/chains/61717561.ts create mode 100644 packages/chains/chains/61800.ts create mode 100644 packages/chains/chains/61803.ts create mode 100644 packages/chains/chains/61916.ts create mode 100644 packages/chains/chains/62320.ts create mode 100644 packages/chains/chains/62621.ts create mode 100644 packages/chains/chains/63000.ts create mode 100644 packages/chains/chains/63001.ts create mode 100644 packages/chains/chains/634.ts create mode 100644 packages/chains/chains/641230.ts create mode 100644 packages/chains/chains/647.ts create mode 100644 packages/chains/chains/648.ts create mode 100644 packages/chains/chains/65010000.ts create mode 100644 packages/chains/chains/6502.ts create mode 100644 packages/chains/chains/65100000.ts create mode 100644 packages/chains/chains/651940.ts create mode 100644 packages/chains/chains/65450.ts create mode 100644 packages/chains/chains/6552.ts create mode 100644 packages/chains/chains/6565.ts create mode 100644 packages/chains/chains/6626.ts create mode 100644 packages/chains/chains/666.ts create mode 100644 packages/chains/chains/666301171999.ts create mode 100644 packages/chains/chains/666666.ts create mode 100644 packages/chains/chains/6688.ts create mode 100644 packages/chains/chains/67588.ts create mode 100644 packages/chains/chains/6789.ts create mode 100644 packages/chains/chains/686.ts create mode 100644 packages/chains/chains/69420.ts create mode 100644 packages/chains/chains/6969.ts create mode 100644 packages/chains/chains/6999.ts create mode 100644 packages/chains/chains/700.ts create mode 100644 packages/chains/chains/7000.ts create mode 100644 packages/chains/chains/70000.ts create mode 100644 packages/chains/chains/70001.ts create mode 100644 packages/chains/chains/70002.ts create mode 100644 packages/chains/chains/7001.ts create mode 100644 packages/chains/chains/70103.ts create mode 100644 packages/chains/chains/7027.ts create mode 100644 packages/chains/chains/707.ts create mode 100644 packages/chains/chains/7070.ts create mode 100644 packages/chains/chains/708.ts create mode 100644 packages/chains/chains/71111.ts create mode 100644 packages/chains/chains/71393.ts create mode 100644 packages/chains/chains/71401.ts create mode 100644 packages/chains/chains/71402.ts create mode 100644 packages/chains/chains/7171.ts create mode 100644 packages/chains/chains/719.ts create mode 100644 packages/chains/chains/721.ts create mode 100644 packages/chains/chains/7225878.ts create mode 100644 packages/chains/chains/7331.ts create mode 100644 packages/chains/chains/7332.ts create mode 100644 packages/chains/chains/7341.ts create mode 100644 packages/chains/chains/7355310.ts create mode 100644 packages/chains/chains/73799.ts create mode 100644 packages/chains/chains/73927.ts create mode 100644 packages/chains/chains/741.ts create mode 100644 packages/chains/chains/742.ts create mode 100644 packages/chains/chains/7484.ts create mode 100644 packages/chains/chains/75000.ts create mode 100644 packages/chains/chains/751230.ts create mode 100644 packages/chains/chains/7518.ts create mode 100644 packages/chains/chains/7575.ts create mode 100644 packages/chains/chains/7576.ts create mode 100644 packages/chains/chains/766.ts create mode 100644 packages/chains/chains/7668.ts create mode 100644 packages/chains/chains/7668378.ts create mode 100644 packages/chains/chains/7672.ts create mode 100644 packages/chains/chains/7700.ts create mode 100644 packages/chains/chains/7701.ts create mode 100644 packages/chains/chains/776.ts create mode 100644 packages/chains/chains/77612.ts create mode 100644 packages/chains/chains/7762959.ts create mode 100644 packages/chains/chains/777.ts create mode 100644 packages/chains/chains/7771.ts create mode 100644 packages/chains/chains/7777.ts create mode 100644 packages/chains/chains/77777.ts create mode 100644 packages/chains/chains/7777777.ts create mode 100644 packages/chains/chains/78110.ts create mode 100644 packages/chains/chains/78281.ts create mode 100644 packages/chains/chains/786.ts create mode 100644 packages/chains/chains/787.ts create mode 100644 packages/chains/chains/7878.ts create mode 100644 packages/chains/chains/788.ts create mode 100644 packages/chains/chains/789.ts create mode 100644 packages/chains/chains/7895.ts create mode 100644 packages/chains/chains/7979.ts create mode 100644 packages/chains/chains/79879.ts create mode 100644 packages/chains/chains/800.ts create mode 100644 packages/chains/chains/8000.ts create mode 100644 packages/chains/chains/800001.ts create mode 100644 packages/chains/chains/80001.ts create mode 100644 packages/chains/chains/8001.ts create mode 100644 packages/chains/chains/8007736.ts create mode 100644 packages/chains/chains/8029.ts create mode 100644 packages/chains/chains/803.ts create mode 100644 packages/chains/chains/808.ts create mode 100644 packages/chains/chains/8080.ts create mode 100644 packages/chains/chains/8081.ts create mode 100644 packages/chains/chains/8082.ts create mode 100644 packages/chains/chains/8086.ts create mode 100644 packages/chains/chains/8098.ts create mode 100644 packages/chains/chains/813.ts create mode 100644 packages/chains/chains/8131.ts create mode 100644 packages/chains/chains/8132.ts create mode 100644 packages/chains/chains/8133.ts create mode 100644 packages/chains/chains/8134.ts create mode 100644 packages/chains/chains/81341.ts create mode 100644 packages/chains/chains/81342.ts create mode 100644 packages/chains/chains/81343.ts create mode 100644 packages/chains/chains/8135.ts create mode 100644 packages/chains/chains/81351.ts create mode 100644 packages/chains/chains/81352.ts create mode 100644 packages/chains/chains/81353.ts create mode 100644 packages/chains/chains/8136.ts create mode 100644 packages/chains/chains/81361.ts create mode 100644 packages/chains/chains/81362.ts create mode 100644 packages/chains/chains/81363.ts create mode 100644 packages/chains/chains/818.ts create mode 100644 packages/chains/chains/8181.ts create mode 100644 packages/chains/chains/820.ts create mode 100644 packages/chains/chains/8217.ts create mode 100644 packages/chains/chains/8272.ts create mode 100644 packages/chains/chains/827431.ts create mode 100644 packages/chains/chains/8285.ts create mode 100644 packages/chains/chains/8387.ts create mode 100644 packages/chains/chains/841.ts create mode 100644 packages/chains/chains/842.ts create mode 100644 packages/chains/chains/8453.ts create mode 100644 packages/chains/chains/84531.ts create mode 100644 packages/chains/chains/846000.ts create mode 100644 packages/chains/chains/85449.ts create mode 100644 packages/chains/chains/859.ts create mode 100644 packages/chains/chains/8654.ts create mode 100644 packages/chains/chains/8655.ts create mode 100644 packages/chains/chains/868.ts create mode 100644 packages/chains/chains/8723.ts create mode 100644 packages/chains/chains/8724.ts create mode 100644 packages/chains/chains/8738.ts create mode 100644 packages/chains/chains/876.ts create mode 100644 packages/chains/chains/8768.ts create mode 100644 packages/chains/chains/877.ts create mode 100644 packages/chains/chains/8794598.ts create mode 100644 packages/chains/chains/880.ts create mode 100644 packages/chains/chains/8848.ts create mode 100644 packages/chains/chains/888.ts create mode 100644 packages/chains/chains/8880.ts create mode 100644 packages/chains/chains/8881.ts create mode 100644 packages/chains/chains/8882.ts create mode 100644 packages/chains/chains/8883.ts create mode 100644 packages/chains/chains/8888.ts create mode 100644 packages/chains/chains/88880.ts create mode 100644 packages/chains/chains/88888.ts create mode 100644 packages/chains/chains/888888.ts create mode 100644 packages/chains/chains/8888881.ts create mode 100644 packages/chains/chains/8888888.ts create mode 100644 packages/chains/chains/88888888.ts create mode 100644 packages/chains/chains/8889.ts create mode 100644 packages/chains/chains/8898.ts create mode 100644 packages/chains/chains/8899.ts create mode 100644 packages/chains/chains/8989.ts create mode 100644 packages/chains/chains/8995.ts create mode 100644 packages/chains/chains/900.ts create mode 100644 packages/chains/chains/9000.ts create mode 100644 packages/chains/chains/900000.ts create mode 100644 packages/chains/chains/9001.ts create mode 100644 packages/chains/chains/901.ts create mode 100644 packages/chains/chains/9012.ts create mode 100644 packages/chains/chains/902.ts create mode 100644 packages/chains/chains/90210.ts create mode 100644 packages/chains/chains/903.ts create mode 100644 packages/chains/chains/909.ts create mode 100644 packages/chains/chains/910.ts create mode 100644 packages/chains/chains/9100.ts create mode 100644 packages/chains/chains/910000.ts create mode 100644 packages/chains/chains/91002.ts create mode 100644 packages/chains/chains/917.ts create mode 100644 packages/chains/chains/919.ts create mode 100644 packages/chains/chains/920000.ts create mode 100644 packages/chains/chains/920001.ts create mode 100644 packages/chains/chains/92001.ts create mode 100644 packages/chains/chains/9223.ts create mode 100644 packages/chains/chains/923018.ts create mode 100644 packages/chains/chains/9339.ts create mode 100644 packages/chains/chains/942.ts create mode 100644 packages/chains/chains/943.ts create mode 100644 packages/chains/chains/9527.ts create mode 100644 packages/chains/chains/9528.ts create mode 100644 packages/chains/chains/955305.ts create mode 100644 packages/chains/chains/9559.ts create mode 100644 packages/chains/chains/956.ts create mode 100644 packages/chains/chains/96970.ts create mode 100644 packages/chains/chains/970.ts create mode 100644 packages/chains/chains/9700.ts create mode 100644 packages/chains/chains/971.ts create mode 100644 packages/chains/chains/972.ts create mode 100644 packages/chains/chains/9728.ts create mode 100644 packages/chains/chains/9768.ts create mode 100644 packages/chains/chains/977.ts create mode 100644 packages/chains/chains/9779.ts create mode 100644 packages/chains/chains/9790.ts create mode 100644 packages/chains/chains/9792.ts create mode 100644 packages/chains/chains/980.ts create mode 100644 packages/chains/chains/985.ts create mode 100644 packages/chains/chains/989.ts create mode 100644 packages/chains/chains/990.ts create mode 100644 packages/chains/chains/99099.ts create mode 100644 packages/chains/chains/99415706.ts create mode 100644 packages/chains/chains/997.ts create mode 100644 packages/chains/chains/998.ts create mode 100644 packages/chains/chains/999.ts create mode 100644 packages/chains/chains/9997.ts create mode 100644 packages/chains/chains/9999.ts create mode 100644 packages/chains/chains/99998.ts create mode 100644 packages/chains/chains/99999.ts create mode 100644 packages/wallets/evm/connectors/token-bound-smart-wallet/package.json create mode 100644 packages/wallets/evm/wallets/token-bound-smart-wallet/package.json diff --git a/packages/chains/chains/1000.ts b/packages/chains/chains/1000.ts new file mode 100644 index 00000000000..f41e842be82 --- /dev/null +++ b/packages/chains/chains/1000.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "GTON Mainnet", + "chain": "GTON", + "rpc": [ + "https://gton.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.gton.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "gton", + "chainId": 1000, + "networkId": 1000, + "explorers": [ + { + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "testnet": false, + "slug": "gton" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10000.ts b/packages/chains/chains/10000.ts new file mode 100644 index 00000000000..45c42e4581d --- /dev/null +++ b/packages/chains/chains/10000.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Smart Bitcoin Cash", + "chain": "smartBCH", + "rpc": [ + "https://smart-bitcoin-cash.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "infoURL": "https://smartbch.org/", + "shortName": "smartbch", + "chainId": 10000, + "networkId": 10000, + "testnet": false, + "slug": "smart-bitcoin-cash" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100000.ts b/packages/chains/chains/100000.ts new file mode 100644 index 00000000000..d7d4301eac6 --- /dev/null +++ b/packages/chains/chains/100000.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Root", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-root.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://jrpc.mainnet.quarkchain.io:38391" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-r", + "chainId": 100000, + "networkId": 100000, + "testnet": false, + "slug": "quarkchain-root" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100001.ts b/packages/chains/chains/100001.ts new file mode 100644 index 00000000000..315e02f2132 --- /dev/null +++ b/packages/chains/chains/100001.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 0", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s0-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39000" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s0", + "chainId": 100001, + "networkId": 100001, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100002.ts b/packages/chains/chains/100002.ts new file mode 100644 index 00000000000..f3d35da3823 --- /dev/null +++ b/packages/chains/chains/100002.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 1", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s1-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39001" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s1", + "chainId": 100002, + "networkId": 100002, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100003.ts b/packages/chains/chains/100003.ts new file mode 100644 index 00000000000..46778398150 --- /dev/null +++ b/packages/chains/chains/100003.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 2", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s2-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39002" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s2", + "chainId": 100003, + "networkId": 100003, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100004.ts b/packages/chains/chains/100004.ts new file mode 100644 index 00000000000..d386eb50ed0 --- /dev/null +++ b/packages/chains/chains/100004.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 3", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s3-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39003" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s3", + "chainId": 100004, + "networkId": 100004, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100005.ts b/packages/chains/chains/100005.ts new file mode 100644 index 00000000000..c92d48a421c --- /dev/null +++ b/packages/chains/chains/100005.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 4", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s4-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39004" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s4", + "chainId": 100005, + "networkId": 100005, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-4" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100006.ts b/packages/chains/chains/100006.ts new file mode 100644 index 00000000000..18780a67fdc --- /dev/null +++ b/packages/chains/chains/100006.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 5", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-5.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s5-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39005" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s5", + "chainId": 100006, + "networkId": 100006, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-5" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100007.ts b/packages/chains/chains/100007.ts new file mode 100644 index 00000000000..60d4159f2a3 --- /dev/null +++ b/packages/chains/chains/100007.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 6", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-6.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s6-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39006" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s6", + "chainId": 100007, + "networkId": 100007, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-6" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100008.ts b/packages/chains/chains/100008.ts new file mode 100644 index 00000000000..dda9b4389e1 --- /dev/null +++ b/packages/chains/chains/100008.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Mainnet Shard 7", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-shard-7.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-s7-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39007" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-s7", + "chainId": 100008, + "networkId": 100008, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-shard-7" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100009.ts b/packages/chains/chains/100009.ts new file mode 100644 index 00000000000..286d374d236 --- /dev/null +++ b/packages/chains/chains/100009.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "VeChain", + "chain": "VeChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain", + "chainId": 100009, + "networkId": 100009, + "explorers": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "vechain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10001.ts b/packages/chains/chains/10001.ts new file mode 100644 index 00000000000..e556e4db545 --- /dev/null +++ b/packages/chains/chains/10001.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Smart Bitcoin Cash Testnet", + "chain": "smartBCHTest", + "rpc": [ + "https://smart-bitcoin-cash-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.smartbch.org", + "https://smartbch.devops.cash/testnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Cash Test Token", + "symbol": "BCHT", + "decimals": 18 + }, + "infoURL": "http://smartbch.org/", + "shortName": "smartbchtest", + "chainId": 10001, + "networkId": 10001, + "testnet": true, + "slug": "smart-bitcoin-cash-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/100010.ts b/packages/chains/chains/100010.ts new file mode 100644 index 00000000000..132f0fdd90d --- /dev/null +++ b/packages/chains/chains/100010.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "VeChain Testnet", + "chain": "VeChain", + "rpc": [], + "faucets": [ + "https://faucet.vecha.in" + ], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain-testnet", + "chainId": 100010, + "networkId": 100010, + "explorers": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } + ], + "testnet": true, + "slug": "vechain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1001.ts b/packages/chains/chains/1001.ts new file mode 100644 index 00000000000..6b5094791ab --- /dev/null +++ b/packages/chains/chains/1001.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Klaytn Testnet Baobab", + "chain": "KLAY", + "rpc": [ + "https://klaytn-testnet-baobab.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.baobab.klaytn.net:8651" + ], + "faucets": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://www.klaytn.com/", + "shortName": "Baobab", + "chainId": 1001, + "networkId": 1001, + "testnet": true, + "slug": "klaytn-testnet-baobab" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10024.ts b/packages/chains/chains/10024.ts new file mode 100644 index 00000000000..53e5d45027c --- /dev/null +++ b/packages/chains/chains/10024.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gon Chain", + "chain": "GonChain", + "icon": { + "url": "ipfs://QmPtiJGaApbW3ATZhPW3pKJpw3iGVrRGsZLWhrDKF9ZK18", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://gon-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1.testnet.gaiaopen.network", + "https://node1.mainnet.gon.network", + "https://node2.mainnet.gon.network", + "https://node3.mainnet.gon.network", + "https://node4.mainnet.gon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gon Token", + "symbol": "GT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "gon", + "chainId": 10024, + "networkId": 10024, + "explorers": [ + { + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "gon-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1004.ts b/packages/chains/chains/1004.ts new file mode 100644 index 00000000000..3f330744541 --- /dev/null +++ b/packages/chains/chains/1004.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "T-EKTA", + "title": "EKTA Testnet T-EKTA", + "chain": "T-EKTA", + "rpc": [ + "https://t-ekta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test.ekta.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "T-EKTA", + "symbol": "T-EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "t-ekta", + "chainId": 1004, + "networkId": 1004, + "icon": { + "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "width": 2100, + "height": 2100, + "format": "png" + }, + "explorers": [ + { + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": { + "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "width": 2100, + "height": 2100, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "t-ekta" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10067275.ts b/packages/chains/chains/10067275.ts new file mode 100644 index 00000000000..fe0b46ebb9c --- /dev/null +++ b/packages/chains/chains/10067275.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Plian Testnet Subchain 1", + "chain": "Plian", + "rpc": [ + "https://plian-testnet-subchain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.plian.io/child_test" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-testnet-l2", + "chainId": 10067275, + "networkId": 10067275, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-16658437", + "type": "L2" + }, + "testnet": true, + "slug": "plian-testnet-subchain-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1007.ts b/packages/chains/chains/1007.ts new file mode 100644 index 00000000000..16e19c1964e --- /dev/null +++ b/packages/chains/chains/1007.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Newton Testnet", + "chain": "NEW", + "rpc": [ + "https://newton-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.newchain.newtonproject.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "infoURL": "https://www.newtonproject.org/", + "shortName": "tnew", + "chainId": 1007, + "networkId": 1007, + "testnet": true, + "slug": "newton-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1008.ts b/packages/chains/chains/1008.ts new file mode 100644 index 00000000000..f77e1c77e0c --- /dev/null +++ b/packages/chains/chains/1008.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Eurus Mainnet", + "chain": "EUN", + "rpc": [ + "https://eurus.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.eurus.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "eun", + "chainId": 1008, + "networkId": 1008, + "icon": { + "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", + "width": 471, + "height": 471, + "format": "svg" + }, + "explorers": [ + { + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": { + "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", + "width": 471, + "height": 471, + "format": "svg" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "eurus" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10086.ts b/packages/chains/chains/10086.ts new file mode 100644 index 00000000000..6e4e3403313 --- /dev/null +++ b/packages/chains/chains/10086.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SJATSH", + "chain": "ETH", + "rpc": [ + "https://sjatsh.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://geth.free.idcfengye.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sjis.me", + "shortName": "SJ", + "chainId": 10086, + "networkId": 10086, + "testnet": false, + "slug": "sjatsh" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1010.ts b/packages/chains/chains/1010.ts new file mode 100644 index 00000000000..4905d53cd7c --- /dev/null +++ b/packages/chains/chains/1010.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Evrice Network", + "chain": "EVC", + "rpc": [ + "https://evrice-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://meta.evrice.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evrice", + "symbol": "EVC", + "decimals": 18 + }, + "infoURL": "https://evrice.com", + "shortName": "EVC", + "chainId": 1010, + "networkId": 1010, + "slip44": 1020, + "testnet": false, + "slug": "evrice-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10101.ts b/packages/chains/chains/10101.ts new file mode 100644 index 00000000000..404190c600a --- /dev/null +++ b/packages/chains/chains/10101.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Blockchain Genesis Mainnet", + "chain": "GEN", + "rpc": [ + "https://blockchain-genesis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eu.mainnet.xixoio.com", + "https://us.mainnet.xixoio.com", + "https://asia.mainnet.xixoio.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GEN", + "symbol": "GEN", + "decimals": 18 + }, + "infoURL": "https://www.xixoio.com/", + "shortName": "GEN", + "chainId": 10101, + "networkId": 10101, + "testnet": false, + "slug": "blockchain-genesis" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/101010.ts b/packages/chains/chains/101010.ts new file mode 100644 index 00000000000..e83d9458e42 --- /dev/null +++ b/packages/chains/chains/101010.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Soverun Testnet", + "chain": "SVRN", + "icon": { + "url": "ipfs://QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi", + "width": 1154, + "height": 1154, + "format": "png" + }, + "rpc": [ + "https://soverun-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.soverun.com" + ], + "faucets": [ + "https://faucet.soverun.com" + ], + "nativeCurrency": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "infoURL": "https://soverun.com", + "shortName": "SVRNt", + "chainId": 101010, + "networkId": 101010, + "explorers": [ + { + "name": "Soverun", + "url": "https://testnet.soverun.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "soverun-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10101010.ts b/packages/chains/chains/10101010.ts new file mode 100644 index 00000000000..321ab5de229 --- /dev/null +++ b/packages/chains/chains/10101010.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Soverun Mainnet", + "chain": "SVRN", + "icon": { + "url": "ipfs://QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi", + "width": 1154, + "height": 1154, + "format": "png" + }, + "rpc": [ + "https://soverun.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.soverun.com" + ], + "faucets": [ + "https://faucet.soverun.com" + ], + "nativeCurrency": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "infoURL": "https://soverun.com", + "shortName": "SVRNm", + "chainId": 10101010, + "networkId": 10101010, + "explorers": [ + { + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "soverun" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1012.ts b/packages/chains/chains/1012.ts new file mode 100644 index 00000000000..ce638c29bda --- /dev/null +++ b/packages/chains/chains/1012.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Newton", + "chain": "NEW", + "rpc": [ + "https://newton.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://global.rpc.mainnet.newtonproject.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "infoURL": "https://www.newtonproject.org/", + "shortName": "new", + "chainId": 1012, + "networkId": 1012, + "testnet": false, + "slug": "newton" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10200.ts b/packages/chains/chains/10200.ts new file mode 100644 index 00000000000..806373a309c --- /dev/null +++ b/packages/chains/chains/10200.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gnosis Chiado Testnet", + "chain": "GNO", + "icon": { + "url": "ipfs://bafybeidk4swpgdyqmpz6shd5onvpaujvwiwthrhypufnwr6xh3dausz2dm", + "width": 1800, + "height": 1800, + "format": "png" + }, + "rpc": [ + "https://gnosis-chiado-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.chiadochain.net", + "https://rpc.chiado.gnosis.gateway.fm", + "wss://rpc.chiadochain.net/wss" + ], + "faucets": [ + "https://gnosisfaucet.com" + ], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi", + "chainId": 10200, + "networkId": 10200, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.chiadochain.net", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "gnosis-chiado-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1022.ts b/packages/chains/chains/1022.ts new file mode 100644 index 00000000000..8bbd557f9bd --- /dev/null +++ b/packages/chains/chains/1022.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sakura", + "chain": "Sakura", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sakura", + "symbol": "SKU", + "decimals": 18 + }, + "infoURL": "https://clover.finance/sakura", + "shortName": "sku", + "chainId": 1022, + "networkId": 1022, + "testnet": false, + "slug": "sakura" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1023.ts b/packages/chains/chains/1023.ts new file mode 100644 index 00000000000..f88a19b0cb2 --- /dev/null +++ b/packages/chains/chains/1023.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Clover Testnet", + "chain": "Clover", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "infoURL": "https://clover.finance", + "shortName": "tclv", + "chainId": 1023, + "networkId": 1023, + "testnet": true, + "slug": "clover-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1024.ts b/packages/chains/chains/1024.ts new file mode 100644 index 00000000000..bada7b6db4b --- /dev/null +++ b/packages/chains/chains/1024.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CLV Parachain", + "chain": "CLV", + "rpc": [ + "https://clv-parachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api-para.clover.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "CLV", + "symbol": "CLV", + "decimals": 18 + }, + "infoURL": "https://clv.org", + "shortName": "clv", + "chainId": 1024, + "networkId": 1024, + "testnet": false, + "slug": "clv-parachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10248.ts b/packages/chains/chains/10248.ts new file mode 100644 index 00000000000..2648cf8d72b --- /dev/null +++ b/packages/chains/chains/10248.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "0XTade", + "chain": "0XTade Chain", + "rpc": [ + "https://0xtade.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node.0xtchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "0XT", + "symbol": "0XT", + "decimals": 18 + }, + "infoURL": "https://www.0xtrade.finance/", + "shortName": "0xt", + "chainId": 10248, + "networkId": 10248, + "explorers": [ + { + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "0xtade" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1028.ts b/packages/chains/chains/1028.ts new file mode 100644 index 00000000000..641b14da3fe --- /dev/null +++ b/packages/chains/chains/1028.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BitTorrent Chain Testnet", + "chain": "BTTC", + "rpc": [ + "https://bittorrent-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testrpc.bittorrentchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bittorrentchain.io/", + "shortName": "tbtt", + "chainId": 1028, + "networkId": 1028, + "explorers": [ + { + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "bittorrent-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1030.ts b/packages/chains/chains/1030.ts new file mode 100644 index 00000000000..ca610b84fc0 --- /dev/null +++ b/packages/chains/chains/1030.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Conflux eSpace", + "chain": "Conflux", + "rpc": [ + "https://conflux-espace.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.confluxrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfx", + "chainId": 1030, + "networkId": 1030, + "icon": { + "url": "ipfs://bafkreifj7n24u2dslfijfihwqvpdeigt5aj3k3sxv6s35lv75sxsfr3ojy", + "width": 460, + "height": 576, + "format": "png" + }, + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ], + "testnet": false, + "slug": "conflux-espace" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/103090.ts b/packages/chains/chains/103090.ts new file mode 100644 index 00000000000..8f45b0b25ea --- /dev/null +++ b/packages/chains/chains/103090.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Crystaleum", + "chain": "crystal", + "rpc": [ + "https://crystaleum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.cryptocurrencydevs.org", + "https://rpc.crystaleum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "CRFI", + "symbol": "◈", + "decimals": 18 + }, + "infoURL": "https://crystaleum.org", + "shortName": "CRFI", + "chainId": 103090, + "networkId": 1, + "icon": { + "url": "ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", + "width": 150, + "height": 150, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.crystaleum.org", + "icon": { + "url": "ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", + "width": 150, + "height": 150, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "crystaleum" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1031.ts b/packages/chains/chains/1031.ts new file mode 100644 index 00000000000..91285e23c29 --- /dev/null +++ b/packages/chains/chains/1031.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Proxy Network Testnet", + "chain": "Proxy Network", + "rpc": [ + "https://proxy-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://128.199.94.183:8041" + ], + "faucets": [], + "nativeCurrency": { + "name": "PRX", + "symbol": "PRX", + "decimals": 18 + }, + "infoURL": "https://theproxy.network", + "shortName": "prx", + "chainId": 1031, + "networkId": 1031, + "explorers": [ + { + "name": "proxy network testnet", + "url": "http://testnet-explorer.theproxy.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "proxy-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1038.ts b/packages/chains/chains/1038.ts new file mode 100644 index 00000000000..3146d3bf98a --- /dev/null +++ b/packages/chains/chains/1038.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bronos Testnet", + "chain": "Bronos", + "rpc": [ + "https://bronos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-testnet.bronos.org" + ], + "faucets": [ + "https://faucet.bronos.org" + ], + "nativeCurrency": { + "name": "tBRO", + "symbol": "tBRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-testnet", + "chainId": 1038, + "networkId": 1038, + "icon": { + "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "Bronos Testnet Explorer", + "url": "https://tbroscan.bronos.org", + "standard": "none", + "icon": { + "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", + "width": 500, + "height": 500, + "format": "png" + } + } + ], + "testnet": true, + "slug": "bronos-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1039.ts b/packages/chains/chains/1039.ts new file mode 100644 index 00000000000..adf38f58ab3 --- /dev/null +++ b/packages/chains/chains/1039.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bronos Mainnet", + "chain": "Bronos", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BRO", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-mainnet", + "chainId": 1039, + "networkId": 1039, + "icon": { + "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": { + "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", + "width": 500, + "height": 500, + "format": "png" + } + } + ], + "testnet": false, + "slug": "bronos" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10507.ts b/packages/chains/chains/10507.ts new file mode 100644 index 00000000000..81222119d25 --- /dev/null +++ b/packages/chains/chains/10507.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Numbers Mainnet", + "chain": "NUM", + "icon": { + "url": "ipfs://bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi", + "width": 1500, + "height": 1500, + "format": "png" + }, + "rpc": [ + "https://numbers.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnetrpc.num.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Jade", + "chainId": 10507, + "networkId": 10507, + "explorers": [ + { + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "numbers" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10508.ts b/packages/chains/chains/10508.ts new file mode 100644 index 00000000000..b7f3614ae52 --- /dev/null +++ b/packages/chains/chains/10508.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Numbers Testnet", + "chain": "NUM", + "icon": { + "url": "ipfs://bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi", + "width": 1500, + "height": 1500, + "format": "png" + }, + "rpc": [ + "https://numbers-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnetrpc.num.network" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" + ], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Snow", + "chainId": 10508, + "networkId": 10508, + "explorers": [ + { + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "numbers-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1072.ts b/packages/chains/chains/1072.ts new file mode 100644 index 00000000000..60d0fdbefed --- /dev/null +++ b/packages/chains/chains/1072.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ShimmerEVM Testnet", + "title": "ShimmerEVM Testnet", + "chain": "ShimmerEVM", + "icon": { + "url": "ipfs://bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di", + "width": 720, + "height": 720, + "format": "png" + }, + "rpc": [ + "https://shimmerevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://json-rpc.evm.testnet.shimmer.network" + ], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 6 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet", + "chainId": 1072, + "networkId": 1072, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "shimmerevm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1079.ts b/packages/chains/chains/1079.ts new file mode 100644 index 00000000000..e6b5e547249 --- /dev/null +++ b/packages/chains/chains/1079.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mintara Testnet", + "title": "Mintara Testnet", + "chain": "Mintara", + "icon": { + "url": "ipfs://bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://mintara-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/mintara/testnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "infoURL": "https://playthink.co.jp", + "shortName": "mintara-testnet", + "chainId": 1079, + "networkId": 1079, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "mintara-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10823.ts b/packages/chains/chains/10823.ts new file mode 100644 index 00000000000..f055981401d --- /dev/null +++ b/packages/chains/chains/10823.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CryptoCoinPay", + "chain": "CCP", + "rpc": [ + "https://cryptocoinpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://node106.cryptocoinpay.info:8545", + "ws://node106.cryptocoinpay.info:8546" + ], + "faucets": [], + "icon": { + "url": "ipfs://QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX", + "width": 200, + "height": 200, + "format": "png" + }, + "nativeCurrency": { + "name": "CryptoCoinPay", + "symbol": "CCP", + "decimals": 18 + }, + "infoURL": "https://www.cryptocoinpay.co", + "shortName": "CCP", + "chainId": 10823, + "networkId": 10823, + "explorers": [ + { + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "cryptocoinpay" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1088.ts b/packages/chains/chains/1088.ts new file mode 100644 index 00000000000..01ea82c6830 --- /dev/null +++ b/packages/chains/chains/1088.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metis Andromeda Mainnet", + "chain": "ETH", + "rpc": [ + "https://metis-andromeda.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://andromeda.metis.io/?owner=1088" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-andromeda", + "chainId": 1088, + "networkId": 1088, + "explorers": [ + { + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.metis.io" + } + ] + }, + "icon": { + "url": "ipfs://QmbWKNucbMtrMPPkHG5ZmVmvNUo8CzqHHcrpk1C2BVQsEG/2022_H-Brand_Stacked_WhiteGreen.svg", + "format": "svg", + "height": 512, + "width": 512 + }, + "testnet": false, + "slug": "metis-andromeda" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/108801.ts b/packages/chains/chains/108801.ts new file mode 100644 index 00000000000..f52f6dbc3e2 --- /dev/null +++ b/packages/chains/chains/108801.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BROChain Mainnet", + "chain": "BRO", + "rpc": [ + "https://brochain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.brochain.org", + "http://rpc.brochain.org", + "https://rpc.brochain.org/mainnet", + "http://rpc.brochain.org/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Brother", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://brochain.org", + "shortName": "bro", + "chainId": 108801, + "networkId": 108801, + "explorers": [ + { + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "brochain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10946.ts b/packages/chains/chains/10946.ts new file mode 100644 index 00000000000..6277305f5b5 --- /dev/null +++ b/packages/chains/chains/10946.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quadrans Blockchain", + "chain": "QDC", + "icon": { + "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://quadrans-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.quadrans.io", + "https://rpcna.quadrans.io", + "https://rpceu.quadrans.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quadrans Coin", + "symbol": "QDC", + "decimals": 18 + }, + "infoURL": "https://quadrans.io", + "shortName": "quadrans", + "chainId": 10946, + "networkId": 10946, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": { + "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", + "width": 1024, + "height": 1024, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quadrans-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/10947.ts b/packages/chains/chains/10947.ts new file mode 100644 index 00000000000..b2cbffa7ae6 --- /dev/null +++ b/packages/chains/chains/10947.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quadrans Blockchain Testnet", + "chain": "tQDC", + "icon": { + "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://quadrans-blockchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpctest.quadrans.io", + "https://rpctest2.quadrans.io" + ], + "faucets": [ + "https://faucetpage.quadrans.io" + ], + "nativeCurrency": { + "name": "Quadrans Testnet Coin", + "symbol": "tQDC", + "decimals": 18 + }, + "infoURL": "https://quadrans.io", + "shortName": "quadranstestnet", + "chainId": 10947, + "networkId": 10947, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.testnet.quadrans.io", + "icon": { + "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", + "width": 1024, + "height": 1024, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "quadrans-blockchain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1099.ts b/packages/chains/chains/1099.ts new file mode 100644 index 00000000000..3343807c03a --- /dev/null +++ b/packages/chains/chains/1099.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MOAC mainnet", + "chain": "MOAC", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "infoURL": "https://moac.io", + "shortName": "moac", + "chainId": 1099, + "networkId": 1099, + "slip44": 314, + "explorers": [ + { + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "moac" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110000.ts b/packages/chains/chains/110000.ts new file mode 100644 index 00000000000..7f1fee3e059 --- /dev/null +++ b/packages/chains/chains/110000.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Root", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-root.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://jrpc.devnet.quarkchain.io:38391" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-r", + "chainId": 110000, + "networkId": 110000, + "testnet": false, + "slug": "quarkchain-devnet-root" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110001.ts b/packages/chains/chains/110001.ts new file mode 100644 index 00000000000..81ab5e0e0ba --- /dev/null +++ b/packages/chains/chains/110001.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 0", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s0-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39900" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s0", + "chainId": 110001, + "networkId": 110001, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110002.ts b/packages/chains/chains/110002.ts new file mode 100644 index 00000000000..2a54adbb100 --- /dev/null +++ b/packages/chains/chains/110002.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 1", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s1-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39901" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s1", + "chainId": 110002, + "networkId": 110002, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110003.ts b/packages/chains/chains/110003.ts new file mode 100644 index 00000000000..d1fb69e3b2c --- /dev/null +++ b/packages/chains/chains/110003.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 2", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s2-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39902" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s2", + "chainId": 110003, + "networkId": 110003, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110004.ts b/packages/chains/chains/110004.ts new file mode 100644 index 00000000000..03de765923d --- /dev/null +++ b/packages/chains/chains/110004.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 3", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s3-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39903" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s3", + "chainId": 110004, + "networkId": 110004, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110005.ts b/packages/chains/chains/110005.ts new file mode 100644 index 00000000000..6cda75fa0d6 --- /dev/null +++ b/packages/chains/chains/110005.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 4", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s4-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39904" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s4", + "chainId": 110005, + "networkId": 110005, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-4" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110006.ts b/packages/chains/chains/110006.ts new file mode 100644 index 00000000000..b6046e33912 --- /dev/null +++ b/packages/chains/chains/110006.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 5", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-5.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s5-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39905" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s5", + "chainId": 110006, + "networkId": 110006, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-5" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110007.ts b/packages/chains/chains/110007.ts new file mode 100644 index 00000000000..a49e446f97b --- /dev/null +++ b/packages/chains/chains/110007.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 6", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-6.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s6-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39906" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s6", + "chainId": 110007, + "networkId": 110007, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-6" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/110008.ts b/packages/chains/chains/110008.ts new file mode 100644 index 00000000000..ff62e75987a --- /dev/null +++ b/packages/chains/chains/110008.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QuarkChain Devnet Shard 7", + "chain": "QuarkChain", + "rpc": [ + "https://quarkchain-devnet-shard-7.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet-s7-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39907" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-d-s7", + "chainId": 110008, + "networkId": 110008, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/7", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quarkchain-devnet-shard-7" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1101.ts b/packages/chains/chains/1101.ts new file mode 100644 index 00000000000..f3ab8655c85 --- /dev/null +++ b/packages/chains/chains/1101.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Polygon zkEVM", + "title": "Polygon zkEVM", + "chain": "Polygon", + "rpc": [ + "https://polygon-zkevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://zkevm-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm", + "chainId": 1101, + "networkId": 1101, + "icon": { + "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", + "width": 122, + "height": 135, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": { + "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", + "width": 122, + "height": 135, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zkevm-rpc.com" + } + ] + }, + "testnet": false, + "slug": "polygon-zkevm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111000.ts b/packages/chains/chains/111000.ts new file mode 100644 index 00000000000..06f6d240115 --- /dev/null +++ b/packages/chains/chains/111000.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Siberium Test Network", + "chain": "SBR", + "rpc": [ + "https://siberium-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.test.siberium.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "TestSIBR", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "testsbr", + "chainId": 111000, + "networkId": 111000, + "icon": { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [ + { + "name": "Siberium Testnet Explorer - blockscout", + "url": "https://explorer.test.siberium.net", + "icon": { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "siberium-test-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1111.ts b/packages/chains/chains/1111.ts new file mode 100644 index 00000000000..91969d3a8e0 --- /dev/null +++ b/packages/chains/chains/1111.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "WEMIX3.0 Mainnet", + "chain": "WEMIX", + "rpc": [ + "https://wemix3-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.wemix.com", + "wss://ws.wemix.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "wemix", + "chainId": 1111, + "networkId": 1111, + "explorers": [ + { + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "wemix3-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11110.ts b/packages/chains/chains/11110.ts new file mode 100644 index 00000000000..9ca3d19c3fc --- /dev/null +++ b/packages/chains/chains/11110.ts @@ -0,0 +1,52 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Astra", + "chain": "Astra", + "rpc": [ + "https://astra.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.astranaut.io", + "https://rpc1.astranaut.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Astra", + "symbol": "ASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra", + "chainId": 11110, + "networkId": 11110, + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + }, + "explorers": [ + { + "name": "Astra EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + } + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.io/astra", + "standard": "none", + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + } + } + ], + "testnet": false, + "slug": "astra" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11111.ts b/packages/chains/chains/11111.ts new file mode 100644 index 00000000000..30e28c2a888 --- /dev/null +++ b/packages/chains/chains/11111.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "WAGMI", + "chain": "WAGMI", + "icon": { + "url": "ipfs://QmNoyUXxnak8B3xgFxErkVfyVEPJUMHBzq7qJcYzkUrPR4", + "width": 1920, + "height": 1920, + "format": "png" + }, + "rpc": [ + "https://wagmi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=wagmi" + ], + "nativeCurrency": { + "name": "WAGMI", + "symbol": "WGM", + "decimals": 18 + }, + "infoURL": "https://subnets-test.avax.network/wagmi/details", + "shortName": "WAGMI", + "chainId": 11111, + "networkId": 11111, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/wagmi", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "wagmi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111111.ts b/packages/chains/chains/111111.ts new file mode 100644 index 00000000000..4b52b62e251 --- /dev/null +++ b/packages/chains/chains/111111.ts @@ -0,0 +1,52 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Siberium Network", + "chain": "SBR", + "rpc": [ + "https://siberium-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.main.siberium.net", + "https://rpc.main.siberium.net.ru" + ], + "faucets": [], + "nativeCurrency": { + "name": "Siberium", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "sbr", + "chainId": 111111, + "networkId": 111111, + "icon": { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [ + { + "name": "Siberium Mainnet Explorer - blockscout - 1", + "url": "https://explorer.main.siberium.net", + "icon": { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + }, + "standard": "EIP3091" + }, + { + "name": "Siberium Mainnet Explorer - blockscout - 2", + "url": "https://explorer.main.siberium.net.ru", + "icon": { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "siberium-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11115.ts b/packages/chains/chains/11115.ts new file mode 100644 index 00000000000..b3fa307679f --- /dev/null +++ b/packages/chains/chains/11115.ts @@ -0,0 +1,53 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Astra Testnet", + "chain": "Astra", + "rpc": [ + "https://astra-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.astranaut.dev" + ], + "faucets": [ + "https://faucet.astranaut.dev" + ], + "nativeCurrency": { + "name": "test-Astra", + "symbol": "tASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra-testnet", + "chainId": 11115, + "networkId": 11115, + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + }, + "explorers": [ + { + "name": "Astra EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + } + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "format": "png" + } + } + ], + "testnet": true, + "slug": "astra-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11119.ts b/packages/chains/chains/11119.ts new file mode 100644 index 00000000000..eafaf85fafa --- /dev/null +++ b/packages/chains/chains/11119.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HashBit Mainnet", + "chain": "HBIT", + "rpc": [ + "https://hashbit.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.hashbit.org", + "https://rpc.hashbit.org" + ], + "faucets": [ + "https://free-online-app.com/faucet-for-eth-evm-chains/" + ], + "nativeCurrency": { + "name": "HashBit Native Token", + "symbol": "HBIT", + "decimals": 18 + }, + "infoURL": "https://hashbit.org", + "shortName": "hbit", + "chainId": 11119, + "networkId": 11119, + "explorers": [ + { + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "hashbit" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1112.ts b/packages/chains/chains/1112.ts new file mode 100644 index 00000000000..af16943f7d1 --- /dev/null +++ b/packages/chains/chains/1112.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "WEMIX3.0 Testnet", + "chain": "TWEMIX", + "rpc": [ + "https://wemix3-0-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.test.wemix.com", + "wss://ws.test.wemix.com" + ], + "faucets": [ + "https://wallet.test.wemix.com/faucet" + ], + "nativeCurrency": { + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "twemix", + "chainId": 1112, + "networkId": 1112, + "explorers": [ + { + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "wemix3-0-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/111222333444.ts b/packages/chains/chains/111222333444.ts new file mode 100644 index 00000000000..c96d3c44f1f --- /dev/null +++ b/packages/chains/chains/111222333444.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Alphabet Mainnet", + "chain": "Alphabet Network", + "icon": { + "url": "ipfs://QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq", + "width": 500, + "height": 500, + "format": "svg" + }, + "rpc": [ + "https://alphabet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://londonpublic.alphabetnetwork.org", + "wss://londonpublic.alphabetnetwork.org/ws/", + "https://main-rpc.com", + "wss://main-rpc.com/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALT", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://alphabetnetwork.org", + "shortName": "alphabet", + "chainId": 111222333444, + "networkId": 111222333444, + "explorers": [ + { + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "alphabet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1115.ts b/packages/chains/chains/1115.ts new file mode 100644 index 00000000000..c626b696944 --- /dev/null +++ b/packages/chains/chains/1115.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Core Blockchain Testnet", + "chain": "Core", + "icon": { + "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", + "width": 200, + "height": 217, + "format": "png" + }, + "rpc": [ + "https://core-blockchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.test.btcs.network/" + ], + "faucets": [ + "https://scan.test.btcs.network/faucet" + ], + "nativeCurrency": { + "name": "Core Blockchain Testnet Native Token", + "symbol": "tCORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "tcore", + "chainId": 1115, + "networkId": 1115, + "explorers": [ + { + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": { + "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", + "width": 200, + "height": 217, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "core-blockchain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11155111.ts b/packages/chains/chains/11155111.ts new file mode 100644 index 00000000000..964dd04e9a3 --- /dev/null +++ b/packages/chains/chains/11155111.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sepolia", + "title": "Ethereum Testnet Sepolia", + "chain": "ETH", + "rpc": [ + "https://sepolia.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.sepolia.org", + "https://rpc2.sepolia.org", + "https://rpc-sepolia.rockx.com" + ], + "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, + "explorers": [ + { + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "sepolia" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1116.ts b/packages/chains/chains/1116.ts new file mode 100644 index 00000000000..7909bcce503 --- /dev/null +++ b/packages/chains/chains/1116.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Core Blockchain Mainnet", + "chain": "Core", + "icon": { + "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", + "width": 200, + "height": 217, + "format": "png" + }, + "rpc": [ + "https://core-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.coredao.org/", + "https://rpc-core.icecreamswap.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Core Blockchain Native Token", + "symbol": "CORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "core", + "chainId": 1116, + "networkId": 1116, + "explorers": [ + { + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": { + "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", + "width": 200, + "height": 217, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "core-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1117.ts b/packages/chains/chains/1117.ts new file mode 100644 index 00000000000..17d1ac35c28 --- /dev/null +++ b/packages/chains/chains/1117.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dogcoin Mainnet", + "chain": "DOGS", + "icon": { + "url": "ipfs://QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3", + "width": 160, + "height": 171, + "format": "png" + }, + "rpc": [ + "https://dogcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.dogcoin.me" + ], + "faucets": [ + "https://faucet.dogcoin.network" + ], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSm", + "chainId": 1117, + "networkId": 1117, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dogcoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1122334455.ts b/packages/chains/chains/1122334455.ts new file mode 100644 index 00000000000..b14e4f9f17c --- /dev/null +++ b/packages/chains/chains/1122334455.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IPOS Network", + "chain": "IPOS", + "rpc": [ + "https://ipos-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.iposlab.com", + "https://rpc2.iposlab.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "IPOS Network Ether", + "symbol": "IPOS", + "decimals": 18 + }, + "infoURL": "https://iposlab.com", + "shortName": "ipos", + "chainId": 1122334455, + "networkId": 1122334455, + "testnet": false, + "slug": "ipos-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11235.ts b/packages/chains/chains/11235.ts new file mode 100644 index 00000000000..8e1221af642 --- /dev/null +++ b/packages/chains/chains/11235.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Haqq Network", + "chain": "Haqq", + "rpc": [ + "https://haqq-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.eth.haqq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLM", + "chainId": 11235, + "networkId": 11235, + "explorers": [ + { + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "haqq-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/112358.ts b/packages/chains/chains/112358.ts new file mode 100644 index 00000000000..392b0fd2267 --- /dev/null +++ b/packages/chains/chains/112358.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metachain One Mainnet", + "chain": "METAO", + "icon": { + "url": "ipfs://QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij", + "width": 1000, + "height": 981, + "format": "png" + }, + "rpc": [ + "https://metachain-one.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.metachain.one", + "https://rpc2.metachain.one" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metao", + "symbol": "METAO", + "decimals": 18 + }, + "infoURL": "https://metachain.one", + "shortName": "metao", + "chainId": 112358, + "networkId": 112358, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.metachain.one", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "metachain-one" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11297108099.ts b/packages/chains/chains/11297108099.ts new file mode 100644 index 00000000000..071ca5e5d3c --- /dev/null +++ b/packages/chains/chains/11297108099.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Palm Testnet", + "chain": "Palm", + "icon": { + "url": "ipfs://bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4", + "width": 72, + "height": 72, + "format": "svg" + }, + "rpc": [ + "https://palm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://palm-testnet.infura.io/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.io", + "shortName": "tpalm", + "chainId": 11297108099, + "networkId": 11297108099, + "explorers": [ + { + "name": "Palm Testnet Explorer", + "url": "https://explorer.palm-uat.xyz", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "palm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11297108109.ts b/packages/chains/chains/11297108109.ts new file mode 100644 index 00000000000..583884eab65 --- /dev/null +++ b/packages/chains/chains/11297108109.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Palm", + "chain": "Palm", + "icon": { + "url": "ipfs://bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4", + "width": 72, + "height": 72, + "format": "svg" + }, + "rpc": [ + "https://palm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.io", + "shortName": "palm", + "chainId": 11297108109, + "networkId": 11297108109, + "explorers": [ + { + "name": "Palm Explorer", + "url": "https://explorer.palm.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "palm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1130.ts b/packages/chains/chains/1130.ts new file mode 100644 index 00000000000..14be91bc48f --- /dev/null +++ b/packages/chains/chains/1130.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DeFiChain EVM Network Mainnet", + "chain": "defichain-evm", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI", + "chainId": 1130, + "networkId": 1130, + "slip44": 1130, + "icon": { + "url": "ipfs://QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [], + "testnet": false, + "slug": "defichain-evm-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1131.ts b/packages/chains/chains/1131.ts new file mode 100644 index 00000000000..6e23ca77b34 --- /dev/null +++ b/packages/chains/chains/1131.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DeFiChain EVM Network Testnet", + "chain": "defichain-evm-testnet", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI-T", + "chainId": 1131, + "networkId": 1131, + "icon": { + "url": "ipfs://QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [], + "testnet": true, + "slug": "defichain-evm-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1138.ts b/packages/chains/chains/1138.ts new file mode 100644 index 00000000000..802f8e5bf25 --- /dev/null +++ b/packages/chains/chains/1138.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AmStar Testnet", + "chain": "AmStar", + "icon": { + "url": "ipfs://Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C", + "width": 599, + "height": 563, + "format": "png" + }, + "rpc": [ + "https://amstar-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.amstarscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASARt", + "chainId": 1138, + "networkId": 1138, + "explorers": [ + { + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "amstar-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1139.ts b/packages/chains/chains/1139.ts new file mode 100644 index 00000000000..a33292fa7e9 --- /dev/null +++ b/packages/chains/chains/1139.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MathChain", + "chain": "MATH", + "rpc": [ + "https://mathchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mathchain-asia.maiziqianbao.net/rpc", + "https://mathchain-us.maiziqianbao.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "infoURL": "https://mathchain.org", + "shortName": "MATH", + "chainId": 1139, + "networkId": 1139, + "testnet": false, + "slug": "mathchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1140.ts b/packages/chains/chains/1140.ts new file mode 100644 index 00000000000..a4c538a8154 --- /dev/null +++ b/packages/chains/chains/1140.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MathChain Testnet", + "chain": "MATH", + "rpc": [ + "https://mathchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://galois-hk.maiziqianbao.net/rpc" + ], + "faucets": [ + "https://scan.boka.network/#/Galois/faucet" + ], + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "infoURL": "https://mathchain.org", + "shortName": "tMATH", + "chainId": 1140, + "networkId": 1140, + "testnet": true, + "slug": "mathchain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11437.ts b/packages/chains/chains/11437.ts new file mode 100644 index 00000000000..f540a1cc2e5 --- /dev/null +++ b/packages/chains/chains/11437.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shyft Testnet", + "chain": "SHYFTT", + "icon": { + "url": "ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", + "width": 400, + "height": 400, + "format": "svg" + }, + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyftt", + "chainId": 11437, + "networkId": 11437, + "explorers": [ + { + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "shyft-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1146703430.ts b/packages/chains/chains/1146703430.ts new file mode 100644 index 00000000000..7d61c621c7e --- /dev/null +++ b/packages/chains/chains/1146703430.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CyberdeckNet", + "chain": "cyberdeck", + "rpc": [ + "https://cyberdecknet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://cybeth1.cyberdeck.eu:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cyb", + "symbol": "CYB", + "decimals": 18 + }, + "infoURL": "https://cyberdeck.eu", + "shortName": "cyb", + "chainId": 1146703430, + "networkId": 1146703430, + "icon": { + "url": "ipfs://QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR", + "width": 193, + "height": 214, + "format": "png" + }, + "status": "active", + "explorers": [ + { + "name": "CybEthExplorer", + "url": "http://cybeth1.cyberdeck.eu:8000", + "icon": { + "url": "ipfs://QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR", + "width": 193, + "height": 214, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "cyberdecknet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1149.ts b/packages/chains/chains/1149.ts new file mode 100644 index 00000000000..c539a94545c --- /dev/null +++ b/packages/chains/chains/1149.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Symplexia Smart Chain", + "chain": "Plexchain", + "rpc": [ + "https://symplexia-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://plex-rpc.plexfinance.us" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plex Native Token", + "symbol": "PLEX", + "decimals": 18 + }, + "infoURL": "https://plexfinance.us/", + "shortName": "Plexchain", + "chainId": 1149, + "networkId": 1149, + "icon": { + "url": "ipfs://QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "Plexchain Explorer", + "url": "https://explorer.plexfinance.us", + "icon": { + "url": "ipfs://QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM", + "width": 256, + "height": 256, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "symplexia-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11612.ts b/packages/chains/chains/11612.ts new file mode 100644 index 00000000000..3e59451805a --- /dev/null +++ b/packages/chains/chains/11612.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sardis Testnet", + "chain": "SRDX", + "icon": { + "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://sardis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.sardisnetwork.com" + ], + "faucets": [ + "https://faucet.sardisnetwork.com" + ], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXt", + "chainId": 11612, + "networkId": 11612, + "explorers": [ + { + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "sardis-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1170.ts b/packages/chains/chains/1170.ts new file mode 100644 index 00000000000..3c9529bf27d --- /dev/null +++ b/packages/chains/chains/1170.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Origin Testnet", + "chain": "Origin", + "rpc": [ + "https://origin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://json-rpc.origin.uptick.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Origin", + "symbol": "UOC", + "decimals": 18 + }, + "infoURL": "https://www.uptick.network", + "shortName": "auoc", + "chainId": 1170, + "networkId": 1170, + "icon": { + "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "Origin Explorer", + "url": "https://evm-explorer.origin.uptick.network", + "icon": { + "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "origin-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1177.ts b/packages/chains/chains/1177.ts new file mode 100644 index 00000000000..4763a144f09 --- /dev/null +++ b/packages/chains/chains/1177.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Smart Host Teknoloji TESTNET", + "chain": "SHT", + "rpc": [ + "https://smart-host-teknoloji-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://s2.tl.web.tr:4041" + ], + "faucets": [], + "nativeCurrency": { + "name": "Smart Host Teknoloji TESTNET", + "symbol": "tSHT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://smart-host.com.tr", + "shortName": "sht", + "chainId": 1177, + "networkId": 1177, + "icon": { + "url": "ipfs://QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ", + "width": 1655, + "height": 1029, + "format": "png" + }, + "explorers": [ + { + "name": "Smart Host Teknoloji TESTNET Explorer", + "url": "https://s2.tl.web.tr:4000", + "icon": { + "url": "ipfs://QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ", + "width": 1655, + "height": 1029, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "smart-host-teknoloji-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/11888.ts b/packages/chains/chains/11888.ts new file mode 100644 index 00000000000..42dac62ef21 --- /dev/null +++ b/packages/chains/chains/11888.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SanR Chain", + "chain": "SanRChain", + "rpc": [ + "https://sanr-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sanrchain-node.santiment.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "nSAN", + "symbol": "nSAN", + "decimals": 18 + }, + "infoURL": "https://sanr.app", + "shortName": "SAN", + "chainId": 11888, + "networkId": 11888, + "icon": { + "url": "ipfs://QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM", + "width": 2048, + "height": 2048, + "format": "png" + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": [ + { + "url": "https://sanr.app" + } + ] + }, + "explorers": [ + { + "name": "SanR Chain Explorer", + "url": "https://sanrchain-explorer.santiment.net", + "standard": "none" + } + ], + "testnet": false, + "slug": "sanr-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1197.ts b/packages/chains/chains/1197.ts new file mode 100644 index 00000000000..b217729c198 --- /dev/null +++ b/packages/chains/chains/1197.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Iora Chain", + "chain": "IORA", + "icon": { + "url": "ipfs://bafybeiehps5cqdhqottu2efo4jeehwpkz5rbux3cjxd75rm6rjm4sgs2wi", + "width": 250, + "height": 250, + "format": "png" + }, + "rpc": [ + "https://iora-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed.iorachain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Iora", + "symbol": "IORA", + "decimals": 18 + }, + "infoURL": "https://iorachain.com", + "shortName": "iora", + "chainId": 1197, + "networkId": 1197, + "explorers": [ + { + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "iora-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12009.ts b/packages/chains/chains/12009.ts new file mode 100644 index 00000000000..6e8992844f0 --- /dev/null +++ b/packages/chains/chains/12009.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SatoshiChain Mainnet", + "chain": "SATS", + "icon": { + "url": "ipfs://QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7", + "width": 1251, + "height": 1251, + "format": "png" + }, + "rpc": [ + "https://satoshichain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.satoshichain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "sats", + "chainId": 12009, + "networkId": 12009, + "explorers": [ + { + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "satoshichain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1201.ts b/packages/chains/chains/1201.ts new file mode 100644 index 00000000000..0504cb77862 --- /dev/null +++ b/packages/chains/chains/1201.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Evanesco Testnet", + "chain": "Evanesco Testnet", + "rpc": [ + "https://evanesco-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://seed5.evanesco.org:8547" + ], + "faucets": [], + "nativeCurrency": { + "name": "AVIS", + "symbol": "AVIS", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "avis", + "chainId": 1201, + "networkId": 1201, + "testnet": true, + "slug": "evanesco-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1202.ts b/packages/chains/chains/1202.ts new file mode 100644 index 00000000000..59152031636 --- /dev/null +++ b/packages/chains/chains/1202.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "World Trade Technical Chain Mainnet", + "chain": "WTT", + "rpc": [ + "https://world-trade-technical-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.cadaut.com", + "wss://rpc.cadaut.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "World Trade Token", + "symbol": "WTT", + "decimals": 18 + }, + "infoURL": "http://www.cadaut.com", + "shortName": "wtt", + "chainId": 1202, + "networkId": 2048, + "explorers": [ + { + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "world-trade-technical-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12051.ts b/packages/chains/chains/12051.ts new file mode 100644 index 00000000000..d5999325659 --- /dev/null +++ b/packages/chains/chains/12051.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Singularity ZERO Testnet", + "chain": "ZERO", + "rpc": [ + "https://singularity-zero-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://betaenv.singularity.gold:18545" + ], + "faucets": [ + "https://nft.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "tZERO", + "chainId": 12051, + "networkId": 12051, + "explorers": [ + { + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "singularity-zero-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12052.ts b/packages/chains/chains/12052.ts new file mode 100644 index 00000000000..d097771979f --- /dev/null +++ b/packages/chains/chains/12052.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Singularity ZERO Mainnet", + "chain": "ZERO", + "rpc": [ + "https://singularity-zero.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://zerorpc.singularity.gold" + ], + "faucets": [ + "https://zeroscan.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "ZERO", + "chainId": 12052, + "networkId": 12052, + "slip44": 621, + "explorers": [ + { + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "singularity-zero" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12123.ts b/packages/chains/chains/12123.ts new file mode 100644 index 00000000000..7cf71b2e72a --- /dev/null +++ b/packages/chains/chains/12123.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BRC Chain Mainnet", + "chain": "BRC", + "rpc": [ + "https://brc-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.brcchain.io" + ], + "faucets": [ + "https://faucet.brcchain.io" + ], + "nativeCurrency": { + "name": "BRC Chain mainnet native token", + "symbol": "BRC", + "decimals": 18 + }, + "infoURL": "https://bridge.brcchain.io", + "shortName": "BRC", + "chainId": 12123, + "networkId": 12123, + "icon": { + "url": "ipfs://QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "brc-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1213.ts b/packages/chains/chains/1213.ts new file mode 100644 index 00000000000..91a6b87f20d --- /dev/null +++ b/packages/chains/chains/1213.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Popcateum Mainnet", + "chain": "POPCATEUM", + "rpc": [ + "https://popcateum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed.popcateum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Popcat", + "symbol": "POP", + "decimals": 18 + }, + "infoURL": "https://popcateum.org", + "shortName": "popcat", + "chainId": 1213, + "networkId": 1213, + "explorers": [ + { + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "popcateum" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1214.ts b/packages/chains/chains/1214.ts new file mode 100644 index 00000000000..d714e7f4fe2 --- /dev/null +++ b/packages/chains/chains/1214.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EnterChain Mainnet", + "chain": "ENTER", + "rpc": [ + "https://enterchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://tapi.entercoin.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "EnterCoin", + "symbol": "ENTER", + "decimals": 18 + }, + "infoURL": "https://entercoin.net", + "shortName": "enter", + "chainId": 1214, + "networkId": 1214, + "icon": { + "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", + "width": 64, + "height": 64, + "format": "png" + }, + "explorers": [ + { + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": { + "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", + "width": 64, + "height": 64, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "enterchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1229.ts b/packages/chains/chains/1229.ts new file mode 100644 index 00000000000..24fdc22b3dc --- /dev/null +++ b/packages/chains/chains/1229.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Exzo Network Mainnet", + "chain": "EXZO", + "icon": { + "url": "ipfs://QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ", + "width": 128, + "height": 128, + "format": "png" + }, + "rpc": [ + "https://exzo-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.exzo.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Exzo", + "symbol": "XZO", + "decimals": 18 + }, + "infoURL": "https://exzo.network", + "shortName": "xzo", + "chainId": 1229, + "networkId": 1229, + "explorers": [ + { + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "exzo-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1230.ts b/packages/chains/chains/1230.ts new file mode 100644 index 00000000000..1e02d972a90 --- /dev/null +++ b/packages/chains/chains/1230.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ultron Testnet", + "chain": "Ultron", + "icon": { + "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://ultron-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ultron-dev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UltronTestnet", + "chainId": 1230, + "networkId": 1230, + "explorers": [ + { + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": { + "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "ultron-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12306.ts b/packages/chains/chains/12306.ts new file mode 100644 index 00000000000..473ec2c67de --- /dev/null +++ b/packages/chains/chains/12306.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fibonacci Mainnet", + "chain": "FIBO", + "icon": { + "url": "ipfs://bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y", + "width": 1494, + "height": 1494, + "format": "png" + }, + "rpc": [ + "https://fibonacci.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1.fibo-api.asia", + "https://node2.fibo-api.asia", + "https://node3.fibo-api.asia", + "https://node4.fibo-api.asia", + "https://node5.fibo-api.asia", + "https://node6.fibo-api.asia", + "https://node7.fibo-api.asia", + "https://node1.fibo-rpc.asia", + "https://node2.fibo-rpc.asia", + "https://node3.fibo-rpc.asia", + "https://node4.fibo-rpc.asia", + "https://node5.fibo-rpc.asia", + "https://node6.fibo-rpc.asia", + "https://node7.fibo-rpc.asia" + ], + "faucets": [ + "https://test.fibochain.org/faucets" + ], + "nativeCurrency": { + "name": "FIBONACCI UTILITY TOKEN", + "symbol": "FIBO", + "decimals": 18 + }, + "infoURL": "https://fibochain.org", + "shortName": "fibo", + "chainId": 12306, + "networkId": 1230, + "explorers": [ + { + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "fibonacci" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1231.ts b/packages/chains/chains/1231.ts new file mode 100644 index 00000000000..227f2298ed0 --- /dev/null +++ b/packages/chains/chains/1231.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ultron Mainnet", + "chain": "Ultron", + "icon": { + "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://ultron.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ultron-rpc.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UtronMainnet", + "chainId": 1231, + "networkId": 1231, + "explorers": [ + { + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": { + "url": "ipfs://QmS4W4kY7XYBA4f52vuuytXh3YaTcNBXF14V9tEY6SNqhz", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "ultron" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12321.ts b/packages/chains/chains/12321.ts new file mode 100644 index 00000000000..95a0213d632 --- /dev/null +++ b/packages/chains/chains/12321.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BLG Testnet", + "chain": "BLG", + "icon": { + "url": "ipfs://QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC", + "width": 512, + "height": 512, + "format": "svg" + }, + "rpc": [ + "https://blg-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.blgchain.com" + ], + "faucets": [ + "https://faucet.blgchain.com" + ], + "nativeCurrency": { + "name": "Blg", + "symbol": "BLG", + "decimals": 18 + }, + "infoURL": "https://blgchain.com", + "shortName": "blgchain", + "chainId": 12321, + "networkId": 12321, + "testnet": true, + "slug": "blg-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1234.ts b/packages/chains/chains/1234.ts new file mode 100644 index 00000000000..858626b5f53 --- /dev/null +++ b/packages/chains/chains/1234.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Step Network", + "title": "Step Main Network", + "chain": "STEP", + "icon": { + "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://step-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.step.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "step", + "chainId": 1234, + "networkId": 1234, + "explorers": [ + { + "name": "StepScan", + "url": "https://stepscan.io", + "icon": { + "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43114", + "bridges": [ + { + "url": "https://bridge.step.network" + } + ] + }, + "testnet": false, + "slug": "step-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12345.ts b/packages/chains/chains/12345.ts new file mode 100644 index 00000000000..d0069f83128 --- /dev/null +++ b/packages/chains/chains/12345.ts @@ -0,0 +1,47 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Step Testnet", + "title": "Step Test Network", + "chain": "STEP", + "icon": { + "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://step-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.step.network" + ], + "faucets": [ + "https://faucet.step.network" + ], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "steptest", + "chainId": 12345, + "networkId": 12345, + "explorers": [ + { + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": { + "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43113" + }, + "testnet": true, + "slug": "step-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/123456.ts b/packages/chains/chains/123456.ts new file mode 100644 index 00000000000..c05e8f03587 --- /dev/null +++ b/packages/chains/chains/123456.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ADIL Devnet", + "chain": "ADIL", + "icon": { + "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://adil-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet.adilchain-rpc.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Devnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "dadil", + "chainId": 123456, + "networkId": 123456, + "explorers": [ + { + "name": "ADIL Devnet Explorer", + "url": "https://devnet.adilchain-scan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "adil-devnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1243.ts b/packages/chains/chains/1243.ts new file mode 100644 index 00000000000..d596f078cea --- /dev/null +++ b/packages/chains/chains/1243.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ARC Mainnet", + "chain": "ARC", + "icon": { + "url": "ipfs://bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://arc.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-main-1.archiechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "ARC", + "chainId": 1243, + "networkId": 1243, + "explorers": [ + { + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "arc" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1244.ts b/packages/chains/chains/1244.ts new file mode 100644 index 00000000000..79b04600448 --- /dev/null +++ b/packages/chains/chains/1244.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ARC Testnet", + "chain": "ARC", + "icon": { + "url": "ipfs://bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://arc-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-test-1.archiechain.io" + ], + "faucets": [ + "https://faucet.archiechain.io" + ], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "TARC", + "chainId": 1244, + "networkId": 1244, + "explorers": [ + { + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "arc-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1246.ts b/packages/chains/chains/1246.ts new file mode 100644 index 00000000000..d52c4f3f213 --- /dev/null +++ b/packages/chains/chains/1246.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OM Platform Mainnet", + "chain": "omplatform", + "rpc": [ + "https://om-platform.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-cnx.omplatform.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OMCOIN", + "symbol": "OM", + "decimals": 18 + }, + "infoURL": "https://omplatform.com/", + "shortName": "om", + "chainId": 1246, + "networkId": 1246, + "explorers": [ + { + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "om-platform" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1252.ts b/packages/chains/chains/1252.ts new file mode 100644 index 00000000000..6ca001a22b6 --- /dev/null +++ b/packages/chains/chains/1252.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CIC Chain Testnet", + "chain": "CICT", + "rpc": [ + "https://cic-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testapi.cicscan.com" + ], + "faucets": [ + "https://cicfaucet.com" + ], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CICT", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CICT", + "chainId": 1252, + "networkId": 1252, + "icon": { + "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", + "width": 1024, + "height": 768, + "format": "png" + }, + "explorers": [ + { + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": { + "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", + "width": 1024, + "height": 768, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "cic-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/12715.ts b/packages/chains/chains/12715.ts new file mode 100644 index 00000000000..a027c9fbcbb --- /dev/null +++ b/packages/chains/chains/12715.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rikeza Network Testnet", + "title": "Rikeza Network Testnet", + "chain": "Rikeza", + "icon": { + "url": "ipfs://QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://rikeza-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.rikscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "tRIK", + "chainId": 12715, + "networkId": 12715, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://testnet.rikscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "rikeza-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1273227453.ts b/packages/chains/chains/1273227453.ts new file mode 100644 index 00000000000..b76bf51b47c --- /dev/null +++ b/packages/chains/chains/1273227453.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HUMAN Protocol", + "title": "HUMAN Protocol", + "chain": "wan-red-ain", + "rpc": [ + "https://human-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.skalenodes.com/v1/wan-red-ain" + ], + "faucets": [ + "https://dashboard.humanprotocol.org/faucet" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://www.humanprotocol.org", + "shortName": "human-mainnet", + "chainId": 1273227453, + "networkId": 1273227453, + "explorers": [ + { + "name": "Blockscout", + "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", + "icon": { + "url": "ipfs://QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS", + "width": 440, + "height": 600, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "human-protocol" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1280.ts b/packages/chains/chains/1280.ts new file mode 100644 index 00000000000..5ca2195d17f --- /dev/null +++ b/packages/chains/chains/1280.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HALO Mainnet", + "chain": "HALO", + "rpc": [ + "https://halo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://nodes.halo.land" + ], + "faucets": [], + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "infoURL": "https://halo.land/#/", + "shortName": "HO", + "chainId": 1280, + "networkId": 1280, + "explorers": [ + { + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" + } + ], + "testnet": false, + "slug": "halo" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1284.ts b/packages/chains/chains/1284.ts new file mode 100644 index 00000000000..f23cd578b1e --- /dev/null +++ b/packages/chains/chains/1284.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Moonbeam", + "chain": "MOON", + "rpc": [ + "https://moonbeam.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.api.moonbeam.network", + "wss://wss.api.moonbeam.network" + ], + "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" + } + ], + "testnet": false, + "slug": "moonbeam" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1285.ts b/packages/chains/chains/1285.ts new file mode 100644 index 00000000000..ceebc0d43d7 --- /dev/null +++ b/packages/chains/chains/1285.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Moonriver", + "chain": "MOON", + "rpc": [ + "https://moonriver.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.api.moonriver.moonbeam.network", + "wss://wss.api.moonriver.moonbeam.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Moonriver", + "symbol": "MOVR", + "decimals": 18 + }, + "infoURL": "https://moonbeam.network/networks/moonriver/", + "shortName": "mriver", + "chainId": 1285, + "networkId": 1285, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonriver.moonscan.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "moonriver" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1287.ts b/packages/chains/chains/1287.ts new file mode 100644 index 00000000000..29df11fba6e --- /dev/null +++ b/packages/chains/chains/1287.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Moonbase Alpha", + "chain": "MOON", + "rpc": [ + "https://moonbase-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.api.moonbase.moonbeam.network", + "wss://wss.api.moonbase.moonbeam.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dev", + "symbol": "DEV", + "decimals": 18 + }, + "infoURL": "https://docs.moonbeam.network/networks/testnet/", + "shortName": "mbase", + "chainId": 1287, + "networkId": 1287, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbase.moonscan.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "moonbase-alpha" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1288.ts b/packages/chains/chains/1288.ts new file mode 100644 index 00000000000..edd324aa7d5 --- /dev/null +++ b/packages/chains/chains/1288.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Moonrock", + "chain": "MOON", + "rpc": [ + "https://moonrock.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.api.moonrock.moonbeam.network", + "wss://wss.api.moonrock.moonbeam.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 + }, + "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/", + "shortName": "mrock", + "chainId": 1288, + "networkId": 1288, + "testnet": false, + "slug": "moonrock" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1294.ts b/packages/chains/chains/1294.ts new file mode 100644 index 00000000000..c1a0d4e7b2b --- /dev/null +++ b/packages/chains/chains/1294.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bobabeam", + "chain": "Bobabeam", + "rpc": [ + "https://bobabeam.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bobabeam.boba.network", + "wss://wss.bobabeam.boba.network", + "https://replica.bobabeam.boba.network", + "wss://replica-wss.bobabeam.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabeam", + "chainId": 1294, + "networkId": 1294, + "explorers": [ + { + "name": "Bobabeam block explorer", + "url": "https://blockexplorer.bobabeam.boba.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "bobabeam" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1297.ts b/packages/chains/chains/1297.ts new file mode 100644 index 00000000000..1288120c162 --- /dev/null +++ b/packages/chains/chains/1297.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bobabase Testnet", + "chain": "Bobabase Testnet", + "rpc": [ + "https://bobabase-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bobabase.boba.network", + "wss://wss.bobabase.boba.network", + "https://replica.bobabase.boba.network", + "wss://replica-wss.bobabase.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabase", + "chainId": 1297, + "networkId": 1297, + "explorers": [ + { + "name": "Bobabase block explorer", + "url": "https://blockexplorer.bobabase.boba.network", + "standard": "none" + } + ], + "testnet": true, + "slug": "bobabase-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13000.ts b/packages/chains/chains/13000.ts new file mode 100644 index 00000000000..e57696f09a2 --- /dev/null +++ b/packages/chains/chains/13000.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SPS", + "chain": "SPS", + "rpc": [ + "https://sps.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ssquad.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS", + "chainId": 13000, + "networkId": 13000, + "explorers": [ + { + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "sps" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1311.ts b/packages/chains/chains/1311.ts new file mode 100644 index 00000000000..fcf01ab3f31 --- /dev/null +++ b/packages/chains/chains/1311.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dos Fuji Subnet", + "chain": "DOS", + "rpc": [ + "https://dos-fuji-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test.doschain.com/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dos Native Token", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "TDOS", + "chainId": 1311, + "networkId": 1311, + "explorers": [ + { + "name": "dos-testnet", + "url": "https://test.doscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dos-fuji-subnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313114.ts b/packages/chains/chains/1313114.ts new file mode 100644 index 00000000000..702a6578691 --- /dev/null +++ b/packages/chains/chains/1313114.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Etho Protocol", + "chain": "ETHO", + "rpc": [ + "https://etho-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ethoprotocol.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Etho Protocol", + "symbol": "ETHO", + "decimals": 18 + }, + "infoURL": "https://ethoprotocol.com", + "shortName": "etho", + "chainId": 1313114, + "networkId": 1313114, + "slip44": 1313114, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "etho-protocol" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161554.ts b/packages/chains/chains/1313161554.ts new file mode 100644 index 00000000000..e534457c985 --- /dev/null +++ b/packages/chains/chains/1313161554.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aurora Mainnet", + "chain": "NEAR", + "rpc": [ + "https://aurora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.aurora.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "aurora", + "chainId": 1313161554, + "networkId": 1313161554, + "explorers": [ + { + "name": "aurorascan.dev", + "url": "https://aurorascan.dev", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "aurora" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161555.ts b/packages/chains/chains/1313161555.ts new file mode 100644 index 00000000000..02f7df852ee --- /dev/null +++ b/packages/chains/chains/1313161555.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aurora Testnet", + "chain": "NEAR", + "rpc": [ + "https://aurora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.aurora.dev/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "aurora-testnet", + "chainId": 1313161555, + "networkId": 1313161555, + "explorers": [ + { + "name": "aurorascan.dev", + "url": "https://testnet.aurorascan.dev", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "aurora-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313161556.ts b/packages/chains/chains/1313161556.ts new file mode 100644 index 00000000000..0c6751e494e --- /dev/null +++ b/packages/chains/chains/1313161556.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aurora Betanet", + "chain": "NEAR", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "aurora-betanet", + "chainId": 1313161556, + "networkId": 1313161556, + "testnet": false, + "slug": "aurora-betanet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1313500.ts b/packages/chains/chains/1313500.ts new file mode 100644 index 00000000000..4d72c2c4de0 --- /dev/null +++ b/packages/chains/chains/1313500.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Xerom", + "chain": "XERO", + "rpc": [ + "https://xerom.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.xerom.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Xerom Ether", + "symbol": "XERO", + "decimals": 18 + }, + "infoURL": "https://xerom.org", + "shortName": "xero", + "chainId": 1313500, + "networkId": 1313500, + "testnet": false, + "slug": "xerom" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1314.ts b/packages/chains/chains/1314.ts new file mode 100644 index 00000000000..3ddb7c079d7 --- /dev/null +++ b/packages/chains/chains/1314.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Alyx Mainnet", + "chain": "ALYX", + "rpc": [ + "https://alyx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.alyxchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Alyx Chain Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "infoURL": "https://www.alyxchain.com", + "shortName": "alyx", + "chainId": 1314, + "networkId": 1314, + "explorers": [ + { + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } + ], + "icon": { + "url": "ipfs://bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i", + "width": 2481, + "height": 2481, + "format": "png" + }, + "testnet": false, + "slug": "alyx" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/131419.ts b/packages/chains/chains/131419.ts new file mode 100644 index 00000000000..59312ecc9bb --- /dev/null +++ b/packages/chains/chains/131419.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ETND Chain Mainnets", + "chain": "ETND", + "rpc": [ + "https://etnd-chain-s.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.node1.etnd.pro/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETND", + "symbol": "ETND", + "decimals": 18 + }, + "infoURL": "https://www.etnd.pro", + "shortName": "ETND", + "chainId": 131419, + "networkId": 131419, + "icon": { + "url": "ipfs://Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD", + "width": 128, + "height": 128, + "format": "png" + }, + "explorers": [ + { + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": { + "url": "ipfs://Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD", + "width": 128, + "height": 128, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "etnd-chain-s" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1319.ts b/packages/chains/chains/1319.ts new file mode 100644 index 00000000000..454cf1c19a0 --- /dev/null +++ b/packages/chains/chains/1319.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aitd Mainnet", + "chain": "AITD", + "icon": { + "url": "ipfs://QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy", + "width": 160, + "height": 160, + "format": "png" + }, + "rpc": [ + "https://aitd.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://walletrpc.aitd.io", + "https://node.aitd.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "AITD Mainnet", + "symbol": "AITD", + "decimals": 18 + }, + "infoURL": "https://www.aitd.io/", + "shortName": "aitd", + "chainId": 1319, + "networkId": 1319, + "explorers": [ + { + "name": "AITD Chain Explorer Mainnet", + "url": "https://aitd-explorer-new.aitd.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "aitd" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1320.ts b/packages/chains/chains/1320.ts new file mode 100644 index 00000000000..ed137db4c31 --- /dev/null +++ b/packages/chains/chains/1320.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aitd Testnet", + "chain": "AITD", + "icon": { + "url": "ipfs://QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy", + "width": 160, + "height": 160, + "format": "png" + }, + "rpc": [ + "https://aitd-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://http-testnet.aitd.io" + ], + "faucets": [ + "https://aitd-faucet-pre.aitdcoin.com/" + ], + "nativeCurrency": { + "name": "AITD Testnet", + "symbol": "AITD", + "decimals": 18 + }, + "infoURL": "https://www.aitd.io/", + "shortName": "aitdtestnet", + "chainId": 1320, + "networkId": 1320, + "explorers": [ + { + "name": "AITD Chain Explorer Testnet", + "url": "https://block-explorer-testnet.aitd.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "aitd-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13308.ts b/packages/chains/chains/13308.ts new file mode 100644 index 00000000000..07a9bedf55e --- /dev/null +++ b/packages/chains/chains/13308.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Credit Smartchain Mainnet", + "chain": "CREDIT", + "rpc": [ + "https://credit-smartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.cscscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://creditsmartchain.com", + "shortName": "Credit", + "chainId": 13308, + "networkId": 1, + "icon": { + "url": "ipfs://bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4", + "width": 1000, + "height": 1628, + "format": "png" + }, + "explorers": [ + { + "name": "CSC Scan", + "url": "https://explorer.cscscan.io", + "icon": { + "url": "ipfs://bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4", + "width": 1000, + "height": 1628, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "credit-smartchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337.ts b/packages/chains/chains/1337.ts new file mode 100644 index 00000000000..a77c3f83fa2 --- /dev/null +++ b/packages/chains/chains/1337.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Localhost", + "chain": "ETH", + "rpc": [ + "http://localhost:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/ethereum/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "shortName": "local", + "chainId": 1337, + "networkId": 1337, + "testnet": true, + "slug": "localhost" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13371337.ts b/packages/chains/chains/13371337.ts new file mode 100644 index 00000000000..07d23c671ec --- /dev/null +++ b/packages/chains/chains/13371337.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PepChain Churchill", + "chain": "PEP", + "rpc": [ + "https://pepchain-churchill.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://churchill-rpc.pepchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PepChain Churchill Ether", + "symbol": "TPEP", + "decimals": 18 + }, + "infoURL": "https://pepchain.io", + "shortName": "tpep", + "chainId": 13371337, + "networkId": 13371337, + "testnet": false, + "slug": "pepchain-churchill" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337702.ts b/packages/chains/chains/1337702.ts new file mode 100644 index 00000000000..c4f61669f6d --- /dev/null +++ b/packages/chains/chains/1337702.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kintsugi", + "title": "Kintsugi merge testnet", + "chain": "ETH", + "rpc": [ + "https://kintsugi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.kintsugi.themerge.dev" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", + "https://faucet.kintsugi.themerge.dev" + ], + "nativeCurrency": { + "name": "kintsugi Ethere", + "symbol": "kiETH", + "decimals": 18 + }, + "infoURL": "https://kintsugi.themerge.dev/", + "shortName": "kintsugi", + "chainId": 1337702, + "networkId": 1337702, + "explorers": [ + { + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kintsugi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337802.ts b/packages/chains/chains/1337802.ts new file mode 100644 index 00000000000..9486e7a165e --- /dev/null +++ b/packages/chains/chains/1337802.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kiln", + "chain": "ETH", + "rpc": [ + "https://kiln.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.kiln.themerge.dev" + ], + "faucets": [ + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.com" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kiln.themerge.dev/", + "shortName": "kiln", + "chainId": 1337802, + "networkId": 1337802, + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "explorers": [ + { + "name": "Kiln Explorer", + "url": "https://explorer.kiln.themerge.dev", + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kiln" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1337803.ts b/packages/chains/chains/1337803.ts new file mode 100644 index 00000000000..77a08a8dd88 --- /dev/null +++ b/packages/chains/chains/1337803.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zhejiang", + "chain": "ETH", + "rpc": [ + "https://zhejiang.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.zhejiang.ethpandaops.io" + ], + "faucets": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zhejiang.ethpandaops.io", + "shortName": "zhejiang", + "chainId": 1337803, + "networkId": 1337803, + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "explorers": [ + { + "name": "Zhejiang Explorer", + "url": "https://zhejiang.beaconcha.in", + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "zhejiang" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1338.ts b/packages/chains/chains/1338.ts new file mode 100644 index 00000000000..a4f3f05d0f9 --- /dev/null +++ b/packages/chains/chains/1338.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Elysium Testnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": [ + "https://elysium-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://elysium-test-rpc.vulcanforged.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELST", + "chainId": 1338, + "networkId": 1338, + "explorers": [ + { + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "elysium-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13381.ts b/packages/chains/chains/13381.ts new file mode 100644 index 00000000000..35e6b30be30 --- /dev/null +++ b/packages/chains/chains/13381.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Phoenix Mainnet", + "chain": "Phoenix", + "rpc": [ + "https://phoenix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.phoenixplorer.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Phoenix", + "symbol": "PHX", + "decimals": 18 + }, + "infoURL": "https://cryptophoenix.org/phoenix", + "shortName": "Phoenix", + "chainId": 13381, + "networkId": 13381, + "icon": { + "url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6", + "width": 1501, + "height": 1501, + "format": "png" + }, + "explorers": [ + { + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "phoenix" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1339.ts b/packages/chains/chains/1339.ts new file mode 100644 index 00000000000..5410149b50a --- /dev/null +++ b/packages/chains/chains/1339.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Elysium Mainnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": [ + "https://elysium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.elysiumchain.tech/" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELSM", + "chainId": 1339, + "networkId": 1339, + "explorers": [ + { + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } + ], + "testnet": false, + "slug": "elysium" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1351057110.ts b/packages/chains/chains/1351057110.ts new file mode 100644 index 00000000000..97c8dd81d3f --- /dev/null +++ b/packages/chains/chains/1351057110.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Chaos (SKALE Testnet)", + "title": "Chaos Testnet", + "chain": "staging-fast-active-bellatrix", + "rpc": [ + "https://chaos-skale-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" + ], + "faucets": [ + "https://sfuel.skale.network/staging/chaos" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://docs.skale.network/develop/", + "shortName": "chaos-tenet", + "chainId": 1351057110, + "networkId": 1351057110, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", + "icon": { + "url": "ipfs://QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "chaos-skale-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1353.ts b/packages/chains/chains/1353.ts new file mode 100644 index 00000000000..5beb71ddc85 --- /dev/null +++ b/packages/chains/chains/1353.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CIC Chain Mainnet", + "chain": "CIC", + "rpc": [ + "https://cic-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://xapi.cicscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CIC", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CIC", + "chainId": 1353, + "networkId": 1353, + "icon": { + "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", + "width": 1024, + "height": 768, + "format": "png" + }, + "explorers": [ + { + "name": "CICscan", + "url": "https://cicscan.com", + "icon": { + "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", + "width": 1024, + "height": 768, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "cic-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1369.ts b/packages/chains/chains/1369.ts new file mode 100644 index 00000000000..b4d78b71786 --- /dev/null +++ b/packages/chains/chains/1369.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zafirium Mainnet", + "chain": "ZAFIC", + "icon": { + "url": "ipfs://QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t", + "width": 192, + "height": 192, + "format": "png" + }, + "rpc": [ + "https://zafirium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.zakumi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zakumi Chain Native Token", + "symbol": "ZAFIC", + "decimals": 18 + }, + "infoURL": "https://www.zakumi.io", + "shortName": "zafic", + "chainId": 1369, + "networkId": 1369, + "explorers": [ + { + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "zafirium" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1380996178.ts b/packages/chains/chains/1380996178.ts new file mode 100644 index 00000000000..7edcb19b85c --- /dev/null +++ b/packages/chains/chains/1380996178.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "RaptorChain", + "chain": "RPTR", + "rpc": [ + "https://raptorchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.raptorchain.io/web3" + ], + "faucets": [], + "nativeCurrency": { + "name": "Raptor", + "symbol": "RPTR", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://raptorchain.io", + "shortName": "rptr", + "chainId": 1380996178, + "networkId": 1380996178, + "icon": { + "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", + "width": 200, + "height": 200, + "format": "png" + }, + "explorers": [ + { + "name": "RaptorChain Explorer", + "url": "https://explorer.raptorchain.io", + "icon": { + "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", + "width": 200, + "height": 200, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "raptorchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/13812.ts b/packages/chains/chains/13812.ts new file mode 100644 index 00000000000..6f76466301a --- /dev/null +++ b/packages/chains/chains/13812.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Susono", + "chain": "SUS", + "rpc": [ + "https://susono.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Susono", + "symbol": "OPN", + "decimals": 18 + }, + "infoURL": "", + "shortName": "sus", + "chainId": 13812, + "networkId": 13812, + "explorers": [ + { + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "susono" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1388.ts b/packages/chains/chains/1388.ts new file mode 100644 index 00000000000..5b3f339c482 --- /dev/null +++ b/packages/chains/chains/1388.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AmStar Mainnet", + "chain": "AmStar", + "icon": { + "url": "ipfs://Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C", + "width": 599, + "height": 563, + "format": "png" + }, + "rpc": [ + "https://amstar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.amstarscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASAR", + "chainId": 1388, + "networkId": 1388, + "explorers": [ + { + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "amstar" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1392.ts b/packages/chains/chains/1392.ts new file mode 100644 index 00000000000..6606e6fd8ac --- /dev/null +++ b/packages/chains/chains/1392.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Joseon Mainnet", + "chain": "Joseon", + "icon": { + "url": "ipfs://QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e", + "width": 148, + "height": 148, + "format": "svg" + }, + "rpc": [ + "https://joseon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.modchain.net/blockchain.joseon.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Joseon Mun", + "symbol": "JSM", + "decimals": 18 + }, + "infoURL": "https://www.joseon.com/", + "shortName": "mun", + "chainId": 1392, + "networkId": 1392, + "explorers": [ + { + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "joseon" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/14000.ts b/packages/chains/chains/14000.ts new file mode 100644 index 00000000000..7ab5c9668f0 --- /dev/null +++ b/packages/chains/chains/14000.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SPS Testnet", + "chain": "SPS-Testnet", + "rpc": [ + "https://sps-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://www.3sps.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS-Test", + "chainId": 14000, + "networkId": 14000, + "explorers": [ + { + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "sps-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/142857.ts b/packages/chains/chains/142857.ts new file mode 100644 index 00000000000..4ee24c5bdf8 --- /dev/null +++ b/packages/chains/chains/142857.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ICPlaza Mainnet", + "chain": "ICPlaza", + "icon": { + "url": "ipfs://QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX", + "width": 847, + "height": 906, + "format": "png" + }, + "rpc": [ + "https://icplaza.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpcmainnet.ic-plaza.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ict", + "symbol": "ict", + "decimals": 18 + }, + "infoURL": "https://docs.ic-plaza.org/", + "shortName": "ICPlaza", + "chainId": 142857, + "networkId": 142857, + "explorers": [ + { + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } + ], + "testnet": false, + "slug": "icplaza" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/14288640.ts b/packages/chains/chains/14288640.ts new file mode 100644 index 00000000000..f123243b3b8 --- /dev/null +++ b/packages/chains/chains/14288640.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Anduschain Mainnet", + "chain": "anduschain", + "rpc": [ + "https://anduschain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.anduschain.io/rpc", + "wss://rpc.anduschain.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "DAON", + "symbol": "DEB", + "decimals": 18 + }, + "infoURL": "https://anduschain.io/", + "shortName": "anduschain-mainnet", + "chainId": 14288640, + "networkId": 14288640, + "explorers": [ + { + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": { + "url": "ipfs://bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "anduschain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1433.ts b/packages/chains/chains/1433.ts new file mode 100644 index 00000000000..10a88880b04 --- /dev/null +++ b/packages/chains/chains/1433.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rikeza Network Mainnet", + "title": "Rikeza Network Mainnet", + "chain": "Rikeza", + "icon": { + "url": "ipfs://QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://rikeza-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.rikscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "RIK", + "chainId": 1433, + "networkId": 1433, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "rikeza-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1440.ts b/packages/chains/chains/1440.ts new file mode 100644 index 00000000000..76363348991 --- /dev/null +++ b/packages/chains/chains/1440.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Living Assets Mainnet", + "chain": "LAS", + "icon": { + "url": "ipfs://QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW", + "width": 500, + "height": 500, + "format": "jpg" + }, + "rpc": [ + "https://living-assets.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://beta.mainnet.livingassets.io/rpc", + "https://gamma.mainnet.livingassets.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAS", + "symbol": "LAS", + "decimals": 18 + }, + "infoURL": "https://dev.livingassets.io/", + "shortName": "LAS", + "chainId": 1440, + "networkId": 1440, + "testnet": false, + "slug": "living-assets" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1440001.ts b/packages/chains/chains/1440001.ts new file mode 100644 index 00000000000..aa87d92d4bb --- /dev/null +++ b/packages/chains/chains/1440001.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "XRP Ledger EVM Devnet Sidechain", + "chain": "XRPL", + "shortName": "XRPL-EVM-Devnet-Sidechain", + "chainId": 1440001, + "testnet": true, + "icon": { + "format": "png", + "url": "ipfs://bafkreidmgxjwjircegjkvysgz25b2ukw6h7axoirkxv6idupzzqsdrljgy", + "width": 780, + "height": 680 + }, + "rpc": [ + "https://xrp-ledger-evm-devnet-sidechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-evm-sidechain.xrpl.org" + ], + "nativeCurrency": { + "decimals": 18, + "name": "XRP", + "symbol": "XRP" + }, + "explorers": [ + { + "url": "https://evm-sidechain.xrpl.org/", + "name": "XRP Ledger Explorer", + "standard": "EIP3091" + } + ], + "slug": "xrp-ledger-evm-devnet-sidechain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1442.ts b/packages/chains/chains/1442.ts new file mode 100644 index 00000000000..081b40e42dc --- /dev/null +++ b/packages/chains/chains/1442.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Polygon zkEVM Testnet", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [ + "https://polygon-zkevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.public.zkevm-test.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango", + "chainId": 1442, + "networkId": 1442, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "icon": { + "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", + "width": 122, + "height": 135, + "format": "png" + }, + "testnet": true, + "slug": "polygon-zkevm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1452.ts b/packages/chains/chains/1452.ts new file mode 100644 index 00000000000..6b23218f8c1 --- /dev/null +++ b/packages/chains/chains/1452.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "GIL Testnet", + "chain": "GIL", + "icon": { + "url": "ipfs://QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA", + "width": 243, + "height": 243, + "format": "svg" + }, + "rpc": [ + "https://gil-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.giltestnet.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gil", + "chainId": 1452, + "networkId": 1452, + "explorers": [ + { + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "gil-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1455.ts b/packages/chains/chains/1455.ts new file mode 100644 index 00000000000..3d4b0f47fe0 --- /dev/null +++ b/packages/chains/chains/1455.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ctex Scan Blockchain", + "chain": "Ctex Scan Blockchain", + "icon": { + "url": "ipfs://bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://ctex-scan-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.ctexscan.com/" + ], + "faucets": [ + "https://faucet.ctexscan.com" + ], + "nativeCurrency": { + "name": "CTEX", + "symbol": "CTEX", + "decimals": 18 + }, + "infoURL": "https://ctextoken.io", + "shortName": "CTEX", + "chainId": 1455, + "networkId": 1455, + "explorers": [ + { + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "ctex-scan-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1482601649.ts b/packages/chains/chains/1482601649.ts new file mode 100644 index 00000000000..1e15c3e5aa2 --- /dev/null +++ b/packages/chains/chains/1482601649.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nebula Mainnet", + "chain": "green-giddy-denebola", + "rpc": [ + "https://nebula.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.skalenodes.com/v1/green-giddy-denebola", + "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" + ], + "faucets": [], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-mainnet", + "chainId": 1482601649, + "networkId": 1482601649, + "explorers": [ + { + "name": "nebula", + "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "icon": { + "url": "ipfs://QmfQkfmQuoUUUKwF1yCcrPEzFcWLaqNyiSv5YMcSj6zs74", + "width": 500, + "height": 500, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "nebula" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1501.ts b/packages/chains/chains/1501.ts new file mode 100644 index 00000000000..50f9219a2ce --- /dev/null +++ b/packages/chains/chains/1501.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BEVM", + "chain": "ChainX", + "rpc": [ + "https://bevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-1.bevm.io/", + "https://rpc-2.bevm.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://chainx.org", + "shortName": "chainx", + "chainId": 1501, + "networkId": 1501, + "explorers": [ + { + "name": "bevm scan", + "url": "https://scan.bevm.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "bevm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1506.ts b/packages/chains/chains/1506.ts new file mode 100644 index 00000000000..e02e24eb79f --- /dev/null +++ b/packages/chains/chains/1506.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sherpax Mainnet", + "chain": "Sherpax Mainnet", + "rpc": [ + "https://sherpax.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.sherpax.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "infoURL": "https://sherpax.io/", + "shortName": "Sherpax", + "chainId": 1506, + "networkId": 1506, + "explorers": [ + { + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "sherpax" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1507.ts b/packages/chains/chains/1507.ts new file mode 100644 index 00000000000..9232d36e53a --- /dev/null +++ b/packages/chains/chains/1507.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sherpax Testnet", + "chain": "Sherpax Testnet", + "rpc": [ + "https://sherpax-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sherpax-testnet.chainx.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "infoURL": "https://sherpax.io/", + "shortName": "SherpaxTestnet", + "chainId": 1507, + "networkId": 1507, + "explorers": [ + { + "name": "Sherpax Testnet Explorer", + "url": "https://evm-pre.sherpax.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "sherpax-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1515.ts b/packages/chains/chains/1515.ts new file mode 100644 index 00000000000..f9ed88c61a9 --- /dev/null +++ b/packages/chains/chains/1515.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Beagle Messaging Chain", + "chain": "BMC", + "rpc": [ + "https://beagle-messaging-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://beagle.chat/eth" + ], + "faucets": [ + "https://faucet.beagle.chat/" + ], + "nativeCurrency": { + "name": "Beagle", + "symbol": "BG", + "decimals": 18 + }, + "infoURL": "https://beagle.chat/", + "shortName": "beagle", + "chainId": 1515, + "networkId": 1515, + "explorers": [ + { + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "beagle-messaging-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15551.ts b/packages/chains/chains/15551.ts new file mode 100644 index 00000000000..c6c0816aeb1 --- /dev/null +++ b/packages/chains/chains/15551.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "LoopNetwork Mainnet", + "chain": "LoopNetwork", + "rpc": [ + "https://loopnetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.mainnetloop.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "LOOP", + "symbol": "LOOP", + "decimals": 18 + }, + "infoURL": "http://theloopnetwork.org/", + "shortName": "loop", + "chainId": 15551, + "networkId": 15551, + "explorers": [ + { + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "loopnetwork" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15555.ts b/packages/chains/chains/15555.ts new file mode 100644 index 00000000000..5faf4479038 --- /dev/null +++ b/packages/chains/chains/15555.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Trust EVM Testnet", + "chain": "Trust EVM Testnet", + "rpc": [ + "https://trust-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.testnet-dev.trust.one" + ], + "faucets": [ + "https://faucet.testnet-dev.trust.one/" + ], + "nativeCurrency": { + "name": "Trust EVM", + "symbol": "EVM", + "decimals": 18 + }, + "infoURL": "https://www.trust.one/", + "shortName": "TrustTestnet", + "chainId": 15555, + "networkId": 15555, + "explorers": [ + { + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "trust-evm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/15557.ts b/packages/chains/chains/15557.ts new file mode 100644 index 00000000000..05652abdc98 --- /dev/null +++ b/packages/chains/chains/15557.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EOS EVM Network Testnet", + "chain": "EOS", + "icon": { + "url": "ipfs://QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb", + "width": 500, + "height": 750, + "format": "png" + }, + "rpc": [ + "https://eos-evm-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.testnet.evm.eosnetwork.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos-testnet", + "chainId": 15557, + "networkId": 15557, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.testnet.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.testnet.evm.eosnetwork.com" + } + ] + }, + "testnet": true, + "slug": "eos-evm-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1559.ts b/packages/chains/chains/1559.ts new file mode 100644 index 00000000000..56e2334c35d --- /dev/null +++ b/packages/chains/chains/1559.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tenet", + "title": "Tenet Mainnet", + "chain": "TENET", + "icon": { + "url": "ipfs://Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA", + "width": 640, + "height": 640, + "format": "svg" + }, + "rpc": [ + "https://tenet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tenet.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet", + "chainId": 1559, + "networkId": 1559, + "explorers": [ + { + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": { + "url": "ipfs://Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA", + "width": 640, + "height": 640, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "tenet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1564830818.ts b/packages/chains/chains/1564830818.ts new file mode 100644 index 00000000000..f5857cb6abe --- /dev/null +++ b/packages/chains/chains/1564830818.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Calypso NFT Hub (SKALE)", + "title": "Calypso NFT Hub Mainnet", + "chain": "honorable-steel-rasalhague", + "rpc": [ + "https://calypso-nft-hub-skale.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" + ], + "faucets": [ + "https://sfuel.dirtroad.dev" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-mainnet", + "chainId": 1564830818, + "networkId": 1564830818, + "explorers": [ + { + "name": "Blockscout", + "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", + "icon": { + "url": "ipfs://bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", + "width": 1637, + "height": 1636, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "calypso-nft-hub-skale" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1582.ts b/packages/chains/chains/1582.ts new file mode 100644 index 00000000000..9102bb11a1e --- /dev/null +++ b/packages/chains/chains/1582.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bubs Testnet", + "chain": "gETH", + "shortName": "Bubs", + "chainId": 1582, + "testnet": true, + "icon": { + "format": "svg", + "url": "ipfs://bafybeibfpls2ealp4e5fdeoxessfjjkldgjnrcx2erph7524pg7alskk6a/1f9cb.svg", + "width": 512, + "height": 512 + }, + "rpc": [ + "https://bubs-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bubs.calderachain.xyz/http" + ], + "nativeCurrency": { + "decimals": 18, + "name": "Ether", + "symbol": "gETH" + }, + "explorers": [ + { + "url": "https://explorer.bubstestnet.com", + "name": "Bubs Testnet Explorer", + "standard": "EIP3091" + } + ], + "faucets": [ + "https://bubstestnet.com" + ], + "infoURL": "https://bubstestnet.com", + "networkId": 1582, + "slug": "bubs-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16000.ts b/packages/chains/chains/16000.ts new file mode 100644 index 00000000000..49860445586 --- /dev/null +++ b/packages/chains/chains/16000.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MetaDot Mainnet", + "chain": "MTT", + "rpc": [ + "https://metadot.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.metadot.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "MetaDot Token", + "symbol": "MTT", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtt", + "chainId": 16000, + "networkId": 16000, + "testnet": false, + "slug": "metadot" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16001.ts b/packages/chains/chains/16001.ts new file mode 100644 index 00000000000..6fbdc54d6fa --- /dev/null +++ b/packages/chains/chains/16001.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MetaDot Testnet", + "chain": "MTTTest", + "rpc": [ + "https://metadot-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.metadot.network" + ], + "faucets": [ + "https://faucet.metadot.network/" + ], + "nativeCurrency": { + "name": "MetaDot Token TestNet", + "symbol": "MTTest", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtttest", + "chainId": 16001, + "networkId": 16001, + "testnet": true, + "slug": "metadot-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1618.ts b/packages/chains/chains/1618.ts new file mode 100644 index 00000000000..42260835e9c --- /dev/null +++ b/packages/chains/chains/1618.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Catecoin Chain Mainnet", + "chain": "Catechain", + "rpc": [ + "https://catecoin-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://send.catechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Catecoin", + "symbol": "CATE", + "decimals": 18 + }, + "infoURL": "https://catechain.com", + "shortName": "cate", + "chainId": 1618, + "networkId": 1618, + "testnet": false, + "slug": "catecoin-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1620.ts b/packages/chains/chains/1620.ts new file mode 100644 index 00000000000..1e127f503b5 --- /dev/null +++ b/packages/chains/chains/1620.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Atheios", + "chain": "ATH", + "rpc": [ + "https://atheios.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.atheios.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Atheios Ether", + "symbol": "ATH", + "decimals": 18 + }, + "infoURL": "https://atheios.org", + "shortName": "ath", + "chainId": 1620, + "networkId": 11235813, + "slip44": 1620, + "testnet": false, + "slug": "atheios" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16507.ts b/packages/chains/chains/16507.ts new file mode 100644 index 00000000000..b575009434a --- /dev/null +++ b/packages/chains/chains/16507.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Genesys Mainnet", + "chain": "Genesys", + "icon": { + "url": "ipfs://bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://genesys.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.genesys.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Genesys", + "symbol": "GSYS", + "decimals": 18 + }, + "infoURL": "https://www.genesys.network/", + "shortName": "Genesys", + "chainId": 16507, + "networkId": 16507, + "explorers": [ + { + "name": "GchainExplorer", + "url": "https://gchainexplorer.genesys.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "genesys" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1657.ts b/packages/chains/chains/1657.ts new file mode 100644 index 00000000000..acf1be5d604 --- /dev/null +++ b/packages/chains/chains/1657.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Btachain", + "chain": "btachain", + "rpc": [ + "https://btachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed1.btachain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Asset", + "symbol": "BTA", + "decimals": 18 + }, + "infoURL": "https://bitcoinasset.io/", + "shortName": "bta", + "chainId": 1657, + "networkId": 1657, + "testnet": false, + "slug": "btachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1663.ts b/packages/chains/chains/1663.ts new file mode 100644 index 00000000000..17bb8355eb5 --- /dev/null +++ b/packages/chains/chains/1663.ts @@ -0,0 +1,52 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Horizen Gobi Testnet", + "shortName": "Gobi", + "chain": "Gobi", + "icon": { + "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", + "width": 1213, + "height": 1213, + "format": "png" + }, + "rpc": [ + "https://horizen-gobi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://gobi-testnet.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_testnet_evm" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.horizen.io" + ], + "nativeCurrency": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 1663, + "networkId": 1663, + "slip44": 121, + "explorers": [ + { + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": { + "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", + "width": 1213, + "height": 1213, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "horizen-gobi-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16658437.ts b/packages/chains/chains/16658437.ts new file mode 100644 index 00000000000..4990ef2fafc --- /dev/null +++ b/packages/chains/chains/16658437.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Plian Testnet Main", + "chain": "Plian", + "rpc": [ + "https://plian-testnet-main.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.plian.io/testnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Testnet Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-testnet", + "chainId": 16658437, + "networkId": 16658437, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "plian-testnet-main" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600000.ts b/packages/chains/chains/1666600000.ts new file mode 100644 index 00000000000..cc156e1ef73 --- /dev/null +++ b/packages/chains/chains/1666600000.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Mainnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://harmony-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.harmony.one", + "https://api.s0.t.hmny.io" + ], + "faucets": [ + "https://free-online-app.com/faucet-for-eth-evm-chains/" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-s0", + "chainId": 1666600000, + "networkId": 1666600000, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "harmony-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600001.ts b/packages/chains/chains/1666600001.ts new file mode 100644 index 00000000000..4f56ec552b3 --- /dev/null +++ b/packages/chains/chains/1666600001.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Mainnet Shard 1", + "chain": "Harmony", + "rpc": [ + "https://harmony-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s1.t.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-s1", + "chainId": 1666600001, + "networkId": 1666600001, + "testnet": false, + "slug": "harmony-shard-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600002.ts b/packages/chains/chains/1666600002.ts new file mode 100644 index 00000000000..05fcc2b09d1 --- /dev/null +++ b/packages/chains/chains/1666600002.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Mainnet Shard 2", + "chain": "Harmony", + "rpc": [ + "https://harmony-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s2.t.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-s2", + "chainId": 1666600002, + "networkId": 1666600002, + "testnet": false, + "slug": "harmony-shard-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666600003.ts b/packages/chains/chains/1666600003.ts new file mode 100644 index 00000000000..ec8120222e7 --- /dev/null +++ b/packages/chains/chains/1666600003.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Mainnet Shard 3", + "chain": "Harmony", + "rpc": [ + "https://harmony-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s3.t.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-s3", + "chainId": 1666600003, + "networkId": 1666600003, + "testnet": false, + "slug": "harmony-shard-3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700000.ts b/packages/chains/chains/1666700000.ts new file mode 100644 index 00000000000..e3cdb5514df --- /dev/null +++ b/packages/chains/chains/1666700000.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Testnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://harmony-testnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s0.b.hmny.io" + ], + "faucets": [ + "https://faucet.pops.one" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s0", + "chainId": 1666700000, + "networkId": 1666700000, + "explorers": [ + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.pops.one", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "harmony-testnet-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700001.ts b/packages/chains/chains/1666700001.ts new file mode 100644 index 00000000000..52275a574fe --- /dev/null +++ b/packages/chains/chains/1666700001.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Testnet Shard 1", + "chain": "Harmony", + "rpc": [ + "https://harmony-testnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s1.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s1", + "chainId": 1666700001, + "networkId": 1666700001, + "testnet": true, + "slug": "harmony-testnet-shard-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700002.ts b/packages/chains/chains/1666700002.ts new file mode 100644 index 00000000000..0cd1cabf1a8 --- /dev/null +++ b/packages/chains/chains/1666700002.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Testnet Shard 2", + "chain": "Harmony", + "rpc": [ + "https://harmony-testnet-shard-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s2.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s2", + "chainId": 1666700002, + "networkId": 1666700002, + "testnet": true, + "slug": "harmony-testnet-shard-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666700003.ts b/packages/chains/chains/1666700003.ts new file mode 100644 index 00000000000..d3ff5803cee --- /dev/null +++ b/packages/chains/chains/1666700003.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Testnet Shard 3", + "chain": "Harmony", + "rpc": [ + "https://harmony-testnet-shard-3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s3.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s3", + "chainId": 1666700003, + "networkId": 1666700003, + "testnet": true, + "slug": "harmony-testnet-shard-3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1666900000.ts b/packages/chains/chains/1666900000.ts new file mode 100644 index 00000000000..bf85c20d82d --- /dev/null +++ b/packages/chains/chains/1666900000.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Harmony Devnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://harmony-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s1.ps.hmny.io" + ], + "faucets": [ + "http://dev.faucet.easynode.one/" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-ps-s0", + "chainId": 1666900000, + "networkId": 1666900000, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.ps.hmny.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "harmony-devnet-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16688.ts b/packages/chains/chains/16688.ts new file mode 100644 index 00000000000..bb1dba8f6b0 --- /dev/null +++ b/packages/chains/chains/16688.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IRIShub Testnet", + "chain": "IRIShub", + "rpc": [ + "https://irishub-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evmrpc.nyancat.irisnet.org" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "nyancat", + "chainId": 16688, + "networkId": 16688, + "icon": { + "url": "ipfs://QmRaSx7AX1VDgcqjwLgSDP4WZmKBHPdHhbjkcEEXPA2Fnc", + "width": 1062, + "height": 822, + "format": "png" + }, + "explorers": [ + { + "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", + "url": "https://nyancat.iobscan.io", + "standard": "none", + "icon": { + "url": "ipfs://QmRaSx7AX1VDgcqjwLgSDP4WZmKBHPdHhbjkcEEXPA2Fnc", + "width": 1062, + "height": 822, + "format": "png" + } + } + ], + "testnet": true, + "slug": "irishub-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/167005.ts b/packages/chains/chains/167005.ts new file mode 100644 index 00000000000..edc10ad6f2b --- /dev/null +++ b/packages/chains/chains/167005.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taiko Grimsvotn L2", + "chain": "ETH", + "status": "active", + "icon": { + "url": "ipfs://QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui", + "width": 288, + "height": 258, + "format": "png" + }, + "rpc": [ + "https://taiko-grimsvotn-l2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.test.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l2", + "chainId": 167005, + "networkId": 167005, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.test.taiko.xyz", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "taiko-grimsvotn-l2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/167006.ts b/packages/chains/chains/167006.ts new file mode 100644 index 00000000000..af23873686e --- /dev/null +++ b/packages/chains/chains/167006.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taiko Eldfell L3", + "chain": "ETH", + "status": "active", + "icon": { + "url": "ipfs://QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui", + "width": 288, + "height": 258, + "format": "png" + }, + "rpc": [ + "https://taiko-eldfell-l3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.l3test.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l3", + "chainId": 167006, + "networkId": 167006, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.l3test.taiko.xyz", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "taiko-eldfell-l3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16718.ts b/packages/chains/chains/16718.ts new file mode 100644 index 00000000000..30f43c2d2d4 --- /dev/null +++ b/packages/chains/chains/16718.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AirDAO Mainnet", + "chain": "ambnet", + "icon": { + "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://airdao.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://network.ambrosus.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://airdao.io", + "shortName": "airdao", + "chainId": 16718, + "networkId": 16718, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } + ], + "testnet": false, + "slug": "airdao" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1688.ts b/packages/chains/chains/1688.ts new file mode 100644 index 00000000000..45480465b50 --- /dev/null +++ b/packages/chains/chains/1688.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "LUDAN Mainnet", + "chain": "LUDAN", + "rpc": [ + "https://ludan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ludan.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "LUDAN", + "symbol": "LUDAN", + "decimals": 18 + }, + "infoURL": "https://www.ludan.org/", + "shortName": "LUDAN", + "icon": { + "url": "ipfs://bafkreigzeanzqgxrzzep45t776ovbwi242poqxbryuu2go5eedeuwwcsay", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 1688, + "networkId": 1688, + "testnet": false, + "slug": "ludan" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/16888.ts b/packages/chains/chains/16888.ts new file mode 100644 index 00000000000..b2f8c787fd7 --- /dev/null +++ b/packages/chains/chains/16888.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IVAR Chain Testnet", + "chain": "IVAR", + "icon": { + "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", + "width": 519, + "height": 519, + "format": "svg" + }, + "rpc": [ + "https://ivar-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.ivarex.com" + ], + "faucets": [ + "https://tfaucet.ivarex.com/" + ], + "nativeCurrency": { + "name": "tIvar", + "symbol": "tIVAR", + "decimals": 18 + }, + "infoURL": "https://ivarex.com", + "shortName": "tivar", + "chainId": 16888, + "networkId": 16888, + "explorers": [ + { + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ivar-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1701.ts b/packages/chains/chains/1701.ts new file mode 100644 index 00000000000..92aee48f4e9 --- /dev/null +++ b/packages/chains/chains/1701.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Anytype EVM Chain", + "chain": "ETH", + "icon": { + "url": "ipfs://QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [ + "https://anytype-evm-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://geth.anytype.io" + ], + "faucets": [ + "https://evm.anytype.io/faucet" + ], + "nativeCurrency": { + "name": "ANY", + "symbol": "ANY", + "decimals": 18 + }, + "infoURL": "https://evm.anytype.io", + "shortName": "AnytypeChain", + "chainId": 1701, + "networkId": 1701, + "explorers": [ + { + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": { + "url": "ipfs://QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG", + "width": 200, + "height": 200, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "anytype-evm-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1707.ts b/packages/chains/chains/1707.ts new file mode 100644 index 00000000000..bd391a0295a --- /dev/null +++ b/packages/chains/chains/1707.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TBSI Mainnet", + "title": "Thai Blockchain Service Infrastructure Mainnet", + "chain": "TBSI", + "rpc": [ + "https://tbsi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.blockchain.or.th" + ], + "faucets": [], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "TBSI", + "chainId": 1707, + "networkId": 1707, + "explorers": [ + { + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "tbsi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1708.ts b/packages/chains/chains/1708.ts new file mode 100644 index 00000000000..a19c4494111 --- /dev/null +++ b/packages/chains/chains/1708.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TBSI Testnet", + "title": "Thai Blockchain Service Infrastructure Testnet", + "chain": "TBSI", + "rpc": [ + "https://tbsi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.blockchain.or.th" + ], + "faucets": [ + "https://faucet.blockchain.or.th" + ], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "tTBSI", + "chainId": 1708, + "networkId": 1708, + "explorers": [ + { + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "tbsi-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1718.ts b/packages/chains/chains/1718.ts new file mode 100644 index 00000000000..a5c4d4ee7af --- /dev/null +++ b/packages/chains/chains/1718.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Palette Chain Mainnet", + "chain": "PLT", + "rpc": [ + "https://palette-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://palette-rpc.com:22000" + ], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCM", + "chainId": 1718, + "networkId": 1718, + "icon": { + "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", + "width": 800, + "height": 800, + "format": "png" + }, + "explorers": [ + { + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": { + "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", + "width": 800, + "height": 800, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "palette-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/17180.ts b/packages/chains/chains/17180.ts new file mode 100644 index 00000000000..332869dc83c --- /dev/null +++ b/packages/chains/chains/17180.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Palette Chain Testnet", + "chain": "PLT", + "rpc": [ + "https://palette-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://palette-opennet.com:22000" + ], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCT", + "chainId": 17180, + "networkId": 17180, + "icon": { + "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", + "width": 800, + "height": 800, + "format": "png" + }, + "explorers": [ + { + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": { + "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", + "width": 800, + "height": 800, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "palette-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1773.ts b/packages/chains/chains/1773.ts new file mode 100644 index 00000000000..2110fccc860 --- /dev/null +++ b/packages/chains/chains/1773.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PartyChain", + "chain": "mainnet", + "rpc": [ + "https://partychain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://tea.mining4people.com/rpc", + "http://172.104.194.36:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Grams", + "symbol": "GRAMS", + "decimals": 18 + }, + "infoURL": "TeaPartyCrypto.com", + "shortName": "TeaParty", + "chainId": 1773, + "networkId": 1773, + "icon": { + "url": "ipfs://QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS", + "width": 400, + "height": 400, + "format": "jpg" + }, + "status": "incubating", + "explorers": [ + { + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": { + "url": "ipfs://QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS", + "width": 400, + "height": 400, + "format": "jpg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "partychain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1777.ts b/packages/chains/chains/1777.ts new file mode 100644 index 00000000000..82f059d494f --- /dev/null +++ b/packages/chains/chains/1777.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gauss Mainnet", + "chain": "Gauss", + "icon": { + "url": "ipfs://QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA", + "width": 243, + "height": 243, + "format": "svg" + }, + "rpc": [ + "https://gauss.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.gaussgang.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gauss", + "chainId": 1777, + "networkId": 1777, + "explorers": [ + { + "name": "Gauss Explorer", + "url": "https://explorer.gaussgang.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "gauss" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/17777.ts b/packages/chains/chains/17777.ts new file mode 100644 index 00000000000..9dfed993d56 --- /dev/null +++ b/packages/chains/chains/17777.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EOS EVM Network", + "chain": "EOS", + "icon": { + "url": "ipfs://QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb", + "width": 500, + "height": 750, + "format": "png" + }, + "rpc": [ + "https://eos-evm-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.evm.eosnetwork.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos", + "chainId": 17777, + "networkId": 17777, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.evm.eosnetwork.com" + }, + { + "url": "https://app.multichain.org" + } + ] + }, + "testnet": false, + "slug": "eos-evm-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18000.ts b/packages/chains/chains/18000.ts new file mode 100644 index 00000000000..738cea3e5d1 --- /dev/null +++ b/packages/chains/chains/18000.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Frontier of Dreams Testnet", + "chain": "Game Network", + "rpc": [ + "https://frontier-of-dreams-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.fod.games/" + ], + "nativeCurrency": { + "name": "ZKST", + "symbol": "ZKST", + "decimals": 18 + }, + "faucets": [], + "shortName": "ZKST", + "chainId": 18000, + "networkId": 18000, + "infoURL": "https://goexosphere.com", + "explorers": [ + { + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "frontier-of-dreams-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1804.ts b/packages/chains/chains/1804.ts new file mode 100644 index 00000000000..89041ef4e85 --- /dev/null +++ b/packages/chains/chains/1804.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kerleano", + "title": "Proof of Climate awaReness testnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://kerleano.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://cacib-saturn-test.francecentral.cloudapp.azure.com", + "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + ], + "faucets": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + ], + "nativeCurrency": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/kerleano", + "shortName": "kerleano", + "chainId": 1804, + "networkId": 1804, + "icon": { + "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", + "width": 334, + "height": 360, + "format": "png" + }, + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/kerleano", + "icon": { + "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", + "width": 334, + "height": 360, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kerleano" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1807.ts b/packages/chains/chains/1807.ts new file mode 100644 index 00000000000..1641932cc2f --- /dev/null +++ b/packages/chains/chains/1807.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rabbit Analog Testnet Chain", + "chain": "rAna", + "icon": { + "url": "ipfs://QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc", + "width": 310, + "height": 251, + "format": "svg" + }, + "rpc": [ + "https://rabbit-analog-testnet-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rabbit.analog-rpc.com" + ], + "faucets": [ + "https://analogfaucet.com" + ], + "nativeCurrency": { + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 + }, + "infoURL": "https://rabbit.analogscan.com", + "shortName": "rAna", + "chainId": 1807, + "networkId": 1807, + "explorers": [ + { + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "rabbit-analog-testnet-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18159.ts b/packages/chains/chains/18159.ts new file mode 100644 index 00000000000..6624d7e3ac9 --- /dev/null +++ b/packages/chains/chains/18159.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Proof Of Memes", + "title": "Proof Of Memes Mainnet", + "chain": "POM", + "icon": { + "url": "ipfs://QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://proof-of-memes.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.memescan.io", + "https://mainnet-rpc2.memescan.io", + "https://mainnet-rpc3.memescan.io", + "https://mainnet-rpc4.memescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Proof Of Memes", + "symbol": "POM", + "decimals": 18 + }, + "infoURL": "https://proofofmemes.org", + "shortName": "pom", + "chainId": 18159, + "networkId": 18159, + "explorers": [ + { + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "proof-of-memes" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1818.ts b/packages/chains/chains/1818.ts new file mode 100644 index 00000000000..d40dd55e88f --- /dev/null +++ b/packages/chains/chains/1818.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Cube Chain Mainnet", + "chain": "Cube", + "icon": { + "url": "ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", + "width": 282, + "height": 250, + "format": "png" + }, + "rpc": [ + "https://cube-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://http-mainnet.cube.network", + "wss://ws-mainnet.cube.network", + "https://http-mainnet-sg.cube.network", + "wss://ws-mainnet-sg.cube.network", + "https://http-mainnet-us.cube.network", + "wss://ws-mainnet-us.cube.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cube Chain Native Token", + "symbol": "CUBE", + "decimals": 18 + }, + "infoURL": "https://www.cube.network", + "shortName": "cube", + "chainId": 1818, + "networkId": 1818, + "slip44": 1818, + "explorers": [ + { + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "cube-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1819.ts b/packages/chains/chains/1819.ts new file mode 100644 index 00000000000..bd995697a11 --- /dev/null +++ b/packages/chains/chains/1819.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Cube Chain Testnet", + "chain": "Cube", + "icon": { + "url": "ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", + "width": 282, + "height": 250, + "format": "png" + }, + "rpc": [ + "https://cube-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://http-testnet.cube.network", + "wss://ws-testnet.cube.network", + "https://http-testnet-sg.cube.network", + "wss://ws-testnet-sg.cube.network", + "https://http-testnet-jp.cube.network", + "wss://ws-testnet-jp.cube.network", + "https://http-testnet-us.cube.network", + "wss://ws-testnet-us.cube.network" + ], + "faucets": [ + "https://faucet.cube.network" + ], + "nativeCurrency": { + "name": "Cube Chain Test Native Token", + "symbol": "CUBET", + "decimals": 18 + }, + "infoURL": "https://www.cube.network", + "shortName": "cubet", + "chainId": 1819, + "networkId": 1819, + "slip44": 1819, + "explorers": [ + { + "name": "cubetest-scan", + "url": "https://testnet.cubescan.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "cube-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18289463.ts b/packages/chains/chains/18289463.ts new file mode 100644 index 00000000000..1d0e2f94260 --- /dev/null +++ b/packages/chains/chains/18289463.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IOLite", + "chain": "ILT", + "rpc": [ + "https://iolite.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://net.iolite.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "IOLite Ether", + "symbol": "ILT", + "decimals": 18 + }, + "infoURL": "https://iolite.io", + "shortName": "ilt", + "chainId": 18289463, + "networkId": 18289463, + "testnet": false, + "slug": "iolite" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1856.ts b/packages/chains/chains/1856.ts new file mode 100644 index 00000000000..afef9aa96a0 --- /dev/null +++ b/packages/chains/chains/1856.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Teslafunds", + "chain": "TSF", + "rpc": [ + "https://teslafunds.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://tsfapi.europool.me" + ], + "faucets": [], + "nativeCurrency": { + "name": "Teslafunds Ether", + "symbol": "TSF", + "decimals": 18 + }, + "infoURL": "https://teslafunds.io", + "shortName": "tsf", + "chainId": 1856, + "networkId": 1, + "testnet": false, + "slug": "teslafunds" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/18686.ts b/packages/chains/chains/18686.ts new file mode 100644 index 00000000000..1c3fa84bb86 --- /dev/null +++ b/packages/chains/chains/18686.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MXC zkEVM Mainnet", + "chain": "MXC zkEVM", + "icon": { + "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", + "width": 159, + "height": 159, + "format": "png" + }, + "rpc": [ + "https://mxc-zkevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.mxc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MXC zkEVM Mainnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://doc.mxc.com/docs/intro", + "shortName": "MXCzkEVM", + "chainId": 18686, + "networkId": 18686, + "explorers": [ + { + "name": "MXC zkEVM Mainnet", + "url": "https://explorer.mxc.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "mxc-zkevm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1881.ts b/packages/chains/chains/1881.ts new file mode 100644 index 00000000000..8953bdc109d --- /dev/null +++ b/packages/chains/chains/1881.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gitshock Cartenz Testnet", + "chain": "Gitshock Cartenz", + "icon": { + "url": "ipfs://bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://gitshock-cartenz-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.cartenz.works" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Gitshock Cartenz", + "symbol": "tGTFX", + "decimals": 18 + }, + "infoURL": "https://gitshock.com", + "shortName": "gitshockchain", + "chainId": 1881, + "networkId": 1881, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "gitshock-cartenz-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/188881.ts b/packages/chains/chains/188881.ts new file mode 100644 index 00000000000..2af6613ac2b --- /dev/null +++ b/packages/chains/chains/188881.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Condor Test Network", + "chain": "CONDOR", + "icon": { + "url": "ipfs://QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM", + "width": 752, + "height": 752, + "format": "png" + }, + "rpc": [ + "https://condor-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.condor.systems/rpc" + ], + "faucets": [ + "https://faucet.condor.systems" + ], + "nativeCurrency": { + "name": "Condor Native Token", + "symbol": "CONDOR", + "decimals": 18 + }, + "infoURL": "https://condor.systems", + "shortName": "condor", + "chainId": 188881, + "networkId": 188881, + "explorers": [ + { + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } + ], + "testnet": true, + "slug": "condor-test-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1890.ts b/packages/chains/chains/1890.ts new file mode 100644 index 00000000000..e281dc9ca22 --- /dev/null +++ b/packages/chains/chains/1890.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lightlink Phoenix Mainnet", + "chain": "Lightlink Phoenix Mainnet", + "icon": { + "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", + "width": 600, + "height": 600, + "format": "png" + }, + "rpc": [ + "https://lightlink-phoenix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://replicator-01.phoenix.lightlink.io/rpc/v1", + "https://replicator-02.phoenix.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_phoenix", + "chainId": 1890, + "networkId": 1890, + "explorers": [ + { + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": { + "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", + "width": 600, + "height": 600, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "lightlink-phoenix" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1891.ts b/packages/chains/chains/1891.ts new file mode 100644 index 00000000000..6a91d1dffdf --- /dev/null +++ b/packages/chains/chains/1891.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lightlink Pegasus Testnet", + "chain": "Lightlink Pegasus Testnet", + "icon": { + "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", + "width": 600, + "height": 600, + "format": "png" + }, + "rpc": [ + "https://lightlink-pegasus-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://replicator-01.pegasus.lightlink.io/rpc/v1", + "https://replicator-02.pegasus.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [ + "https://pegasus-faucet-react.vercel.app" + ], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_pegasus", + "chainId": 1891, + "networkId": 1891, + "explorers": [ + { + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": { + "url": "ipfs://QmNRUoMgx16hurD3au3ou5A9rmTLYmre8WiGmQEPFmP2Vo", + "width": 600, + "height": 600, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "lightlink-pegasus-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1898.ts b/packages/chains/chains/1898.ts new file mode 100644 index 00000000000..548e40fa525 --- /dev/null +++ b/packages/chains/chains/1898.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BON Network", + "chain": "BON", + "rpc": [ + "https://bon-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://rpc.boyanet.org:8545", + "ws://rpc.boyanet.org:8546" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOYACoin", + "symbol": "BOY", + "decimals": 18 + }, + "infoURL": "https://boyanet.org", + "shortName": "boya", + "chainId": 1898, + "networkId": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bon-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/19011.ts b/packages/chains/chains/19011.ts new file mode 100644 index 00000000000..29808beec02 --- /dev/null +++ b/packages/chains/chains/19011.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HOME Verse Mainnet", + "chain": "HOME Verse", + "icon": { + "url": "ipfs://QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU", + "width": 597, + "height": 597, + "format": "png" + }, + "rpc": [ + "https://home-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.mainnet.oasys.homeverse.games/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.homeverse.games/", + "shortName": "HMV", + "chainId": 19011, + "networkId": 19011, + "explorers": [ + { + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + }, + "testnet": false, + "slug": "home-verse" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1907.ts b/packages/chains/chains/1907.ts new file mode 100644 index 00000000000..ec24f641514 --- /dev/null +++ b/packages/chains/chains/1907.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitcichain Mainnet", + "chain": "BITCI", + "icon": { + "url": "ipfs://QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn", + "width": 64, + "height": 64, + "format": "svg" + }, + "rpc": [ + "https://bitcichain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.bitci.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitci", + "symbol": "BITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "bitci", + "chainId": 1907, + "networkId": 1907, + "explorers": [ + { + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bitcichain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1908.ts b/packages/chains/chains/1908.ts new file mode 100644 index 00000000000..66c1e4c9b42 --- /dev/null +++ b/packages/chains/chains/1908.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitcichain Testnet", + "chain": "TBITCI", + "icon": { + "url": "ipfs://QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn", + "width": 64, + "height": 64, + "format": "svg" + }, + "rpc": [ + "https://bitcichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.bitcichain.com" + ], + "faucets": [ + "https://faucet.bitcichain.com" + ], + "nativeCurrency": { + "name": "Test Bitci", + "symbol": "TBITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "tbitci", + "chainId": 1908, + "networkId": 1908, + "explorers": [ + { + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bitcichain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/192837465.ts b/packages/chains/chains/192837465.ts new file mode 100644 index 00000000000..1a74bd7c310 --- /dev/null +++ b/packages/chains/chains/192837465.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gather Mainnet Network", + "chain": "GTH", + "rpc": [ + "https://gather-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "GTH", + "chainId": 192837465, + "networkId": 192837465, + "icon": { + "url": "ipfs://Qmc9AJGg9aNhoH56n3deaZeUc8Ty1jDYJsW6Lu6hgSZH4S", + "height": 512, + "width": 512, + "format": "png" + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.gather.network", + "icon": { + "url": "ipfs://QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz", + "width": 1080, + "height": 1080, + "format": "svg" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "gather-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1945.ts b/packages/chains/chains/1945.ts new file mode 100644 index 00000000000..cc234dd0c75 --- /dev/null +++ b/packages/chains/chains/1945.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ONUS Chain Testnet", + "title": "ONUS Chain Testnet", + "chain": "onus", + "rpc": [ + "https://onus-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.onuschain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-testnet", + "chainId": 1945, + "networkId": 1945, + "explorers": [ + { + "name": "Onus explorer testnet", + "url": "https://explorer-testnet.onuschain.io", + "icon": { + "url": "ipfs://bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "onus-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1951.ts b/packages/chains/chains/1951.ts new file mode 100644 index 00000000000..0fef8903985 --- /dev/null +++ b/packages/chains/chains/1951.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "D-Chain Mainnet", + "chain": "D-Chain", + "rpc": [ + "https://d-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + ], + "nativeCurrency": { + "name": "DOINX", + "symbol": "DOINX", + "decimals": 18 + }, + "shortName": "dchain-mainnet", + "chainId": 1951, + "networkId": 1951, + "icon": { + "url": "ipfs://QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj", + "width": 700, + "height": 495, + "format": "png" + }, + "faucets": [], + "infoURL": "", + "testnet": false, + "slug": "d-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1954.ts b/packages/chains/chains/1954.ts new file mode 100644 index 00000000000..e9f3ad44380 --- /dev/null +++ b/packages/chains/chains/1954.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dexilla Testnet", + "chain": "Dexilla", + "rpc": [ + "https://dexilla-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.dexilla.com" + ], + "faucets": [], + "icon": { + "url": "ipfs://QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ", + "width": 512, + "height": 512, + "format": "png" + }, + "nativeCurrency": { + "name": "Dexilla Native Token", + "symbol": "DXZ", + "decimals": 18 + }, + "infoURL": "https://dexilla.com", + "shortName": "Dexilla", + "chainId": 1954, + "networkId": 1954, + "explorers": [ + { + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.dexilla.com" + } + ] + }, + "testnet": true, + "slug": "dexilla-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1967.ts b/packages/chains/chains/1967.ts new file mode 100644 index 00000000000..aa921f60b12 --- /dev/null +++ b/packages/chains/chains/1967.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Eleanor", + "title": "Metatime Testnet Eleanor", + "chain": "MTC", + "rpc": [ + "https://eleanor.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.metatime.com/eleanor", + "wss://ws.metatime.com/eleanor" + ], + "faucets": [ + "https://faucet.metatime.com/eleanor" + ], + "nativeCurrency": { + "name": "Eleanor Metacoin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://eleanor.metatime.com", + "shortName": "mtc", + "chainId": 1967, + "networkId": 1967, + "explorers": [ + { + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "eleanor" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1969.ts b/packages/chains/chains/1969.ts new file mode 100644 index 00000000000..3a2f7843055 --- /dev/null +++ b/packages/chains/chains/1969.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Super Smart Chain Testnet", + "chain": "TSCS", + "rpc": [ + "https://super-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnetrpc.scschain.com" + ], + "faucets": [ + "https://testnet.scschain.com" + ], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "TSCS", + "decimals": 18 + }, + "infoURL": "https://testnet.scschain.com", + "shortName": "tscs", + "chainId": 1969, + "networkId": 1969, + "icon": { + "url": "ipfs://QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D", + "width": 130, + "height": 130, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "super-smart-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1970.ts b/packages/chains/chains/1970.ts new file mode 100644 index 00000000000..d0dc1b6ebaf --- /dev/null +++ b/packages/chains/chains/1970.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Super Smart Chain Mainnet", + "chain": "SCS", + "rpc": [ + "https://super-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.scschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "SCS", + "decimals": 18 + }, + "infoURL": "https://scschain.com", + "shortName": "scs", + "chainId": 1970, + "networkId": 1970, + "icon": { + "url": "ipfs://QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D", + "width": 130, + "height": 130, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "super-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1971.ts b/packages/chains/chains/1971.ts new file mode 100644 index 00000000000..fe595a135f9 --- /dev/null +++ b/packages/chains/chains/1971.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Atelier", + "title": "Atelier Test Network", + "chain": "ALTR", + "rpc": [ + "https://atelier.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://1971.network/atlr", + "wss://1971.network/atlr" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATLR", + "symbol": "ATLR", + "decimals": 18 + }, + "infoURL": "https://1971.network/", + "shortName": "atlr", + "chainId": 1971, + "networkId": 1971, + "icon": { + "url": "ipfs://bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u", + "width": 200, + "height": 200, + "format": "png" + }, + "testnet": true, + "slug": "atelier" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1975.ts b/packages/chains/chains/1975.ts new file mode 100644 index 00000000000..83cb9efcb61 --- /dev/null +++ b/packages/chains/chains/1975.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ONUS Chain Mainnet", + "title": "ONUS Chain Mainnet", + "chain": "onus", + "rpc": [ + "https://onus-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.onuschain.io", + "wss://ws.onuschain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-mainnet", + "chainId": 1975, + "networkId": 1975, + "explorers": [ + { + "name": "Onus explorer mainnet", + "url": "https://explorer.onuschain.io", + "icon": { + "url": "ipfs://bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "onus-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/197710212030.ts b/packages/chains/chains/197710212030.ts new file mode 100644 index 00000000000..ea579e09b59 --- /dev/null +++ b/packages/chains/chains/197710212030.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ntity Mainnet", + "chain": "Ntity", + "rpc": [ + "https://ntity.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ntity.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt", + "chainId": 197710212030, + "networkId": 197710212030, + "icon": { + "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", + "width": 711, + "height": 715, + "format": "svg" + }, + "explorers": [ + { + "name": "Ntity Blockscout", + "url": "https://blockscout.ntity.io", + "icon": { + "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", + "width": 711, + "height": 715, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ntity" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/197710212031.ts b/packages/chains/chains/197710212031.ts new file mode 100644 index 00000000000..015648c0501 --- /dev/null +++ b/packages/chains/chains/197710212031.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Haradev Testnet", + "chain": "Ntity", + "rpc": [ + "https://haradev-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://blockchain.haradev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt-haradev", + "chainId": 197710212031, + "networkId": 197710212031, + "icon": { + "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", + "width": 711, + "height": 715, + "format": "svg" + }, + "explorers": [ + { + "name": "Ntity Haradev Blockscout", + "url": "https://blockscout.haradev.com", + "icon": { + "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", + "width": 711, + "height": 715, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "haradev-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1984.ts b/packages/chains/chains/1984.ts new file mode 100644 index 00000000000..14abe2b7f2d --- /dev/null +++ b/packages/chains/chains/1984.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Eurus Testnet", + "chain": "EUN", + "rpc": [ + "https://eurus-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.eurus.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "euntest", + "chainId": 1984, + "networkId": 1984, + "icon": { + "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", + "width": 471, + "height": 471, + "format": "svg" + }, + "explorers": [ + { + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": { + "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", + "width": 471, + "height": 471, + "format": "svg" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "eurus-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/19845.ts b/packages/chains/chains/19845.ts new file mode 100644 index 00000000000..e89d40bcbea --- /dev/null +++ b/packages/chains/chains/19845.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BTCIX Network", + "chain": "BTCIX", + "rpc": [ + "https://btcix-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://seed.btcix.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTCIX Network", + "symbol": "BTCIX", + "decimals": 18 + }, + "infoURL": "https://bitcolojix.org", + "shortName": "btcix", + "chainId": 19845, + "networkId": 19845, + "explorers": [ + { + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "btcix-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1987.ts b/packages/chains/chains/1987.ts new file mode 100644 index 00000000000..32604ba2980 --- /dev/null +++ b/packages/chains/chains/1987.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EtherGem", + "chain": "EGEM", + "rpc": [ + "https://ethergem.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonrpc.egem.io/custom" + ], + "faucets": [], + "nativeCurrency": { + "name": "EtherGem Ether", + "symbol": "EGEM", + "decimals": 18 + }, + "infoURL": "https://egem.io", + "shortName": "egem", + "chainId": 1987, + "networkId": 1987, + "slip44": 1987, + "testnet": false, + "slug": "ethergem" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1994.ts b/packages/chains/chains/1994.ts new file mode 100644 index 00000000000..9bb9559139b --- /dev/null +++ b/packages/chains/chains/1994.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ekta", + "chain": "EKTA", + "rpc": [ + "https://ekta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://main.ekta.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "EKTA", + "symbol": "EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "ekta", + "chainId": 1994, + "networkId": 1994, + "icon": { + "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "width": 2100, + "height": 2100, + "format": "png" + }, + "explorers": [ + { + "name": "ektascan", + "url": "https://ektascan.io", + "icon": { + "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "width": 2100, + "height": 2100, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ekta" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/1995.ts b/packages/chains/chains/1995.ts new file mode 100644 index 00000000000..bbe831b83d3 --- /dev/null +++ b/packages/chains/chains/1995.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "edeXa Testnet", + "chain": "edeXa TestNetwork", + "rpc": [ + "https://edexa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.edexa.com/rpc", + "https://io-dataseed1.testnet.edexa.io-market.com/rpc" + ], + "faucets": [ + "https://faucet.edexa.com/" + ], + "nativeCurrency": { + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 + }, + "infoURL": "https://edexa.com/", + "shortName": "edx", + "chainId": 1995, + "networkId": 1995, + "icon": { + "url": "ipfs://QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR", + "width": 1028, + "height": 1042, + "format": "png" + }, + "explorers": [ + { + "name": "edexa-testnet", + "url": "https://explorer.testnet.edexa.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "edexa-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2000.ts b/packages/chains/chains/2000.ts new file mode 100644 index 00000000000..3db0524fb41 --- /dev/null +++ b/packages/chains/chains/2000.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dogechain Mainnet", + "chain": "DC", + "icon": { + "url": "ipfs://QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs", + "width": 732, + "height": 732, + "format": "png" + }, + "rpc": [ + "https://dogechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.dogechain.dog", + "https://rpc01-sg.dogechain.dog", + "https://rpc.ankr.com/dogechain" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dc", + "chainId": 2000, + "networkId": 2000, + "explorers": [ + { + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dogechain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20001.ts b/packages/chains/chains/20001.ts new file mode 100644 index 00000000000..e261b473de7 --- /dev/null +++ b/packages/chains/chains/20001.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Camelark Mainnet", + "chainId": 20001, + "shortName": "Camelark", + "chain": "ETHW", + "icon": { + "url": "ipfs://QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ", + "width": 128, + "height": 128, + "format": "png" + }, + "networkId": 20001, + "nativeCurrency": { + "name": "EthereumPoW", + "symbol": "ETHW", + "decimals": 18 + }, + "rpc": [ + "https://camelark.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-http-rpc.camelark.com" + ], + "faucets": [], + "explorers": [ + { + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.camelark.com", + "testnet": false, + "slug": "camelark" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2001.ts b/packages/chains/chains/2001.ts new file mode 100644 index 00000000000..a46c93e6f06 --- /dev/null +++ b/packages/chains/chains/2001.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Milkomeda C1 Mainnet", + "chain": "milkAda", + "icon": { + "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", + "width": 367, + "height": 367, + "format": "svg" + }, + "rpc": [ + "https://milkomeda-c1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkAda", + "symbol": "mADA", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkAda", + "chainId": 2001, + "networkId": 2001, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "milkomeda-c1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200101.ts b/packages/chains/chains/200101.ts new file mode 100644 index 00000000000..8e7423f40bf --- /dev/null +++ b/packages/chains/chains/200101.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Milkomeda C1 Testnet", + "chain": "milkTAda", + "icon": { + "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", + "width": 367, + "height": 367, + "format": "svg" + }, + "rpc": [ + "https://milkomeda-c1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-devnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAda", + "symbol": "mTAda", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAda", + "chainId": 200101, + "networkId": 200101, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "milkomeda-c1-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2002.ts b/packages/chains/chains/2002.ts new file mode 100644 index 00000000000..cb931a0e262 --- /dev/null +++ b/packages/chains/chains/2002.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Milkomeda A1 Mainnet", + "chain": "milkALGO", + "icon": { + "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", + "width": 367, + "height": 367, + "format": "svg" + }, + "rpc": [ + "https://milkomeda-a1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", + "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkALGO", + "chainId": 2002, + "networkId": 2002, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "milkomeda-a1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200202.ts b/packages/chains/chains/200202.ts new file mode 100644 index 00000000000..6b41dc3fb28 --- /dev/null +++ b/packages/chains/chains/200202.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Milkomeda A1 Testnet", + "chain": "milkTAlgo", + "icon": { + "url": "ipfs://QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd", + "width": 367, + "height": 367, + "format": "svg" + }, + "rpc": [ + "https://milkomeda-a1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAlgo", + "chainId": 200202, + "networkId": 200202, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "milkomeda-a1-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/200625.ts b/packages/chains/chains/200625.ts new file mode 100644 index 00000000000..a862e420e09 --- /dev/null +++ b/packages/chains/chains/200625.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Akroma", + "chain": "AKA", + "rpc": [ + "https://akroma.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://remote.akroma.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Akroma Ether", + "symbol": "AKA", + "decimals": 18 + }, + "infoURL": "https://akroma.io", + "shortName": "aka", + "chainId": 200625, + "networkId": 200625, + "slip44": 200625, + "testnet": false, + "slug": "akroma" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2008.ts b/packages/chains/chains/2008.ts new file mode 100644 index 00000000000..a53d071d760 --- /dev/null +++ b/packages/chains/chains/2008.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CloudWalk Testnet", + "chain": "CloudWalk Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "infoURL": "https://cloudwalk.io", + "shortName": "cloudwalk_testnet", + "chainId": 2008, + "networkId": 2008, + "explorers": [ + { + "name": "CloudWalk Testnet Explorer", + "url": "https://explorer.testnet.cloudwalk.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "cloudwalk-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2009.ts b/packages/chains/chains/2009.ts new file mode 100644 index 00000000000..801bb7f765d --- /dev/null +++ b/packages/chains/chains/2009.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CloudWalk Mainnet", + "chain": "CloudWalk Mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "infoURL": "https://cloudwalk.io", + "shortName": "cloudwalk_mainnet", + "chainId": 2009, + "networkId": 2009, + "explorers": [ + { + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "cloudwalk" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201018.ts b/packages/chains/chains/201018.ts new file mode 100644 index 00000000000..f5f234de95f --- /dev/null +++ b/packages/chains/chains/201018.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Alaya Mainnet", + "chain": "Alaya", + "rpc": [ + "https://alaya.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://openapi.alaya.network/rpc", + "wss://openapi.alaya.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alaya", + "chainId": 201018, + "networkId": 1, + "icon": { + "url": "ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", + "width": 1140, + "height": 1140, + "format": "png" + }, + "explorers": [ + { + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "alaya" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201030.ts b/packages/chains/chains/201030.ts new file mode 100644 index 00000000000..b456b2f5db1 --- /dev/null +++ b/packages/chains/chains/201030.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Alaya Dev Testnet", + "chain": "Alaya", + "rpc": [ + "https://alaya-dev-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" + ], + "faucets": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + ], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alayadev", + "chainId": 201030, + "networkId": 1, + "icon": { + "url": "ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", + "width": 1140, + "height": 1140, + "format": "png" + }, + "explorers": [ + { + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } + ], + "testnet": true, + "slug": "alaya-dev-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2016.ts b/packages/chains/chains/2016.ts new file mode 100644 index 00000000000..26d93e49dd6 --- /dev/null +++ b/packages/chains/chains/2016.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MainnetZ Mainnet", + "chain": "NetZ", + "icon": { + "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://z-mainnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.mainnetz.io" + ], + "faucets": [ + "https://faucet.mainnetz.io" + ], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://mainnetz.io", + "shortName": "NetZm", + "chainId": 2016, + "networkId": 2016, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "z-mainnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2018.ts b/packages/chains/chains/2018.ts new file mode 100644 index 00000000000..2df1fc55923 --- /dev/null +++ b/packages/chains/chains/2018.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PublicMint Devnet", + "title": "Public Mint Devnet", + "chain": "PublicMint", + "rpc": [ + "https://publicmint-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.dev.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_dev", + "chainId": 2018, + "networkId": 2018, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "publicmint-devnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/201804.ts b/packages/chains/chains/201804.ts new file mode 100644 index 00000000000..a9f55c81a91 --- /dev/null +++ b/packages/chains/chains/201804.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mythical Chain", + "chain": "MYTH", + "rpc": [ + "https://mythical-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://chain-rpc.mythicalgames.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mythos", + "symbol": "MYTH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://mythicalgames.com/", + "shortName": "myth", + "chainId": 201804, + "networkId": 201804, + "icon": { + "url": "ipfs://bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4", + "width": 350, + "height": 350, + "format": "png" + }, + "explorers": [ + { + "name": "Mythical Chain Explorer", + "url": "https://explorer.mythicalgames.com", + "icon": { + "url": "ipfs://bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4", + "width": 350, + "height": 350, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "mythical-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20180430.ts b/packages/chains/chains/20180430.ts new file mode 100644 index 00000000000..ac9c55b5873 --- /dev/null +++ b/packages/chains/chains/20180430.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SmartMesh Mainnet", + "chain": "Spectrum", + "rpc": [ + "https://smartmesh.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonapi1.smartmesh.cn" + ], + "faucets": [], + "nativeCurrency": { + "name": "SmartMesh Native Token", + "symbol": "SMT", + "decimals": 18 + }, + "infoURL": "https://smartmesh.io", + "shortName": "spectrum", + "chainId": 20180430, + "networkId": 1, + "explorers": [ + { + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } + ], + "testnet": false, + "slug": "smartmesh" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20181205.ts b/packages/chains/chains/20181205.ts new file mode 100644 index 00000000000..5e5e296b11a --- /dev/null +++ b/packages/chains/chains/20181205.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "quarkblockchain", + "chain": "QKI", + "rpc": [ + "https://quarkblockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://hz.rpc.qkiscan.cn", + "https://jp.rpc.qkiscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "quarkblockchain Native Token", + "symbol": "QKI", + "decimals": 18 + }, + "infoURL": "https://quarkblockchain.org/", + "shortName": "qki", + "chainId": 20181205, + "networkId": 20181205, + "testnet": false, + "slug": "quarkblockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2019.ts b/packages/chains/chains/2019.ts new file mode 100644 index 00000000000..d23bbe119b1 --- /dev/null +++ b/packages/chains/chains/2019.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PublicMint Testnet", + "title": "Public Mint Testnet", + "chain": "PublicMint", + "rpc": [ + "https://publicmint-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tst.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_test", + "chainId": 2019, + "networkId": 2019, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "publicmint-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2020.ts b/packages/chains/chains/2020.ts new file mode 100644 index 00000000000..8381d26f327 --- /dev/null +++ b/packages/chains/chains/2020.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PublicMint Mainnet", + "title": "Public Mint Mainnet", + "chain": "PublicMint", + "rpc": [ + "https://publicmint.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint", + "chainId": 2020, + "networkId": 2020, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.publicmint.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "publicmint" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20201022.ts b/packages/chains/chains/20201022.ts new file mode 100644 index 00000000000..01832c9e838 --- /dev/null +++ b/packages/chains/chains/20201022.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Pego Network", + "chain": "PEGO", + "rpc": [ + "https://pego-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://pegorpc.com", + "https://node1.pegorpc.com", + "https://node2.pegorpc.com", + "https://node3.pegorpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pego Native Token", + "symbol": "PG", + "decimals": 18 + }, + "infoURL": "https://pego.network", + "shortName": "pg", + "chainId": 20201022, + "networkId": 20201022, + "icon": { + "url": "ipfs://QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx", + "width": 246, + "height": 247, + "format": "png" + }, + "explorers": [ + { + "name": "Pego Network Explorer", + "url": "https://scan.pego.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "pego-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/202020.ts b/packages/chains/chains/202020.ts new file mode 100644 index 00000000000..390c375a8b9 --- /dev/null +++ b/packages/chains/chains/202020.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Decimal Smart Chain Testnet", + "chain": "tDSC", + "rpc": [ + "https://decimal-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-val.decimalchain.com/web3" + ], + "faucets": [], + "nativeCurrency": { + "name": "Decimal", + "symbol": "tDEL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://decimalchain.com", + "shortName": "tDSC", + "chainId": 202020, + "networkId": 202020, + "icon": { + "url": "ipfs://QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "DSC Explorer Testnet", + "url": "https://testnet.explorer.decimalchain.com", + "icon": { + "url": "ipfs://QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc", + "width": 256, + "height": 256, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "decimal-smart-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2021.ts b/packages/chains/chains/2021.ts new file mode 100644 index 00000000000..3d93bd4c3a8 --- /dev/null +++ b/packages/chains/chains/2021.ts @@ -0,0 +1,63 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Edgeware EdgeEVM Mainnet", + "chain": "EDG", + "icon": { + "url": "ipfs://QmS3ERgAKYTmV7bSWcUPSvrrCC9wHQYxtZqEQYx9Rw4RGA", + "width": 352, + "height": 304, + "format": "png" + }, + "rpc": [ + "https://edgeware-edgeevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://edgeware-evm.jelliedowl.net", + "https://mainnet2.edgewa.re/evm", + "https://mainnet3.edgewa.re/evm", + "https://mainnet4.edgewa.re/evm", + "https://mainnet5.edgewa.re/evm", + "wss://edgeware.jelliedowl.net", + "wss://mainnet2.edgewa.re", + "wss://mainnet3.edgewa.re", + "wss://mainnet4.edgewa.re", + "wss://mainnet5.edgewa.re" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Edgeware", + "symbol": "EDG", + "decimals": 18 + }, + "infoURL": "https://edgeware.io", + "shortName": "edg", + "chainId": 2021, + "networkId": 2021, + "slip44": 523, + "explorers": [ + { + "name": "Edgscan by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" + }, + { + "name": "Subscan", + "url": "https://edgeware.subscan.io", + "standard": "none", + "icon": { + "url": "ipfs://Qma2GfW5nQHuA7nGqdEfwaXPL63G9oTwRTQKaGTfjNtM2W", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": false, + "slug": "edgeware-edgeevm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2021121117.ts b/packages/chains/chains/2021121117.ts new file mode 100644 index 00000000000..8e3b33884b8 --- /dev/null +++ b/packages/chains/chains/2021121117.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DataHopper", + "chain": "HOP", + "rpc": [ + "https://datahopper.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://23.92.21.121:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "DataHoppers", + "symbol": "HOP", + "decimals": 18 + }, + "infoURL": "https://www.DataHopper.com", + "shortName": "hop", + "chainId": 2021121117, + "networkId": 2021121117, + "testnet": false, + "slug": "datahopper" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2022.ts b/packages/chains/chains/2022.ts new file mode 100644 index 00000000000..72f62c64fc1 --- /dev/null +++ b/packages/chains/chains/2022.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Beresheet BereEVM Testnet", + "chain": "EDG", + "rpc": [ + "https://beresheet-bereevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://beresheet-evm.jelliedowl.net", + "wss://beresheet.jelliedowl.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Testnet EDG", + "symbol": "tEDG", + "decimals": 18 + }, + "infoURL": "https://edgeware.io/build", + "shortName": "edgt", + "chainId": 2022, + "networkId": 2022, + "explorers": [ + { + "name": "Edgscan by Bharathcoorg", + "url": "https://testnet.edgscan.live", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "beresheet-bereevm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2023.ts b/packages/chains/chains/2023.ts new file mode 100644 index 00000000000..ea1fdeceead --- /dev/null +++ b/packages/chains/chains/2023.ts @@ -0,0 +1,53 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taycan Testnet", + "chain": "Taycan", + "rpc": [ + "https://taycan-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test-taycan.hupayx.io" + ], + "faucets": [ + "https://ttaycan-faucet.hupayx.io/" + ], + "nativeCurrency": { + "name": "test-Shuffle", + "symbol": "tSFL", + "decimals": 18 + }, + "infoURL": "https://hupayx.io", + "shortName": "taycan-testnet", + "chainId": 2023, + "networkId": 2023, + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + }, + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://evmscan-test.hupayx.io", + "standard": "none", + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + } + }, + { + "name": "Taycan Cosmos Explorer", + "url": "https://cosmoscan-test.hupayx.io", + "standard": "none", + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + } + } + ], + "testnet": true, + "slug": "taycan-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2025.ts b/packages/chains/chains/2025.ts new file mode 100644 index 00000000000..303630cbe02 --- /dev/null +++ b/packages/chains/chains/2025.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rangers Protocol Mainnet", + "chain": "Rangers", + "icon": { + "url": "ipfs://QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://rangers-protocol.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "RPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "rpg", + "chainId": 2025, + "networkId": 2025, + "slip44": 1008, + "explorers": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "rangers-protocol" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/202624.ts b/packages/chains/chains/202624.ts new file mode 100644 index 00000000000..edf7c90c40c --- /dev/null +++ b/packages/chains/chains/202624.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Jellie", + "title": "Twala Testnet Jellie", + "shortName": "twl-jellie", + "chain": "ETH", + "chainId": 202624, + "networkId": 202624, + "icon": { + "url": "ipfs://QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK", + "width": 1326, + "height": 1265, + "format": "png" + }, + "nativeCurrency": { + "name": "Twala Coin", + "symbol": "TWL", + "decimals": 18 + }, + "rpc": [ + "https://jellie.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jellie-rpc.twala.io/", + "wss://jellie-rpc-wss.twala.io/" + ], + "faucets": [], + "infoURL": "https://twala.io/", + "explorers": [ + { + "name": "Jellie Blockchain Explorer", + "url": "https://jellie.twala.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK", + "width": 1326, + "height": 1265, + "format": "png" + } + } + ], + "testnet": true, + "slug": "jellie" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2043.ts b/packages/chains/chains/2043.ts new file mode 100644 index 00000000000..4200ade508f --- /dev/null +++ b/packages/chains/chains/2043.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OriginTrail Parachain", + "chain": "OTP", + "rpc": [ + "https://origintrail-parachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://astrosat.origintrail.network", + "wss://parachain-rpc.origin-trail.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OriginTrail Parachain Token", + "symbol": "OTP", + "decimals": 12 + }, + "infoURL": "https://parachain.origintrail.io", + "shortName": "otp", + "chainId": 2043, + "networkId": 2043, + "testnet": false, + "slug": "origintrail-parachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2044.ts b/packages/chains/chains/2044.ts new file mode 100644 index 00000000000..f2070f3718c --- /dev/null +++ b/packages/chains/chains/2044.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shrapnel Subnet", + "chain": "shrapnel", + "rpc": [ + "https://shrapnel-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/shrapnel/mainnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shrapnel Gas Token", + "symbol": "SHRAPG", + "decimals": 18 + }, + "infoURL": "https://www.shrapnel.com/", + "shortName": "Shrapnel", + "chainId": 2044, + "networkId": 2044, + "testnet": false, + "slug": "shrapnel-subnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2046399126.ts b/packages/chains/chains/2046399126.ts new file mode 100644 index 00000000000..d738412bd92 --- /dev/null +++ b/packages/chains/chains/2046399126.ts @@ -0,0 +1,47 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Europa SKALE Chain", + "chain": "europa", + "icon": { + "url": "ipfs://bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre", + "width": 600, + "height": 600, + "format": "png" + }, + "rpc": [ + "https://europa-skale-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.skalenodes.com/v1/elated-tan-skat", + "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + ], + "faucets": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa", + "chainId": 2046399126, + "networkId": 2046399126, + "explorers": [ + { + "name": "Blockscout", + "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://ruby.exchange/bridge.html" + } + ] + }, + "testnet": false, + "slug": "europa-skale-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2047.ts b/packages/chains/chains/2047.ts new file mode 100644 index 00000000000..17339d17857 --- /dev/null +++ b/packages/chains/chains/2047.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Stratos Testnet", + "chain": "STOS", + "rpc": [ + "https://stratos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://web3-rpc-mesos.thestratos.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-testnet", + "chainId": 2047, + "networkId": 2047, + "explorers": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-explorer-mesos.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://big-dipper-mesos.thestratos.org", + "standard": "none" + } + ], + "testnet": true, + "slug": "stratos-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2048.ts b/packages/chains/chains/2048.ts new file mode 100644 index 00000000000..262d92c9090 --- /dev/null +++ b/packages/chains/chains/2048.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Stratos Mainnet", + "chain": "STOS", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-mainnet", + "chainId": 2048, + "networkId": 2048, + "status": "incubating", + "testnet": false, + "slug": "stratos" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20729.ts b/packages/chains/chains/20729.ts new file mode 100644 index 00000000000..a4368621742 --- /dev/null +++ b/packages/chains/chains/20729.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Callisto Testnet", + "chain": "CLO", + "rpc": [ + "https://callisto-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.callisto.network/" + ], + "faucets": [ + "https://faucet.callisto.network/" + ], + "nativeCurrency": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "infoURL": "https://callisto.network", + "shortName": "CLOTestnet", + "chainId": 20729, + "networkId": 79, + "testnet": true, + "slug": "callisto-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/20736.ts b/packages/chains/chains/20736.ts new file mode 100644 index 00000000000..76acc783086 --- /dev/null +++ b/packages/chains/chains/20736.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "P12 Chain", + "chain": "P12", + "icon": { + "url": "ipfs://bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://p12-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-chain.p12.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hooked P2", + "symbol": "hP2", + "decimals": 18 + }, + "infoURL": "https://p12.network", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "shortName": "p12", + "chainId": 20736, + "networkId": 20736, + "explorers": [ + { + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "p12-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2077.ts b/packages/chains/chains/2077.ts new file mode 100644 index 00000000000..eb9b2ffcbb2 --- /dev/null +++ b/packages/chains/chains/2077.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quokkacoin Mainnet", + "chain": "Qkacoin", + "rpc": [ + "https://quokkacoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.qkacoin.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qkacoin", + "symbol": "QKA", + "decimals": 18 + }, + "infoURL": "https://qkacoin.org", + "shortName": "QKA", + "chainId": 2077, + "networkId": 2077, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "quokkacoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2099156.ts b/packages/chains/chains/2099156.ts new file mode 100644 index 00000000000..72e93fbc6ee --- /dev/null +++ b/packages/chains/chains/2099156.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Plian Mainnet Main", + "chain": "Plian", + "rpc": [ + "https://plian-main.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.plian.io/pchain" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-mainnet", + "chainId": 2099156, + "networkId": 2099156, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "plian-main" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2100.ts b/packages/chains/chains/2100.ts new file mode 100644 index 00000000000..ee6691f4554 --- /dev/null +++ b/packages/chains/chains/2100.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ecoball Mainnet", + "chain": "ECO", + "rpc": [ + "https://ecoball.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.ecoball.org/ecoball/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ecoball Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "eco", + "chainId": 2100, + "networkId": 2100, + "explorers": [ + { + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ecoball" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2101.ts b/packages/chains/chains/2101.ts new file mode 100644 index 00000000000..a1434051297 --- /dev/null +++ b/packages/chains/chains/2101.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ecoball Testnet Espuma", + "chain": "ECO", + "rpc": [ + "https://ecoball-testnet-espuma.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.ecoball.org/espuma/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Espuma Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "esp", + "chainId": 2101, + "networkId": 2101, + "explorers": [ + { + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ecoball-testnet-espuma" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/210425.ts b/packages/chains/chains/210425.ts new file mode 100644 index 00000000000..67ecefcd029 --- /dev/null +++ b/packages/chains/chains/210425.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PlatON Mainnet", + "chain": "PlatON", + "rpc": [ + "https://platon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://openapi2.platon.network/rpc", + "wss://openapi2.platon.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platon", + "chainId": 210425, + "networkId": 1, + "icon": { + "url": "ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", + "width": 180, + "height": 180, + "format": "png" + }, + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "platon" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2109.ts b/packages/chains/chains/2109.ts new file mode 100644 index 00000000000..1d5d66def9a --- /dev/null +++ b/packages/chains/chains/2109.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Exosama Network", + "chain": "EXN", + "rpc": [ + "https://exosama-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.exosama.com", + "wss://rpc.exosama.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "exn", + "chainId": 2109, + "networkId": 2109, + "slip44": 2109, + "icon": { + "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", + "width": 468, + "height": 468, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "exosama-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2122.ts b/packages/chains/chains/2122.ts new file mode 100644 index 00000000000..520bf704349 --- /dev/null +++ b/packages/chains/chains/2122.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metaplayerone Mainnet", + "chain": "METAD", + "icon": { + "url": "ipfs://QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf", + "width": 1280, + "height": 1280, + "format": "png" + }, + "rpc": [ + "https://metaplayerone.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.metaplayer.one/" + ], + "faucets": [], + "nativeCurrency": { + "name": "METAD", + "symbol": "METAD", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "Metad", + "chainId": 2122, + "networkId": 2122, + "explorers": [ + { + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": { + "url": "ipfs://QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf", + "width": 1280, + "height": 1280, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "metaplayerone" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2124.ts b/packages/chains/chains/2124.ts new file mode 100644 index 00000000000..7048dcce84e --- /dev/null +++ b/packages/chains/chains/2124.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metaplayerone Dubai Testnet", + "chain": "MP1 Dubai-Testnet", + "rpc": [ + "https://metaplayerone-dubai-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-dubai.mp1network.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metaunit", + "symbol": "MEU", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "MEU", + "chainId": 2124, + "networkId": 2124, + "explorers": [ + { + "name": "MP1Scan", + "url": "https://dubai.mp1scan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "metaplayerone-dubai-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/21337.ts b/packages/chains/chains/21337.ts new file mode 100644 index 00000000000..df5c129c53a --- /dev/null +++ b/packages/chains/chains/21337.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CENNZnet Azalea", + "chain": "CENNZnet", + "rpc": [ + "https://cennznet-azalea.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://cennznet.unfrastructure.io/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-a", + "chainId": 21337, + "networkId": 21337, + "icon": { + "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", + "width": 112, + "height": 112, + "format": "svg" + }, + "explorers": [ + { + "name": "UNcover", + "url": "https://uncoverexplorer.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "cennznet-azalea" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2138.ts b/packages/chains/chains/2138.ts new file mode 100644 index 00000000000..a723dd400c4 --- /dev/null +++ b/packages/chains/chains/2138.ts @@ -0,0 +1,47 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Defi Oracle Meta Testnet", + "chain": "dfiometatest", + "icon": { + "url": "ipfs://QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE", + "width": 1000, + "height": 1043, + "format": "png" + }, + "rpc": [ + "https://defi-oracle-meta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.public-2138.defi-oracle.io", + "wss://rpc.public-2138.defi-oracle.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "testEther", + "symbol": "tETH", + "decimals": 18 + }, + "infoURL": "https://defi-oracle.io/", + "shortName": "dfio-meta-test", + "chainId": 2138, + "networkId": 21, + "slip44": 60, + "ens": { + "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" + }, + "explorers": [ + { + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "defi-oracle-meta-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2151.ts b/packages/chains/chains/2151.ts new file mode 100644 index 00000000000..d383da22fcc --- /dev/null +++ b/packages/chains/chains/2151.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BOSagora Mainnet", + "chain": "ETH", + "rpc": [ + "https://bosagora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.bosagora.org", + "https://rpc.bosagora.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOSAGORA", + "symbol": "BOA", + "decimals": 18 + }, + "infoURL": "https://docs.bosagora.org", + "shortName": "boa", + "chainId": 2151, + "networkId": 2151, + "icon": { + "url": "ipfs://QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh", + "width": 256, + "height": 257, + "format": "png" + }, + "explorers": [ + { + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": { + "url": "ipfs://QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh", + "width": 256, + "height": 257, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bosagora" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2152.ts b/packages/chains/chains/2152.ts new file mode 100644 index 00000000000..24b22196939 --- /dev/null +++ b/packages/chains/chains/2152.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Findora Mainnet", + "chain": "Findora", + "rpc": [ + "https://findora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.findora.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "fra", + "chainId": 2152, + "networkId": 2152, + "explorers": [ + { + "name": "findorascan", + "url": "https://evm.findorascan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "findora" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2153.ts b/packages/chains/chains/2153.ts new file mode 100644 index 00000000000..5433c0edb53 --- /dev/null +++ b/packages/chains/chains/2153.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Findora Testnet", + "chain": "Testnet-anvil", + "rpc": [ + "https://findora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://prod-testnet.prod.findora.org:8545/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "findora-testnet", + "chainId": 2153, + "networkId": 2153, + "explorers": [ + { + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "findora-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2154.ts b/packages/chains/chains/2154.ts new file mode 100644 index 00000000000..a90707e6ab0 --- /dev/null +++ b/packages/chains/chains/2154.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Findora Forge", + "chain": "Testnet-forge", + "rpc": [ + "https://findora-forge.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://prod-forge.prod.findora.org:8545/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "findora-forge", + "chainId": 2154, + "networkId": 2154, + "explorers": [ + { + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "findora-forge" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/21816.ts b/packages/chains/chains/21816.ts new file mode 100644 index 00000000000..bbadacffcf9 --- /dev/null +++ b/packages/chains/chains/21816.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "omChain Mainnet", + "chain": "OML", + "icon": { + "url": "ipfs://QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://omchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://seed.omchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "omChain", + "symbol": "OMC", + "decimals": 18 + }, + "infoURL": "https://omchain.io", + "shortName": "omc", + "chainId": 21816, + "networkId": 21816, + "explorers": [ + { + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "omchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2199.ts b/packages/chains/chains/2199.ts new file mode 100644 index 00000000000..7647aa3a25b --- /dev/null +++ b/packages/chains/chains/2199.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Moonsama Network", + "chain": "MSN", + "rpc": [ + "https://moonsama-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.moonsama.com", + "wss://rpc.moonsama.com/ws" + ], + "faucets": [ + "https://multiverse.moonsama.com/faucet" + ], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "msn", + "chainId": 2199, + "networkId": 2199, + "slip44": 2199, + "icon": { + "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", + "width": 468, + "height": 468, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "moonsama-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2202.ts b/packages/chains/chains/2202.ts new file mode 100644 index 00000000000..8f9e8c07673 --- /dev/null +++ b/packages/chains/chains/2202.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Antofy Mainnet", + "chain": "ABN", + "icon": { + "url": "ipfs://QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://antofy.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.antofy.io" + ], + "faucets": [ + "https://faucet.antofy.io" + ], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNm", + "chainId": 2202, + "networkId": 2202, + "explorers": [ + { + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "antofy" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22023.ts b/packages/chains/chains/22023.ts new file mode 100644 index 00000000000..0c3bf1913c5 --- /dev/null +++ b/packages/chains/chains/22023.ts @@ -0,0 +1,51 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taycan", + "chain": "Taycan", + "rpc": [ + "https://taycan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://taycan-rpc.hupayx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "shuffle", + "symbol": "SFL", + "decimals": 18 + }, + "infoURL": "https://hupayx.io", + "shortName": "SFL", + "chainId": 22023, + "networkId": 22023, + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + }, + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://taycan-evmscan.hupayx.io", + "standard": "none", + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + } + }, + { + "name": "Taycan Cosmos Explorer(BigDipper)", + "url": "https://taycan-cosmoscan.hupayx.io", + "standard": "none", + "icon": { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + } + } + ], + "testnet": false, + "slug": "taycan" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2203.ts b/packages/chains/chains/2203.ts new file mode 100644 index 00000000000..57f108d605c --- /dev/null +++ b/packages/chains/chains/2203.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitcoin EVM", + "chain": "Bitcoin EVM", + "rpc": [ + "https://bitcoin-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://connect.bitcoinevm.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bitcoinevm.com", + "shortName": "BTC", + "chainId": 2203, + "networkId": 2203, + "icon": { + "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", + "width": 200, + "height": 200, + "format": "png" + }, + "explorers": [ + { + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": { + "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", + "width": 200, + "height": 200, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "bitcoin-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/220315.ts b/packages/chains/chains/220315.ts new file mode 100644 index 00000000000..e77ab60a9c4 --- /dev/null +++ b/packages/chains/chains/220315.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mas Mainnet", + "chain": "MAS", + "rpc": [ + "https://mas.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://node.masnet.ai:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Master Bank", + "symbol": "MAS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://masterbank.org", + "shortName": "mas", + "chainId": 220315, + "networkId": 220315, + "icon": { + "url": "ipfs://QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [ + { + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "mas" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22040.ts b/packages/chains/chains/22040.ts new file mode 100644 index 00000000000..04f2669803f --- /dev/null +++ b/packages/chains/chains/22040.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AirDAO Testnet", + "chain": "ambnet-test", + "icon": { + "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://airdao-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://network.ambrosus-test.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://testnet.airdao.io", + "shortName": "airdao-test", + "chainId": 22040, + "networkId": 22040, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } + ], + "testnet": true, + "slug": "airdao-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22052002.ts b/packages/chains/chains/22052002.ts new file mode 100644 index 00000000000..581738bff09 --- /dev/null +++ b/packages/chains/chains/22052002.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Excelon Mainnet", + "chain": "XLON", + "icon": { + "url": "ipfs://QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP", + "width": 300, + "height": 300, + "format": "png" + }, + "rpc": [ + "https://excelon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://edgewallet1.xlon.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Excelon", + "symbol": "xlon", + "decimals": 18 + }, + "infoURL": "https://xlon.org", + "shortName": "xlon", + "chainId": 22052002, + "networkId": 22052002, + "explorers": [ + { + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "excelon" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2206132.ts b/packages/chains/chains/2206132.ts new file mode 100644 index 00000000000..a25fb3d5bce --- /dev/null +++ b/packages/chains/chains/2206132.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PlatON Dev Testnet2", + "chain": "PlatON", + "rpc": [ + "https://platon-dev-testnet2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet2openapi.platon.network/rpc", + "wss://devnet2openapi.platon.network/ws" + ], + "faucets": [ + "https://devnet2faucet.platon.network/faucet" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platondev2", + "chainId": 2206132, + "networkId": 1, + "icon": { + "url": "ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", + "width": 180, + "height": 180, + "format": "png" + }, + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } + ], + "testnet": true, + "slug": "platon-dev-testnet2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2213.ts b/packages/chains/chains/2213.ts new file mode 100644 index 00000000000..f21899185ee --- /dev/null +++ b/packages/chains/chains/2213.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Evanesco Mainnet", + "chain": "EVA", + "rpc": [ + "https://evanesco.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://seed4.evanesco.org:8546" + ], + "faucets": [], + "nativeCurrency": { + "name": "EVA", + "symbol": "EVA", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "evanesco", + "chainId": 2213, + "networkId": 2213, + "icon": { + "url": "ipfs://QmZbmGYdfbMRrWJore3c7hyD6q7B5pXHJqTSNjbZZUK6V8", + "width": 200, + "height": 200, + "format": "png" + }, + "explorers": [ + { + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "evanesco" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/222000222.ts b/packages/chains/chains/222000222.ts new file mode 100644 index 00000000000..6138a91e200 --- /dev/null +++ b/packages/chains/chains/222000222.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kanazawa", + "title": "Meld Testnet Kanazawa", + "chain": "Kanazawa", + "rpc": [ + "https://kanazawa.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/meld/testnet/rpc" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", + "width": 4000, + "height": 4000, + "format": "png" + }, + "infoURL": "https://meld.com", + "shortName": "kanazawa", + "chainId": 222000222, + "networkId": 222000222, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/meld", + "icon": { + "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", + "width": 4000, + "height": 4000, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kanazawa" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2221.ts b/packages/chains/chains/2221.ts new file mode 100644 index 00000000000..2c715958149 --- /dev/null +++ b/packages/chains/chains/2221.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kava EVM Testnet", + "chain": "KAVA", + "rpc": [ + "https://kava-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.testnet.kava.io", + "wss://wevm.testnet.kava.io" + ], + "faucets": [ + "https://faucet.kava.io" + ], + "nativeCurrency": { + "name": "TKava", + "symbol": "TKAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "tkava", + "chainId": 2221, + "networkId": 2221, + "icon": { + "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", + "width": 1186, + "height": 360, + "format": "svg" + }, + "explorers": [ + { + "name": "Kava Testnet Explorer", + "url": "https://explorer.testnet.kava.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", + "width": 1186, + "height": 360, + "format": "svg" + } + } + ], + "testnet": true, + "slug": "kava-evm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2222.ts b/packages/chains/chains/2222.ts new file mode 100644 index 00000000000..8e9f1cb87f2 --- /dev/null +++ b/packages/chains/chains/2222.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kava EVM", + "chain": "KAVA", + "rpc": [ + "https://kava-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.kava.io", + "https://evm2.kava.io", + "wss://wevm.kava.io", + "wss://wevm2.kava.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "kava", + "chainId": 2222, + "networkId": 2222, + "icon": { + "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", + "width": 1186, + "height": 360, + "format": "svg" + }, + "explorers": [ + { + "name": "Kava EVM Explorer", + "url": "https://explorer.kava.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", + "width": 1186, + "height": 360, + "format": "svg" + } + } + ], + "testnet": false, + "slug": "kava-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2223.ts b/packages/chains/chains/2223.ts new file mode 100644 index 00000000000..97d19c9bfd6 --- /dev/null +++ b/packages/chains/chains/2223.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "VChain Mainnet", + "chain": "VChain", + "rpc": [ + "https://vchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bc.vcex.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "VNDT", + "symbol": "VNDT", + "decimals": 18 + }, + "infoURL": "https://bo.vcex.xyz/", + "shortName": "VChain", + "chainId": 2223, + "networkId": 2223, + "explorers": [ + { + "name": "VChain Scan", + "url": "https://scan.vcex.xyz", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "vchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/224168.ts b/packages/chains/chains/224168.ts new file mode 100644 index 00000000000..efedd27355d --- /dev/null +++ b/packages/chains/chains/224168.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taf ECO Chain Mainnet", + "chain": "Taf ECO Chain", + "icon": { + "url": "ipfs://bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://taf-eco-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.tafchain.com/v1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Taf ECO Chain Mainnet", + "symbol": "TAFECO", + "decimals": 18 + }, + "infoURL": "https://www.tafchain.com", + "shortName": "TAFECO", + "chainId": 224168, + "networkId": 224168, + "explorers": [ + { + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "taf-eco-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/22776.ts b/packages/chains/chains/22776.ts new file mode 100644 index 00000000000..13ac47f9625 --- /dev/null +++ b/packages/chains/chains/22776.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MAP Mainnet", + "chain": "MAP", + "icon": { + "url": "ipfs://QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://map.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.maplabs.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAP", + "symbol": "MAP", + "decimals": 18 + }, + "infoURL": "https://maplabs.io", + "shortName": "map", + "chainId": 22776, + "networkId": 22776, + "slip44": 60, + "explorers": [ + { + "name": "mapscan", + "url": "https://mapscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "map" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2300.ts b/packages/chains/chains/2300.ts new file mode 100644 index 00000000000..df1c9302f32 --- /dev/null +++ b/packages/chains/chains/2300.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BOMB Chain", + "chain": "BOMB", + "rpc": [ + "https://bomb-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.bombchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "BOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombchain.com", + "shortName": "bomb", + "chainId": 2300, + "networkId": 2300, + "icon": { + "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [ + { + "name": "bombscan", + "icon": { + "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", + "width": 1024, + "height": 1024, + "format": "png" + }, + "url": "https://bombscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bomb-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23006.ts b/packages/chains/chains/23006.ts new file mode 100644 index 00000000000..24890d3669e --- /dev/null +++ b/packages/chains/chains/23006.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Antofy Testnet", + "chain": "ABN", + "icon": { + "url": "ipfs://QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://antofy-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.antofy.io" + ], + "faucets": [ + "https://faucet.antofy.io" + ], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNt", + "chainId": 23006, + "networkId": 23006, + "explorers": [ + { + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "antofy-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/230315.ts b/packages/chains/chains/230315.ts new file mode 100644 index 00000000000..98f7e3e3e20 --- /dev/null +++ b/packages/chains/chains/230315.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HashKey Chain Testnet", + "chain": "HashKey", + "rpc": [ + "https://hashkey-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.hashkeychain/rpc" + ], + "faucets": [ + "https://testnet.hashkeychain/faucet" + ], + "nativeCurrency": { + "name": "HashKey Token", + "symbol": "tHSK", + "decimals": 18 + }, + "infoURL": "https://www.hashkey.com", + "shortName": "hsktest", + "chainId": 230315, + "networkId": 230315, + "icon": { + "url": "ipfs://QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE", + "width": 1440, + "height": 448, + "format": "png" + }, + "explorers": [ + { + "name": "HashKey Chain Testnet Explorer", + "url": "https://testnet.hashkeyscan.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "hashkey-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2309.ts b/packages/chains/chains/2309.ts new file mode 100644 index 00000000000..1ac0698e94d --- /dev/null +++ b/packages/chains/chains/2309.ts @@ -0,0 +1,20 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Arevia", + "chain": "Arevia", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Arev", + "symbol": "ARÉV", + "decimals": 18 + }, + "infoURL": "", + "shortName": "arevia", + "chainId": 2309, + "networkId": 2309, + "explorers": [], + "status": "incubating", + "testnet": false, + "slug": "arevia" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23118.ts b/packages/chains/chains/23118.ts new file mode 100644 index 00000000000..446d08a8358 --- /dev/null +++ b/packages/chains/chains/23118.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Opside Testnet", + "chain": "Opside", + "rpc": [ + "https://opside-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testrpc.opside.network" + ], + "faucets": [ + "https://faucet.opside.network" + ], + "nativeCurrency": { + "name": "IDE", + "symbol": "IDE", + "decimals": 18 + }, + "infoURL": "https://opside.network", + "shortName": "opside", + "chainId": 23118, + "networkId": 23118, + "icon": { + "url": "ipfs://QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo", + "width": 591, + "height": 591, + "format": "png" + }, + "explorers": [ + { + "name": "opsideInfo", + "url": "https://opside.info", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "opside-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2323.ts b/packages/chains/chains/2323.ts new file mode 100644 index 00000000000..059b5d98d0f --- /dev/null +++ b/packages/chains/chains/2323.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SOMA Network Testnet", + "chain": "SOMA", + "rpc": [ + "https://soma-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://data-testnet-v1.somanetwork.io/" + ], + "faucets": [ + "https://faucet.somanetwork.io" + ], + "nativeCurrency": { + "name": "SMA", + "symbol": "tSMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "sma", + "chainId": 2323, + "networkId": 2323, + "icon": { + "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "SOMA Testnet Explorer", + "icon": { + "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", + "width": 500, + "height": 500, + "format": "png" + }, + "url": "https://testnet.somascan.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "soma-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23294.ts b/packages/chains/chains/23294.ts new file mode 100644 index 00000000000..1ec57f92437 --- /dev/null +++ b/packages/chains/chains/23294.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oasis Sapphire", + "chain": "Sapphire", + "icon": { + "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://oasis-sapphire.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sapphire.oasis.io", + "wss://sapphire.oasis.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire", + "chainId": 23294, + "networkId": 23294, + "explorers": [ + { + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.sapphire.oasis.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "oasis-sapphire" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/23295.ts b/packages/chains/chains/23295.ts new file mode 100644 index 00000000000..f40c468feef --- /dev/null +++ b/packages/chains/chains/23295.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oasis Sapphire Testnet", + "chain": "Sapphire", + "icon": { + "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://oasis-sapphire-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.sapphire.oasis.dev", + "wss://testnet.sapphire.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire-testnet", + "chainId": 23295, + "networkId": 23295, + "explorers": [ + { + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://testnet.explorer.sapphire.oasis.dev", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "oasis-sapphire-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2330.ts b/packages/chains/chains/2330.ts new file mode 100644 index 00000000000..b7a9e273152 --- /dev/null +++ b/packages/chains/chains/2330.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Altcoinchain", + "chain": "mainnet", + "rpc": [ + "https://altcoinchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc0.altcoinchain.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Altcoin", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://altcoinchain.org", + "shortName": "alt", + "chainId": 2330, + "networkId": 2330, + "icon": { + "url": "ipfs://QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4", + "width": 720, + "height": 720, + "format": "png" + }, + "status": "active", + "explorers": [ + { + "name": "expedition", + "url": "http://expedition.altcoinchain.org", + "icon": { + "url": "ipfs://QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4", + "width": 720, + "height": 720, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "altcoinchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2332.ts b/packages/chains/chains/2332.ts new file mode 100644 index 00000000000..f57718b704a --- /dev/null +++ b/packages/chains/chains/2332.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SOMA Network Mainnet", + "chain": "SOMA", + "rpc": [ + "https://soma-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://data-mainnet-v1.somanetwork.io/" + ], + "faucets": [ + "https://airdrop.somanetwork.io" + ], + "nativeCurrency": { + "name": "Soma Native Token", + "symbol": "SMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "smam", + "chainId": 2332, + "networkId": 2332, + "icon": { + "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", + "width": 500, + "height": 500, + "format": "png" + }, + "status": "incubating", + "explorers": [ + { + "name": "SOMA Explorer Mainnet", + "icon": { + "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", + "width": 500, + "height": 500, + "format": "png" + }, + "url": "https://somascan.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "soma-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/234666.ts b/packages/chains/chains/234666.ts new file mode 100644 index 00000000000..57d18bd6014 --- /dev/null +++ b/packages/chains/chains/234666.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Haymo Testnet", + "chain": "tHYM", + "rpc": [ + "https://haymo-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet1.haymo.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAYMO", + "symbol": "HYM", + "decimals": 18 + }, + "infoURL": "https://haymoswap.web.app/", + "shortName": "hym", + "chainId": 234666, + "networkId": 234666, + "testnet": true, + "slug": "haymo-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2358.ts b/packages/chains/chains/2358.ts new file mode 100644 index 00000000000..7937fd81c78 --- /dev/null +++ b/packages/chains/chains/2358.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kroma Sepolia", + "title": "Kroma Testnet Sepolia", + "chainId": 2358, + "shortName": "kroma-sepolia", + "chain": "ETH", + "networkId": 2358, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://kroma-sepolia.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.sepolia.kroma.network" + ], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": { + "url": "ipfs://QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho", + "width": 320, + "height": 320, + "format": "svg" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": { + "url": "ipfs://QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho", + "width": 320, + "height": 320, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + }, + "testnet": true, + "slug": "kroma-sepolia" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2399.ts b/packages/chains/chains/2399.ts new file mode 100644 index 00000000000..efec3e72341 --- /dev/null +++ b/packages/chains/chains/2399.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BOMB Chain Testnet", + "chain": "BOMB", + "rpc": [ + "https://bomb-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bombchain-testnet.ankr.com/bas_full_rpc_1" + ], + "faucets": [ + "https://faucet.bombchain-testnet.ankr.com/" + ], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "tBOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombmoney.com", + "shortName": "bombt", + "chainId": 2399, + "networkId": 2399, + "icon": { + "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [ + { + "name": "bombscan-testnet", + "icon": { + "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", + "width": 1024, + "height": 1024, + "format": "png" + }, + "url": "https://explorer.bombchain-testnet.ankr.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bomb-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2400.ts b/packages/chains/chains/2400.ts new file mode 100644 index 00000000000..232644f30d7 --- /dev/null +++ b/packages/chains/chains/2400.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TCG Verse Mainnet", + "chain": "TCG Verse", + "icon": { + "url": "ipfs://bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe", + "width": 350, + "height": 350, + "format": "png" + }, + "rpc": [ + "https://tcg-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tcgverse.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://tcgverse.xyz/", + "shortName": "TCGV", + "chainId": 2400, + "networkId": 2400, + "explorers": [ + { + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + }, + "testnet": false, + "slug": "tcg-verse" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2415.ts b/packages/chains/chains/2415.ts new file mode 100644 index 00000000000..0247e5b7efb --- /dev/null +++ b/packages/chains/chains/2415.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "XODEX", + "chain": "XODEX", + "rpc": [ + "https://xodex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.xo-dex.com/rpc", + "https://xo-dex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "XODEX Native Token", + "symbol": "XODEX", + "decimals": 18 + }, + "infoURL": "https://xo-dex.com", + "shortName": "xodex", + "chainId": 2415, + "networkId": 10, + "icon": { + "url": "ipfs://QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "XODEX Explorer", + "url": "https://explorer.xo-dex.com", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW", + "width": 256, + "height": 256, + "format": "png" + } + } + ], + "testnet": false, + "slug": "xodex" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/24484.ts b/packages/chains/chains/24484.ts new file mode 100644 index 00000000000..27a3b17e710 --- /dev/null +++ b/packages/chains/chains/24484.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Webchain", + "chain": "WEB", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Webchain Ether", + "symbol": "WEB", + "decimals": 18 + }, + "infoURL": "https://webchain.network", + "shortName": "web", + "chainId": 24484, + "networkId": 37129, + "slip44": 227, + "testnet": false, + "slug": "webchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022926.ts b/packages/chains/chains/245022926.ts new file mode 100644 index 00000000000..7868b31a78b --- /dev/null +++ b/packages/chains/chains/245022926.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Neon EVM DevNet", + "chain": "Solana", + "rpc": [ + "https://neon-evm-devnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet.neonevm.org" + ], + "faucets": [ + "https://neonfaucet.org" + ], + "icon": { + "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", + "width": 512, + "height": 512, + "format": "png" + }, + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org", + "shortName": "neonevm-devnet", + "chainId": 245022926, + "networkId": 245022926, + "explorers": [ + { + "name": "native", + "url": "https://devnet.explorer.neon-labs.org", + "standard": "EIP3091" + }, + { + "name": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "neon-evm-devnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022934.ts b/packages/chains/chains/245022934.ts new file mode 100644 index 00000000000..f6502b69645 --- /dev/null +++ b/packages/chains/chains/245022934.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Neon EVM MainNet", + "chain": "Solana", + "rpc": [], + "faucets": [], + "icon": { + "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", + "width": 512, + "height": 512, + "format": "png" + }, + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neonevm.org", + "shortName": "neonevm-mainnet", + "chainId": 245022934, + "networkId": 245022934, + "explorers": [ + { + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" + }, + { + "name": "native", + "url": "https://neon.blockscout.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "neon-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/245022940.ts b/packages/chains/chains/245022940.ts new file mode 100644 index 00000000000..8a7ec68de9c --- /dev/null +++ b/packages/chains/chains/245022940.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Neon EVM TestNet", + "chain": "Solana", + "rpc": [ + "https://neon-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.neonevm.org" + ], + "faucets": [], + "icon": { + "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", + "width": 512, + "height": 512, + "format": "png" + }, + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org", + "shortName": "neonevm-testnet", + "chainId": 245022940, + "networkId": 245022940, + "explorers": [ + { + "name": "native", + "url": "https://testnet.explorer.neon-labs.org", + "standard": "EIP3091" + }, + { + "name": "neonscan", + "url": "https://testnet.neonscan.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "neon-evm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/246529.ts b/packages/chains/chains/246529.ts new file mode 100644 index 00000000000..3bd57951da4 --- /dev/null +++ b/packages/chains/chains/246529.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ARTIS sigma1", + "chain": "ARTIS", + "rpc": [ + "https://artis-sigma1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.sigma1.artis.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ARTIS sigma1 Ether", + "symbol": "ATS", + "decimals": 18 + }, + "infoURL": "https://artis.eco", + "shortName": "ats", + "chainId": 246529, + "networkId": 246529, + "slip44": 246529, + "testnet": false, + "slug": "artis-sigma1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/246785.ts b/packages/chains/chains/246785.ts new file mode 100644 index 00000000000..f1795255f1e --- /dev/null +++ b/packages/chains/chains/246785.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ARTIS Testnet tau1", + "chain": "ARTIS", + "rpc": [ + "https://artis-testnet-tau1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tau1.artis.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ARTIS tau1 Ether", + "symbol": "tATS", + "decimals": 18 + }, + "infoURL": "https://artis.network", + "shortName": "atstau", + "chainId": 246785, + "networkId": 246785, + "testnet": true, + "slug": "artis-testnet-tau1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/247253.ts b/packages/chains/chains/247253.ts new file mode 100644 index 00000000000..f1b7f33225f --- /dev/null +++ b/packages/chains/chains/247253.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Saakuru Testnet", + "chain": "Saakuru", + "icon": { + "url": "ipfs://QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://saakuru-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.saakuru.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru-testnet", + "chainId": 247253, + "networkId": 247253, + "explorers": [ + { + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "saakuru-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/24734.ts b/packages/chains/chains/24734.ts new file mode 100644 index 00000000000..bdd4676f41e --- /dev/null +++ b/packages/chains/chains/24734.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MintMe.com Coin", + "chain": "MINTME", + "rpc": [ + "https://mintme-com-coin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1.mintme.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MintMe.com Coin", + "symbol": "MINTME", + "decimals": 18 + }, + "infoURL": "https://www.mintme.com", + "shortName": "mintme", + "chainId": 24734, + "networkId": 37480, + "testnet": false, + "slug": "mintme-com-coin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2559.ts b/packages/chains/chains/2559.ts new file mode 100644 index 00000000000..ad0ca0a5a0f --- /dev/null +++ b/packages/chains/chains/2559.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kortho Mainnet", + "chain": "Kortho Chain", + "rpc": [ + "https://kortho.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://www.kortho-chain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "KorthoChain", + "symbol": "KTO", + "decimals": 11 + }, + "infoURL": "https://www.kortho.io/", + "shortName": "ktoc", + "chainId": 2559, + "networkId": 2559, + "testnet": false, + "slug": "kortho" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/256256.ts b/packages/chains/chains/256256.ts new file mode 100644 index 00000000000..b08be8c45ce --- /dev/null +++ b/packages/chains/chains/256256.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CMP-Mainnet", + "chain": "CMP", + "rpc": [ + "https://cmp.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.block.caduceus.foundation", + "wss://mainnet.block.caduceus.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Caduceus Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp-mainnet", + "chainId": 256256, + "networkId": 256256, + "explorers": [ + { + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } + ], + "testnet": false, + "slug": "cmp" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2569.ts b/packages/chains/chains/2569.ts new file mode 100644 index 00000000000..0e01362ffdc --- /dev/null +++ b/packages/chains/chains/2569.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TechPay Mainnet", + "chain": "TPC", + "rpc": [ + "https://techpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.techpay.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TechPay", + "symbol": "TPC", + "decimals": 18 + }, + "infoURL": "https://techpay.io/", + "shortName": "tpc", + "chainId": 2569, + "networkId": 2569, + "icon": { + "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", + "width": 578, + "height": 701, + "format": "svg" + }, + "explorers": [ + { + "name": "tpcscan", + "url": "https://tpcscan.com", + "icon": { + "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", + "width": 578, + "height": 701, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "techpay" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/25888.ts b/packages/chains/chains/25888.ts new file mode 100644 index 00000000000..cd33b48c9d2 --- /dev/null +++ b/packages/chains/chains/25888.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Hammer Chain Mainnet", + "chain": "HammerChain", + "rpc": [ + "https://hammer-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://www.hammerchain.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "GOLDT", + "symbol": "GOLDT", + "decimals": 18 + }, + "infoURL": "https://www.hammerchain.io", + "shortName": "GOLDT", + "chainId": 25888, + "networkId": 25888, + "explorers": [ + { + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "hammer-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/25925.ts b/packages/chains/chains/25925.ts new file mode 100644 index 00000000000..c0fb7388716 --- /dev/null +++ b/packages/chains/chains/25925.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitkub Chain Testnet", + "chain": "BKC", + "icon": { + "url": "ipfs://QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT", + "width": 1000, + "height": 1000, + "format": "png" + }, + "rpc": [ + "https://bitkub-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.bitkubchain.io", + "wss://wss-testnet.bitkubchain.io" + ], + "faucets": [ + "https://faucet.bitkubchain.com" + ], + "nativeCurrency": { + "name": "Bitkub Coin", + "symbol": "tKUB", + "decimals": 18 + }, + "infoURL": "https://www.bitkubchain.com/", + "shortName": "bkct", + "chainId": 25925, + "networkId": 25925, + "explorers": [ + { + "name": "bkcscan-testnet", + "url": "https://testnet.bkcscan.com", + "standard": "none", + "icon": { + "url": "ipfs://QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT", + "width": 1000, + "height": 1000, + "format": "png" + } + } + ], + "testnet": true, + "slug": "bitkub-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26026.ts b/packages/chains/chains/26026.ts new file mode 100644 index 00000000000..aa1955a86f7 --- /dev/null +++ b/packages/chains/chains/26026.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ferrum Testnet", + "chain": "tFRM", + "rpc": [ + "https://ferrum-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://testnet.dev.svcs.ferrumnetwork.io:9933" + ], + "faucets": [ + "https://testnet.faucet.ferrumnetwork.io" + ], + "nativeCurrency": { + "name": "Ferrum", + "symbol": "tFRM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://ferrum.network", + "shortName": "frm", + "chainId": 26026, + "networkId": 26026, + "explorers": [ + { + "name": "polkadotjs", + "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", + "standard": "none" + } + ], + "testnet": true, + "slug": "ferrum-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2606.ts b/packages/chains/chains/2606.ts new file mode 100644 index 00000000000..98b7257bbf0 --- /dev/null +++ b/packages/chains/chains/2606.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PoCRNet", + "title": "Proof of Climate awaReness mainnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://pocrnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://pocrnet.westeurope.cloudapp.azure.com/http", + "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/pocrnet", + "shortName": "pocrnet", + "chainId": 2606, + "networkId": 2606, + "icon": { + "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", + "width": 334, + "height": 360, + "format": "png" + }, + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/pocrnet", + "icon": { + "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", + "width": 334, + "height": 360, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "pocrnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2611.ts b/packages/chains/chains/2611.ts new file mode 100644 index 00000000000..63cb42083e0 --- /dev/null +++ b/packages/chains/chains/2611.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Redlight Chain Mainnet", + "chain": "REDLC", + "rpc": [ + "https://redlight-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed2.redlightscan.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "Redlight Coin", + "symbol": "REDLC", + "decimals": 18 + }, + "infoURL": "https://redlight.finance/", + "shortName": "REDLC", + "chainId": 2611, + "networkId": 2611, + "explorers": [ + { + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "redlight-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2612.ts b/packages/chains/chains/2612.ts new file mode 100644 index 00000000000..904ca7d8c31 --- /dev/null +++ b/packages/chains/chains/2612.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EZChain C-Chain Mainnet", + "chain": "EZC", + "rpc": [ + "https://ezchain-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.ezchain.com/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "infoURL": "https://ezchain.com", + "shortName": "EZChain", + "chainId": 2612, + "networkId": 2612, + "icon": { + "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", + "width": 146, + "height": 48, + "format": "png" + }, + "explorers": [ + { + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ezchain-c-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2613.ts b/packages/chains/chains/2613.ts new file mode 100644 index 00000000000..bd93404be2d --- /dev/null +++ b/packages/chains/chains/2613.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EZChain C-Chain Testnet", + "chain": "EZC", + "rpc": [ + "https://ezchain-c-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-api.ezchain.com/ext/bc/C/rpc" + ], + "faucets": [ + "https://testnet-faucet.ezchain.com" + ], + "nativeCurrency": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "infoURL": "https://ezchain.com", + "shortName": "Fuji-EZChain", + "chainId": 2613, + "networkId": 2613, + "icon": { + "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", + "width": 146, + "height": 48, + "format": "png" + }, + "explorers": [ + { + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ezchain-c-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2625.ts b/packages/chains/chains/2625.ts new file mode 100644 index 00000000000..61793621238 --- /dev/null +++ b/packages/chains/chains/2625.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "WhiteBIT Network Testnet", + "chain": "WBT", + "rpc": [ + "https://whitebit-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.whitebit.network" + ], + "faucets": [ + "https://explorer.whitebit.network/testnet/faucet" + ], + "nativeCurrency": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "infoURL": "https://whitebit.com/wbt", + "shortName": "twbt", + "chainId": 2625, + "networkId": 2625, + "icon": { + "url": "ipfs://QmQqAAn2F98TH5ouRyvReKxQdaGKjE7WJQPEPW6mFFVXUT", + "width": 32, + "height": 32, + "format": "svg" + }, + "explorers": [ + { + "name": "wb-explorer-testnet", + "url": "https://explorer.whitebit.network/testnet", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "whitebit-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26600.ts b/packages/chains/chains/26600.ts new file mode 100644 index 00000000000..05d3edbe902 --- /dev/null +++ b/packages/chains/chains/26600.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Hertz Network Mainnet", + "chain": "HTZ", + "rpc": [ + "https://hertz-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.hertzscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hertz", + "symbol": "HTZ", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.hertz-network.com", + "shortName": "HTZ", + "chainId": 26600, + "networkId": 26600, + "icon": { + "url": "ipfs://Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG", + "width": 162, + "height": 129, + "format": "png" + }, + "explorers": [ + { + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": { + "url": "ipfs://Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG", + "width": 162, + "height": 129, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "hertz-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/266256.ts b/packages/chains/chains/266256.ts new file mode 100644 index 00000000000..c6466a6b37f --- /dev/null +++ b/packages/chains/chains/266256.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gear Zero Network Testnet", + "chain": "GearZero", + "rpc": [ + "https://gear-zero-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://gzn-test.linksme.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/testnet", + "shortName": "gz-testnet", + "chainId": 266256, + "networkId": 266256, + "slip44": 266256, + "explorers": [], + "testnet": true, + "slug": "gear-zero-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/26863.ts b/packages/chains/chains/26863.ts new file mode 100644 index 00000000000..e1bc01cb8c8 --- /dev/null +++ b/packages/chains/chains/26863.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OasisChain Mainnet", + "chain": "OasisChain", + "rpc": [ + "https://oasischain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.oasischain.io", + "https://rpc2.oasischain.io", + "https://rpc3.oasischain.io" + ], + "faucets": [ + "http://faucet.oasischain.io" + ], + "nativeCurrency": { + "name": "OAC", + "symbol": "OAC", + "decimals": 18 + }, + "infoURL": "https://scan.oasischain.io", + "shortName": "OAC", + "chainId": 26863, + "networkId": 26863, + "explorers": [ + { + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "oasischain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/27082017.ts b/packages/chains/chains/27082017.ts new file mode 100644 index 00000000000..42446109cad --- /dev/null +++ b/packages/chains/chains/27082017.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Excoincial Chain Volta-Testnet", + "chain": "TEXL", + "icon": { + "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://excoincial-chain-volta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.exlscan.com" + ], + "faucets": [ + "https://faucet.exlscan.com" + ], + "nativeCurrency": { + "name": "TExlcoin", + "symbol": "TEXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exlvolta", + "chainId": 27082017, + "networkId": 27082017, + "explorers": [ + { + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": { + "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "excoincial-chain-volta-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/27082022.ts b/packages/chains/chains/27082022.ts new file mode 100644 index 00000000000..2e22fd2e6d8 --- /dev/null +++ b/packages/chains/chains/27082022.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Excoincial Chain Mainnet", + "chain": "EXL", + "icon": { + "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://excoincial-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.exlscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Exlcoin", + "symbol": "EXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exl", + "chainId": 27082022, + "networkId": 27082022, + "explorers": [ + { + "name": "exlscan", + "url": "https://exlscan.com", + "icon": { + "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "excoincial-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/271271.ts b/packages/chains/chains/271271.ts new file mode 100644 index 00000000000..9c68d0d55b8 --- /dev/null +++ b/packages/chains/chains/271271.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EgonCoin Testnet", + "chain": "EGON", + "icon": { + "url": "ipfs://QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://egoncoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpctest.egcscan.com" + ], + "faucets": [ + "https://faucet.egcscan.com" + ], + "nativeCurrency": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "infoURL": "https://egcscan.com", + "shortName": "EGONt", + "chainId": 271271, + "networkId": 271271, + "explorers": [ + { + "name": "EgonCoin Testnet", + "url": "https://testnet.egcscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "egoncoin-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/278611351.ts b/packages/chains/chains/278611351.ts new file mode 100644 index 00000000000..85967ba26b2 --- /dev/null +++ b/packages/chains/chains/278611351.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Razor Skale Chain", + "chain": "Razor Schain", + "icon": { + "url": "ipfs://QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK", + "width": 900, + "height": 900, + "format": "png" + }, + "rpc": [ + "https://razor-skale-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" + ], + "faucets": [ + "https://faucet.razorscan.io/" + ], + "nativeCurrency": { + "name": "sFuel", + "symbol": "SFUEL", + "decimals": 18 + }, + "infoURL": "https://razor.network", + "shortName": "razor", + "chainId": 278611351, + "networkId": 278611351, + "explorers": [ + { + "name": "turbulent-unique-scheat", + "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "razor-skale-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/281121.ts b/packages/chains/chains/281121.ts new file mode 100644 index 00000000000..5e10af695e2 --- /dev/null +++ b/packages/chains/chains/281121.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Social Smart Chain Mainnet", + "chain": "SoChain", + "rpc": [ + "https://social-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://socialsmartchain.digitalnext.business" + ], + "faucets": [], + "nativeCurrency": { + "name": "SoChain", + "symbol": "$OC", + "decimals": 18 + }, + "infoURL": "https://digitalnext.business/SocialSmartChain", + "shortName": "SoChain", + "chainId": 281121, + "networkId": 281121, + "explorers": [], + "testnet": false, + "slug": "social-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/28528.ts b/packages/chains/chains/28528.ts new file mode 100644 index 00000000000..d586b6a4453 --- /dev/null +++ b/packages/chains/chains/28528.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Optimism Bedrock (Goerli Alpha Testnet)", + "chain": "ETH", + "rpc": [ + "https://optimism-bedrock-goerli-alpha-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://alpha-1-replica-0.bedrock-goerli.optimism.io", + "https://alpha-1-replica-1.bedrock-goerli.optimism.io", + "https://alpha-1-replica-2.bedrock-goerli.optimism.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://community.optimism.io/docs/developers/bedrock", + "shortName": "obgor", + "chainId": 28528, + "networkId": 28528, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "optimism-bedrock-goerli-alpha-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2888.ts b/packages/chains/chains/2888.ts new file mode 100644 index 00000000000..35ab862cca5 --- /dev/null +++ b/packages/chains/chains/2888.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Boba Network Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://boba-network-goerli-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://goerli.boba.network/", + "wss://wss.goerli.boba.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaGoerli", + "chainId": 2888, + "networkId": 2888, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "testnet": true, + "slug": "boba-network-goerli-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/28945486.ts b/packages/chains/chains/28945486.ts new file mode 100644 index 00000000000..a5e3f3568e9 --- /dev/null +++ b/packages/chains/chains/28945486.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Auxilium Network Mainnet", + "chain": "AUX", + "rpc": [ + "https://auxilium-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.auxilium.global" + ], + "faucets": [], + "nativeCurrency": { + "name": "Auxilium coin", + "symbol": "AUX", + "decimals": 18 + }, + "infoURL": "https://auxilium.global", + "shortName": "auxi", + "chainId": 28945486, + "networkId": 28945486, + "slip44": 344, + "testnet": false, + "slug": "auxilium-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/29032022.ts b/packages/chains/chains/29032022.ts new file mode 100644 index 00000000000..bb2280d816b --- /dev/null +++ b/packages/chains/chains/29032022.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Flachain Mainnet", + "chain": "FLX", + "icon": { + "url": "ipfs://bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://flachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://flachain.flaexchange.top/" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Flacoin", + "symbol": "FLA", + "decimals": 18 + }, + "infoURL": "https://www.flaexchange.top", + "shortName": "fla", + "chainId": 29032022, + "networkId": 29032022, + "explorers": [ + { + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "flachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/2999.ts b/packages/chains/chains/2999.ts new file mode 100644 index 00000000000..108adbbad85 --- /dev/null +++ b/packages/chains/chains/2999.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BitYuan Mainnet", + "chain": "BTY", + "rpc": [ + "https://bityuan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.bityuan.com/eth" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTY", + "symbol": "BTY", + "decimals": 18 + }, + "infoURL": "https://www.bityuan.com", + "shortName": "bty", + "chainId": 2999, + "networkId": 2999, + "icon": { + "url": "ipfs://QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt", + "width": 91, + "height": 24, + "format": "png" + }, + "explorers": [ + { + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "bityuan" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3000.ts b/packages/chains/chains/3000.ts new file mode 100644 index 00000000000..5a873553b9f --- /dev/null +++ b/packages/chains/chains/3000.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CENNZnet Rata", + "chain": "CENNZnet", + "rpc": [], + "faucets": [ + "https://app-faucet.centrality.me" + ], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-r", + "chainId": 3000, + "networkId": 3000, + "icon": { + "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", + "width": 112, + "height": 112, + "format": "svg" + }, + "testnet": false, + "slug": "cennznet-rata" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3001.ts b/packages/chains/chains/3001.ts new file mode 100644 index 00000000000..2527182cb1f --- /dev/null +++ b/packages/chains/chains/3001.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CENNZnet Nikau", + "chain": "CENNZnet", + "rpc": [ + "https://cennznet-nikau.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://nikau.centrality.me/public" + ], + "faucets": [ + "https://app-faucet.centrality.me" + ], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-n", + "chainId": 3001, + "networkId": 3001, + "icon": { + "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", + "width": 112, + "height": 112, + "format": "svg" + }, + "explorers": [ + { + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" + } + ], + "testnet": false, + "slug": "cennznet-nikau" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3003.ts b/packages/chains/chains/3003.ts new file mode 100644 index 00000000000..77e57ed2ff8 --- /dev/null +++ b/packages/chains/chains/3003.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Canxium Mainnet", + "chain": "CAU", + "rpc": [ + "https://canxium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.canxium.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "infoURL": "https://canxium.org", + "shortName": "cau", + "chainId": 3003, + "networkId": 3003, + "explorers": [ + { + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "canxium" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/30067.ts b/packages/chains/chains/30067.ts new file mode 100644 index 00000000000..62bcdf117a5 --- /dev/null +++ b/packages/chains/chains/30067.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Piece testnet", + "chain": "PieceNetwork", + "icon": { + "url": "ipfs://QmWAU39z1kcYshAqkENRH8qUjfR5CJehCxA4GiC33p3HpH", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://piece-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc0.piecenetwork.com" + ], + "faucets": [ + "https://piecenetwork.com/faucet" + ], + "nativeCurrency": { + "name": "ECE", + "symbol": "ECE", + "decimals": 18 + }, + "infoURL": "https://piecenetwork.com", + "shortName": "Piece", + "chainId": 30067, + "networkId": 30067, + "explorers": [ + { + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "piece-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3011.ts b/packages/chains/chains/3011.ts new file mode 100644 index 00000000000..9ad61fc2846 --- /dev/null +++ b/packages/chains/chains/3011.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PLAYA3ULL GAMES", + "chain": "3ULL", + "rpc": [ + "https://playa3ull-games.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.mainnet.playa3ull.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "3ULL", + "symbol": "3ULL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://playa3ull.games", + "shortName": "3ULL", + "chainId": 3011, + "networkId": 3011, + "icon": { + "url": "ipfs://bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4", + "width": 512, + "height": 443, + "format": "png" + }, + "explorers": [ + { + "name": "PLAYA3ULL GAMES Explorer", + "url": "https://3011.routescan.io", + "icon": { + "url": "ipfs://bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4", + "width": 512, + "height": 443, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "playa3ull-games" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3031.ts b/packages/chains/chains/3031.ts new file mode 100644 index 00000000000..91526a14a34 --- /dev/null +++ b/packages/chains/chains/3031.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Orlando Chain", + "chain": "ORL", + "rpc": [ + "https://orlando-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.orlchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Orlando", + "symbol": "ORL", + "decimals": 18 + }, + "infoURL": "https://orlchain.com", + "shortName": "ORL", + "chainId": 3031, + "networkId": 3031, + "icon": { + "url": "ipfs://QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", + "width": 512, + "height": 528, + "format": "png" + }, + "explorers": [ + { + "name": "Orlando (ORL) Explorer", + "url": "https://orlscan.com", + "icon": { + "url": "ipfs://QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", + "width": 512, + "height": 528, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "orlando-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3068.ts b/packages/chains/chains/3068.ts new file mode 100644 index 00000000000..7ba8421df1d --- /dev/null +++ b/packages/chains/chains/3068.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bifrost Mainnet", + "title": "The Bifrost Mainnet network", + "chain": "BFC", + "rpc": [ + "https://bifrost.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://public-01.mainnet.thebifrost.io/rpc", + "https://public-02.mainnet.thebifrost.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://thebifrost.io", + "shortName": "bfc", + "chainId": 3068, + "networkId": 3068, + "icon": { + "url": "ipfs://QmcHvn2Wq91ULyEH5s3uHjosX285hUgyJHwggFJUd3L5uh", + "width": 128, + "height": 128, + "format": "png" + }, + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.thebifrost.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bifrost" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31102.ts b/packages/chains/chains/31102.ts new file mode 100644 index 00000000000..c0df3d0b02a --- /dev/null +++ b/packages/chains/chains/31102.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ethersocial Network", + "chain": "ESN", + "rpc": [ + "https://ethersocial-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.esn.gonspool.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethersocial Network Ether", + "symbol": "ESN", + "decimals": 18 + }, + "infoURL": "https://ethersocial.org", + "shortName": "esn", + "chainId": 31102, + "networkId": 1, + "slip44": 31102, + "testnet": false, + "slug": "ethersocial-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/311752642.ts b/packages/chains/chains/311752642.ts new file mode 100644 index 00000000000..5ea6baf7a39 --- /dev/null +++ b/packages/chains/chains/311752642.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OneLedger Mainnet", + "chain": "OLT", + "icon": { + "url": "ipfs://QmRhqq4Gp8G9w27ND3LeFW49o5PxcxrbJsqHbpBFtzEMfC", + "width": 225, + "height": 225, + "format": "png" + }, + "rpc": [ + "https://oneledger.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.oneledger.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "infoURL": "https://oneledger.io", + "shortName": "oneledger", + "chainId": 311752642, + "networkId": 311752642, + "explorers": [ + { + "name": "OneLedger Block Explorer", + "url": "https://mainnet-explorer.oneledger.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "oneledger" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31223.ts b/packages/chains/chains/31223.ts new file mode 100644 index 00000000000..de9b2b63930 --- /dev/null +++ b/packages/chains/chains/31223.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CloudTx Mainnet", + "chain": "CLD", + "icon": { + "url": "ipfs://QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3", + "width": 713, + "height": 830, + "format": "png" + }, + "rpc": [ + "https://cloudtx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.cloudtx.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance", + "shortName": "CLDTX", + "chainId": 31223, + "networkId": 31223, + "explorers": [ + { + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "cloudtx" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31224.ts b/packages/chains/chains/31224.ts new file mode 100644 index 00000000000..72d3c094c8c --- /dev/null +++ b/packages/chains/chains/31224.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CloudTx Testnet", + "chain": "CloudTx", + "icon": { + "url": "ipfs://QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3", + "width": 713, + "height": 830, + "format": "png" + }, + "rpc": [ + "https://cloudtx-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.cloudtx.finance" + ], + "faucets": [ + "https://faucet.cloudtx.finance" + ], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance/", + "shortName": "CLD", + "chainId": 31224, + "networkId": 31224, + "explorers": [ + { + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "cloudtx-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3125659152.ts b/packages/chains/chains/3125659152.ts new file mode 100644 index 00000000000..647ee5bea8d --- /dev/null +++ b/packages/chains/chains/3125659152.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Pirl", + "chain": "PIRL", + "rpc": [ + "https://pirl.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://wallrpc.pirl.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pirl Ether", + "symbol": "PIRL", + "decimals": 18 + }, + "infoURL": "https://pirl.io", + "shortName": "pirl", + "chainId": 3125659152, + "networkId": 3125659152, + "slip44": 164, + "testnet": false, + "slug": "pirl" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31337.ts b/packages/chains/chains/31337.ts new file mode 100644 index 00000000000..dcd73488273 --- /dev/null +++ b/packages/chains/chains/31337.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "GoChain Testnet", + "chain": "GO", + "rpc": [ + "https://gochain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.gochain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoChain Coin", + "symbol": "GO", + "decimals": 18 + }, + "infoURL": "https://gochain.io", + "shortName": "got", + "chainId": 31337, + "networkId": 31337, + "slip44": 6060, + "explorers": [ + { + "name": "GoChain Testnet Explorer", + "url": "https://testnet-explorer.gochain.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "gochain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/314159.ts b/packages/chains/chains/314159.ts new file mode 100644 index 00000000000..d7c05ac6873 --- /dev/null +++ b/packages/chains/chains/314159.ts @@ -0,0 +1,60 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Filecoin - Calibration testnet", + "chain": "FIL", + "icon": { + "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", + "width": 1000, + "height": 1000, + "format": "png" + }, + "rpc": [ + "https://filecoin-calibration-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.calibration.node.glif.io/rpc/v1", + "https://rpc.ankr.com/filecoin_testnet", + "https://filecoin-calibration.chainstacklabs.com/rpc/v1", + "https://filecoin-calibration.chainup.net/rpc/v1" + ], + "faucets": [ + "https://faucet.calibration.fildev.network/" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-calibration", + "chainId": 314159, + "networkId": 314159, + "slip44": 1, + "explorers": [ + { + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" + }, + { + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" + }, + { + "name": "Filfox - Calibration", + "url": "https://calibration.filfox.info", + "standard": "none" + }, + { + "name": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + } + ], + "testnet": true, + "slug": "filecoin-calibration-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3141592.ts b/packages/chains/chains/3141592.ts new file mode 100644 index 00000000000..73a41b6b0ad --- /dev/null +++ b/packages/chains/chains/3141592.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Filecoin - Butterfly testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": [ + "https://faucet.butterfly.fildev.network" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-butterfly", + "icon": { + "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", + "width": 1000, + "height": 1000, + "format": "png" + }, + "chainId": 3141592, + "networkId": 3141592, + "slip44": 1, + "explorers": [], + "testnet": true, + "slug": "filecoin-butterfly-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/31415926.ts b/packages/chains/chains/31415926.ts new file mode 100644 index 00000000000..0becea536b6 --- /dev/null +++ b/packages/chains/chains/31415926.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Filecoin - Local testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-local", + "icon": { + "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", + "width": 1000, + "height": 1000, + "format": "png" + }, + "chainId": 31415926, + "networkId": 31415926, + "slip44": 1, + "explorers": [], + "testnet": true, + "slug": "filecoin-local-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32520.ts b/packages/chains/chains/32520.ts new file mode 100644 index 00000000000..1c25cd24204 --- /dev/null +++ b/packages/chains/chains/32520.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitgert Mainnet", + "chain": "Brise", + "rpc": [ + "https://bitgert.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.icecreamswap.com", + "https://mainnet-rpc.brisescan.com", + "https://chainrpc.com", + "https://serverrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitrise Token", + "symbol": "Brise", + "decimals": 18 + }, + "infoURL": "https://bitgert.com/", + "shortName": "Brise", + "chainId": 32520, + "networkId": 32520, + "icon": { + "url": "ipfs://QmY3vKe1rG9AyHSGH1ouP3ER3EVUZRtRrFbFZEfEpMSd4V", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": { + "url": "ipfs://QmY3vKe1rG9AyHSGH1ouP3ER3EVUZRtRrFbFZEfEpMSd4V", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bitgert" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32659.ts b/packages/chains/chains/32659.ts new file mode 100644 index 00000000000..c0c460181dc --- /dev/null +++ b/packages/chains/chains/32659.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fusion Mainnet", + "chain": "FSN", + "icon": { + "url": "ipfs://QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth", + "width": 31, + "height": 31, + "format": "svg" + }, + "rpc": [ + "https://fusion.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.fusionnetwork.io", + "wss://mainnet.fusionnetwork.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Fusion", + "symbol": "FSN", + "decimals": 18 + }, + "infoURL": "https://fusion.org", + "shortName": "fsn", + "chainId": 32659, + "networkId": 32659, + "slip44": 288, + "explorers": [ + { + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": { + "url": "ipfs://QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd", + "width": 48, + "height": 51, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "fusion" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/32769.ts b/packages/chains/chains/32769.ts new file mode 100644 index 00000000000..f9c8dd50ce3 --- /dev/null +++ b/packages/chains/chains/32769.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zilliqa EVM", + "chain": "ZIL", + "rpc": [ + "https://zilliqa-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.zilliqa.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil", + "chainId": 32769, + "networkId": 32769, + "icon": { + "url": "ipfs://QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp", + "width": 2048, + "height": 2048, + "format": "png" + }, + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "zilliqa-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3306.ts b/packages/chains/chains/3306.ts new file mode 100644 index 00000000000..6981fcd7cf0 --- /dev/null +++ b/packages/chains/chains/3306.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Debounce Subnet Testnet", + "chain": "Debounce Network", + "icon": { + "url": "ipfs://bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://debounce-subnet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dev-rpc.debounce.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Debounce Network", + "symbol": "DB", + "decimals": 18 + }, + "infoURL": "https://debounce.network", + "shortName": "debounce-devnet", + "chainId": 3306, + "networkId": 3306, + "explorers": [ + { + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "debounce-subnet-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/330844.ts b/packages/chains/chains/330844.ts new file mode 100644 index 00000000000..6b9a7601a59 --- /dev/null +++ b/packages/chains/chains/330844.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TTcoin Smart Chain Mainnet", + "chain": "TSC", + "icon": { + "url": "ipfs://QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://ttcoin-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.tscscan.com" + ], + "faucets": [ + "https://faucet.tscscan.com" + ], + "nativeCurrency": { + "name": "TTcoin", + "symbol": "TC", + "decimals": 18 + }, + "infoURL": "https://ttcoin.info/", + "shortName": "tc", + "chainId": 330844, + "networkId": 330844, + "explorers": [ + { + "name": "TTcoin Smart Chain Explorer", + "url": "https://tscscan.com", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf", + "width": 512, + "height": 512, + "format": "png" + } + } + ], + "testnet": false, + "slug": "ttcoin-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/33101.ts b/packages/chains/chains/33101.ts new file mode 100644 index 00000000000..9972707022b --- /dev/null +++ b/packages/chains/chains/33101.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zilliqa EVM Testnet", + "chain": "ZIL", + "rpc": [ + "https://zilliqa-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dev-api.zilliqa.com" + ], + "faucets": [ + "https://dev-wallet.zilliqa.com/faucet?network=testnet" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-testnet", + "chainId": 33101, + "networkId": 33101, + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "zilliqa-evm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/331769.ts b/packages/chains/chains/331769.ts new file mode 100644 index 00000000000..8f312bbf2ac --- /dev/null +++ b/packages/chains/chains/331769.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ProofOfPepe Testnet", + "chain": "POPTestnet", + "shortName": "POPTestnet", + "chainId": 331769, + "testnet": true, + "rpc": [ + "https://proofofpepe-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet01.proofofpepe.tech" + ], + "nativeCurrency": { + "name": "POP", + "symbol": "POP", + "decimals": 18 + }, + "explorers": [ + { + "name": "ProofOfPepe Explorer", + "url": "https://pepescan.app/", + "standard": "EIP3091" + } + ], + "slug": "proofofpepe-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333000333.ts b/packages/chains/chains/333000333.ts new file mode 100644 index 00000000000..8f1d3a9f9d5 --- /dev/null +++ b/packages/chains/chains/333000333.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Meld", + "title": "Meld Mainnet", + "chain": "MELD", + "rpc": [ + "https://meld.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/meld/mainnet/rpc" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", + "width": 4000, + "height": 4000, + "format": "png" + }, + "infoURL": "https://meld.com", + "shortName": "meld", + "chainId": 333000333, + "networkId": 333000333, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": { + "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", + "width": 4000, + "height": 4000, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "meld" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3331.ts b/packages/chains/chains/3331.ts new file mode 100644 index 00000000000..29ed1934996 --- /dev/null +++ b/packages/chains/chains/3331.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ZCore Testnet", + "chain": "Beach", + "icon": { + "url": "ipfs://QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4", + "width": 1050, + "height": 1050, + "format": "png" + }, + "rpc": [ + "https://zcore-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.zcore.cash" + ], + "faucets": [ + "https://faucet.zcore.cash" + ], + "nativeCurrency": { + "name": "ZCore", + "symbol": "ZCR", + "decimals": 18 + }, + "infoURL": "https://zcore.cash", + "shortName": "zcrbeach", + "chainId": 3331, + "networkId": 3331, + "testnet": true, + "slug": "zcore-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3333.ts b/packages/chains/chains/3333.ts new file mode 100644 index 00000000000..00987225a36 --- /dev/null +++ b/packages/chains/chains/3333.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Web3Q Testnet", + "chain": "Web3Q", + "rpc": [ + "https://web3q-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.web3q.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://testnet.web3q.io/home.w3q/", + "shortName": "w3q-t", + "chainId": 3333, + "networkId": 3333, + "explorers": [ + { + "name": "w3q-testnet", + "url": "https://explorer.testnet.web3q.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "web3q-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/33333.ts b/packages/chains/chains/33333.ts new file mode 100644 index 00000000000..268d3b7ead3 --- /dev/null +++ b/packages/chains/chains/33333.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aves Mainnet", + "chain": "AVS", + "rpc": [ + "https://aves.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.avescoin.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aves", + "symbol": "AVS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://avescoin.io", + "shortName": "avs", + "chainId": 33333, + "networkId": 33333, + "icon": { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + }, + "explorers": [ + { + "name": "avescan", + "url": "https://avescan.io", + "icon": { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "aves" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333331.ts b/packages/chains/chains/333331.ts new file mode 100644 index 00000000000..31707d618d3 --- /dev/null +++ b/packages/chains/chains/333331.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aves Testnet", + "chain": "AVST", + "rpc": [ + "https://aves-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test.rpc.avescoin.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "AvesT", + "symbol": "AVST", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://ethereum.org", + "shortName": "avst", + "chainId": 333331, + "networkId": 333331, + "icon": { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + }, + "explorers": [ + { + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "aves-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3334.ts b/packages/chains/chains/3334.ts new file mode 100644 index 00000000000..11800817508 --- /dev/null +++ b/packages/chains/chains/3334.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Web3Q Galileo", + "chain": "Web3Q", + "rpc": [ + "https://web3q-galileo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://galileo.web3q.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://galileo.web3q.io/home.w3q/", + "shortName": "w3q-g", + "chainId": 3334, + "networkId": 3334, + "explorers": [ + { + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "web3q-galileo" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333777.ts b/packages/chains/chains/333777.ts new file mode 100644 index 00000000000..63752c10e7c --- /dev/null +++ b/packages/chains/chains/333777.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oone Chain Testnet", + "chain": "OONE", + "rpc": [ + "https://oone-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://blockchain-test.adigium.world" + ], + "faucets": [ + "https://apps-test.adigium.com/faucet" + ], + "nativeCurrency": { + "name": "Oone", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oone.world", + "shortName": "oonetest", + "chainId": 333777, + "networkId": 333777, + "explorers": [ + { + "name": "expedition", + "url": "https://explorer-test.adigium.world", + "standard": "none" + } + ], + "testnet": true, + "slug": "oone-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333888.ts b/packages/chains/chains/333888.ts new file mode 100644 index 00000000000..a7caed5bc9e --- /dev/null +++ b/packages/chains/chains/333888.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Polis Testnet", + "chain": "Sparta", + "icon": { + "url": "ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", + "width": 1050, + "height": 1050, + "format": "png" + }, + "rpc": [ + "https://polis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sparta-rpc.polis.tech" + ], + "faucets": [ + "https://faucet.polis.tech" + ], + "nativeCurrency": { + "name": "tPolis", + "symbol": "tPOLIS", + "decimals": 18 + }, + "infoURL": "https://polis.tech", + "shortName": "sparta", + "chainId": 333888, + "networkId": 333888, + "testnet": true, + "slug": "polis-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/333999.ts b/packages/chains/chains/333999.ts new file mode 100644 index 00000000000..0bee3f43787 --- /dev/null +++ b/packages/chains/chains/333999.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Polis Mainnet", + "chain": "Olympus", + "icon": { + "url": "ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", + "width": 1050, + "height": 1050, + "format": "png" + }, + "rpc": [ + "https://polis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.polis.tech" + ], + "faucets": [ + "https://faucet.polis.tech" + ], + "nativeCurrency": { + "name": "Polis", + "symbol": "POLIS", + "decimals": 18 + }, + "infoURL": "https://polis.tech", + "shortName": "olympus", + "chainId": 333999, + "networkId": 333999, + "testnet": false, + "slug": "polis" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3400.ts b/packages/chains/chains/3400.ts new file mode 100644 index 00000000000..0dec2b301ea --- /dev/null +++ b/packages/chains/chains/3400.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Paribu Net Mainnet", + "chain": "PRB", + "rpc": [ + "https://paribu-net.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.paribu.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "infoURL": "https://net.paribu.com", + "shortName": "prb", + "chainId": 3400, + "networkId": 3400, + "icon": { + "url": "ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", + "width": 2362, + "height": 2362, + "format": "png" + }, + "explorers": [ + { + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "paribu-net" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3434.ts b/packages/chains/chains/3434.ts new file mode 100644 index 00000000000..0f5c945ea78 --- /dev/null +++ b/packages/chains/chains/3434.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SecureChain Testnet", + "chain": "SCAI", + "icon": { + "url": "ipfs://Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf", + "width": 150, + "height": 150, + "format": "png" + }, + "rpc": [ + "https://securechain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.securechain.ai" + ], + "faucets": [ + "https://faucet.securechain.ai" + ], + "nativeCurrency": { + "name": "SCAI", + "symbol": "SCAI", + "decimals": 18 + }, + "infoURL": "https://securechain.ai", + "shortName": "SCAIt", + "chainId": 3434, + "networkId": 3434, + "explorers": [ + { + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "securechain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/344106930.ts b/packages/chains/chains/344106930.ts new file mode 100644 index 00000000000..0fcaea012a3 --- /dev/null +++ b/packages/chains/chains/344106930.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Calypso NFT Hub (SKALE Testnet)", + "title": "Calypso NFT Hub Testnet", + "chain": "staging-utter-unripe-menkar", + "rpc": [ + "https://calypso-nft-hub-skale-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar" + ], + "faucets": [ + "https://sfuel.dirtroad.dev/staging" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-testnet", + "chainId": 344106930, + "networkId": 344106930, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", + "icon": { + "url": "ipfs://bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", + "width": 1637, + "height": 1636, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "calypso-nft-hub-skale-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3500.ts b/packages/chains/chains/3500.ts new file mode 100644 index 00000000000..2ba42b03d3e --- /dev/null +++ b/packages/chains/chains/3500.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Paribu Net Testnet", + "chain": "PRB", + "rpc": [ + "https://paribu-net-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.paribuscan.com" + ], + "faucets": [ + "https://faucet.paribuscan.com" + ], + "nativeCurrency": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "infoURL": "https://net.paribu.com", + "shortName": "prbtestnet", + "chainId": 3500, + "networkId": 3500, + "icon": { + "url": "ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", + "width": 2362, + "height": 2362, + "format": "png" + }, + "explorers": [ + { + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "paribu-net-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3501.ts b/packages/chains/chains/3501.ts new file mode 100644 index 00000000000..77cee324289 --- /dev/null +++ b/packages/chains/chains/3501.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "JFIN Chain", + "chain": "JFIN", + "rpc": [ + "https://jfin-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.jfinchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "JFIN Coin", + "symbol": "jfin", + "decimals": 18 + }, + "infoURL": "https://jfinchain.com", + "shortName": "jfin", + "chainId": 3501, + "networkId": 3501, + "explorers": [ + { + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "jfin-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35011.ts b/packages/chains/chains/35011.ts new file mode 100644 index 00000000000..db5be7eaf0f --- /dev/null +++ b/packages/chains/chains/35011.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "J2O Taro", + "chain": "TARO", + "rpc": [ + "https://j2o-taro.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.j2o.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "TARO Coin", + "symbol": "taro", + "decimals": 18 + }, + "infoURL": "https://j2o.io", + "shortName": "j2o", + "chainId": 35011, + "networkId": 35011, + "explorers": [ + { + "name": "J2O Taro Explorer", + "url": "https://exp.j2o.io", + "icon": { + "url": "ipfs://QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "j2o-taro" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35441.ts b/packages/chains/chains/35441.ts new file mode 100644 index 00000000000..b9d5ff08906 --- /dev/null +++ b/packages/chains/chains/35441.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Q Mainnet", + "chain": "Q", + "rpc": [ + "https://q.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.q.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org", + "shortName": "q", + "chainId": 35441, + "networkId": 35441, + "icon": { + "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", + "width": 585, + "height": 603, + "format": "png" + }, + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": { + "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", + "width": 585, + "height": 603, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "q" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35443.ts b/packages/chains/chains/35443.ts new file mode 100644 index 00000000000..db26401ffb2 --- /dev/null +++ b/packages/chains/chains/35443.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Q Testnet", + "chain": "Q", + "rpc": [ + "https://q-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.qtestnet.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org/", + "shortName": "q-testnet", + "chainId": 35443, + "networkId": 35443, + "icon": { + "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", + "width": 585, + "height": 603, + "format": "png" + }, + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": { + "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", + "width": 585, + "height": 603, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "q-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/355113.ts b/packages/chains/chains/355113.ts new file mode 100644 index 00000000000..a043e9a90e5 --- /dev/null +++ b/packages/chains/chains/355113.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitfinity Network Testnet", + "chain": "BFT", + "rpc": [ + "https://bitfinity-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.bitfinity.network" + ], + "faucets": [ + "https://bitfinity.network/faucet" + ], + "nativeCurrency": { + "name": "BITFINITY", + "symbol": "BFT", + "decimals": 18 + }, + "infoURL": "https://bitfinity.network", + "shortName": "Bitfinity", + "chainId": 355113, + "networkId": 355113, + "explorers": [ + { + "name": "Bitfinity Block Explorer", + "url": "https://explorer.bitfinity.network", + "icon": { + "url": "ipfs://bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e", + "width": 796, + "height": 129, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bitfinity-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/356256156.ts b/packages/chains/chains/356256156.ts new file mode 100644 index 00000000000..a6db93c1fe1 --- /dev/null +++ b/packages/chains/chains/356256156.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gather Testnet Network", + "chain": "GTH", + "rpc": [ + "https://gather-testnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.gather.network" + ], + "faucets": [ + "https://testnet-faucet.gather.network/" + ], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "tGTH", + "chainId": 356256156, + "networkId": 356256156, + "icon": { + "url": "ipfs://Qmc9AJGg9aNhoH56n3deaZeUc8Ty1jDYJsW6Lu6hgSZH4S", + "height": 512, + "width": 512, + "format": "png" + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": { + "url": "ipfs://QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz", + "width": 1080, + "height": 1080, + "format": "svg" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "gather-testnet-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/35855456.ts b/packages/chains/chains/35855456.ts new file mode 100644 index 00000000000..2afaff74aa1 --- /dev/null +++ b/packages/chains/chains/35855456.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Joys Digital Mainnet", + "chain": "JOYS", + "rpc": [ + "https://joys-digital.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node.joys.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "JOYS", + "symbol": "JOYS", + "decimals": 18 + }, + "infoURL": "https://joys.digital", + "shortName": "JOYS", + "chainId": 35855456, + "networkId": 35855456, + "testnet": false, + "slug": "joys-digital" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3601.ts b/packages/chains/chains/3601.ts new file mode 100644 index 00000000000..4ac26c69e52 --- /dev/null +++ b/packages/chains/chains/3601.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PandoProject Mainnet", + "chain": "PandoProject", + "icon": { + "url": "ipfs://QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9", + "width": 1000, + "height": 1628, + "format": "png" + }, + "rpc": [ + "https://pandoproject.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eth-rpc-api.pandoproject.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-mainnet", + "chainId": 3601, + "networkId": 3601, + "explorers": [ + { + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "pandoproject" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3602.ts b/packages/chains/chains/3602.ts new file mode 100644 index 00000000000..8e4ddd8e68c --- /dev/null +++ b/packages/chains/chains/3602.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PandoProject Testnet", + "chain": "PandoProject", + "icon": { + "url": "ipfs://QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9", + "width": 1000, + "height": 1628, + "format": "png" + }, + "rpc": [ + "https://pandoproject-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.ethrpc.pandoproject.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-testnet", + "chainId": 3602, + "networkId": 3602, + "explorers": [ + { + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } + ], + "testnet": true, + "slug": "pandoproject-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3636.ts b/packages/chains/chains/3636.ts new file mode 100644 index 00000000000..e8aac1502be --- /dev/null +++ b/packages/chains/chains/3636.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Botanix Testnet", + "chain": "BTC", + "icon": { + "url": "ipfs://Qmf2iSjcrZwUDKhCVY9ZzfbSV2He2HSssbcG2yMz1mDerm", + "width": 32, + "height": 32, + "format": "png" + }, + "rpc": [ + "https://botanix-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.btxtestchain.com" + ], + "faucets": [ + "https://faucet.btxtestchain.com" + ], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://btxtestchain.com", + "shortName": "BTCt", + "chainId": 3636, + "networkId": 3636, + "explorers": [ + { + "name": "Botanix", + "url": "https://testnet.btxtestchain.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "botanix-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3637.ts b/packages/chains/chains/3637.ts new file mode 100644 index 00000000000..c760ad040c4 --- /dev/null +++ b/packages/chains/chains/3637.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Botanix Mainnet", + "chain": "BTC", + "icon": { + "url": "ipfs://Qmf2iSjcrZwUDKhCVY9ZzfbSV2He2HSssbcG2yMz1mDerm", + "width": 32, + "height": 32, + "format": "png" + }, + "rpc": [ + "https://botanix.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.btxtestchain.com" + ], + "faucets": [ + "https://faucet.btxtestchain.com" + ], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://btxtestchain.com", + "shortName": "BTCm", + "chainId": 3637, + "networkId": 3637, + "explorers": [ + { + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "botanix" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3666.ts b/packages/chains/chains/3666.ts new file mode 100644 index 00000000000..cb8ecda69b9 --- /dev/null +++ b/packages/chains/chains/3666.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Jouleverse Mainnet", + "chain": "Jouleverse", + "rpc": [ + "https://jouleverse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.jnsdao.com:8503" + ], + "faucets": [], + "nativeCurrency": { + "name": "J", + "symbol": "J", + "decimals": 18 + }, + "infoURL": "https://jnsdao.com", + "shortName": "jouleverse", + "chainId": 3666, + "networkId": 3666, + "explorers": [ + { + "name": "jscan", + "url": "https://jscan.jnsdao.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "jouleverse" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3690.ts b/packages/chains/chains/3690.ts new file mode 100644 index 00000000000..e727d3a720d --- /dev/null +++ b/packages/chains/chains/3690.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bittex Mainnet", + "chain": "BTX", + "rpc": [ + "https://bittex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.bittexscan.info", + "https://rpc2.bittexscan.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bittex", + "symbol": "BTX", + "decimals": 18 + }, + "infoURL": "https://bittexscan.com", + "shortName": "btx", + "chainId": 3690, + "networkId": 3690, + "explorers": [ + { + "name": "bittexscan", + "url": "https://bittexscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bittex" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3693.ts b/packages/chains/chains/3693.ts new file mode 100644 index 00000000000..8c6d7751137 --- /dev/null +++ b/packages/chains/chains/3693.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Empire Network", + "chain": "EMPIRE", + "rpc": [ + "https://empire-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.empirenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Empire", + "symbol": "EMPIRE", + "decimals": 18 + }, + "infoURL": "https://www.empirenetwork.io/", + "shortName": "empire", + "chainId": 3693, + "networkId": 3693, + "explorers": [ + { + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "empire-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3698.ts b/packages/chains/chains/3698.ts new file mode 100644 index 00000000000..bf6f382d242 --- /dev/null +++ b/packages/chains/chains/3698.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SenjePowers Testnet", + "chain": "SPC", + "icon": { + "url": "ipfs://QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy", + "width": 504, + "height": 495, + "format": "png" + }, + "rpc": [ + "https://senjepowers-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.senjepowersscan.com" + ], + "faucets": [ + "https://faucet.senjepowersscan.com" + ], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCt", + "chainId": 3698, + "networkId": 3698, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "senjepowers-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3699.ts b/packages/chains/chains/3699.ts new file mode 100644 index 00000000000..c739739c8fb --- /dev/null +++ b/packages/chains/chains/3699.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SenjePowers Mainnet", + "chain": "SPC", + "icon": { + "url": "ipfs://QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy", + "width": 504, + "height": 495, + "format": "png" + }, + "rpc": [ + "https://senjepowers.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.senjepowersscan.com" + ], + "faucets": [ + "https://faucet.senjepowersscan.com" + ], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCm", + "chainId": 3699, + "networkId": 3699, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "senjepowers" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3737.ts b/packages/chains/chains/3737.ts new file mode 100644 index 00000000000..e5750deea41 --- /dev/null +++ b/packages/chains/chains/3737.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Crossbell", + "chain": "Crossbell", + "rpc": [ + "https://crossbell.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.crossbell.io" + ], + "faucets": [ + "https://faucet.crossbell.io" + ], + "nativeCurrency": { + "name": "Crossbell Token", + "symbol": "CSB", + "decimals": 18 + }, + "infoURL": "https://crossbell.io", + "shortName": "csb", + "chainId": 3737, + "networkId": 3737, + "icon": { + "url": "ipfs://QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t", + "format": "svg", + "width": 408, + "height": 408 + }, + "explorers": [ + { + "name": "Crossbell Explorer", + "url": "https://scan.crossbell.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "crossbell" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/373737.ts b/packages/chains/chains/373737.ts new file mode 100644 index 00000000000..8a26d632aec --- /dev/null +++ b/packages/chains/chains/373737.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HAPchain Testnet", + "chain": "HAPchain", + "rpc": [ + "https://hapchain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonrpc-test.hap.land" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap-testnet", + "chainId": 373737, + "networkId": 373737, + "icon": { + "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": { + "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": true, + "slug": "hapchain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3797.ts b/packages/chains/chains/3797.ts new file mode 100644 index 00000000000..4cf4c321a0c --- /dev/null +++ b/packages/chains/chains/3797.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AlveyChain Mainnet", + "chain": "ALV", + "icon": { + "url": "ipfs://QmSwczpPLBG6ob1a8WLoujthiCPzwEyJNp7WdKRi52qbWX", + "width": 310, + "height": 310, + "format": "png" + }, + "rpc": [ + "https://alveychain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.alveychain.com/rpc", + "https://rpc2.alvey.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "AlveyCoin", + "symbol": "ALV", + "decimals": 18 + }, + "infoURL": "https://alveyscan.com/rpc", + "shortName": "alv", + "chainId": 3797, + "networkId": 3797, + "explorers": [ + { + "name": "AlveyScan", + "url": "https://alveyscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "alveychain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/381931.ts b/packages/chains/chains/381931.ts new file mode 100644 index 00000000000..cdea8dbe2a0 --- /dev/null +++ b/packages/chains/chains/381931.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metal C-Chain", + "chain": "Metal", + "rpc": [ + "https://metal-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.metalblockchain.org/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "metal", + "chainId": 381931, + "networkId": 381931, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "metal-c-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/381932.ts b/packages/chains/chains/381932.ts new file mode 100644 index 00000000000..752436e14b2 --- /dev/null +++ b/packages/chains/chains/381932.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metal Tahoe C-Chain", + "chain": "Metal", + "rpc": [ + "https://metal-tahoe-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://tahoe.metalblockchain.org/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "Tahoe", + "chainId": 381932, + "networkId": 381932, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "metal-tahoe-c-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/383414847825.ts b/packages/chains/chains/383414847825.ts new file mode 100644 index 00000000000..89b3258dc77 --- /dev/null +++ b/packages/chains/chains/383414847825.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zeniq", + "chain": "ZENIQ", + "rpc": [ + "https://zeniq.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://smart.zeniq.network:9545" + ], + "faucets": [ + "https://faucet.zeniq.net/" + ], + "nativeCurrency": { + "name": "Zeniq", + "symbol": "ZENIQ", + "decimals": 18 + }, + "infoURL": "https://www.zeniq.dev/", + "shortName": "zeniq", + "chainId": 383414847825, + "networkId": 383414847825, + "explorers": [ + { + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "zeniq" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3912.ts b/packages/chains/chains/3912.ts new file mode 100644 index 00000000000..0065c9b7c19 --- /dev/null +++ b/packages/chains/chains/3912.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DRAC Network", + "chain": "DRAC", + "rpc": [ + "https://drac-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://www.dracscan.com/rpc" + ], + "faucets": [ + "https://www.dracscan.io/faucet" + ], + "nativeCurrency": { + "name": "DRAC", + "symbol": "DRAC", + "decimals": 18 + }, + "infoURL": "https://drac.io/", + "shortName": "drac", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "chainId": 3912, + "networkId": 3912, + "icon": { + "url": "ipfs://QmXbsQe7QsVFZJZdBmbZVvS6LgX9ZFoaTMBs9MiQXUzJTw", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "drac-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3939.ts b/packages/chains/chains/3939.ts new file mode 100644 index 00000000000..71357f77d14 --- /dev/null +++ b/packages/chains/chains/3939.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DOS Tesnet", + "chain": "DOS", + "rpc": [ + "https://dos-tesnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test.doschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "dost", + "chainId": 3939, + "networkId": 3939, + "icon": { + "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": { + "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dos-tesnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3966.ts b/packages/chains/chains/3966.ts new file mode 100644 index 00000000000..7a60cc80181 --- /dev/null +++ b/packages/chains/chains/3966.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DYNO Mainnet", + "chain": "DYNO", + "rpc": [ + "https://dyno.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.dynoprotocol.com" + ], + "faucets": [ + "https://faucet.dynoscan.io" + ], + "nativeCurrency": { + "name": "DYNO Token", + "symbol": "DYNO", + "decimals": 18 + }, + "infoURL": "https://dynoprotocol.com", + "shortName": "dyno", + "chainId": 3966, + "networkId": 3966, + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dyno" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3967.ts b/packages/chains/chains/3967.ts new file mode 100644 index 00000000000..84b01af70d1 --- /dev/null +++ b/packages/chains/chains/3967.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DYNO Testnet", + "chain": "DYNO", + "rpc": [ + "https://dyno-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://tapi.dynoprotocol.com" + ], + "faucets": [ + "https://faucet.dynoscan.io" + ], + "nativeCurrency": { + "name": "DYNO Token", + "symbol": "tDYNO", + "decimals": 18 + }, + "infoURL": "https://dynoprotocol.com", + "shortName": "tdyno", + "chainId": 3967, + "networkId": 3967, + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dyno-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/39797.ts b/packages/chains/chains/39797.ts new file mode 100644 index 00000000000..ccde231e91d --- /dev/null +++ b/packages/chains/chains/39797.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Energi Mainnet", + "chain": "NRG", + "rpc": [ + "https://energi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://nodeapi.energi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "infoURL": "https://www.energi.world/", + "shortName": "nrg", + "chainId": 39797, + "networkId": 39797, + "slip44": 39797, + "testnet": false, + "slug": "energi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/39815.ts b/packages/chains/chains/39815.ts new file mode 100644 index 00000000000..6c5bab9bd2a --- /dev/null +++ b/packages/chains/chains/39815.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OHO Mainnet", + "chain": "OHO", + "rpc": [ + "https://oho.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.oho.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "OHO", + "symbol": "OHO", + "decimals": 18 + }, + "infoURL": "https://oho.ai", + "shortName": "oho", + "chainId": 39815, + "networkId": 39815, + "icon": { + "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": { + "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "oho" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/3999.ts b/packages/chains/chains/3999.ts new file mode 100644 index 00000000000..c2b910feea2 --- /dev/null +++ b/packages/chains/chains/3999.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "YuanChain Mainnet", + "chain": "YCC", + "rpc": [ + "https://yuanchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.yuan.org/eth" + ], + "faucets": [], + "nativeCurrency": { + "name": "YCC", + "symbol": "YCC", + "decimals": 18 + }, + "infoURL": "https://www.yuan.org", + "shortName": "ycc", + "chainId": 3999, + "networkId": 3999, + "icon": { + "url": "ipfs://QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4", + "width": 96, + "height": 96, + "format": "png" + }, + "explorers": [ + { + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "yuanchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4000.ts b/packages/chains/chains/4000.ts new file mode 100644 index 00000000000..8d87ba2e6db --- /dev/null +++ b/packages/chains/chains/4000.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ozone Chain Mainnet", + "chain": "OZONE", + "rpc": [ + "https://ozone-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1.ozonechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "infoURL": "https://ozonechain.io", + "shortName": "ozo", + "chainId": 4000, + "networkId": 4000, + "icon": { + "url": "ipfs://QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8", + "width": 1600, + "height": 1600, + "format": "png" + }, + "explorers": [ + { + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ozone-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4000003.ts b/packages/chains/chains/4000003.ts new file mode 100644 index 00000000000..697caa68f3b --- /dev/null +++ b/packages/chains/chains/4000003.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AltLayer Zero Gas Network", + "chain": "ETH", + "rpc": [ + "https://altlayer-zero-gas-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://zero.alt.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://altlayer.io", + "shortName": "alt-zerogas", + "chainId": 4000003, + "networkId": 4000003, + "icon": { + "url": "ipfs://QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb", + "width": 1080, + "height": 1025, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://zero-explorer.alt.technology", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "altlayer-zero-gas-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4001.ts b/packages/chains/chains/4001.ts new file mode 100644 index 00000000000..0072a850202 --- /dev/null +++ b/packages/chains/chains/4001.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Peperium Chain Testnet", + "chain": "PERIUM", + "rpc": [ + "https://peperium-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.peperium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Peperium Chain Testnet", + "symbol": "PERIUM", + "decimals": 18 + }, + "infoURL": "https://peperium.io", + "shortName": "PERIUM", + "chainId": 4001, + "networkId": 4001, + "icon": { + "url": "ipfs://Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf", + "width": 160, + "height": 160, + "format": "png" + }, + "explorers": [ + { + "name": "Peperium Chain Explorer", + "url": "https://scan-testnet.peperium.io", + "icon": { + "url": "ipfs://Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf", + "width": 160, + "height": 160, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "peperium-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4002.ts b/packages/chains/chains/4002.ts new file mode 100644 index 00000000000..4f7c5a81e53 --- /dev/null +++ b/packages/chains/chains/4002.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fantom Testnet", + "chain": "FTM", + "rpc": [ + "https://fantom-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://fantom-testnet.publicnode.com", + "https://rpc.testnet.fantom.network" + ], + "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, + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/fantom/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "explorers": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": { + "url": "ipfs://QmRqbK449Fo9sJ3xMpkPbg6uV1weQj4yVV1xNMP9cdPmjf", + "width": 73, + "height": 73, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "fantom-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/404040.ts b/packages/chains/chains/404040.ts new file mode 100644 index 00000000000..f2892c6f1f6 --- /dev/null +++ b/packages/chains/chains/404040.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tipboxcoin Mainnet", + "chain": "TPBX", + "icon": { + "url": "ipfs://QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh", + "width": 192, + "height": 192, + "format": "png" + }, + "rpc": [ + "https://tipboxcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.tipboxcoin.net" + ], + "faucets": [ + "https://faucet.tipboxcoin.net" + ], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXm", + "chainId": 404040, + "networkId": 404040, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "tipboxcoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4051.ts b/packages/chains/chains/4051.ts new file mode 100644 index 00000000000..67c2f4be67a --- /dev/null +++ b/packages/chains/chains/4051.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bobaopera Testnet", + "chain": "Bobaopera Testnet", + "rpc": [ + "https://bobaopera-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.bobaopera.boba.network", + "wss://wss.testnet.bobaopera.boba.network", + "https://replica.testnet.bobaopera.boba.network", + "wss://replica-wss.testnet.bobaopera.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaoperaTestnet", + "chainId": 4051, + "networkId": 4051, + "explorers": [ + { + "name": "Bobaopera Testnet block explorer", + "url": "https://blockexplorer.testnet.bobaopera.boba.network", + "standard": "none" + } + ], + "testnet": true, + "slug": "bobaopera-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4061.ts b/packages/chains/chains/4061.ts new file mode 100644 index 00000000000..dfbfa8d5ce2 --- /dev/null +++ b/packages/chains/chains/4061.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nahmii 3 Mainnet", + "chain": "Nahmii", + "rpc": [], + "status": "incubating", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Mainnet", + "chainId": 4061, + "networkId": 4061, + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + }, + "testnet": false, + "slug": "nahmii-3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4062.ts b/packages/chains/chains/4062.ts new file mode 100644 index 00000000000..8e7f8c61f36 --- /dev/null +++ b/packages/chains/chains/4062.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nahmii 3 Testnet", + "chain": "Nahmii", + "rpc": [ + "https://nahmii-3-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ngeth.testnet.n3.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Testnet", + "chainId": 4062, + "networkId": 4062, + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "explorers": [ + { + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.n3.nahmii.io", + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3", + "bridges": [ + { + "url": "https://bridge.testnet.n3.nahmii.io" + } + ] + }, + "testnet": true, + "slug": "nahmii-3-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/408.ts b/packages/chains/chains/408.ts new file mode 100644 index 00000000000..8d2232f9a8f --- /dev/null +++ b/packages/chains/chains/408.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Omega Mainnet", + "chain": "OmegaNetwork", + "shortName": "OmegaNetwork", + "chainId": 408, + "testnet": false, + "icon": { + "format": "png", + "url": "ipfs://bafkreig676zxfhwhcx5bvvvjxedx6ftr2wq4iiznrwm3c6ozrprbc4oxwm", + "height": 512, + "width": 512 + }, + "rpc": [ + "https://omega.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.omtch.com" + ], + "nativeCurrency": { + "name": "Omega Network Coin", + "symbol": "OMN", + "decimals": 18 + }, + "slug": "omega" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4090.ts b/packages/chains/chains/4090.ts new file mode 100644 index 00000000000..08abf3a3d31 --- /dev/null +++ b/packages/chains/chains/4090.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fastex Chain (Bahamut) Oasis Testnet", + "title": "Bahamut testnet Oasis", + "icon": { + "url": "ipfs://QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP", + "width": 200, + "height": 200, + "format": "png" + }, + "chain": "Fastex Chain (Bahamut)", + "rpc": [ + "https://fastex-chain-bahamut-oasis-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.oasis.bahamutchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.oasis.fastexchain.com" + ], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastexchain.com", + "shortName": "Oasis", + "chainId": 4090, + "networkId": 4090, + "explorers": [ + { + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "fastex-chain-bahamut-oasis-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4096.ts b/packages/chains/chains/4096.ts new file mode 100644 index 00000000000..f261cf9ab6b --- /dev/null +++ b/packages/chains/chains/4096.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitindi Testnet", + "chain": "BNI", + "icon": { + "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", + "width": 60, + "height": 72, + "format": "png" + }, + "rpc": [ + "https://bitindi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.bitindi.org", + "https://testnet-rpc.bitindi.org" + ], + "faucets": [ + "https://faucet.bitindi.org" + ], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIt", + "chainId": 4096, + "networkId": 4096, + "explorers": [ + { + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bitindi-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4099.ts b/packages/chains/chains/4099.ts new file mode 100644 index 00000000000..0bd64c27742 --- /dev/null +++ b/packages/chains/chains/4099.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitindi Mainnet", + "chain": "BNI", + "icon": { + "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", + "width": 60, + "height": 72, + "format": "png" + }, + "rpc": [ + "https://bitindi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + " https://rpc-mainnet.bitindi.org", + "https://mainnet-rpc.bitindi.org" + ], + "faucets": [ + "https://faucet.bitindi.org" + ], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIm", + "chainId": 4099, + "networkId": 4099, + "explorers": [ + { + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bitindi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4102.ts b/packages/chains/chains/4102.ts new file mode 100644 index 00000000000..debc4d525a2 --- /dev/null +++ b/packages/chains/chains/4102.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AIOZ Network Testnet", + "chain": "AIOZ", + "icon": { + "url": "ipfs://QmRAGPFhvQiXgoJkui7WHajpKctGFrJNhHqzYdwcWt5V3Z", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://aioz-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eth-ds.testnet.aioz.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "testAIOZ", + "symbol": "AIOZ", + "decimals": 18 + }, + "infoURL": "https://aioz.network", + "shortName": "aioz-testnet", + "chainId": 4102, + "networkId": 4102, + "slip44": 60, + "explorers": [ + { + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "aioz-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4141.ts b/packages/chains/chains/4141.ts new file mode 100644 index 00000000000..46b125d482e --- /dev/null +++ b/packages/chains/chains/4141.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tipboxcoin Testnet", + "chain": "TPBX", + "icon": { + "url": "ipfs://QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh", + "width": 192, + "height": 192, + "format": "png" + }, + "rpc": [ + "https://tipboxcoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.tipboxcoin.net" + ], + "faucets": [ + "https://faucet.tipboxcoin.net" + ], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXt", + "chainId": 4141, + "networkId": 4141, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "tipboxcoin-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/41500.ts b/packages/chains/chains/41500.ts new file mode 100644 index 00000000000..3ff3d8b4956 --- /dev/null +++ b/packages/chains/chains/41500.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Opulent-X BETA", + "chainId": 41500, + "shortName": "ox-beta", + "chain": "Opulent-X", + "networkId": 41500, + "nativeCurrency": { + "name": "Oxyn Gas", + "symbol": "OXYN", + "decimals": 18 + }, + "rpc": [ + "https://opulent-x-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://connect.opulent-x.com" + ], + "faucets": [], + "infoURL": "https://beta.opulent-x.com", + "explorers": [ + { + "name": "Opulent-X BETA Explorer", + "url": "https://explorer.opulent-x.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "opulent-x-beta" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4181.ts b/packages/chains/chains/4181.ts new file mode 100644 index 00000000000..b17febbef3c --- /dev/null +++ b/packages/chains/chains/4181.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PHI Network V1", + "chain": "PHI V1", + "rpc": [ + "https://phi-network-v1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.phi.network", + "https://rpc2.phi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "infoURL": "https://phi.network", + "shortName": "PHIv1", + "chainId": 4181, + "networkId": 4181, + "icon": { + "url": "ipfs://bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": { + "url": "ipfs://bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "phi-network-v1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4201.ts b/packages/chains/chains/4201.ts new file mode 100644 index 00000000000..b7dd8fdaada --- /dev/null +++ b/packages/chains/chains/4201.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "LUKSO Testnet", + "chain": "LUKSO Testnet", + "icon": { + "url": "ipfs://Qmeg9sFF5tAGi6MCx7YjtVHW6a23zqvHRK1xwzSdp9iE7z", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://lukso-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.lukso.network", + "wss://ws-rpc.testnet.lukso.network" + ], + "faucets": [ + "https://faucet.testnet.lukso.network" + ], + "nativeCurrency": { + "name": "TestLYX", + "symbol": "LYXt", + "decimals": 18 + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "none" + } + ], + "infoURL": "https://lukso.network", + "shortName": "lukso-testnet", + "chainId": 4201, + "networkId": 4201, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "testnet": true, + "slug": "lukso-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/420420.ts b/packages/chains/chains/420420.ts new file mode 100644 index 00000000000..464043dfbdc --- /dev/null +++ b/packages/chains/chains/420420.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kekchain", + "chain": "kek", + "rpc": [ + "https://kekchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.kekchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "KEK", + "symbol": "KEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "KEK", + "chainId": 420420, + "networkId": 103090, + "icon": { + "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", + "width": 401, + "height": 401, + "format": "svg" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.kekchain.com", + "icon": { + "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", + "width": 401, + "height": 401, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "kekchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/420666.ts b/packages/chains/chains/420666.ts new file mode 100644 index 00000000000..d58f97fb80d --- /dev/null +++ b/packages/chains/chains/420666.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kekchain (kektest)", + "chain": "kek", + "rpc": [ + "https://kekchain-kektest.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.kekchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "tKEK", + "symbol": "tKEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "tKEK", + "chainId": 420666, + "networkId": 1, + "icon": { + "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", + "width": 401, + "height": 401, + "format": "svg" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.kekchain.com", + "icon": { + "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", + "width": 401, + "height": 401, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kekchain-kektest" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42069.ts b/packages/chains/chains/42069.ts new file mode 100644 index 00000000000..bd7cc188574 --- /dev/null +++ b/packages/chains/chains/42069.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "pegglecoin", + "chain": "42069", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "pegglecoin", + "symbol": "peggle", + "decimals": 18 + }, + "infoURL": "https://teampeggle.com", + "shortName": "PC", + "chainId": 42069, + "networkId": 42069, + "testnet": false, + "slug": "pegglecoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42161.ts b/packages/chains/chains/42161.ts new file mode 100644 index 00000000000..d0776100e47 --- /dev/null +++ b/packages/chains/chains/42161.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Arbitrum One", + "chainId": 42161, + "shortName": "arb1", + "chain": "ETH", + "networkId": 42161, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arbitrum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://arb1.arbitrum.io/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" + }, + { + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/arbitrum/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "testnet": false, + "slug": "arbitrum" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/421611.ts b/packages/chains/chains/421611.ts new file mode 100644 index 00000000000..f10c3da8113 --- /dev/null +++ b/packages/chains/chains/421611.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Arbitrum Rinkeby", + "title": "Arbitrum Testnet Rinkeby", + "chainId": 421611, + "shortName": "arb-rinkeby", + "chain": "ETH", + "networkId": 421611, + "nativeCurrency": { + "name": "Arbitrum Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arbitrum-rinkeby.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rinkeby.arbitrum.io/rpc" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" + ], + "infoURL": "https://arbitrum.io", + "explorers": [ + { + "name": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "arbitrum-rinkeby", + "url": "https://rinkeby-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "testnet": true, + "slug": "arbitrum-rinkeby" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/421613.ts b/packages/chains/chains/421613.ts new file mode 100644 index 00000000000..9dceb756e70 --- /dev/null +++ b/packages/chains/chains/421613.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Arbitrum Goerli", + "title": "Arbitrum Goerli Rollup Testnet", + "chainId": 421613, + "shortName": "arb-goerli", + "chain": "ETH", + "networkId": 421613, + "nativeCurrency": { + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 + }, + "rpc": [ + "https://arbitrum-goerli.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://arbitrum-goerli.infura.io/v3/${INFURA_API_KEY}", + "https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://goerli-rollup.arbitrum.io/rpc/" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/", + "explorers": [ + { + "name": "Arbitrum Goerli Rollup Explorer", + "url": "https://goerli-rollup-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.arbitrum.io/" + } + ] + }, + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/arbitrum/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "testnet": true, + "slug": "arbitrum-goerli" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4216137055.ts b/packages/chains/chains/4216137055.ts new file mode 100644 index 00000000000..80ead67130f --- /dev/null +++ b/packages/chains/chains/4216137055.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OneLedger Testnet Frankenstein", + "chain": "OLT", + "icon": { + "url": "ipfs://QmRhqq4Gp8G9w27ND3LeFW49o5PxcxrbJsqHbpBFtzEMfC", + "width": 225, + "height": 225, + "format": "png" + }, + "rpc": [ + "https://oneledger-testnet-frankenstein.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://frankenstein-rpc.oneledger.network" + ], + "faucets": [ + "https://frankenstein-faucet.oneledger.network" + ], + "nativeCurrency": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "infoURL": "https://oneledger.io", + "shortName": "frankenstein", + "chainId": 4216137055, + "networkId": 4216137055, + "explorers": [ + { + "name": "OneLedger Block Explorer", + "url": "https://frankenstein-explorer.oneledger.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "oneledger-testnet-frankenstein" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42170.ts b/packages/chains/chains/42170.ts new file mode 100644 index 00000000000..144c9ac51ea --- /dev/null +++ b/packages/chains/chains/42170.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Arbitrum Nova", + "chainId": 42170, + "shortName": "arb-nova", + "chain": "ETH", + "networkId": 42170, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arbitrum-nova.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://nova.arbitrum.io/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbitrum Nova Chain Explorer", + "url": "https://nova-explorer.arbitrum.io", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "testnet": false, + "slug": "arbitrum-nova" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42220.ts b/packages/chains/chains/42220.ts new file mode 100644 index 00000000000..520c4a92d9e --- /dev/null +++ b/packages/chains/chains/42220.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Celo Mainnet", + "chainId": 42220, + "shortName": "celo", + "chain": "CELO", + "networkId": 42220, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://celo.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://forno.celo.org", + "wss://forno.celo.org/ws" + ], + "faucets": [ + "https://free-online-app.com/faucet-for-eth-evm-chains/" + ], + "infoURL": "https://docs.celo.org/", + "explorers": [ + { + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "celo" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42261.ts b/packages/chains/chains/42261.ts new file mode 100644 index 00000000000..94a07f1afa5 --- /dev/null +++ b/packages/chains/chains/42261.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oasis Emerald Testnet", + "chain": "Emerald", + "icon": { + "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://oasis-emerald-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.emerald.oasis.dev/", + "wss://testnet.emerald.oasis.dev/ws" + ], + "faucets": [ + "https://faucet.testnet.oasis.dev/" + ], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/emerald", + "shortName": "emerald-testnet", + "chainId": 42261, + "networkId": 42261, + "explorers": [ + { + "name": "Oasis Emerald Testnet Explorer", + "url": "https://testnet.explorer.emerald.oasis.dev", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "oasis-emerald-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42262.ts b/packages/chains/chains/42262.ts new file mode 100644 index 00000000000..a242eb34ef3 --- /dev/null +++ b/packages/chains/chains/42262.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oasis Emerald", + "chain": "Emerald", + "icon": { + "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://oasis-emerald.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://emerald.oasis.dev", + "wss://emerald.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/emerald", + "shortName": "emerald", + "chainId": 42262, + "networkId": 42262, + "explorers": [ + { + "name": "Oasis Emerald Explorer", + "url": "https://explorer.emerald.oasis.dev", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "oasis-emerald" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4242.ts b/packages/chains/chains/4242.ts new file mode 100644 index 00000000000..858f52f87fb --- /dev/null +++ b/packages/chains/chains/4242.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nexi Mainnet", + "chain": "Nexi", + "icon": { + "url": "ipfs://bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti", + "width": 512, + "height": 578, + "format": "png" + }, + "rpc": [ + "https://nexi.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.chain.nexi.technology/", + "https://chain.nexilix.com", + "https://chain.nexi.evmnode.online" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nexi", + "symbol": "NEXI", + "decimals": 18 + }, + "infoURL": "https://www.nexi.technology/", + "shortName": "nexi", + "chainId": 4242, + "networkId": 4242, + "slip44": 2500, + "explorers": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "nexi" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/424242.ts b/packages/chains/chains/424242.ts new file mode 100644 index 00000000000..58b3897c3fe --- /dev/null +++ b/packages/chains/chains/424242.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fastex Chain testnet", + "chain": "FTN", + "title": "Fastex Chain testnet", + "rpc": [ + "https://fastex-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.fastexchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastex.com", + "shortName": "fastexTestnet", + "chainId": 424242, + "networkId": 424242, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "fastex-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4281033.ts b/packages/chains/chains/4281033.ts new file mode 100644 index 00000000000..d96d5b304fe --- /dev/null +++ b/packages/chains/chains/4281033.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Worlds Caldera", + "chain": "WCal", + "rpc": [ + "https://worlds-caldera.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://worlds-test.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://caldera.xyz/", + "shortName": "worldscal", + "chainId": 4281033, + "networkId": 4281033, + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "explorers": [], + "testnet": true, + "slug": "worlds-caldera" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/42888.ts b/packages/chains/chains/42888.ts new file mode 100644 index 00000000000..e383b482e34 --- /dev/null +++ b/packages/chains/chains/42888.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Kinto Testnet", + "title": "Kinto Testnet", + "chain": "ETH", + "rpc": [ + "https://kinto-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://35.215.120.180:8545" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethereum.org", + "shortName": "keth", + "chainId": 42888, + "networkId": 42888, + "explorers": [ + { + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "kinto-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43110.ts b/packages/chains/chains/43110.ts new file mode 100644 index 00000000000..73333551854 --- /dev/null +++ b/packages/chains/chains/43110.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Athereum", + "chain": "ATH", + "rpc": [ + "https://athereum.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ava.network:21015/ext/evm/rpc" + ], + "faucets": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" + ], + "nativeCurrency": { + "name": "Athereum Ether", + "symbol": "ATH", + "decimals": 18 + }, + "infoURL": "https://athereum.ava.network", + "shortName": "avaeth", + "chainId": 43110, + "networkId": 43110, + "testnet": false, + "slug": "athereum" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43113.ts b/packages/chains/chains/43113.ts new file mode 100644 index 00000000000..9234da5f51d --- /dev/null +++ b/packages/chains/chains/43113.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Avalanche Fuji Testnet", + "chain": "AVAX", + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/avalanche/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "rpc": [ + "https://avalanche-fuji.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://avalanche-fuji.infura.io/v3/${INFURA_API_KEY}", + "https://api.avax-test.network/ext/bc/C/rpc", + "https://avalanche-fuji-c-chain.publicnode.com" + ], + "faucets": [ + "https://faucet.avax.network/", + "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, + "explorers": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "avalanche-fuji" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43114.ts b/packages/chains/chains/43114.ts new file mode 100644 index 00000000000..bd9bf54c71c --- /dev/null +++ b/packages/chains/chains/43114.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Avalanche C-Chain", + "chain": "AVAX", + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/avalanche/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "rpc": [ + "https://avalanche.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://avalanche-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche-c-chain.publicnode.com" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://free-online-app.com/faucet-for-eth-evm-chains/" + ], + "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" + } + ], + "testnet": false, + "slug": "avalanche" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/431140.ts b/packages/chains/chains/431140.ts new file mode 100644 index 00000000000..e0f508bdc9a --- /dev/null +++ b/packages/chains/chains/431140.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Markr Go", + "chain": "Unified", + "icon": { + "url": "ipfs://QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh", + "width": 84, + "height": 84, + "format": "png" + }, + "rpc": [ + "https://markr-go.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.markr.io/ext/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://www.markr.io/", + "shortName": "markr-go", + "chainId": 431140, + "networkId": 431140, + "explorers": [], + "status": "incubating", + "testnet": false, + "slug": "markr-go" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43214913.ts b/packages/chains/chains/43214913.ts new file mode 100644 index 00000000000..9c7704e5c3d --- /dev/null +++ b/packages/chains/chains/43214913.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "maistestsubnet", + "chain": "MAI", + "rpc": [ + "https://maistestsubnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "maistestsubnet", + "symbol": "MAI", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mais", + "chainId": 43214913, + "networkId": 43214913, + "explorers": [ + { + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } + ], + "testnet": true, + "slug": "maistestsubnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/432201.ts b/packages/chains/chains/432201.ts new file mode 100644 index 00000000000..8c339596b84 --- /dev/null +++ b/packages/chains/chains/432201.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dexalot Subnet Testnet", + "chain": "DEXALOT", + "icon": { + "url": "ipfs://QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://dexalot-subnet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/dexalot/testnet/rpc" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=dexalot" + ], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "dexalot-testnet", + "chainId": 432201, + "networkId": 432201, + "explorers": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/dexalot", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dexalot-subnet-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/432204.ts b/packages/chains/chains/432204.ts new file mode 100644 index 00000000000..7e21eab5233 --- /dev/null +++ b/packages/chains/chains/432204.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dexalot Subnet", + "chain": "DEXALOT", + "icon": { + "url": "ipfs://QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://dexalot-subnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/dexalot/mainnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "dexalot", + "chainId": 432204, + "networkId": 432204, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dexalot-subnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4328.ts b/packages/chains/chains/4328.ts new file mode 100644 index 00000000000..c834abd6d22 --- /dev/null +++ b/packages/chains/chains/4328.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bobafuji Testnet", + "chain": "Bobafuji Testnet", + "rpc": [ + "https://bobafuji-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.avax.boba.network", + "wss://wss.testnet.avax.boba.network", + "https://replica.testnet.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaFujiTestnet", + "chainId": 4328, + "networkId": 4328, + "explorers": [ + { + "name": "Bobafuji Testnet block explorer", + "url": "https://blockexplorer.testnet.avax.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "testnet": true, + "slug": "bobafuji-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/43288.ts b/packages/chains/chains/43288.ts new file mode 100644 index 00000000000..93eac31ce16 --- /dev/null +++ b/packages/chains/chains/43288.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Boba Avax", + "chain": "Boba Avax", + "rpc": [ + "https://boba-avax.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://avax.boba.network", + "wss://wss.avax.boba.network", + "https://replica.avax.boba.network", + "wss://replica-wss.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://docs.boba.network/for-developers/network-avalanche", + "shortName": "bobaavax", + "chainId": 43288, + "networkId": 43288, + "explorers": [ + { + "name": "Boba Avax Explorer", + "url": "https://blockexplorer.avax.boba.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "boba-avax" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4444.ts b/packages/chains/chains/4444.ts new file mode 100644 index 00000000000..ffd8ae8a6d9 --- /dev/null +++ b/packages/chains/chains/4444.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Htmlcoin Mainnet", + "chain": "mainnet", + "rpc": [ + "https://htmlcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://janus.htmlcoin.com/api/" + ], + "faucets": [ + "https://gruvin.me/htmlcoin" + ], + "nativeCurrency": { + "name": "Htmlcoin", + "symbol": "HTML", + "decimals": 8 + }, + "infoURL": "https://htmlcoin.com", + "shortName": "html", + "chainId": 4444, + "networkId": 4444, + "icon": { + "url": "ipfs://QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2", + "width": 1000, + "height": 1000, + "format": "png" + }, + "status": "active", + "explorers": [ + { + "name": "htmlcoin", + "url": "https://explorer.htmlcoin.com", + "icon": { + "url": "ipfs://QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2", + "width": 1000, + "height": 1000, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "htmlcoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/44444.ts b/packages/chains/chains/44444.ts new file mode 100644 index 00000000000..6e53e66cb21 --- /dev/null +++ b/packages/chains/chains/44444.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Frenchain", + "chain": "fren", + "rpc": [ + "https://frenchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-02.frenscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "FREN", + "symbol": "FREN", + "decimals": 18 + }, + "infoURL": "https://frenchain.app", + "shortName": "FREN", + "chainId": 44444, + "networkId": 44444, + "icon": { + "url": "ipfs://QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4", + "width": 128, + "height": 128, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://frenscan.io", + "icon": { + "url": "ipfs://QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4", + "width": 128, + "height": 128, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "frenchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/444900.ts b/packages/chains/chains/444900.ts new file mode 100644 index 00000000000..2176804bc52 --- /dev/null +++ b/packages/chains/chains/444900.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Weelink Testnet", + "chain": "WLK", + "rpc": [ + "https://weelink-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://weelinknode1c.gw002.oneitfarm.com" + ], + "faucets": [ + "https://faucet.weelink.gw002.oneitfarm.com" + ], + "nativeCurrency": { + "name": "Weelink Chain Token", + "symbol": "tWLK", + "decimals": 18 + }, + "infoURL": "https://weelink.cloud", + "shortName": "wlkt", + "chainId": 444900, + "networkId": 444900, + "explorers": [ + { + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } + ], + "testnet": true, + "slug": "weelink-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/44787.ts b/packages/chains/chains/44787.ts new file mode 100644 index 00000000000..c06668bba9a --- /dev/null +++ b/packages/chains/chains/44787.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Celo Alfajores Testnet", + "chainId": 44787, + "shortName": "ALFA", + "chain": "CELO", + "networkId": 44787, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://celo-alfajores-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "wss://alfajores-forno.celo-testnet.org/ws", + "https://alfajores-forno.celo-testnet.org" + ], + "faucets": [ + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet", + "https://celo.org/developers/faucet" + ], + "infoURL": "https://docs.celo.org/", + "explorers": [ + { + "name": "Celoscan", + "url": "https://alfajores.celoscan.io/", + "standard": "EIP3091" + }, + { + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "celo-alfajores-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/45000.ts b/packages/chains/chains/45000.ts new file mode 100644 index 00000000000..f7af28386d0 --- /dev/null +++ b/packages/chains/chains/45000.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Autobahn Network", + "chain": "TXL", + "rpc": [ + "https://autobahn-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.autobahn.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "TXL", + "symbol": "TXL", + "decimals": 18 + }, + "infoURL": "https://autobahn.network", + "shortName": "AutobahnNetwork", + "chainId": 45000, + "networkId": 45000, + "icon": { + "url": "ipfs://QmZP19pbqTco4vaP9siduLWP8pdYArFK3onfR55tvjr12s", + "width": 489, + "height": 489, + "format": "png" + }, + "explorers": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": { + "url": "ipfs://QmZP19pbqTco4vaP9siduLWP8pdYArFK3onfR55tvjr12s", + "width": 489, + "height": 489, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "autobahn-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/46688.ts b/packages/chains/chains/46688.ts new file mode 100644 index 00000000000..51efadb9a6a --- /dev/null +++ b/packages/chains/chains/46688.ts @@ -0,0 +1,50 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fusion Testnet", + "chain": "FSN", + "icon": { + "url": "ipfs://QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth", + "width": 31, + "height": 31, + "format": "svg" + }, + "rpc": [ + "https://fusion-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.fusionnetwork.io", + "wss://testnet.fusionnetwork.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Fusion", + "symbol": "T-FSN", + "decimals": 18 + }, + "infoURL": "https://fusion.org", + "shortName": "tfsn", + "chainId": 46688, + "networkId": 46688, + "slip44": 288, + "explorers": [ + { + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": { + "url": "ipfs://QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd", + "width": 48, + "height": 51, + "format": "svg" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "fusion-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4689.ts b/packages/chains/chains/4689.ts new file mode 100644 index 00000000000..5da2878c128 --- /dev/null +++ b/packages/chains/chains/4689.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IoTeX Network Mainnet", + "chain": "iotex.io", + "rpc": [ + "https://iotex-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://babel-api.mainnet.iotex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "infoURL": "https://iotex.io", + "shortName": "iotex-mainnet", + "chainId": 4689, + "networkId": 4689, + "explorers": [ + { + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } + ], + "icon": { + "url": "ipfs://QmQKHQrvtyUC5b5B76ke5GPTGXoGTVCubXS6gHgzCAswKo", + "width": 250, + "height": 250, + "format": "png" + }, + "testnet": false, + "slug": "iotex-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4690.ts b/packages/chains/chains/4690.ts new file mode 100644 index 00000000000..34b56daee86 --- /dev/null +++ b/packages/chains/chains/4690.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IoTeX Network Testnet", + "chain": "iotex.io", + "rpc": [ + "https://iotex-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://babel-api.testnet.iotex.io" + ], + "faucets": [ + "https://faucet.iotex.io/" + ], + "nativeCurrency": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "infoURL": "https://iotex.io", + "shortName": "iotex-testnet", + "chainId": 4690, + "networkId": 4690, + "explorers": [ + { + "name": "testnet iotexscan", + "url": "https://testnet.iotexscan.io", + "standard": "EIP3091" + } + ], + "icon": { + "url": "ipfs://QmQKHQrvtyUC5b5B76ke5GPTGXoGTVCubXS6gHgzCAswKo", + "width": 250, + "height": 250, + "format": "png" + }, + "testnet": true, + "slug": "iotex-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/471100.ts b/packages/chains/chains/471100.ts new file mode 100644 index 00000000000..6af97b22e6c --- /dev/null +++ b/packages/chains/chains/471100.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Patex Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://patex-sepolia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test-rpc.patex.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://patex.io/", + "shortName": "psep", + "chainId": 471100, + "networkId": 471100, + "testnet": true, + "slug": "patex-sepolia-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/474142.ts b/packages/chains/chains/474142.ts new file mode 100644 index 00000000000..d22f7abcb09 --- /dev/null +++ b/packages/chains/chains/474142.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OpenChain Mainnet", + "chain": "OpenChain", + "rpc": [ + "https://openchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" + ], + "faucets": [], + "nativeCurrency": { + "name": "OpenCoin", + "symbol": "OPC", + "decimals": 10 + }, + "infoURL": "https://www.openchain.live", + "shortName": "oc", + "chainId": 474142, + "networkId": 474142, + "explorers": [ + { + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } + ], + "testnet": false, + "slug": "openchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4759.ts b/packages/chains/chains/4759.ts new file mode 100644 index 00000000000..fc666a4ffdf --- /dev/null +++ b/packages/chains/chains/4759.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MEVerse Chain Testnet", + "chain": "MEVerse", + "rpc": [ + "https://meverse-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.meversetestnet.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "TESTMEV", + "chainId": 4759, + "networkId": 4759, + "icon": { + "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", + "width": 800, + "height": 800, + "format": "png" + }, + "explorers": [ + { + "name": "MEVerse Chain Testnet Explorer", + "url": "https://testnet.meversescan.io", + "standard": "none", + "icon": { + "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", + "width": 800, + "height": 800, + "format": "png" + } + } + ], + "testnet": true, + "slug": "meverse-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4777.ts b/packages/chains/chains/4777.ts new file mode 100644 index 00000000000..b7727ffada8 --- /dev/null +++ b/packages/chains/chains/4777.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BlackFort Exchange Network Testnet", + "chain": "TBXN", + "rpc": [ + "https://blackfort-exchange-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://blackfort.exchange", + "shortName": "TBXN", + "chainId": 4777, + "networkId": 4777, + "icon": { + "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", + "width": 1968, + "height": 1968, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "blackfort-exchange-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/47805.ts b/packages/chains/chains/47805.ts new file mode 100644 index 00000000000..073e49f8464 --- /dev/null +++ b/packages/chains/chains/47805.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "REI Network", + "chain": "REI", + "rpc": [ + "https://rei-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.rei.network", + "wss://rpc.rei.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "REI", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://rei.network/", + "shortName": "REI", + "chainId": 47805, + "networkId": 47805, + "explorers": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "rei-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/486217935.ts b/packages/chains/chains/486217935.ts new file mode 100644 index 00000000000..5e6f1dcf3cd --- /dev/null +++ b/packages/chains/chains/486217935.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gather Devnet Network", + "chain": "GTH", + "rpc": [ + "https://gather-devnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://devnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "dGTH", + "chainId": 486217935, + "networkId": 486217935, + "explorers": [ + { + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "gather-devnet-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49049.ts b/packages/chains/chains/49049.ts new file mode 100644 index 00000000000..232529d36f5 --- /dev/null +++ b/packages/chains/chains/49049.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Wireshape Floripa Testnet", + "title": "Wireshape Floripa Testnet", + "chain": "Wireshape", + "icon": { + "url": "ipfs://QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx", + "width": 1280, + "height": 1280, + "format": "png" + }, + "rpc": [ + "https://wireshape-floripa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-floripa.wireshape.org", + "https://wireshape-floripa-testnet.rpc.thirdweb.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "WIRE", + "symbol": "WIRE", + "decimals": 18 + }, + "infoURL": "https://wireshape.org", + "shortName": "floripa", + "chainId": 49049, + "networkId": 49049, + "explorers": [ + { + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "wireshape-floripa-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49088.ts b/packages/chains/chains/49088.ts new file mode 100644 index 00000000000..c29df6c93ff --- /dev/null +++ b/packages/chains/chains/49088.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bifrost Testnet", + "title": "The Bifrost Testnet network", + "chain": "BFC", + "rpc": [ + "https://bifrost-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://public-01.testnet.thebifrost.io/rpc", + "https://public-02.testnet.thebifrost.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://thebifrost.io", + "shortName": "tbfc", + "chainId": 49088, + "networkId": 49088, + "icon": { + "url": "ipfs://QmcHvn2Wq91ULyEH5s3uHjosX285hUgyJHwggFJUd3L5uh", + "width": 128, + "height": 128, + "format": "png" + }, + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.thebifrost.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bifrost-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4918.ts b/packages/chains/chains/4918.ts new file mode 100644 index 00000000000..2cfed05a12d --- /dev/null +++ b/packages/chains/chains/4918.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Venidium Testnet", + "chain": "XVM", + "rpc": [ + "https://venidium-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-evm-testnet.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "txvm", + "chainId": 4918, + "networkId": 4918, + "explorers": [ + { + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "venidium-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4919.ts b/packages/chains/chains/4919.ts new file mode 100644 index 00000000000..a0b1cd91a64 --- /dev/null +++ b/packages/chains/chains/4919.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Venidium Mainnet", + "chain": "XVM", + "icon": { + "url": "ipfs://bafkreiaplwlym5g27jm4mjhotfqq6al2cxp3fnkmzdusqjg7wnipq5wn2e", + "width": 1000, + "height": 1000, + "format": "png" + }, + "rpc": [ + "https://venidium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "xvm", + "chainId": 4919, + "networkId": 4919, + "explorers": [ + { + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "venidium" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/49797.ts b/packages/chains/chains/49797.ts new file mode 100644 index 00000000000..0b121d77beb --- /dev/null +++ b/packages/chains/chains/49797.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Energi Testnet", + "chain": "NRG", + "rpc": [ + "https://energi-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://nodeapi.test.energi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "infoURL": "https://www.energi.world/", + "shortName": "tnrg", + "chainId": 49797, + "networkId": 49797, + "slip44": 49797, + "testnet": true, + "slug": "energi-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/4999.ts b/packages/chains/chains/4999.ts new file mode 100644 index 00000000000..5f9f941d48a --- /dev/null +++ b/packages/chains/chains/4999.ts @@ -0,0 +1,51 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BlackFort Exchange Network", + "chain": "BXN", + "rpc": [ + "https://blackfort-exchange-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.blackfort.network/rpc", + "https://mainnet-1.blackfort.network/rpc", + "https://mainnet-2.blackfort.network/rpc", + "https://mainnet-3.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://blackfort.exchange", + "shortName": "BXN", + "chainId": 4999, + "networkId": 4999, + "icon": { + "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", + "width": 1968, + "height": 1968, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "blackfort-exchange-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/500.ts b/packages/chains/chains/500.ts new file mode 100644 index 00000000000..bef960eabd3 --- /dev/null +++ b/packages/chains/chains/500.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Camino C-Chain", + "chain": "CAM", + "rpc": [ + "https://camino-c-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.camino.network/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.network/", + "shortName": "Camino", + "chainId": 500, + "networkId": 1000, + "icon": { + "url": "ipfs://QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", + "width": 768, + "height": 768, + "format": "png" + }, + "explorers": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ], + "testnet": false, + "slug": "camino-c-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5000.ts b/packages/chains/chains/5000.ts new file mode 100644 index 00000000000..aa25d8e87b3 --- /dev/null +++ b/packages/chains/chains/5000.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mantle", + "chain": "ETH", + "icon": { + "url": "ipfs://QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o", + "width": 225, + "height": 225, + "format": "png" + }, + "rpc": [ + "https://mantle.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.mantle.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle", + "chainId": 5000, + "networkId": 5000, + "explorers": [ + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.mantle.xyz" + } + ] + }, + "testnet": false, + "slug": "mantle" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/50001.ts b/packages/chains/chains/50001.ts new file mode 100644 index 00000000000..763fd41c61b --- /dev/null +++ b/packages/chains/chains/50001.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Liveplex OracleEVM", + "chain": "Liveplex OracleEVM Network", + "rpc": [ + "https://liveplex-oracleevm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.oracle.liveplex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "LOE", + "chainId": 50001, + "networkId": 50001, + "explorers": [], + "testnet": false, + "slug": "liveplex-oracleevm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5001.ts b/packages/chains/chains/5001.ts new file mode 100644 index 00000000000..ff05d6849d6 --- /dev/null +++ b/packages/chains/chains/5001.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mantle Testnet", + "chain": "ETH", + "rpc": [ + "https://mantle-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.mantle.xyz" + ], + "faucets": [ + "https://faucet.testnet.mantle.xyz" + ], + "nativeCurrency": { + "name": "Testnet Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle-testnet", + "chainId": 5001, + "networkId": 5001, + "explorers": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "mantle-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5002.ts b/packages/chains/chains/5002.ts new file mode 100644 index 00000000000..1b88681d316 --- /dev/null +++ b/packages/chains/chains/5002.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Treasurenet Mainnet Alpha", + "chain": "Treasurenet Mainnet Alpha", + "icon": { + "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", + "width": 1844, + "height": 1920, + "format": "png" + }, + "rpc": [ + "https://treasurenet-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node0.treasurenet.io", + "https://node1.treasurenet.io", + "https://node2.treasurenet.io", + "https://node3.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.treasurenet.io", + "shortName": "treasurenet", + "chainId": 5002, + "networkId": 5002, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": { + "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", + "width": 1844, + "height": 1920, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "treasurenet-alpha" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/50021.ts b/packages/chains/chains/50021.ts new file mode 100644 index 00000000000..53580dd0387 --- /dev/null +++ b/packages/chains/chains/50021.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "GTON Testnet", + "chain": "GTON Testnet", + "rpc": [ + "https://gton-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.gton.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "tgton", + "chainId": 50021, + "networkId": 50021, + "explorers": [ + { + "name": "GTON Testnet Network Explorer", + "url": "https://explorer.testnet.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3" + }, + "testnet": true, + "slug": "gton-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5005.ts b/packages/chains/chains/5005.ts new file mode 100644 index 00000000000..51969663700 --- /dev/null +++ b/packages/chains/chains/5005.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Treasurenet Testnet", + "chain": "Treasurenet Testnet", + "icon": { + "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", + "width": 1844, + "height": 1920, + "format": "png" + }, + "rpc": [ + "https://treasurenet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node0.testnet.treasurenet.io", + "https://node1.testnet.treasurenet.io", + "https://node2.testnet.treasurenet.io", + "https://node3.testnet.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.testnet.treasurenet.io", + "shortName": "tntest", + "chainId": 5005, + "networkId": 5005, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.testnet.treasurenet.io", + "icon": { + "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", + "width": 1844, + "height": 1920, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "treasurenet-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/501.ts b/packages/chains/chains/501.ts new file mode 100644 index 00000000000..0c1b34a1c03 --- /dev/null +++ b/packages/chains/chains/501.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Columbus Test Network", + "chain": "CAM", + "rpc": [ + "https://columbus-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://columbus.camino.network/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.network/", + "shortName": "Columbus", + "chainId": 501, + "networkId": 1001, + "icon": { + "url": "ipfs://QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", + "width": 768, + "height": 768, + "format": "png" + }, + "explorers": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ], + "testnet": true, + "slug": "columbus-test-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/503129905.ts b/packages/chains/chains/503129905.ts new file mode 100644 index 00000000000..973b14be9c9 --- /dev/null +++ b/packages/chains/chains/503129905.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nebula Staging", + "chain": "staging-faint-slimy-achird", + "rpc": [ + "https://nebula-staging.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", + "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" + ], + "faucets": [], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-staging", + "chainId": 503129905, + "networkId": 503129905, + "explorers": [ + { + "name": "nebula", + "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", + "icon": { + "url": "ipfs://QmfQkfmQuoUUUKwF1yCcrPEzFcWLaqNyiSv5YMcSj6zs74", + "width": 500, + "height": 500, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "nebula-staging" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/51178.ts b/packages/chains/chains/51178.ts new file mode 100644 index 00000000000..d859b380482 --- /dev/null +++ b/packages/chains/chains/51178.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Opside Testnet Pre-Alpha", + "chain": "ETH", + "rpc": [ + "https://opside-testnet-pre-alpha.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://pre-alpha-us-http-geth.opside.network", + "https://pre-alpha-hk-http-geth.opside.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "IDE Test Token", + "symbol": "IDE", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://opsi.de/", + "shortName": "Opside-Testnet", + "chainId": 51178, + "networkId": 51178, + "icon": { + "url": "ipfs://QmZnE2ygPL2ZGuzHGvFCHmrqxwdurrhz3K1yPnwLzKbgay", + "width": 401, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "OpsideTestnetInfo", + "url": "https://pre-alpha.opside.info", + "icon": { + "url": "ipfs://QmZnE2ygPL2ZGuzHGvFCHmrqxwdurrhz3K1yPnwLzKbgay", + "width": 401, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "opside-testnet-pre-alpha" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/512.ts b/packages/chains/chains/512.ts new file mode 100644 index 00000000000..dac78127848 --- /dev/null +++ b/packages/chains/chains/512.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Double-A Chain Mainnet", + "chain": "AAC", + "rpc": [ + "https://double-a-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.acuteangle.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aac", + "chainId": 512, + "networkId": 512, + "slip44": 1512, + "explorers": [ + { + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + } + ], + "icon": { + "url": "ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", + "width": 512, + "height": 512, + "format": "png" + }, + "testnet": false, + "slug": "double-a-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/512512.ts b/packages/chains/chains/512512.ts new file mode 100644 index 00000000000..2c4d512c551 --- /dev/null +++ b/packages/chains/chains/512512.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CMP-Testnet", + "chain": "CMP", + "rpc": [ + "https://cmp-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://galaxy.block.caduceus.foundation", + "wss://galaxy.block.caduceus.foundation" + ], + "faucets": [ + "https://dev.caduceus.foundation/testNetwork" + ], + "nativeCurrency": { + "name": "Caduceus Testnet Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp", + "chainId": 512512, + "networkId": 512512, + "explorers": [ + { + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } + ], + "testnet": true, + "slug": "cmp-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/513.ts b/packages/chains/chains/513.ts new file mode 100644 index 00000000000..b661b76e34d --- /dev/null +++ b/packages/chains/chains/513.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Double-A Chain Testnet", + "chain": "AAC", + "icon": { + "url": "ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://double-a-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.acuteangle.com" + ], + "faucets": [ + "https://scan-testnet.acuteangle.com/faucet" + ], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aact", + "chainId": 513, + "networkId": 513, + "explorers": [ + { + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "double-a-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/513100.ts b/packages/chains/chains/513100.ts new file mode 100644 index 00000000000..71d5d541de8 --- /dev/null +++ b/packages/chains/chains/513100.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ethereum Fair", + "chainId": 513100, + "networkId": 513100, + "shortName": "ethf", + "chain": "ETHF", + "nativeCurrency": { + "name": "EthereumFair", + "symbol": "ETHF", + "decimals": 18 + }, + "rpc": [ + "https://ethereum-fair.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.etherfair.org" + ], + "faucets": [], + "explorers": [ + { + "name": "etherfair", + "url": "https://www.oklink.com/ethf", + "standard": "EIP3091" + } + ], + "infoURL": "https://etherfair.org", + "testnet": false, + "slug": "ethereum-fair" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/516.ts b/packages/chains/chains/516.ts new file mode 100644 index 00000000000..533ce622d44 --- /dev/null +++ b/packages/chains/chains/516.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gear Zero Network Mainnet", + "chain": "GearZero", + "rpc": [ + "https://gear-zero-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://gzn.linksme.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/mainnet", + "shortName": "gz-mainnet", + "chainId": 516, + "networkId": 516, + "slip44": 516, + "explorers": [], + "testnet": false, + "slug": "gear-zero-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5165.ts b/packages/chains/chains/5165.ts new file mode 100644 index 00000000000..300d1dc5153 --- /dev/null +++ b/packages/chains/chains/5165.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fastex Chain (Bahamut)", + "title": "Bahamut mainnet Sahara", + "chain": "Fastex Chain (Bahamut)", + "icon": { + "url": "ipfs://QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [ + "https://fastex-chain-bahamut.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.sahara.bahamutchain.com", + "https://rpc2.sahara.bahamutchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "ftn", + "infoURL": "https://fastexchain.com", + "chainId": 5165, + "networkId": 5165, + "explorers": [ + { + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "fastex-chain-bahamut" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5167003.ts b/packages/chains/chains/5167003.ts new file mode 100644 index 00000000000..7ea6ffd09bd --- /dev/null +++ b/packages/chains/chains/5167003.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MXC Wannsee zkEVM Testnet", + "chain": "MXC zkEVM", + "icon": { + "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", + "width": 159, + "height": 159, + "format": "png" + }, + "rpc": [ + "https://mxc-wannsee-zkevm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://wannsee-rpc.mxc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MXC Wannsee zkEVM Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://wannsee.mxc.com/docs/intro", + "shortName": "MXC", + "chainId": 5167003, + "networkId": 5167003, + "explorers": [ + { + "name": "MXC Wannsee zkEVM Testnet", + "url": "https://wannsee-explorer.mxc.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "mxc-wannsee-zkevm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/51712.ts b/packages/chains/chains/51712.ts new file mode 100644 index 00000000000..bcbf554acbd --- /dev/null +++ b/packages/chains/chains/51712.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sardis Mainnet", + "chain": "SRDX", + "icon": { + "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://sardis.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.sardisnetwork.com" + ], + "faucets": [ + "https://faucet.sardisnetwork.com" + ], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXm", + "chainId": 51712, + "networkId": 51712, + "explorers": [ + { + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "sardis" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5177.ts b/packages/chains/chains/5177.ts new file mode 100644 index 00000000000..f0de177e6de --- /dev/null +++ b/packages/chains/chains/5177.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TLChain Network Mainnet", + "chain": "TLC", + "icon": { + "url": "ipfs://QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3", + "width": 2048, + "height": 2048, + "format": "png" + }, + "rpc": [ + "https://tlchain-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.tlxscan.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TLChain Network", + "symbol": "TLC", + "decimals": 18 + }, + "infoURL": "https://tlchain.network/", + "shortName": "tlc", + "chainId": 5177, + "networkId": 5177, + "explorers": [ + { + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "tlchain-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5197.ts b/packages/chains/chains/5197.ts new file mode 100644 index 00000000000..dc409c7562b --- /dev/null +++ b/packages/chains/chains/5197.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "EraSwap Mainnet", + "chain": "ESN", + "icon": { + "url": "ipfs://QmV1wZ1RVXeD7216aiVBpLkbBBHWNuoTvcSzpVQsqi2uaH", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [ + "https://eraswap.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.eraswap.network", + "https://rpc-mumbai.mainnet.eraswap.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "EraSwap", + "symbol": "ES", + "decimals": 18 + }, + "infoURL": "https://eraswap.info/", + "shortName": "es", + "chainId": 5197, + "networkId": 5197, + "testnet": false, + "slug": "eraswap" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/520.ts b/packages/chains/chains/520.ts new file mode 100644 index 00000000000..da127642b70 --- /dev/null +++ b/packages/chains/chains/520.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "XT Smart Chain Mainnet", + "chain": "XSC", + "icon": { + "url": "ipfs://QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s", + "width": 98, + "height": 96, + "format": "png" + }, + "rpc": [ + "https://xt-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://datarpc1.xsc.pub", + "https://datarpc2.xsc.pub", + "https://datarpc3.xsc.pub" + ], + "faucets": [ + "https://xsc.pub/faucet" + ], + "nativeCurrency": { + "name": "XT Smart Chain Native Token", + "symbol": "XT", + "decimals": 18 + }, + "infoURL": "https://xsc.pub/", + "shortName": "xt", + "chainId": 520, + "networkId": 1024, + "explorers": [ + { + "name": "xscscan", + "url": "https://xscscan.pub", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "xt-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5234.ts b/packages/chains/chains/5234.ts new file mode 100644 index 00000000000..c38ecc9d80a --- /dev/null +++ b/packages/chains/chains/5234.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Humanode Mainnet", + "chain": "HMND", + "rpc": [ + "https://humanode.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://explorer-rpc-http.mainnet.stages.humanode.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "HMND", + "symbol": "HMND", + "decimals": 18 + }, + "infoURL": "https://humanode.io", + "shortName": "hmnd", + "chainId": 5234, + "networkId": 5234, + "explorers": [], + "testnet": false, + "slug": "humanode" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/529.ts b/packages/chains/chains/529.ts new file mode 100644 index 00000000000..83b83e561ea --- /dev/null +++ b/packages/chains/chains/529.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Firechain Mainnet", + "chain": "FIRE", + "icon": { + "url": "ipfs://QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://firechain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.rpc1.thefirechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "fire", + "chainId": 529, + "networkId": 529, + "explorers": [], + "status": "incubating", + "testnet": false, + "slug": "firechain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/530.ts b/packages/chains/chains/530.ts new file mode 100644 index 00000000000..cde13f42369 --- /dev/null +++ b/packages/chains/chains/530.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "F(x)Core Mainnet Network", + "chain": "Fxcore", + "rpc": [ + "https://f-x-core-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://fx-json-web3.functionx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "infoURL": "https://functionx.io/", + "shortName": "FxCore", + "chainId": 530, + "networkId": 530, + "icon": { + "url": "ipfs://bafkreifrf2iq3k3dqfbvp3pacwuxu33up3usmrhojt5ielyfty7xkixu3i", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "f-x-core-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5315.ts b/packages/chains/chains/5315.ts new file mode 100644 index 00000000000..9649e241939 --- /dev/null +++ b/packages/chains/chains/5315.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Uzmi Network Mainnet", + "chain": "UZMI", + "rpc": [ + "https://uzmi-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://network.uzmigames.com.br/" + ], + "faucets": [], + "nativeCurrency": { + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 + }, + "infoURL": "https://uzmigames.com.br/", + "shortName": "UZMI", + "chainId": 5315, + "networkId": 5315, + "testnet": false, + "slug": "uzmi-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534.ts b/packages/chains/chains/534.ts new file mode 100644 index 00000000000..3d36fe138be --- /dev/null +++ b/packages/chains/chains/534.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Candle", + "chain": "Candle", + "rpc": [ + "https://candle.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://candle-rpc.com/", + "https://rpc.cndlchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "CANDLE", + "symbol": "CNDL", + "decimals": 18 + }, + "infoURL": "https://candlelabs.org/", + "shortName": "CNDL", + "chainId": 534, + "networkId": 534, + "slip44": 674, + "explorers": [ + { + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "candle" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534351.ts b/packages/chains/chains/534351.ts new file mode 100644 index 00000000000..554fa5042bd --- /dev/null +++ b/packages/chains/chains/534351.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Scroll Sepolia Testnet", + "chain": "ETH", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-sepolia", + "chainId": 534351, + "networkId": 534351, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "testnet": true, + "slug": "scroll-sepolia-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534352.ts b/packages/chains/chains/534352.ts new file mode 100644 index 00000000000..46d42062aac --- /dev/null +++ b/packages/chains/chains/534352.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Scroll", + "chain": "ETH", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr", + "chainId": 534352, + "networkId": 534352, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + }, + "testnet": false, + "slug": "scroll" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534353.ts b/packages/chains/chains/534353.ts new file mode 100644 index 00000000000..27a8ff7c923 --- /dev/null +++ b/packages/chains/chains/534353.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Scroll Alpha Testnet", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://scroll-alpha-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://alpha-rpc.scroll.io/l2" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-alpha", + "chainId": 534353, + "networkId": 534353, + "explorers": [ + { + "name": "Scroll Alpha Testnet Block Explorer", + "url": "https://blockscout.scroll.io", + "standard": "EIP3091" + }, + { + "name": "Scroll Alpha Testnet Block Explorer", + "url": "https://scrollscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [] + }, + "testnet": true, + "slug": "scroll-alpha-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/534849.ts b/packages/chains/chains/534849.ts new file mode 100644 index 00000000000..aa4139c7f9a --- /dev/null +++ b/packages/chains/chains/534849.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shinarium Beta", + "chain": "Shinarium", + "icon": { + "url": "ipfs://bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu", + "width": 1000, + "height": 1000, + "format": "png" + }, + "rpc": [ + "https://shinarium-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.shinarium.org" + ], + "faucets": [ + "https://faucet.shinarium.org" + ], + "nativeCurrency": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "infoURL": "https://shinarium.org", + "shortName": "shi", + "chainId": 534849, + "networkId": 534849, + "explorers": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "shinarium-beta" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/535037.ts b/packages/chains/chains/535037.ts new file mode 100644 index 00000000000..a8495739331 --- /dev/null +++ b/packages/chains/chains/535037.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BeanEco SmartChain", + "title": "BESC Mainnet", + "chain": "BESC", + "rpc": [ + "https://beaneco-smartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.bescscan.io" + ], + "faucets": [ + "faucet.bescscan.ion" + ], + "nativeCurrency": { + "name": "BeanEco SmartChain", + "symbol": "BESC", + "decimals": 18 + }, + "infoURL": "besceco.finance", + "shortName": "BESC", + "chainId": 535037, + "networkId": 535037, + "explorers": [ + { + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "beaneco-smartchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/53935.ts b/packages/chains/chains/53935.ts new file mode 100644 index 00000000000..433eb414192 --- /dev/null +++ b/packages/chains/chains/53935.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DFK Chain", + "chain": "DFK", + "icon": { + "url": "ipfs://QmQB48m15TzhUFrmu56QCRQjkrkgUaKfgCmKE8o3RzmuPJ", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://dfk-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 + }, + "infoURL": "https://defikingdoms.com", + "shortName": "DFK", + "chainId": 53935, + "networkId": 53935, + "explorers": [ + { + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "dfk-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/54211.ts b/packages/chains/chains/54211.ts new file mode 100644 index 00000000000..dcc53a0e12d --- /dev/null +++ b/packages/chains/chains/54211.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Haqq Chain Testnet", + "chain": "TestEdge2", + "rpc": [ + "https://haqq-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.eth.testedge2.haqq.network" + ], + "faucets": [ + "https://testedge2.haqq.network" + ], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLMT", + "chainId": 54211, + "networkId": 54211, + "explorers": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "haqq-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/54321.ts b/packages/chains/chains/54321.ts new file mode 100644 index 00000000000..6665cd6185c --- /dev/null +++ b/packages/chains/chains/54321.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Toronet Testnet", + "chain": "Toronet", + "icon": { + "url": "ipfs://QmciSvgLatP6jhgdazuiyD3fSrhipfAN7wC943v1qxcrpv", + "width": 846, + "height": 733, + "format": "png" + }, + "rpc": [ + "https://toronet-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://testnet.toronet.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "ToronetTestnet", + "chainId": 54321, + "networkId": 54321, + "ens": { + "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } + ], + "testnet": true, + "slug": "toronet-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55004.ts b/packages/chains/chains/55004.ts new file mode 100644 index 00000000000..775d176e7a2 --- /dev/null +++ b/packages/chains/chains/55004.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Titan", + "chain": "ETH", + "rpc": [ + "https://titan.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.titan.tokamak.network", + "wss://rpc.titan.tokamak.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://tokamak.network", + "shortName": "teth", + "chainId": 55004, + "networkId": 55004, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "titan" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/555.ts b/packages/chains/chains/555.ts new file mode 100644 index 00000000000..8e0a4f75d3a --- /dev/null +++ b/packages/chains/chains/555.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vela1 Chain Mainnet", + "chain": "VELA1", + "rpc": [ + "https://vela1-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.velaverse.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "CLASS COIN", + "symbol": "CLASS", + "decimals": 18 + }, + "infoURL": "https://velaverse.io", + "shortName": "CLASS", + "chainId": 555, + "networkId": 555, + "explorers": [ + { + "name": "Vela1 Chain Mainnet Explorer", + "url": "https://exp.velaverse.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "vela1-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5551.ts b/packages/chains/chains/5551.ts new file mode 100644 index 00000000000..598092abe72 --- /dev/null +++ b/packages/chains/chains/5551.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nahmii Mainnet", + "chain": "Nahmii", + "rpc": [ + "https://nahmii.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://l2.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii", + "chainId": 5551, + "networkId": 5551, + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "explorers": [ + { + "name": "Nahmii mainnet explorer", + "url": "https://explorer.nahmii.io", + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + }, + "testnet": false, + "slug": "nahmii" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5553.ts b/packages/chains/chains/5553.ts new file mode 100644 index 00000000000..80f28277b26 --- /dev/null +++ b/packages/chains/chains/5553.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nahmii Testnet", + "chain": "Nahmii", + "rpc": [ + "https://nahmii-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://l2.testnet.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "NahmiiTestnet", + "chainId": 5553, + "networkId": 5553, + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.nahmii.io", + "icon": { + "url": "ipfs://QmZhKXgoGpzvthr2eh8ZNgT75YvMtEBegdELAaMPPzf5QT", + "width": 384, + "height": 384, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + }, + "testnet": true, + "slug": "nahmii-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555.ts b/packages/chains/chains/5555.ts new file mode 100644 index 00000000000..6f05da044ce --- /dev/null +++ b/packages/chains/chains/5555.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Chain Verse Mainnet", + "chain": "CVERSE", + "icon": { + "url": "ipfs://QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk", + "width": 1000, + "height": 1436, + "format": "png" + }, + "rpc": [ + "https://chain-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.chainverse.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://chainverse.info", + "shortName": "cverse", + "chainId": 5555, + "networkId": 5555, + "explorers": [ + { + "name": "Chain Verse Explorer", + "url": "https://explorer.chainverse.info", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "chain-verse" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55555.ts b/packages/chains/chains/55555.ts new file mode 100644 index 00000000000..a505b93577b --- /dev/null +++ b/packages/chains/chains/55555.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "REI Chain Mainnet", + "chain": "REI", + "icon": { + "url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf", + "width": 591, + "height": 591, + "format": "svg" + }, + "rpc": [ + "https://rei-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rei-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55555" + ], + "nativeCurrency": { + "name": "Rei", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "reichain", + "chainId": 55555, + "networkId": 55555, + "explorers": [ + { + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "rei-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555555.ts b/packages/chains/chains/5555555.ts new file mode 100644 index 00000000000..baf4894cb17 --- /dev/null +++ b/packages/chains/chains/5555555.ts @@ -0,0 +1,52 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Imversed Mainnet", + "chain": "Imversed", + "rpc": [ + "https://imversed.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonrpc.imversed.network", + "https://ws-jsonrpc.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed", + "chainId": 5555555, + "networkId": 5555555, + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "Imversed EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-c.imversed.com", + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "imversed" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5555558.ts b/packages/chains/chains/5555558.ts new file mode 100644 index 00000000000..6242aabc72d --- /dev/null +++ b/packages/chains/chains/5555558.ts @@ -0,0 +1,52 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Imversed Testnet", + "chain": "Imversed", + "rpc": [ + "https://imversed-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonrpc-test.imversed.network", + "https://ws-jsonrpc-test.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed-testnet", + "chainId": 5555558, + "networkId": 5555558, + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "Imversed EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-t.imversed.com", + "icon": { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "imversed-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/55556.ts b/packages/chains/chains/55556.ts new file mode 100644 index 00000000000..38880c9c07f --- /dev/null +++ b/packages/chains/chains/55556.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "REI Chain Testnet", + "chain": "REI", + "icon": { + "url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf", + "width": 591, + "height": 591, + "format": "svg" + }, + "rpc": [ + "https://rei-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rei-testnet-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55556" + ], + "nativeCurrency": { + "name": "tRei", + "symbol": "tREI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "trei", + "chainId": 55556, + "networkId": 55556, + "explorers": [ + { + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "rei-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/558.ts b/packages/chains/chains/558.ts new file mode 100644 index 00000000000..1d364e26031 --- /dev/null +++ b/packages/chains/chains/558.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tao Network", + "chain": "TAO", + "rpc": [ + "https://tao-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.tao.network", + "http://rpc.testnet.tao.network:8545", + "https://rpc.tao.network", + "wss://rpc.tao.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tao", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://tao.network", + "shortName": "tao", + "chainId": 558, + "networkId": 558, + "testnet": true, + "slug": "tao-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5611.ts b/packages/chains/chains/5611.ts new file mode 100644 index 00000000000..a0de115177b --- /dev/null +++ b/packages/chains/chains/5611.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "opBNB", + "chain": "opBNB", + "shortName": "opBNB", + "chainId": 5611, + "testnet": true, + "nativeCurrency": { + "name": "Testnet bnb", + "symbol": "Tbnb", + "decimals": 18 + }, + "rpc": [ + "https://opbnb.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://opbnb-testnet-rpc.bnbchain.org" + ], + "explorers": [ + { + "name": "opBNB Scan", + "url": "https://opbnbscan.com/", + "standard": "" + } + ], + "faucets": [ + "https://opbnb-testnet-bridge.bnbchain.org/" + ], + "infoURL": "https://docs.bnbchain.org/", + "icon": { + "url": "ipfs://QmfFvfFsQKby3M32uqr8T55ENBnTHL8bkdeeu6rYVL2n4z/opbnblogo.svg", + "height": 512, + "width": 512, + "format": "svg" + }, + "slug": "opbnb" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/56288.ts b/packages/chains/chains/56288.ts new file mode 100644 index 00000000000..f35057e2214 --- /dev/null +++ b/packages/chains/chains/56288.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Boba BNB Mainnet", + "chain": "Boba BNB Mainnet", + "rpc": [ + "https://boba-bnb.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://bnb.boba.network", + "http://boba-bnb.gateway.tenderly.co/", + "http://gateway.tenderly.co/public/boba-bnb", + "https://replica.bnb.boba.network", + "wss://boba-bnb.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-bnb" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnb", + "chainId": 56288, + "networkId": 56288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://blockexplorer.bnb.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "testnet": false, + "slug": "boba-bnb" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/568.ts b/packages/chains/chains/568.ts new file mode 100644 index 00000000000..59969aec49b --- /dev/null +++ b/packages/chains/chains/568.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dogechain Testnet", + "chain": "DC", + "icon": { + "url": "ipfs://QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs", + "width": 732, + "height": 732, + "format": "png" + }, + "rpc": [ + "https://dogechain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.dogechain.dog" + ], + "faucets": [ + "https://faucet.dogechain.dog" + ], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dct", + "chainId": 568, + "networkId": 568, + "explorers": [ + { + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dogechain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/570.ts b/packages/chains/chains/570.ts new file mode 100644 index 00000000000..ddbb4e98509 --- /dev/null +++ b/packages/chains/chains/570.ts @@ -0,0 +1,33 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rollux Mainnet", + "chain": "SYS", + "rpc": [ + "https://rollux.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.rollux.com", + "https://rollux.public-rpc.com", + "wss://rpc.rollux.com/wss", + "https://rpc.ankr.com/rollux/${ANKR_API_KEY}" + ], + "faucets": [ + "https://rollux.id/faucetapp" + ], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "sys-rollux", + "chainId": 570, + "networkId": 570, + "explorers": [ + { + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "rollux" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5700.ts b/packages/chains/chains/5700.ts new file mode 100644 index 00000000000..ced417d2e0d --- /dev/null +++ b/packages/chains/chains/5700.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Syscoin Tanenbaum Testnet", + "chain": "SYS", + "rpc": [ + "https://syscoin-tanenbaum-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tanenbaum.io", + "wss://rpc.tanenbaum.io/wss" + ], + "faucets": [ + "https://faucet.tanenbaum.io" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 + }, + "infoURL": "https://syscoin.org", + "shortName": "tsys", + "chainId": 5700, + "networkId": 5700, + "explorers": [ + { + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "syscoin-tanenbaum-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/57000.ts b/packages/chains/chains/57000.ts new file mode 100644 index 00000000000..db117de64be --- /dev/null +++ b/packages/chains/chains/57000.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rollux Testnet", + "chain": "SYS", + "rpc": [ + "https://rollux-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-tanenbaum.rollux.com", + "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", + "wss://rpc-tanenbaum.rollux.com/wss" + ], + "faucets": [ + "https://rollux.id/faucetapp" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "tsys-rollux", + "chainId": 57000, + "networkId": 57000, + "explorers": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "rollux-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5729.ts b/packages/chains/chains/5729.ts new file mode 100644 index 00000000000..eaa9c93545a --- /dev/null +++ b/packages/chains/chains/5729.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Hika Network Testnet", + "title": "Hika Network Testnet", + "chain": "HIK", + "icon": { + "url": "ipfs://QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp", + "width": 350, + "height": 84, + "format": "png" + }, + "rpc": [ + "https://hika-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.hika.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hik Token", + "symbol": "HIK", + "decimals": 18 + }, + "infoURL": "https://hika.network/", + "shortName": "hik", + "chainId": 5729, + "networkId": 5729, + "explorers": [ + { + "name": "Hika Network Testnet Explorer", + "url": "https://scan-testnet.hika.network", + "standard": "none" + } + ], + "testnet": true, + "slug": "hika-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5758.ts b/packages/chains/chains/5758.ts new file mode 100644 index 00000000000..6e94bb4404d --- /dev/null +++ b/packages/chains/chains/5758.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SatoshiChain Testnet", + "chain": "SATS", + "icon": { + "url": "ipfs://QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7", + "width": 1251, + "height": 1251, + "format": "png" + }, + "rpc": [ + "https://satoshichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.satoshichain.io" + ], + "faucets": [ + "https://faucet.satoshichain.io" + ], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "satst", + "chainId": 5758, + "networkId": 5758, + "explorers": [ + { + "name": "SatoshiChain Testnet Explorer", + "url": "https://testnet.satoshiscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "satoshichain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5777.ts b/packages/chains/chains/5777.ts new file mode 100644 index 00000000000..1b0f93e4a77 --- /dev/null +++ b/packages/chains/chains/5777.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ganache", + "title": "Ganache GUI Ethereum Testnet", + "chain": "ETH", + "icon": { + "url": "ipfs://Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW", + "width": 267, + "height": 300, + "format": "png" + }, + "rpc": [ + "https://ganache.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://127.0.0.1:7545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ganache Test Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://trufflesuite.com/ganache/", + "shortName": "ggui", + "chainId": 5777, + "networkId": 5777, + "explorers": [], + "testnet": true, + "slug": "ganache" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/58008.ts b/packages/chains/chains/58008.ts new file mode 100644 index 00000000000..6749c807e8e --- /dev/null +++ b/packages/chains/chains/58008.ts @@ -0,0 +1,57 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sepolia PGN (Public Goods Network)", + "chain": "ETH", + "rpc": [ + "https://sepolia-pgn-public-goods-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sepolia.publicgoods.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://publicgoods.network/", + "shortName": "sepPGN", + "chainId": 58008, + "networkId": 58008, + "icon": { + "url": "ipfs://QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS", + "width": 574, + "height": 574, + "format": "svg" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://pgn-bridge.vercel.app/bridge" + } + ] + }, + "testnet": false, + "slug": "sepolia-pgn-public-goods-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5851.ts b/packages/chains/chains/5851.ts new file mode 100644 index 00000000000..80d617d4b48 --- /dev/null +++ b/packages/chains/chains/5851.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ontology Testnet", + "chain": "Ontology", + "icon": { + "url": "ipfs://bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://ontology-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://polaris1.ont.io:20339", + "http://polaris2.ont.io:20339", + "http://polaris3.ont.io:20339", + "http://polaris4.ont.io:20339", + "https://polaris1.ont.io:10339", + "https://polaris2.ont.io:10339", + "https://polaris3.ont.io:10339", + "https://polaris4.ont.io:10339" + ], + "faucets": [ + "https://developer.ont.io/" + ], + "nativeCurrency": { + "name": "ONG", + "symbol": "ONG", + "decimals": 18 + }, + "infoURL": "https://ont.io/", + "shortName": "OntologyTestnet", + "chainId": 5851, + "networkId": 5851, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ontology-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/5869.ts b/packages/chains/chains/5869.ts new file mode 100644 index 00000000000..659db7b00b9 --- /dev/null +++ b/packages/chains/chains/5869.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Wegochain Rubidium Mainnet", + "chain": "RBD", + "rpc": [ + "https://wegochain-rubidium.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://proxy.wegochain.io", + "http://wallet.wegochain.io:7764" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rubid", + "symbol": "RBD", + "decimals": 18 + }, + "infoURL": "https://www.wegochain.io", + "shortName": "rbd", + "chainId": 5869, + "networkId": 5869, + "explorers": [ + { + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "wegochain-rubidium" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/59140.ts b/packages/chains/chains/59140.ts new file mode 100644 index 00000000000..7307f7ef991 --- /dev/null +++ b/packages/chains/chains/59140.ts @@ -0,0 +1,67 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Linea Testnet", + "title": "Linea Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://linea-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-goerli.infura.io/ws/v3/${INFURA_API_KEY}", + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build" + ], + "faucets": [ + "https://faucetlink.to/goerli" + ], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-testnet", + "chainId": 59140, + "networkId": 59140, + "icon": { + "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", + "width": 97, + "height": 102, + "format": "svg" + }, + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", + "width": 97, + "height": 102, + "format": "svg" + } + }, + { + "name": "Blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", + "width": 97, + "height": 102, + "format": "svg" + } + } + ], + "status": "active", + "testnet": true, + "slug": "linea-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/59144.ts b/packages/chains/chains/59144.ts new file mode 100644 index 00000000000..db6a6958deb --- /dev/null +++ b/packages/chains/chains/59144.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Linea Mainnet", + "chain": "Linea Mainnet", + "shortName": "linea-mainnet", + "chainId": 59144, + "testnet": false, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://linea.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://rpc.linea.build" + ], + "explorers": [ + { + "name": "lineascan", + "url": "https://lineascan.build", + "standard": "EIP3091" + }, + { + "name": "Linea Scan", + "url": "https://lineascan.build", + "standard": "" + } + ], + "faucets": [ + "https://www.infura.io/faucet/linea" + ], + "infoURL": "https://docs.linea.build/overview", + "icon": { + "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", + "height": 512, + "width": 512, + "format": "svg" + }, + "slug": "linea" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/592.ts b/packages/chains/chains/592.ts new file mode 100644 index 00000000000..d168697c012 --- /dev/null +++ b/packages/chains/chains/592.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Astar", + "chain": "ASTR", + "rpc": [ + "https://astar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.astar.network", + "https://rpc.astar.network:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Astar", + "symbol": "ASTR", + "decimals": 18 + }, + "infoURL": "https://astar.network/", + "shortName": "astr", + "chainId": 592, + "networkId": 592, + "icon": { + "url": "ipfs://Qmdvmx3p6gXBCLUMU1qivscaTNkT6h3URdhUTZCHLwKudg", + "width": 1000, + "height": 1000, + "format": "png" + }, + "explorers": [ + { + "name": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": { + "url": "ipfs://Qma2GfW5nQHuA7nGqdEfwaXPL63G9oTwRTQKaGTfjNtM2W", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": false, + "slug": "astar" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/595.ts b/packages/chains/chains/595.ts new file mode 100644 index 00000000000..d0c8700d44d --- /dev/null +++ b/packages/chains/chains/595.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Acala Mandala Testnet", + "chain": "mACA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "maca", + "chainId": 595, + "networkId": 595, + "testnet": true, + "slug": "acala-mandala-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/596.ts b/packages/chains/chains/596.ts new file mode 100644 index 00000000000..7bd6031044f --- /dev/null +++ b/packages/chains/chains/596.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Karura Network Testnet", + "chain": "KAR", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "infoURL": "https://karura.network", + "shortName": "tkar", + "chainId": 596, + "networkId": 596, + "slip44": 596, + "testnet": true, + "slug": "karura-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/597.ts b/packages/chains/chains/597.ts new file mode 100644 index 00000000000..18ac47cd376 --- /dev/null +++ b/packages/chains/chains/597.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Acala Network Testnet", + "chain": "ACA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "taca", + "chainId": 597, + "networkId": 597, + "slip44": 597, + "testnet": true, + "slug": "acala-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/599.ts b/packages/chains/chains/599.ts new file mode 100644 index 00000000000..9e17bf858de --- /dev/null +++ b/packages/chains/chains/599.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Metis Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://metis-goerli-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://goerli.gateway.metisdevops.link" + ], + "faucets": [ + "https://goerli.faucet.metisdevops.link" + ], + "nativeCurrency": { + "name": "Goerli Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-goerli", + "chainId": 599, + "networkId": 599, + "explorers": [ + { + "name": "blockscout", + "url": "https://goerli.explorer.metisdevops.link", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://testnet-bridge.metis.io" + } + ] + }, + "icon": { + "url": "ipfs://QmbWKNucbMtrMPPkHG5ZmVmvNUo8CzqHHcrpk1C2BVQsEG/2022_H-Brand_Stacked_WhiteGreen.svg", + "format": "svg", + "height": 512, + "width": 512 + }, + "testnet": true, + "slug": "metis-goerli-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/600.ts b/packages/chains/chains/600.ts new file mode 100644 index 00000000000..168fdddf6bc --- /dev/null +++ b/packages/chains/chains/600.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Meshnyan testnet", + "chain": "MeshTestChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mesh-chain-testnet", + "chainId": 600, + "networkId": 600, + "testnet": true, + "slug": "meshnyan-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60000.ts b/packages/chains/chains/60000.ts new file mode 100644 index 00000000000..f5f9a7c0b4b --- /dev/null +++ b/packages/chains/chains/60000.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Testnet Chain 0", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-testnet-chain-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test0", + "chainId": 60000, + "networkId": 60000, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "thinkium-testnet-chain-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60001.ts b/packages/chains/chains/60001.ts new file mode 100644 index 00000000000..99f48ff3624 --- /dev/null +++ b/packages/chains/chains/60001.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Testnet Chain 1", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-testnet-chain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test1.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test1", + "chainId": 60001, + "networkId": 60001, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "thinkium-testnet-chain-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60002.ts b/packages/chains/chains/60002.ts new file mode 100644 index 00000000000..96e5bd0500c --- /dev/null +++ b/packages/chains/chains/60002.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Testnet Chain 2", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-testnet-chain-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test2.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test2", + "chainId": 60002, + "networkId": 60002, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "thinkium-testnet-chain-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/60103.ts b/packages/chains/chains/60103.ts new file mode 100644 index 00000000000..2ccd92bda7a --- /dev/null +++ b/packages/chains/chains/60103.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Testnet Chain 103", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-testnet-chain-103.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test103.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test103", + "chainId": 60103, + "networkId": 60103, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "thinkium-testnet-chain-103" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6022140761023.ts b/packages/chains/chains/6022140761023.ts new file mode 100644 index 00000000000..236d3c96c24 --- /dev/null +++ b/packages/chains/chains/6022140761023.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Molereum Network", + "chain": "ETH", + "rpc": [ + "https://molereum-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://molereum.jdubedition.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Molereum Ether", + "symbol": "MOLE", + "decimals": 18 + }, + "infoURL": "https://github.com/Jdubedition/molereum", + "shortName": "mole", + "chainId": 6022140761023, + "networkId": 6022140761023, + "testnet": false, + "slug": "molereum-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6065.ts b/packages/chains/chains/6065.ts new file mode 100644 index 00000000000..1a726880ed5 --- /dev/null +++ b/packages/chains/chains/6065.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tres Testnet", + "chain": "TresLeches", + "rpc": [ + "https://tres-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-test.tresleches.finance/" + ], + "faucets": [ + "http://faucet.tresleches.finance:8080" + ], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESTEST", + "chainId": 6065, + "networkId": 6065, + "icon": { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "tres-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6066.ts b/packages/chains/chains/6066.ts new file mode 100644 index 00000000000..5f13c84a7f4 --- /dev/null +++ b/packages/chains/chains/6066.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tres Mainnet", + "chain": "TresLeches", + "rpc": [ + "https://tres.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tresleches.finance/", + "https://rpc.treschain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESMAIN", + "chainId": 6066, + "networkId": 6066, + "icon": { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer.tresleches.finance", + "icon": { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "tres" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6102.ts b/packages/chains/chains/6102.ts new file mode 100644 index 00000000000..45b5893f02e --- /dev/null +++ b/packages/chains/chains/6102.ts @@ -0,0 +1,53 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Cascadia Testnet", + "chain": "Cascadia", + "rpc": [ + "https://cascadia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.cascadia.foundation" + ], + "faucets": [ + "https://www.cascadia.foundation/faucet" + ], + "nativeCurrency": { + "name": "CC", + "symbol": "tCC", + "decimals": 18 + }, + "infoURL": "https://www.cascadia.foundation", + "shortName": "cascadia", + "chainId": 6102, + "networkId": 6102, + "icon": { + "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "Cascadia EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": { + "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", + "width": 256, + "height": 256, + "format": "png" + } + }, + { + "name": "Cascadia Cosmos Explorer", + "url": "https://validator.cascadia.foundation", + "standard": "none", + "icon": { + "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", + "width": 256, + "height": 256, + "format": "png" + } + } + ], + "testnet": true, + "slug": "cascadia-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6118.ts b/packages/chains/chains/6118.ts new file mode 100644 index 00000000000..b2ce4d8da7f --- /dev/null +++ b/packages/chains/chains/6118.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "UPTN Testnet", + "chain": "UPTN", + "icon": { + "url": "ipfs://Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5", + "width": 128, + "height": 128, + "format": "png" + }, + "rpc": [ + "https://uptn-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node-api.alp.uptn.io/v1/ext/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN-TEST", + "chainId": 6118, + "networkId": 6118, + "explorers": [ + { + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "uptn-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6119.ts b/packages/chains/chains/6119.ts new file mode 100644 index 00000000000..890d983521f --- /dev/null +++ b/packages/chains/chains/6119.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "UPTN", + "chain": "UPTN", + "icon": { + "url": "ipfs://Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5", + "width": 128, + "height": 128, + "format": "png" + }, + "rpc": [ + "https://uptn.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node-api.uptn.io/v1/ext/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN", + "chainId": 6119, + "networkId": 6119, + "explorers": [ + { + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "uptn" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/614.ts b/packages/chains/chains/614.ts new file mode 100644 index 00000000000..f65851d2bf0 --- /dev/null +++ b/packages/chains/chains/614.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Graphlinq Blockchain Mainnet", + "chain": "GLQ Blockchain", + "rpc": [ + "https://graphlinq-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://glq-dataseed.graphlinq.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GLQ", + "symbol": "GLQ", + "decimals": 18 + }, + "infoURL": "https://graphlinq.io", + "shortName": "glq", + "chainId": 614, + "networkId": 614, + "explorers": [ + { + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "graphlinq-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61717561.ts b/packages/chains/chains/61717561.ts new file mode 100644 index 00000000000..f489f725033 --- /dev/null +++ b/packages/chains/chains/61717561.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aquachain", + "chain": "AQUA", + "rpc": [ + "https://aquachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://c.onical.org", + "https://tx.aquacha.in/api" + ], + "faucets": [ + "https://aquacha.in/faucet" + ], + "nativeCurrency": { + "name": "Aquachain Ether", + "symbol": "AQUA", + "decimals": 18 + }, + "infoURL": "https://aquachain.github.io", + "shortName": "aqua", + "chainId": 61717561, + "networkId": 61717561, + "slip44": 61717561, + "testnet": false, + "slug": "aquachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61800.ts b/packages/chains/chains/61800.ts new file mode 100644 index 00000000000..7626930753e --- /dev/null +++ b/packages/chains/chains/61800.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AxelChain Dev-Net", + "chain": "AXEL", + "rpc": [ + "https://axelchain-dev-net.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://aium-rpc-dev.viacube.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Axelium", + "symbol": "AIUM", + "decimals": 18 + }, + "infoURL": "https://www.axel.org", + "shortName": "aium-dev", + "chainId": 61800, + "networkId": 61800, + "icon": { + "url": "ipfs://QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2", + "width": 40, + "height": 40, + "format": "svg" + }, + "explorers": [ + { + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "axelchain-dev-net" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61803.ts b/packages/chains/chains/61803.ts new file mode 100644 index 00000000000..de05051756c --- /dev/null +++ b/packages/chains/chains/61803.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Etica Mainnet", + "chain": "Etica Protocol (ETI/EGAZ)", + "icon": { + "url": "ipfs://QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU", + "width": 360, + "height": 361, + "format": "png" + }, + "rpc": [ + "https://etica.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eticamainnet.eticascan.org", + "https://eticamainnet.eticaprotocol.org" + ], + "faucets": [ + "http://faucet.etica-stats.org/" + ], + "nativeCurrency": { + "name": "EGAZ", + "symbol": "EGAZ", + "decimals": 18 + }, + "infoURL": "https://eticaprotocol.org", + "shortName": "Etica", + "chainId": 61803, + "networkId": 61803, + "explorers": [ + { + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" + }, + { + "name": "eticastats", + "url": "http://explorer.etica-stats.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "etica" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/61916.ts b/packages/chains/chains/61916.ts new file mode 100644 index 00000000000..179e734ee61 --- /dev/null +++ b/packages/chains/chains/61916.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DoKEN Super Chain Mainnet", + "chain": "DoKEN Super Chain", + "rpc": [ + "https://doken-super-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sgrpc.doken.dev", + "https://nyrpc.doken.dev", + "https://ukrpc.doken.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "DoKEN", + "symbol": "DKN", + "decimals": 18 + }, + "infoURL": "https://doken.dev/", + "shortName": "DoKEN", + "chainId": 61916, + "networkId": 61916, + "icon": { + "url": "ipfs://bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu", + "width": 200, + "height": 200, + "format": "png" + }, + "explorers": [ + { + "name": "DSC Scan", + "url": "https://explore.doken.dev", + "icon": { + "url": "ipfs://bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu", + "width": 200, + "height": 200, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "doken-super-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/62320.ts b/packages/chains/chains/62320.ts new file mode 100644 index 00000000000..be5ae324dfb --- /dev/null +++ b/packages/chains/chains/62320.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Celo Baklava Testnet", + "chainId": 62320, + "shortName": "BKLV", + "chain": "CELO", + "networkId": 62320, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://celo-baklava-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://baklava-forno.celo-testnet.org" + ], + "faucets": [ + "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", + "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + ], + "infoURL": "https://docs.celo.org/", + "testnet": true, + "slug": "celo-baklava-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/62621.ts b/packages/chains/chains/62621.ts new file mode 100644 index 00000000000..cd371ce6881 --- /dev/null +++ b/packages/chains/chains/62621.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MultiVAC Mainnet", + "chain": "MultiVAC", + "icon": { + "url": "ipfs://QmWb1gthhbzkiLdgcP8ccZprGbJVjFcW8Rn4uJjrw4jd3B", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [ + "https://multivac.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.mtv.ac", + "https://rpc-eu.mtv.ac" + ], + "faucets": [], + "nativeCurrency": { + "name": "MultiVAC", + "symbol": "MTV", + "decimals": 18 + }, + "infoURL": "https://mtv.ac", + "shortName": "mtv", + "chainId": 62621, + "networkId": 62621, + "explorers": [ + { + "name": "MultiVAC Explorer", + "url": "https://e.mtv.ac", + "standard": "none" + } + ], + "testnet": false, + "slug": "multivac" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/63000.ts b/packages/chains/chains/63000.ts new file mode 100644 index 00000000000..913fbedb7ff --- /dev/null +++ b/packages/chains/chains/63000.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "eCredits Mainnet", + "chain": "ECS", + "rpc": [ + "https://ecredits.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ecredits.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "infoURL": "https://ecredits.com", + "shortName": "ecs", + "chainId": 63000, + "networkId": 63000, + "icon": { + "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", + "width": 32, + "height": 32, + "format": "png" + }, + "explorers": [ + { + "name": "eCredits MainNet Explorer", + "url": "https://explorer.ecredits.com", + "icon": { + "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", + "width": 32, + "height": 32, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ecredits" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/63001.ts b/packages/chains/chains/63001.ts new file mode 100644 index 00000000000..5ea91b43fb3 --- /dev/null +++ b/packages/chains/chains/63001.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "eCredits Testnet", + "chain": "ECS", + "rpc": [ + "https://ecredits-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tst.ecredits.com" + ], + "faucets": [ + "https://faucet.tst.ecredits.com" + ], + "nativeCurrency": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "infoURL": "https://ecredits.com", + "shortName": "ecs-testnet", + "chainId": 63001, + "networkId": 63001, + "icon": { + "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", + "width": 32, + "height": 32, + "format": "png" + }, + "explorers": [ + { + "name": "eCredits TestNet Explorer", + "url": "https://explorer.tst.ecredits.com", + "icon": { + "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", + "width": 32, + "height": 32, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ecredits-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/634.ts b/packages/chains/chains/634.ts new file mode 100644 index 00000000000..9ade5a790db --- /dev/null +++ b/packages/chains/chains/634.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Avocado", + "chain": "Avocado", + "rpc": [ + "https://avocado.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.avocado.instadapp.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://avocado.instadapp.io", + "shortName": "avocado", + "chainId": 634, + "networkId": 634, + "icon": { + "url": "ipfs://Qma9rJSgy32UL1iXtXKFZQJA6FjkcUcDU4HR6y13Wu1vjn", + "width": 600, + "height": 600, + "format": "png" + }, + "explorers": [ + { + "name": "avoscan", + "url": "https://avoscan.co", + "icon": { + "url": "ipfs://Qma9rJSgy32UL1iXtXKFZQJA6FjkcUcDU4HR6y13Wu1vjn", + "width": 600, + "height": 600, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "avocado" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/641230.ts b/packages/chains/chains/641230.ts new file mode 100644 index 00000000000..6bfa3526cd7 --- /dev/null +++ b/packages/chains/chains/641230.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bear Network Chain Mainnet", + "chain": "BRNKC", + "icon": { + "url": "ipfs://QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv", + "width": 1067, + "height": 1067, + "format": "png" + }, + "rpc": [ + "https://bear-network-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://brnkc-mainnet.bearnetwork.net", + "https://brnkc-mainnet1.bearnetwork.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bear Network Chain Native Token", + "symbol": "BRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKC", + "chainId": 641230, + "networkId": 641230, + "explorers": [ + { + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bear-network-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/647.ts b/packages/chains/chains/647.ts new file mode 100644 index 00000000000..0242c696921 --- /dev/null +++ b/packages/chains/chains/647.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "SX Network Testnet", + "chain": "SX", + "icon": { + "url": "ipfs://QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF", + "width": 896, + "height": 690, + "format": "png" + }, + "rpc": [ + "https://sx-network-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.toronto.sx.technology" + ], + "faucets": [ + "https://faucet.toronto.sx.technology" + ], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SX-Testnet", + "chainId": 647, + "networkId": 647, + "explorers": [ + { + "name": "SX Network Toronto Explorer", + "url": "https://explorer.toronto.sx.technology", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "sx-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/648.ts b/packages/chains/chains/648.ts new file mode 100644 index 00000000000..5429d615f07 --- /dev/null +++ b/packages/chains/chains/648.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Endurance Smart Chain Mainnet", + "chain": "ACE", + "rpc": [ + "https://endurance-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-endurance.fusionist.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 + }, + "infoURL": "https://ace.fusionist.io/", + "shortName": "ace", + "chainId": 648, + "networkId": 648, + "explorers": [ + { + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "endurance-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65010000.ts b/packages/chains/chains/65010000.ts new file mode 100644 index 00000000000..4c0dd7fc8f4 --- /dev/null +++ b/packages/chains/chains/65010000.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Autonity Bakerloo (Thames) Testnet", + "chain": "AUT", + "rpc": [ + "https://autonity-bakerloo-thames-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.bakerloo.autonity.org/", + "wss://rpc1.bakerloo.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "bakerloo-0", + "chainId": 65010000, + "networkId": 65010000, + "icon": { + "url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB", + "width": 1000, + "height": 1000, + "format": "png" + }, + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "autonity-bakerloo-thames-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6502.ts b/packages/chains/chains/6502.ts new file mode 100644 index 00000000000..274803be02d --- /dev/null +++ b/packages/chains/chains/6502.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Peerpay", + "chain": "P2P", + "rpc": [ + "https://peerpay.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://peerpay.su.gy/p2p" + ], + "faucets": [], + "nativeCurrency": { + "name": "Peerpay", + "symbol": "P2P", + "decimals": 18 + }, + "infoURL": "https://peerpay.su.gy", + "shortName": "Peerpay", + "chainId": 6502, + "networkId": 6502, + "explorers": [], + "testnet": false, + "slug": "peerpay" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65100000.ts b/packages/chains/chains/65100000.ts new file mode 100644 index 00000000000..0eb136649a8 --- /dev/null +++ b/packages/chains/chains/65100000.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Autonity Piccadilly (Thames) Testnet", + "chain": "AUT", + "rpc": [ + "https://autonity-piccadilly-thames-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc1.piccadilly.autonity.org/", + "wss://rpc1.piccadilly.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-0", + "chainId": 65100000, + "networkId": 65100000, + "icon": { + "url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB", + "width": 1000, + "height": 1000, + "format": "png" + }, + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "autonity-piccadilly-thames-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/651940.ts b/packages/chains/chains/651940.ts new file mode 100644 index 00000000000..68a08871456 --- /dev/null +++ b/packages/chains/chains/651940.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ALL Mainnet", + "chain": "ALL", + "icon": { + "url": "ipfs://bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i", + "width": 1000, + "height": 1000, + "format": "png" + }, + "rpc": [ + "https://all.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.alltra.global" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALL", + "symbol": "ALL", + "decimals": 18 + }, + "infoURL": "https://alltra.world", + "shortName": "ALL", + "chainId": 651940, + "networkId": 651940, + "explorers": [ + { + "name": "Alltra SmartChain Explorer", + "url": "https://alltra.global", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "all" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/65450.ts b/packages/chains/chains/65450.ts new file mode 100644 index 00000000000..5f32651f3c7 --- /dev/null +++ b/packages/chains/chains/65450.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Scolcoin Mainnet", + "chain": "SCOLWEI", + "rpc": [ + "https://scolcoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.scolcoin.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC", + "chainId": 65450, + "networkId": 65450, + "icon": { + "url": "ipfs://QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt", + "width": 792, + "height": 822, + "format": "png" + }, + "explorers": [ + { + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "scolcoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6552.ts b/packages/chains/chains/6552.ts new file mode 100644 index 00000000000..7c109c1f37c --- /dev/null +++ b/packages/chains/chains/6552.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Scolcoin WeiChain Testnet", + "chain": "SCOLWEI-testnet", + "rpc": [ + "https://scolcoin-weichain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.scolcoin.com" + ], + "faucets": [ + "https://faucet.scolcoin.com" + ], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC-test", + "chainId": 6552, + "networkId": 6552, + "icon": { + "url": "ipfs://QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt", + "width": 792, + "height": 822, + "format": "png" + }, + "explorers": [ + { + "name": "Scolscan Testnet Explorer", + "url": "https://testnet-explorer.scolcoin.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "scolcoin-weichain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6565.ts b/packages/chains/chains/6565.ts new file mode 100644 index 00000000000..1c306214ca0 --- /dev/null +++ b/packages/chains/chains/6565.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fox Testnet Network", + "chain": "FOX", + "rpc": [ + "https://fox-testnet-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet-v1.foxchain.app/", + "https://rpc2-testnet-v1.foxchain.app/", + "https://rpc3-testnet-v1.foxchain.app" + ], + "faucets": [ + "https://faucet.foxchain.app" + ], + "nativeCurrency": { + "name": "FOX Native Token", + "symbol": "tFOX", + "decimals": 18 + }, + "infoURL": "https://foxchain.app", + "shortName": "fox", + "chainId": 6565, + "networkId": 6565, + "icon": { + "url": "ipfs://Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M", + "width": 100, + "height": 100, + "format": "png" + }, + "explorers": [ + { + "name": "FOX Testnet Explorer", + "icon": { + "url": "ipfs://Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M", + "width": 100, + "height": 100, + "format": "png" + }, + "url": "https://testnet.foxscan.app", + "standard": "none" + } + ], + "testnet": true, + "slug": "fox-testnet-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6626.ts b/packages/chains/chains/6626.ts new file mode 100644 index 00000000000..a114080966c --- /dev/null +++ b/packages/chains/chains/6626.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Pixie Chain Mainnet", + "chain": "PixieChain", + "rpc": [ + "https://pixie-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://http-mainnet.chain.pixie.xyz", + "wss://ws-mainnet.chain.pixie.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pixie Chain Native Token", + "symbol": "PIX", + "decimals": 18 + }, + "infoURL": "https://chain.pixie.xyz", + "shortName": "pixie-chain", + "chainId": 6626, + "networkId": 6626, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } + ], + "testnet": false, + "slug": "pixie-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666.ts b/packages/chains/chains/666.ts new file mode 100644 index 00000000000..a2b4782a8a0 --- /dev/null +++ b/packages/chains/chains/666.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Pixie Chain Testnet", + "chain": "PixieChain", + "rpc": [ + "https://pixie-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://http-testnet.chain.pixie.xyz", + "wss://ws-testnet.chain.pixie.xyz" + ], + "faucets": [ + "https://chain.pixie.xyz/faucet" + ], + "nativeCurrency": { + "name": "Pixie Chain Testnet Native Token", + "symbol": "PCTT", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.chain.pixie.xyz", + "shortName": "pixie-chain-testnet", + "chainId": 666, + "networkId": 666, + "testnet": true, + "slug": "pixie-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666301171999.ts b/packages/chains/chains/666301171999.ts new file mode 100644 index 00000000000..9bd2ccbc52f --- /dev/null +++ b/packages/chains/chains/666301171999.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PDC Mainnet", + "chain": "IPDC", + "rpc": [ + "https://pdc.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.ipdc.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PDC", + "symbol": "PDC", + "decimals": 18 + }, + "infoURL": "https://ipdc.io", + "shortName": "ipdc", + "chainId": 666301171999, + "networkId": 666301171999, + "explorers": [ + { + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "pdc" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/666666.ts b/packages/chains/chains/666666.ts new file mode 100644 index 00000000000..4d74c2d4eda --- /dev/null +++ b/packages/chains/chains/666666.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vision - Vpioneer Test Chain", + "chain": "Vision-Vpioneer", + "rpc": [ + "https://vision-vpioneer-test-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://vpioneer.infragrid.v.network/ethereum/compatible" + ], + "faucets": [ + "https://vpioneerfaucet.visionscan.org" + ], + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "infoURL": "https://visionscan.org", + "shortName": "vpioneer", + "chainId": 666666, + "networkId": 666666, + "slip44": 60, + "testnet": true, + "slug": "vision-vpioneer-test-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6688.ts b/packages/chains/chains/6688.ts new file mode 100644 index 00000000000..7a07600bd6c --- /dev/null +++ b/packages/chains/chains/6688.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IRIShub", + "chain": "IRIShub", + "rpc": [ + "https://irishub.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evmrpc.irishub-1.irisnet.org" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "iris", + "chainId": 6688, + "networkId": 6688, + "icon": { + "url": "ipfs://QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW", + "width": 1062, + "height": 1062, + "format": "png" + }, + "explorers": [ + { + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": { + "url": "ipfs://QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW", + "width": 1062, + "height": 1062, + "format": "png" + } + } + ], + "testnet": false, + "slug": "irishub" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/67588.ts b/packages/chains/chains/67588.ts new file mode 100644 index 00000000000..610e2cc9bb5 --- /dev/null +++ b/packages/chains/chains/67588.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Cosmic Chain", + "chain": "COSMIC", + "rpc": [ + "https://cosmic-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://testnet.cosmicchain.site:3344" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cosmic Chain", + "symbol": "COSMIC", + "decimals": 18 + }, + "infoURL": "https://cosmicchain.site", + "shortName": "Cosmic", + "chainId": 67588, + "networkId": 3344, + "testnet": true, + "slug": "cosmic-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6789.ts b/packages/chains/chains/6789.ts new file mode 100644 index 00000000000..6fdbaca9970 --- /dev/null +++ b/packages/chains/chains/6789.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gold Smart Chain Mainnet", + "chain": "STAND", + "icon": { + "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", + "width": 396, + "height": 418, + "format": "png" + }, + "rpc": [ + "https://gold-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.goldsmartchain.com" + ], + "faucets": [ + "https://faucet.goldsmartchain.com" + ], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDm", + "chainId": 6789, + "networkId": 6789, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "gold-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/686.ts b/packages/chains/chains/686.ts new file mode 100644 index 00000000000..60b8d7f0b6f --- /dev/null +++ b/packages/chains/chains/686.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Karura Network", + "chain": "KAR", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "infoURL": "https://karura.network", + "shortName": "kar", + "chainId": 686, + "networkId": 686, + "slip44": 686, + "testnet": false, + "slug": "karura-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/69420.ts b/packages/chains/chains/69420.ts new file mode 100644 index 00000000000..9a475ba527b --- /dev/null +++ b/packages/chains/chains/69420.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Condrieu", + "title": "Ethereum Verkle Testnet Condrieu", + "chain": "ETH", + "rpc": [ + "https://condrieu.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.condrieu.ethdevops.io:8545" + ], + "faucets": [ + "https://faucet.condrieu.ethdevops.io" + ], + "nativeCurrency": { + "name": "Condrieu Testnet Ether", + "symbol": "CTE", + "decimals": 18 + }, + "infoURL": "https://condrieu.ethdevops.io", + "shortName": "cndr", + "chainId": 69420, + "networkId": 69420, + "explorers": [ + { + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "condrieu" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6969.ts b/packages/chains/chains/6969.ts new file mode 100644 index 00000000000..25df6c7d111 --- /dev/null +++ b/packages/chains/chains/6969.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Tomb Chain Mainnet", + "chain": "Tomb Chain", + "rpc": [ + "https://tomb-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.tombchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tomb", + "symbol": "TOMB", + "decimals": 18 + }, + "infoURL": "https://tombchain.com/", + "shortName": "tombchain", + "chainId": 6969, + "networkId": 6969, + "explorers": [ + { + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-250", + "bridges": [ + { + "url": "https://lif3.com/bridge" + } + ] + }, + "testnet": false, + "slug": "tomb-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/6999.ts b/packages/chains/chains/6999.ts new file mode 100644 index 00000000000..dcb04123ce1 --- /dev/null +++ b/packages/chains/chains/6999.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PolySmartChain", + "chain": "PSC", + "rpc": [ + "https://polysmartchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://seed0.polysmartchain.com/", + "https://seed1.polysmartchain.com/", + "https://seed2.polysmartchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PSC", + "symbol": "PSC", + "decimals": 18 + }, + "infoURL": "https://www.polysmartchain.com/", + "shortName": "psc", + "chainId": 6999, + "networkId": 6999, + "testnet": false, + "slug": "polysmartchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/700.ts b/packages/chains/chains/700.ts new file mode 100644 index 00000000000..d06344e513d --- /dev/null +++ b/packages/chains/chains/700.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Star Social Testnet", + "chain": "SNS", + "rpc": [ + "https://star-social-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://avastar.cc/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Social", + "symbol": "SNS", + "decimals": 18 + }, + "infoURL": "https://info.avastar.cc", + "shortName": "SNS", + "chainId": 700, + "networkId": 700, + "explorers": [ + { + "name": "starscan", + "url": "https://avastar.info", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "star-social-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7000.ts b/packages/chains/chains/7000.ts new file mode 100644 index 00000000000..f7b8d2cd514 --- /dev/null +++ b/packages/chains/chains/7000.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ZetaChain Mainnet", + "chain": "ZetaChain", + "icon": { + "url": "ipfs://QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy", + "width": 712, + "height": 712, + "format": "png" + }, + "rpc": [ + "https://zetachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.mainnet.zetachain.com/evm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs/", + "shortName": "zetachain-mainnet", + "chainId": 7000, + "networkId": 7000, + "status": "incubating", + "explorers": [ + { + "name": "ZetaChain Mainnet Explorer", + "url": "https://explorer.mainnet.zetachain.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "zetachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70000.ts b/packages/chains/chains/70000.ts new file mode 100644 index 00000000000..c8477e55150 --- /dev/null +++ b/packages/chains/chains/70000.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Mainnet Chain 0", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-chain-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://proxy.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM0", + "chainId": 70000, + "networkId": 70000, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "thinkium-chain-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70001.ts b/packages/chains/chains/70001.ts new file mode 100644 index 00000000000..481fc76e6c7 --- /dev/null +++ b/packages/chains/chains/70001.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Mainnet Chain 1", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-chain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://proxy1.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM1", + "chainId": 70001, + "networkId": 70001, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "thinkium-chain-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70002.ts b/packages/chains/chains/70002.ts new file mode 100644 index 00000000000..778fdbeb1b7 --- /dev/null +++ b/packages/chains/chains/70002.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Mainnet Chain 2", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-chain-2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://proxy2.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM2", + "chainId": 70002, + "networkId": 70002, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "thinkium-chain-2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7001.ts b/packages/chains/chains/7001.ts new file mode 100644 index 00000000000..1fb96057445 --- /dev/null +++ b/packages/chains/chains/7001.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ZetaChain Athens Testnet", + "chain": "ZetaChain", + "icon": { + "url": "ipfs://QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy", + "width": 712, + "height": 712, + "format": "png" + }, + "rpc": [ + "https://zetachain-athens-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.athens2.zetachain.com/evm" + ], + "faucets": [ + "https://labs.zetachain.com/get-zeta" + ], + "nativeCurrency": { + "name": "Zeta", + "symbol": "aZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs", + "shortName": "zetachain-athens", + "chainId": 7001, + "networkId": 7001, + "status": "active", + "explorers": [ + { + "name": "ZetaChain Athens Testnet Explorer", + "url": "https://explorer.athens.zetachain.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "zetachain-athens-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/70103.ts b/packages/chains/chains/70103.ts new file mode 100644 index 00000000000..0fec289b77f --- /dev/null +++ b/packages/chains/chains/70103.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Thinkium Mainnet Chain 103", + "chain": "Thinkium", + "rpc": [ + "https://thinkium-chain-103.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://proxy103.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM103", + "chainId": 70103, + "networkId": 70103, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "thinkium-chain-103" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7027.ts b/packages/chains/chains/7027.ts new file mode 100644 index 00000000000..b0e232ed00f --- /dev/null +++ b/packages/chains/chains/7027.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ella the heart", + "chain": "ella", + "icon": { + "url": "ipfs://QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://ella-the-heart.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.ella.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ella", + "symbol": "ELLA", + "decimals": 18 + }, + "infoURL": "https://ella.network", + "shortName": "ELLA", + "chainId": 7027, + "networkId": 7027, + "explorers": [ + { + "name": "Ella", + "url": "https://ella.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ella-the-heart" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/707.ts b/packages/chains/chains/707.ts new file mode 100644 index 00000000000..39bc1d8d282 --- /dev/null +++ b/packages/chains/chains/707.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BlockChain Station Mainnet", + "chain": "BCS", + "rpc": [ + "https://blockchain-station.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.bcsdev.io", + "wss://rpc-ws-mainnet.bcsdev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BCS Token", + "symbol": "BCS", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "bcs", + "chainId": 707, + "networkId": 707, + "explorers": [ + { + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "blockchain-station" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7070.ts b/packages/chains/chains/7070.ts new file mode 100644 index 00000000000..90c29b2587f --- /dev/null +++ b/packages/chains/chains/7070.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Planq Mainnet", + "chain": "Planq", + "icon": { + "url": "ipfs://QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D", + "width": 256, + "height": 256, + "format": "png" + }, + "rpc": [ + "https://planq.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-rpc.planq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Planq", + "symbol": "PLQ", + "decimals": 18 + }, + "infoURL": "https://planq.network", + "shortName": "planq", + "chainId": 7070, + "networkId": 7070, + "explorers": [ + { + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" + }, + { + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } + ], + "testnet": false, + "slug": "planq" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/708.ts b/packages/chains/chains/708.ts new file mode 100644 index 00000000000..6f55406d368 --- /dev/null +++ b/packages/chains/chains/708.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BlockChain Station Testnet", + "chain": "BCS", + "rpc": [ + "https://blockchain-station-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.bcsdev.io", + "wss://rpc-ws-testnet.bcsdev.io" + ], + "faucets": [ + "https://faucet.bcsdev.io" + ], + "nativeCurrency": { + "name": "BCS Testnet Token", + "symbol": "tBCS", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "tbcs", + "chainId": 708, + "networkId": 708, + "explorers": [ + { + "name": "BlockChain Station Explorer", + "url": "https://testnet.bcsdev.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "blockchain-station-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71111.ts b/packages/chains/chains/71111.ts new file mode 100644 index 00000000000..cf8572788ec --- /dev/null +++ b/packages/chains/chains/71111.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "GuapcoinX", + "chain": "GuapcoinX", + "rpc": [ + "https://guapcoinx.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.guapcoinx.com/", + "https://rpc-mainnet-1.guapcoinx.com/", + "https://rpc-mainnet-2.guapcoinx.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GuapcoinX", + "symbol": "GuapX", + "decimals": 18 + }, + "infoURL": "https://guapcoin.org/", + "shortName": "GuapX", + "chainId": 71111, + "networkId": 71111, + "icon": { + "url": "ipfs://QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB", + "width": 800, + "height": 800, + "format": "png" + }, + "explorers": [ + { + "name": "GuapcoinX Explorer", + "url": "http://explorer.guapcoinx.com", + "standard": "none", + "icon": { + "url": "ipfs://QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB", + "width": 800, + "height": 800, + "format": "png" + } + } + ], + "testnet": false, + "slug": "guapcoinx" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71393.ts b/packages/chains/chains/71393.ts new file mode 100644 index 00000000000..360a8fa9bcb --- /dev/null +++ b/packages/chains/chains/71393.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Polyjuice Testnet", + "chain": "CKB", + "icon": { + "url": "ipfs://QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe", + "width": 1001, + "height": 1629, + "format": "png" + }, + "rpc": [ + "https://polyjuice-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://godwoken-testnet-web3-rpc.ckbapp.dev", + "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" + ], + "faucets": [ + "https://faucet.nervos.org/" + ], + "nativeCurrency": { + "name": "CKB", + "symbol": "CKB", + "decimals": 8 + }, + "infoURL": "https://github.com/nervosnetwork/godwoken", + "shortName": "ckb", + "chainId": 71393, + "networkId": 1, + "testnet": true, + "slug": "polyjuice-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71401.ts b/packages/chains/chains/71401.ts new file mode 100644 index 00000000000..47f362ddc99 --- /dev/null +++ b/packages/chains/chains/71401.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Godwoken Testnet v1", + "chain": "GWT", + "rpc": [ + "https://godwoken-testnet-v1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://godwoken-testnet-v1.ckbapp.dev", + "https://v1.testnet.godwoken.io/rpc" + ], + "faucets": [ + "https://testnet.bridge.godwoken.io" + ], + "nativeCurrency": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-testnet-v1", + "chainId": 71401, + "networkId": 71401, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "godwoken-testnet-v1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/71402.ts b/packages/chains/chains/71402.ts new file mode 100644 index 00000000000..0254efcdfad --- /dev/null +++ b/packages/chains/chains/71402.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Godwoken Mainnet", + "chain": "GWT", + "rpc": [ + "https://godwoken.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://v1.mainnet.godwoken.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-mainnet-v1", + "chainId": 71402, + "networkId": 71402, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "godwoken" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7171.ts b/packages/chains/chains/7171.ts new file mode 100644 index 00000000000..55b5c39c60e --- /dev/null +++ b/packages/chains/chains/7171.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitrock Mainnet", + "chain": "Bitrock", + "icon": { + "url": "ipfs://QmfXZCAh3HWS2bJroUStN9TieL4QA9QArMotie3X4pwBfj", + "width": 72, + "height": 72, + "format": "svg" + }, + "rpc": [ + "https://bitrock.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://connect.bit-rock.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "bitrock", + "chainId": 7171, + "networkId": 7171, + "explorers": [ + { + "name": "Bitrock Explorer", + "url": "https://scan.bit-rock.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "bitrock" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/719.ts b/packages/chains/chains/719.ts new file mode 100644 index 00000000000..ab232a3fc9c --- /dev/null +++ b/packages/chains/chains/719.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shibarium Beta", + "chain": "Shibarium", + "icon": { + "url": "ipfs://QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://shibarium-beta.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://puppynet.shibrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://beta.shibariumtech.com", + "shortName": "shibarium", + "chainId": 719, + "networkId": 719, + "explorers": [ + { + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "shibarium-beta" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/721.ts b/packages/chains/chains/721.ts new file mode 100644 index 00000000000..b1cdb9ef62a --- /dev/null +++ b/packages/chains/chains/721.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lycan Chain", + "chain": "LYC", + "rpc": [ + "https://lycan-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.lycanchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lycan", + "symbol": "LYC", + "decimals": 18 + }, + "infoURL": "https://lycanchain.com", + "shortName": "LYC", + "chainId": 721, + "networkId": 721, + "icon": { + "url": "ipfs://Qmc8hsCbUUjnJDnXrDhFh4V1xk1gJwZbUyNJ39p72javji", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "lycan-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7225878.ts b/packages/chains/chains/7225878.ts new file mode 100644 index 00000000000..770438a3d09 --- /dev/null +++ b/packages/chains/chains/7225878.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Saakuru Mainnet", + "chain": "Saakuru", + "icon": { + "url": "ipfs://QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://saakuru.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.saakuru.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru", + "chainId": 7225878, + "networkId": 7225878, + "explorers": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "saakuru" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7331.ts b/packages/chains/chains/7331.ts new file mode 100644 index 00000000000..2001e01e928 --- /dev/null +++ b/packages/chains/chains/7331.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "KLYNTAR", + "chain": "KLY", + "rpc": [ + "https://klyntar.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.klyntar.org/kly_evm_rpc", + "https://evm.klyntarscan.org/kly_evm_rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLYNTAR", + "symbol": "KLY", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://klyntar.org", + "shortName": "kly", + "chainId": 7331, + "networkId": 7331, + "icon": { + "url": "ipfs://QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [], + "status": "incubating", + "testnet": false, + "slug": "klyntar" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7332.ts b/packages/chains/chains/7332.ts new file mode 100644 index 00000000000..653882e8d26 --- /dev/null +++ b/packages/chains/chains/7332.ts @@ -0,0 +1,49 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Horizen EON", + "shortName": "EON", + "chain": "EON", + "icon": { + "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", + "width": 1213, + "height": 1213, + "format": "png" + }, + "rpc": [ + "https://horizen-eon.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eon-rpc.horizenlabs.io/ethv1" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 7332, + "networkId": 7332, + "slip44": 121, + "explorers": [ + { + "name": "Horizen EON Block Explorer", + "url": "https://eon-explorer.horizenlabs.io", + "icon": { + "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", + "width": 1213, + "height": 1213, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "horizen-eon" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7341.ts b/packages/chains/chains/7341.ts new file mode 100644 index 00000000000..d1f10ee93ff --- /dev/null +++ b/packages/chains/chains/7341.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shyft Mainnet", + "chain": "SHYFT", + "icon": { + "url": "ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", + "width": 400, + "height": 400, + "format": "svg" + }, + "rpc": [ + "https://shyft.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyft", + "chainId": 7341, + "networkId": 7341, + "slip44": 2147490989, + "explorers": [ + { + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "shyft" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7355310.ts b/packages/chains/chains/7355310.ts new file mode 100644 index 00000000000..49b5792b9d9 --- /dev/null +++ b/packages/chains/chains/7355310.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OpenVessel", + "chain": "VSL", + "icon": { + "url": "ipfs://QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX", + "width": 600, + "height": 529, + "format": "png" + }, + "rpc": [ + "https://openvessel.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-external.openvessel.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Vessel ETH", + "symbol": "VETH", + "decimals": 18 + }, + "infoURL": "https://www.openvessel.io", + "shortName": "vsl", + "chainId": 7355310, + "networkId": 7355310, + "explorers": [ + { + "name": "openvessel-mainnet", + "url": "https://mainnet-explorer.openvessel.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "openvessel" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/73799.ts b/packages/chains/chains/73799.ts new file mode 100644 index 00000000000..7daf9c11633 --- /dev/null +++ b/packages/chains/chains/73799.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Energy Web Volta Testnet", + "chain": "Volta", + "rpc": [ + "https://energy-web-volta-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" + ], + "faucets": [ + "https://voltafaucet.energyweb.org" + ], + "nativeCurrency": { + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 + }, + "infoURL": "https://energyweb.org", + "shortName": "vt", + "chainId": 73799, + "networkId": 73799, + "testnet": true, + "slug": "energy-web-volta-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/73927.ts b/packages/chains/chains/73927.ts new file mode 100644 index 00000000000..35ba7eca46f --- /dev/null +++ b/packages/chains/chains/73927.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mixin Virtual Machine", + "chain": "MVM", + "rpc": [ + "https://mixin-virtual-machine.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://geth.mvm.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://mvm.dev", + "shortName": "mvm", + "chainId": 73927, + "networkId": 73927, + "icon": { + "url": "ipfs://QmeuDgSprukzfV7fi9XYHYcfmT4aZZZU7idgShtRS8Vf6V", + "width": 471, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": { + "url": "ipfs://QmeuDgSprukzfV7fi9XYHYcfmT4aZZZU7idgShtRS8Vf6V", + "width": 471, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "mixin-virtual-machine" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/741.ts b/packages/chains/chains/741.ts new file mode 100644 index 00000000000..2dda0132b44 --- /dev/null +++ b/packages/chains/chains/741.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vention Smart Chain Testnet", + "chain": "VSCT", + "icon": { + "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", + "width": 250, + "height": 250, + "format": "png" + }, + "rpc": [ + "https://vention-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node-testnet.vention.network" + ], + "faucets": [ + "https://faucet.vention.network" + ], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://testnet.ventionscan.io", + "shortName": "vsct", + "chainId": 741, + "networkId": 741, + "explorers": [ + { + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "vention-smart-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/742.ts b/packages/chains/chains/742.ts new file mode 100644 index 00000000000..352f2135ccd --- /dev/null +++ b/packages/chains/chains/742.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Script Testnet", + "chain": "SPAY", + "rpc": [ + "https://script-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testeth-rpc-api.script.tv/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Script", + "symbol": "SPAY", + "decimals": 18 + }, + "infoURL": "https://token.script.tv", + "shortName": "SPAY", + "chainId": 742, + "networkId": 742, + "explorers": [ + { + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } + ], + "testnet": true, + "slug": "script-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7484.ts b/packages/chains/chains/7484.ts new file mode 100644 index 00000000000..ad8fb6ebb4f --- /dev/null +++ b/packages/chains/chains/7484.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Raba Network Mainnet", + "chain": "Raba", + "icon": { + "url": "ipfs://QmatP9qMHEYoXqRDyHMTyjYRQa6j6Gk7pmv1QLxQkvpGRP", + "width": 787, + "height": 750, + "format": "png" + }, + "rpc": [ + "https://raba-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.x.raba.app/", + "wss://rpc.x.raba.app/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Raba", + "symbol": "RABA", + "decimals": 18 + }, + "infoURL": "https://x.raba.app/", + "shortName": "raba", + "chainId": 7484, + "networkId": 7484, + "explorers": [ + { + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } + ], + "testnet": false, + "slug": "raba-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/75000.ts b/packages/chains/chains/75000.ts new file mode 100644 index 00000000000..9424ef15f52 --- /dev/null +++ b/packages/chains/chains/75000.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ResinCoin Mainnet", + "chain": "RESIN", + "icon": { + "url": "ipfs://QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb", + "width": 460, + "height": 460, + "format": "png" + }, + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "RESIN", + "decimals": 18 + }, + "infoURL": "https://resincoin.dev", + "shortName": "resin", + "chainId": 75000, + "networkId": 75000, + "explorers": [ + { + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } + ], + "testnet": false, + "slug": "resincoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/751230.ts b/packages/chains/chains/751230.ts new file mode 100644 index 00000000000..21371e6fbc8 --- /dev/null +++ b/packages/chains/chains/751230.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bear Network Chain Testnet", + "chain": "BRNKCTEST", + "icon": { + "url": "ipfs://QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv", + "width": 1067, + "height": 1067, + "format": "png" + }, + "rpc": [ + "https://bear-network-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://brnkc-test.bearnetwork.net" + ], + "faucets": [ + "https://faucet.bearnetwork.net" + ], + "nativeCurrency": { + "name": "Bear Network Chain Testnet Token", + "symbol": "tBRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKCTEST", + "chainId": 751230, + "networkId": 751230, + "explorers": [ + { + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bear-network-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7518.ts b/packages/chains/chains/7518.ts new file mode 100644 index 00000000000..01abb632a5b --- /dev/null +++ b/packages/chains/chains/7518.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MEVerse Chain Mainnet", + "chain": "MEVerse", + "rpc": [ + "https://meverse-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.meversemainnet.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "MEV", + "chainId": 7518, + "networkId": 7518, + "icon": { + "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", + "width": 800, + "height": 800, + "format": "png" + }, + "explorers": [ + { + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": { + "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", + "width": 800, + "height": 800, + "format": "png" + } + } + ], + "testnet": false, + "slug": "meverse-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7575.ts b/packages/chains/chains/7575.ts new file mode 100644 index 00000000000..5c78475873a --- /dev/null +++ b/packages/chains/chains/7575.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ADIL Testnet", + "chain": "ADIL", + "icon": { + "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://adil-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.adilchain-rpc.io" + ], + "faucets": [ + "https://testnet-faucet.adil-scan.io" + ], + "nativeCurrency": { + "name": "Testnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "tadil", + "chainId": 7575, + "networkId": 7575, + "explorers": [ + { + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "adil-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7576.ts b/packages/chains/chains/7576.ts new file mode 100644 index 00000000000..f08599a5570 --- /dev/null +++ b/packages/chains/chains/7576.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Adil Chain V2 Mainnet", + "chain": "ADIL", + "icon": { + "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://adil-chain-v2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://adilchain-rpc.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "adil", + "chainId": 7576, + "networkId": 7576, + "explorers": [ + { + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "adil-chain-v2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/766.ts b/packages/chains/chains/766.ts new file mode 100644 index 00000000000..1bd67d669b4 --- /dev/null +++ b/packages/chains/chains/766.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QL1", + "chain": "QOM", + "status": "incubating", + "rpc": [ + "https://ql1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.qom.one" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "qom", + "chainId": 766, + "networkId": 766, + "icon": { + "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", + "width": 518, + "height": 518, + "format": "png" + }, + "explorers": [ + { + "name": "QL1 Mainnet Explorer", + "url": "https://mainnet.qom.one", + "icon": { + "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", + "width": 518, + "height": 518, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "ql1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7668.ts b/packages/chains/chains/7668.ts new file mode 100644 index 00000000000..55850c1f46f --- /dev/null +++ b/packages/chains/chains/7668.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "The Root Network - Mainnet", + "chain": "TRN", + "rpc": [ + "https://the-root-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://root.rootnet.live/archive", + "wss://root.rootnet.live/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-mainnet", + "chainId": 7668, + "networkId": 7668, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "the-root-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7668378.ts b/packages/chains/chains/7668378.ts new file mode 100644 index 00000000000..a6d164bc7fe --- /dev/null +++ b/packages/chains/chains/7668378.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QL1 Testnet", + "chain": "QOM", + "status": "incubating", + "rpc": [ + "https://ql1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.qom.one" + ], + "faucets": [ + "https://faucet.qom.one" + ], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "tqom", + "chainId": 7668378, + "networkId": 7668378, + "icon": { + "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", + "width": 518, + "height": 518, + "format": "png" + }, + "explorers": [ + { + "name": "QL1 Testnet Explorer", + "url": "https://testnet.qom.one", + "icon": { + "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", + "width": 518, + "height": 518, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "ql1-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7672.ts b/packages/chains/chains/7672.ts new file mode 100644 index 00000000000..718dd30e719 --- /dev/null +++ b/packages/chains/chains/7672.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "The Root Network - Porcini Testnet", + "chain": "TRN", + "rpc": [ + "https://the-root-network-porcini-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://porcini.rootnet.app/archive", + "wss://porcini.rootnet.app/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-porcini", + "chainId": 7672, + "networkId": 7672, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "the-root-network-porcini-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7700.ts b/packages/chains/chains/7700.ts new file mode 100644 index 00000000000..31ae3de0048 --- /dev/null +++ b/packages/chains/chains/7700.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Canto", + "chain": "Canto", + "rpc": [ + "https://canto.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://canto.slingshot.finance", + "https://canto.neobase.one", + "https://mainnode.plexnode.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "canto", + "chainId": 7700, + "networkId": 7700, + "explorers": [ + { + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://evm.explorer.canto.io", + "standard": "none" + }, + { + "name": "Canto Cosmos Explorer", + "url": "https://cosmos-explorers.neobase.one", + "standard": "none" + }, + { + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "none" + } + ], + "testnet": false, + "slug": "canto" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7701.ts b/packages/chains/chains/7701.ts new file mode 100644 index 00000000000..c245fee3352 --- /dev/null +++ b/packages/chains/chains/7701.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Canto Tesnet", + "chain": "Canto", + "rpc": [ + "https://canto-tesnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-archive.plexnode.wtf" + ], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "TestnetCanto", + "chainId": 7701, + "networkId": 7701, + "explorers": [ + { + "name": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" + } + ], + "testnet": true, + "slug": "canto-tesnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/776.ts b/packages/chains/chains/776.ts new file mode 100644 index 00000000000..0b62d55014c --- /dev/null +++ b/packages/chains/chains/776.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OpenChain Testnet", + "chain": "OpenChain Testnet", + "rpc": [], + "faucets": [ + "https://faucet.openchain.info/" + ], + "nativeCurrency": { + "name": "Openchain Testnet", + "symbol": "TOPC", + "decimals": 18 + }, + "infoURL": "https://testnet.openchain.info/", + "shortName": "opc", + "chainId": 776, + "networkId": 776, + "explorers": [ + { + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" + } + ], + "testnet": true, + "slug": "openchain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/77612.ts b/packages/chains/chains/77612.ts new file mode 100644 index 00000000000..69e4691e5ce --- /dev/null +++ b/packages/chains/chains/77612.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vention Smart Chain Mainnet", + "chain": "VSC", + "icon": { + "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", + "width": 250, + "height": 250, + "format": "png" + }, + "rpc": [ + "https://vention-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.vention.network" + ], + "faucets": [ + "https://faucet.vention.network" + ], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://ventionscan.io", + "shortName": "vscm", + "chainId": 77612, + "networkId": 77612, + "explorers": [ + { + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "vention-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7762959.ts b/packages/chains/chains/7762959.ts new file mode 100644 index 00000000000..48123092d54 --- /dev/null +++ b/packages/chains/chains/7762959.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Musicoin", + "chain": "MUSIC", + "rpc": [ + "https://musicoin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mewapi.musicoin.tw" + ], + "faucets": [], + "nativeCurrency": { + "name": "Musicoin", + "symbol": "MUSIC", + "decimals": 18 + }, + "infoURL": "https://musicoin.tw", + "shortName": "music", + "chainId": 7762959, + "networkId": 7762959, + "slip44": 184, + "testnet": false, + "slug": "musicoin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/777.ts b/packages/chains/chains/777.ts new file mode 100644 index 00000000000..689164c08c0 --- /dev/null +++ b/packages/chains/chains/777.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "cheapETH", + "chain": "cheapETH", + "rpc": [ + "https://cheapeth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node.cheapeth.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "cTH", + "symbol": "cTH", + "decimals": 18 + }, + "infoURL": "https://cheapeth.org/", + "shortName": "cth", + "chainId": 777, + "networkId": 777, + "testnet": false, + "slug": "cheapeth" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7771.ts b/packages/chains/chains/7771.ts new file mode 100644 index 00000000000..4ff7b5eac85 --- /dev/null +++ b/packages/chains/chains/7771.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bitrock Testnet", + "chain": "Bitrock", + "icon": { + "url": "ipfs://QmfXZCAh3HWS2bJroUStN9TieL4QA9QArMotie3X4pwBfj", + "width": 72, + "height": 72, + "format": "svg" + }, + "rpc": [ + "https://bitrock-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.bit-rock.io" + ], + "faucets": [ + "https://faucet.bit-rock.io" + ], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "tbitrock", + "chainId": 7771, + "networkId": 7771, + "explorers": [ + { + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "bitrock-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7777.ts b/packages/chains/chains/7777.ts new file mode 100644 index 00000000000..c76805ed9ec --- /dev/null +++ b/packages/chains/chains/7777.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rise of the Warbots Testnet", + "chain": "nmactest", + "rpc": [ + "https://rise-of-the-warbots-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet1.riseofthewarbots.com", + "https://testnet2.riseofthewarbots.com", + "https://testnet3.riseofthewarbots.com", + "https://testnet4.riseofthewarbots.com", + "https://testnet5.riseofthewarbots.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nano Machines", + "symbol": "NMAC", + "decimals": 18 + }, + "infoURL": "https://riseofthewarbots.com/", + "shortName": "RiseOfTheWarbotsTestnet", + "chainId": 7777, + "networkId": 7777, + "explorers": [ + { + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } + ], + "testnet": true, + "slug": "rise-of-the-warbots-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/77777.ts b/packages/chains/chains/77777.ts new file mode 100644 index 00000000000..a1ee30742bf --- /dev/null +++ b/packages/chains/chains/77777.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Toronet Mainnet", + "chain": "Toronet", + "icon": { + "url": "ipfs://QmciSvgLatP6jhgdazuiyD3fSrhipfAN7wC943v1qxcrpv", + "width": 846, + "height": 733, + "format": "png" + }, + "rpc": [ + "https://toronet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://toronet.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "Toronet", + "chainId": 77777, + "networkId": 77777, + "ens": { + "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } + ], + "testnet": false, + "slug": "toronet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7777777.ts b/packages/chains/chains/7777777.ts new file mode 100644 index 00000000000..b5c2853cd0f --- /dev/null +++ b/packages/chains/chains/7777777.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zora", + "chain": "ETH", + "rpc": [ + "https://zora.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.zora.energy/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmZ6qaRwTPFEZUspwMUjaxC6KhmzcELdRQcQzS3P72Dzts/Vector.svg", + "height": 512, + "width": 512, + "format": "svg" + }, + "infoURL": "https://zora.energy", + "shortName": "zora", + "chainId": 7777777, + "networkId": 7777777, + "explorers": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "zora" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/78110.ts b/packages/chains/chains/78110.ts new file mode 100644 index 00000000000..04dc1e0e693 --- /dev/null +++ b/packages/chains/chains/78110.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Firenze test network", + "chain": "ETH", + "rpc": [ + "https://firenze-test-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ethnode.primusmoney.com/firenze" + ], + "faucets": [], + "nativeCurrency": { + "name": "Firenze Ether", + "symbol": "FIN", + "decimals": 18 + }, + "infoURL": "https://primusmoney.com", + "shortName": "firenze", + "chainId": 78110, + "networkId": 78110, + "testnet": true, + "slug": "firenze-test-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/78281.ts b/packages/chains/chains/78281.ts new file mode 100644 index 00000000000..f6d93e24534 --- /dev/null +++ b/packages/chains/chains/78281.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dragonfly Mainnet (Hexapod)", + "chain": "Dragonfly", + "icon": { + "url": "ipfs://QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ", + "width": 512, + "height": 366, + "format": "png" + }, + "rpc": [ + "https://dragonfly-hexapod.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dragonfly-rpc.switch.ch", + "https://dragonfly-rpc.kore-technologies.ch", + "https://dragonfly-rpc.phoenix-systems.io", + "https://dragonfly-rpc.block-spirit.ch" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dragonfly", + "symbol": "DFLY", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "dfly", + "chainId": 78281, + "networkId": 78281, + "explorers": [ + { + "name": "Dragonfly Blockscout", + "url": "https://blockscout.dragonfly.hexapod.network", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dragonfly-hexapod" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/786.ts b/packages/chains/chains/786.ts new file mode 100644 index 00000000000..78c83936133 --- /dev/null +++ b/packages/chains/chains/786.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MAAL Sharia Chain", + "chain": "MAAL", + "icon": { + "url": "ipfs://bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://maal-sharia-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1-mainnet.maalscan.io/", + "https://node2-mainnet.maalscan.io/", + "https://node3-mainnet.maalscan.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalblockchain.com/", + "shortName": "maal", + "chainId": 786, + "networkId": 786, + "explorers": [ + { + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "maal-sharia-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/787.ts b/packages/chains/chains/787.ts new file mode 100644 index 00000000000..33b1b5d9df5 --- /dev/null +++ b/packages/chains/chains/787.ts @@ -0,0 +1,19 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Acala Network", + "chain": "ACA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "aca", + "chainId": 787, + "networkId": 787, + "slip44": 787, + "testnet": false, + "slug": "acala-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7878.ts b/packages/chains/chains/7878.ts new file mode 100644 index 00000000000..1f38f53a000 --- /dev/null +++ b/packages/chains/chains/7878.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Hazlor Testnet", + "chain": "SCAS", + "rpc": [ + "https://hazlor-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://hatlas.rpc.hazlor.com:8545", + "wss://hatlas.rpc.hazlor.com:8546" + ], + "faucets": [ + "https://faucet.hazlor.com" + ], + "nativeCurrency": { + "name": "Hazlor Test Coin", + "symbol": "TSCAS", + "decimals": 18 + }, + "infoURL": "https://hazlor.com", + "shortName": "tscas", + "chainId": 7878, + "networkId": 7878, + "explorers": [ + { + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "hazlor-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/788.ts b/packages/chains/chains/788.ts new file mode 100644 index 00000000000..982dbec4a40 --- /dev/null +++ b/packages/chains/chains/788.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Aerochain Testnet", + "chain": "Aerochain", + "rpc": [ + "https://aerochain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.aerochain.id/" + ], + "faucets": [ + "https://faucet.aerochain.id/" + ], + "nativeCurrency": { + "name": "Aerochain Testnet", + "symbol": "TAero", + "decimals": 18 + }, + "infoURL": "https://aerochaincoin.org/", + "shortName": "taero", + "chainId": 788, + "networkId": 788, + "explorers": [ + { + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "aerochain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/789.ts b/packages/chains/chains/789.ts new file mode 100644 index 00000000000..c8b941142ad --- /dev/null +++ b/packages/chains/chains/789.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Patex", + "chain": "ETH", + "icon": { + "url": "ipfs://QmTNTSNn3t5WpSEzQmUYbkxYkBKaH6QahyVdVrRKyPHChr", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://patex.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.patex.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://patex.io/", + "shortName": "peth", + "chainId": 789, + "networkId": 789, + "explorers": [ + { + "name": "patexscan", + "url": "https://patexscan.io", + "icon": { + "url": "ipfs://QmTNTSNn3t5WpSEzQmUYbkxYkBKaH6QahyVdVrRKyPHChr", + "width": 800, + "height": 800, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "patex" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7895.ts b/packages/chains/chains/7895.ts new file mode 100644 index 00000000000..f63dc926628 --- /dev/null +++ b/packages/chains/chains/7895.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "ARDENIUM Athena", + "chain": "ATHENA", + "rpc": [ + "https://ardenium-athena.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-athena.ardescan.com/" + ], + "faucets": [ + "https://faucet-athena.ardescan.com/" + ], + "nativeCurrency": { + "name": "ARD", + "symbol": "tARD", + "decimals": 18 + }, + "infoURL": "https://ardenium.org", + "shortName": "ard", + "chainId": 7895, + "networkId": 7895, + "icon": { + "url": "ipfs://QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG", + "width": 120, + "height": 120, + "format": "png" + }, + "explorers": [ + { + "name": "ARDENIUM Athena Explorer", + "icon": { + "url": "ipfs://QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG", + "width": 120, + "height": 120, + "format": "png" + }, + "url": "https://testnet.ardscan.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "ardenium-athena" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/7979.ts b/packages/chains/chains/7979.ts new file mode 100644 index 00000000000..85e55ba5fab --- /dev/null +++ b/packages/chains/chains/7979.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DOS Chain", + "chain": "DOS", + "rpc": [ + "https://dos-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://main.doschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "https://doschain.io", + "shortName": "dos", + "chainId": 7979, + "networkId": 7979, + "icon": { + "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "DOScan", + "url": "https://doscan.io", + "icon": { + "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dos-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/79879.ts b/packages/chains/chains/79879.ts new file mode 100644 index 00000000000..9d429ecf544 --- /dev/null +++ b/packages/chains/chains/79879.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Gold Smart Chain Testnet", + "chain": "STAND", + "icon": { + "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", + "width": 396, + "height": 418, + "format": "png" + }, + "rpc": [ + "https://gold-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.goldsmartchain.com" + ], + "faucets": [ + "https://faucet.goldsmartchain.com" + ], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDt", + "chainId": 79879, + "networkId": 79879, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "gold-smart-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/800.ts b/packages/chains/chains/800.ts new file mode 100644 index 00000000000..56bc8ed6191 --- /dev/null +++ b/packages/chains/chains/800.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lucid Blockchain", + "chain": "Lucid", + "icon": { + "url": "ipfs://bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://lucid-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.lucidcoin.io" + ], + "faucets": [ + "https://faucet.lucidcoin.io" + ], + "nativeCurrency": { + "name": "LUCID", + "symbol": "LUCID", + "decimals": 18 + }, + "infoURL": "https://lucidcoin.io", + "shortName": "LUCID", + "chainId": 800, + "networkId": 800, + "explorers": [ + { + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "lucid-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8000.ts b/packages/chains/chains/8000.ts new file mode 100644 index 00000000000..be467cfea62 --- /dev/null +++ b/packages/chains/chains/8000.ts @@ -0,0 +1,51 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Teleport", + "chain": "Teleport", + "rpc": [ + "https://teleport.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-rpc.teleport.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network", + "shortName": "teleport", + "chainId": 8000, + "networkId": 8000, + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + }, + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + } + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.teleport.network", + "standard": "none", + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + } + } + ], + "testnet": false, + "slug": "teleport" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/800001.ts b/packages/chains/chains/800001.ts new file mode 100644 index 00000000000..b730193a73f --- /dev/null +++ b/packages/chains/chains/800001.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "OctaSpace", + "chain": "OCTA", + "rpc": [ + "https://octaspace.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.octa.space", + "wss://rpc.octa.space" + ], + "faucets": [], + "nativeCurrency": { + "name": "OctaSpace", + "symbol": "OCTA", + "decimals": 18 + }, + "infoURL": "https://octa.space", + "shortName": "octa", + "chainId": 800001, + "networkId": 800001, + "icon": { + "url": "ipfs://QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.octa.space", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "octaspace" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/80001.ts b/packages/chains/chains/80001.ts new file mode 100644 index 00000000000..fa0381c17e3 --- /dev/null +++ b/packages/chains/chains/80001.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mumbai", + "title": "Polygon Testnet Mumbai", + "chain": "Polygon", + "icon": { + "url": "ipfs://QmcxZHpyJa8T4i63xqjPYrZ6tKrt55tZJpbXcjSDKuKaf9/polygon/512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "rpc": [ + "https://mumbai.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://polygon-mumbai.infura.io/v3/${INFURA_API_KEY}", + "https://polygon-mumbai.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://matic-mumbai.chainstacklabs.com", + "https://rpc-mumbai.maticvigil.com", + "https://matic-testnet-archive-rpc.bwarelabs.com", + "https://polygon-mumbai-bor.publicnode.com" + ], + "faucets": [ + "https://faucet.polygon.technology/" + ], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "maticmum", + "chainId": 80001, + "networkId": 80001, + "explorers": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "mumbai" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8001.ts b/packages/chains/chains/8001.ts new file mode 100644 index 00000000000..4c0b2430a36 --- /dev/null +++ b/packages/chains/chains/8001.ts @@ -0,0 +1,53 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Teleport Testnet", + "chain": "Teleport", + "rpc": [ + "https://teleport-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-rpc.testnet.teleport.network" + ], + "faucets": [ + "https://chain-docs.teleport.network/testnet/faucet.html" + ], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network", + "shortName": "teleport-testnet", + "chainId": 8001, + "networkId": 8001, + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + }, + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + } + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.testnet.teleport.network", + "standard": "none", + "icon": { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + } + } + ], + "testnet": true, + "slug": "teleport-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8007736.ts b/packages/chains/chains/8007736.ts new file mode 100644 index 00000000000..319548172e8 --- /dev/null +++ b/packages/chains/chains/8007736.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Plian Mainnet Subchain 1", + "chain": "Plian", + "rpc": [ + "https://plian-subchain-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.plian.io/child_0" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-mainnet-l2", + "chainId": 8007736, + "networkId": 8007736, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/child_0", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-2099156", + "type": "L2" + }, + "testnet": false, + "slug": "plian-subchain-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8029.ts b/packages/chains/chains/8029.ts new file mode 100644 index 00000000000..07ba9785868 --- /dev/null +++ b/packages/chains/chains/8029.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MDGL Testnet", + "chain": "MDGL", + "rpc": [ + "https://mdgl-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.mdgl.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MDGL Token", + "symbol": "MDGLT", + "decimals": 18 + }, + "infoURL": "https://mdgl.io", + "shortName": "mdgl", + "chainId": 8029, + "networkId": 8029, + "testnet": true, + "slug": "mdgl-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/803.ts b/packages/chains/chains/803.ts new file mode 100644 index 00000000000..2ea3c637bb4 --- /dev/null +++ b/packages/chains/chains/803.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Haic", + "chain": "Haic", + "rpc": [ + "https://haic.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://orig.haichain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Haicoin", + "symbol": "HAIC", + "decimals": 18 + }, + "infoURL": "https://www.haichain.io/", + "shortName": "haic", + "chainId": 803, + "networkId": 803, + "testnet": false, + "slug": "haic" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/808.ts b/packages/chains/chains/808.ts new file mode 100644 index 00000000000..bd750acd0af --- /dev/null +++ b/packages/chains/chains/808.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Portal Fantasy Chain Test", + "chain": "PF", + "icon": { + "url": "ipfs://QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [ + "https://portal-fantasy-chain-test.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://subnets.avax.network/portal-fantasy/testnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PFTEST", + "chainId": 808, + "networkId": 808, + "explorers": [], + "testnet": true, + "slug": "portal-fantasy-chain-test" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8080.ts b/packages/chains/chains/8080.ts new file mode 100644 index 00000000000..db8ef017bd4 --- /dev/null +++ b/packages/chains/chains/8080.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shardeum Liberty 1.X", + "chain": "Shardeum", + "icon": { + "url": "ipfs://Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD", + "width": 609, + "height": 533, + "format": "png" + }, + "rpc": [ + "https://shardeum-liberty-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://liberty10.shardeum.org/" + ], + "faucets": [ + "https://faucet.liberty10.shardeum.org" + ], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Liberty10", + "chainId": 8080, + "networkId": 8080, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" + } + ], + "redFlags": [ + "reusedChainId" + ], + "testnet": false, + "slug": "shardeum-liberty-1-x" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8081.ts b/packages/chains/chains/8081.ts new file mode 100644 index 00000000000..4ec838b7d81 --- /dev/null +++ b/packages/chains/chains/8081.ts @@ -0,0 +1,35 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shardeum Sphinx DApp 1.X", + "shortName": "Sphinx", + "chain": "Shardeum", + "chainId": 8081, + "icon": { + "height": 1200, + "width": 1200, + "url": "ipfs://QmQWzHUy4kmk1eGksDREGQL3GWrssdAPBxHt4aKGAFHSfJ", + "format": "png" + }, + "rpc": [ + "https://shardeum-sphinx-dapp-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dapps.shardeum.org/sphinx" + ], + "nativeCurrency": { + "name": "Shardeum", + "symbol": "SHM", + "decimals": 18 + }, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-dapps.shardeum.org", + "standard": "EIP3091" + } + ], + "faucets": [ + "https://faucet-dapps.shardeum.org/" + ], + "infoURL": "https://docs.shardeum.org/", + "testnet": true, + "slug": "shardeum-sphinx-dapp-1-x" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8082.ts b/packages/chains/chains/8082.ts new file mode 100644 index 00000000000..d4f4277ac63 --- /dev/null +++ b/packages/chains/chains/8082.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Shardeum Sphinx 1.X", + "chain": "Shardeum", + "icon": { + "url": "ipfs://Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD", + "width": 609, + "height": 533, + "format": "png" + }, + "rpc": [ + "https://shardeum-sphinx-1-x.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sphinx.shardeum.org/" + ], + "faucets": [ + "https://faucet-sphinx.shardeum.org/" + ], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Sphinx10", + "chainId": 8082, + "networkId": 8082, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-sphinx.shardeum.org", + "standard": "EIP3091" + } + ], + "redFlags": [ + "reusedChainId" + ], + "testnet": false, + "slug": "shardeum-sphinx-1-x" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8086.ts b/packages/chains/chains/8086.ts new file mode 100644 index 00000000000..d573808f34a --- /dev/null +++ b/packages/chains/chains/8086.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BitEth", + "chain": "BTE", + "rpc": [ + "https://biteth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.biteth.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitEth", + "symbol": "BTE", + "decimals": 18 + }, + "infoURL": "https://biteth.org", + "shortName": "BitEth", + "chainId": 8086, + "networkId": 8086, + "explorers": [], + "testnet": false, + "slug": "biteth" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8098.ts b/packages/chains/chains/8098.ts new file mode 100644 index 00000000000..6d69af5c78c --- /dev/null +++ b/packages/chains/chains/8098.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "StreamuX Blockchain", + "chain": "StreamuX", + "rpc": [ + "https://streamux-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "StreamuX", + "symbol": "SmuX", + "decimals": 18 + }, + "infoURL": "https://www.streamux.cloud", + "shortName": "StreamuX", + "chainId": 8098, + "networkId": 8098, + "testnet": false, + "slug": "streamux-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/813.ts b/packages/chains/chains/813.ts new file mode 100644 index 00000000000..6b30b7170b9 --- /dev/null +++ b/packages/chains/chains/813.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Qitmeer", + "chain": "MEER", + "rpc": [ + "https://qitmeer.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-dataseed1.meerscan.io", + "https://evm-dataseed2.meerscan.io", + "https://evm-dataseed3.meerscan.io", + "https://evm-dataseed.meerscan.com", + "https://evm-dataseed1.meerscan.com", + "https://evm-dataseed2.meerscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meer", + "chainId": 813, + "networkId": 813, + "slip44": 813, + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "meerscan", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "url": "https://evm.meerscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "qitmeer" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8131.ts b/packages/chains/chains/8131.ts new file mode 100644 index 00000000000..98dae01dae7 --- /dev/null +++ b/packages/chains/chains/8131.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Qitmeer Network Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meertest", + "chainId": 8131, + "networkId": 8131, + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "meerscan testnet", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "url": "https://testnet.qng.meerscan.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "qitmeer-network-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8132.ts b/packages/chains/chains/8132.ts new file mode 100644 index 00000000000..fc416971ae3 --- /dev/null +++ b/packages/chains/chains/8132.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Qitmeer Network Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meermix", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 8132, + "networkId": 8132, + "status": "incubating", + "testnet": false, + "slug": "qitmeer-network-mixnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8133.ts b/packages/chains/chains/8133.ts new file mode 100644 index 00000000000..6e24178ec8a --- /dev/null +++ b/packages/chains/chains/8133.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Qitmeer Network Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meerpriv", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 8133, + "networkId": 8133, + "status": "incubating", + "testnet": false, + "slug": "qitmeer-network-privnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8134.ts b/packages/chains/chains/8134.ts new file mode 100644 index 00000000000..80a6041ad1a --- /dev/null +++ b/packages/chains/chains/8134.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Amana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amana", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 8134, + "networkId": 8134, + "status": "incubating", + "testnet": false, + "slug": "amana" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81341.ts b/packages/chains/chains/81341.ts new file mode 100644 index 00000000000..2616f9a2739 --- /dev/null +++ b/packages/chains/chains/81341.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Amana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanatest", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81341, + "networkId": 81341, + "status": "incubating", + "testnet": true, + "slug": "amana-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81342.ts b/packages/chains/chains/81342.ts new file mode 100644 index 00000000000..4c678292b0c --- /dev/null +++ b/packages/chains/chains/81342.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Amana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanamix", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81342, + "networkId": 81342, + "status": "incubating", + "testnet": false, + "slug": "amana-mixnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81343.ts b/packages/chains/chains/81343.ts new file mode 100644 index 00000000000..6bddafc687a --- /dev/null +++ b/packages/chains/chains/81343.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Amana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanapriv", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81343, + "networkId": 81343, + "status": "incubating", + "testnet": false, + "slug": "amana-privnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8135.ts b/packages/chains/chains/8135.ts new file mode 100644 index 00000000000..b5218fcfc8d --- /dev/null +++ b/packages/chains/chains/8135.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Flana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flana", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 8135, + "networkId": 8135, + "status": "incubating", + "testnet": false, + "slug": "flana" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81351.ts b/packages/chains/chains/81351.ts new file mode 100644 index 00000000000..ee149b4aacb --- /dev/null +++ b/packages/chains/chains/81351.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Flana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanatest", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81351, + "networkId": 81351, + "status": "incubating", + "testnet": true, + "slug": "flana-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81352.ts b/packages/chains/chains/81352.ts new file mode 100644 index 00000000000..f2e9fa81104 --- /dev/null +++ b/packages/chains/chains/81352.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Flana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanamix", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81352, + "networkId": 81352, + "status": "incubating", + "testnet": false, + "slug": "flana-mixnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81353.ts b/packages/chains/chains/81353.ts new file mode 100644 index 00000000000..c8322e777a6 --- /dev/null +++ b/packages/chains/chains/81353.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Flana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanapriv", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81353, + "networkId": 81353, + "status": "incubating", + "testnet": false, + "slug": "flana-privnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8136.ts b/packages/chains/chains/8136.ts new file mode 100644 index 00000000000..8485054d7a0 --- /dev/null +++ b/packages/chains/chains/8136.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mizana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizana", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 8136, + "networkId": 8136, + "status": "incubating", + "testnet": false, + "slug": "mizana" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81361.ts b/packages/chains/chains/81361.ts new file mode 100644 index 00000000000..1975c048f7d --- /dev/null +++ b/packages/chains/chains/81361.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mizana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanatest", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81361, + "networkId": 81361, + "status": "incubating", + "testnet": true, + "slug": "mizana-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81362.ts b/packages/chains/chains/81362.ts new file mode 100644 index 00000000000..4fd02773669 --- /dev/null +++ b/packages/chains/chains/81362.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mizana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanamix", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81362, + "networkId": 81362, + "status": "incubating", + "testnet": false, + "slug": "mizana-mixnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/81363.ts b/packages/chains/chains/81363.ts new file mode 100644 index 00000000000..f5b195cc9dd --- /dev/null +++ b/packages/chains/chains/81363.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mizana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanapriv", + "icon": { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + }, + "chainId": 81363, + "networkId": 81363, + "status": "incubating", + "testnet": false, + "slug": "mizana-privnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/818.ts b/packages/chains/chains/818.ts new file mode 100644 index 00000000000..fc75f5aa941 --- /dev/null +++ b/packages/chains/chains/818.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BeOne Chain Mainnet", + "chain": "BOC", + "icon": { + "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://beone-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed1.beonechain.com", + "https://dataseed2.beonechain.com", + "https://dataseed-us1.beonechain.com", + "https://dataseed-us2.beonechain.com", + "https://dataseed-uk1.beonechain.com", + "https://dataseed-uk2.beonechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BeOne Chain Mainnet", + "symbol": "BOC", + "decimals": 18 + }, + "infoURL": "https://beonechain.com", + "shortName": "BOC", + "chainId": 818, + "networkId": 818, + "slip44": 8181, + "explorers": [ + { + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "beone-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8181.ts b/packages/chains/chains/8181.ts new file mode 100644 index 00000000000..18b64af60c0 --- /dev/null +++ b/packages/chains/chains/8181.ts @@ -0,0 +1,44 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BeOne Chain Testnet", + "chain": "BOC", + "rpc": [ + "https://beone-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://pre-boc1.beonechain.com", + "https://pre-boc2.beonechain.com", + "https://pre-boc3.beonechain.com" + ], + "faucets": [ + "https://testnet.beonescan.com/faucet" + ], + "nativeCurrency": { + "name": "BeOne Chain Testnet", + "symbol": "BOC", + "decimals": 18 + }, + "infoURL": "https://testnet.beonescan.com", + "shortName": "tBOC", + "chainId": 8181, + "networkId": 8181, + "icon": { + "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "BeOne Chain Testnet", + "url": "https://testnet.beonescan.com", + "icon": { + "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", + "width": 500, + "height": 500, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": true, + "slug": "beone-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/820.ts b/packages/chains/chains/820.ts new file mode 100644 index 00000000000..fbb6d563385 --- /dev/null +++ b/packages/chains/chains/820.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Callisto Mainnet", + "chain": "CLO", + "rpc": [ + "https://callisto.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.callisto.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "infoURL": "https://callisto.network", + "shortName": "clo", + "chainId": 820, + "networkId": 1, + "slip44": 820, + "testnet": false, + "slug": "callisto" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8217.ts b/packages/chains/chains/8217.ts new file mode 100644 index 00000000000..8a7db20f128 --- /dev/null +++ b/packages/chains/chains/8217.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Klaytn Mainnet Cypress", + "chain": "KLAY", + "rpc": [ + "https://klaytn-cypress.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://klaytn.blockpi.network/v1/rpc/public", + "https://klaytn-mainnet-rpc.allthatnode.com:8551", + "https://public-en-cypress.klaytn.net", + "https://public-node-api.klaytnapi.com/v1/cypress" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://www.klaytn.com/", + "shortName": "Cypress", + "chainId": 8217, + "networkId": 8217, + "slip44": 8217, + "explorers": [ + { + "name": "klaytnfinder", + "url": "https://www.klaytnfinder.io/", + "standard": "none" + }, + { + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "none" + } + ], + "icon": { + "format": "png", + "url": "ipfs://bafkreigtgdivlmfvf7trqjqy4vkz2d26xk3iif6av265v4klu5qavsugm4", + "height": 1000, + "width": 1000 + }, + "testnet": false, + "slug": "klaytn-cypress" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8272.ts b/packages/chains/chains/8272.ts new file mode 100644 index 00000000000..54c2363e3c8 --- /dev/null +++ b/packages/chains/chains/8272.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Blockton Blockchain", + "chain": "Blockton Blockchain", + "icon": { + "url": "ipfs://bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://blockton-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.blocktonscan.com/" + ], + "faucets": [ + "https://faucet.blocktonscan.com/" + ], + "nativeCurrency": { + "name": "BLOCKTON", + "symbol": "BTON", + "decimals": 18 + }, + "infoURL": "https://blocktoncoin.com", + "shortName": "BTON", + "chainId": 8272, + "networkId": 8272, + "explorers": [ + { + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "blockton-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/827431.ts b/packages/chains/chains/827431.ts new file mode 100644 index 00000000000..45d6feddf00 --- /dev/null +++ b/packages/chains/chains/827431.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CURVE Mainnet", + "chain": "CURVE", + "icon": { + "url": "ipfs://QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg", + "width": 150, + "height": 150, + "format": "png" + }, + "rpc": [ + "https://curve.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-rpc.curvescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Curve", + "symbol": "CURVE", + "decimals": 18 + }, + "infoURL": "https://curvescan.io", + "shortName": "CURVEm", + "chainId": 827431, + "networkId": 827431, + "explorers": [ + { + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "curve" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8285.ts b/packages/chains/chains/8285.ts new file mode 100644 index 00000000000..9de94a00e9a --- /dev/null +++ b/packages/chains/chains/8285.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "KorthoTest", + "chain": "Kortho", + "rpc": [ + "https://korthotest.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://www.krotho-test.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kortho Test", + "symbol": "KTO", + "decimals": 11 + }, + "infoURL": "https://www.kortho.io/", + "shortName": "Kortho", + "chainId": 8285, + "networkId": 8285, + "testnet": true, + "slug": "korthotest" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8387.ts b/packages/chains/chains/8387.ts new file mode 100644 index 00000000000..886479dcd5c --- /dev/null +++ b/packages/chains/chains/8387.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dracones Financial Services", + "title": "The Dracones Mainnet", + "chain": "FUCK", + "rpc": [ + "https://dracones-financial-services.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.dracones.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Functionally Universal Coin Kind", + "symbol": "FUCK", + "decimals": 18 + }, + "infoURL": "https://wolfery.com", + "shortName": "fuck", + "chainId": 8387, + "networkId": 8387, + "icon": { + "url": "ipfs://bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [], + "testnet": false, + "slug": "dracones-financial-services" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/841.ts b/packages/chains/chains/841.ts new file mode 100644 index 00000000000..f5fec4b2142 --- /dev/null +++ b/packages/chains/chains/841.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taraxa Mainnet", + "chain": "Tara", + "icon": { + "url": "ipfs://QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D", + "width": 310, + "height": 310, + "format": "png" + }, + "rpc": [ + "https://taraxa.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.mainnet.taraxa.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "shortName": "tara", + "chainId": 841, + "networkId": 841, + "explorers": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "taraxa" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/842.ts b/packages/chains/chains/842.ts new file mode 100644 index 00000000000..d3b746b9cb8 --- /dev/null +++ b/packages/chains/chains/842.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Taraxa Testnet", + "chain": "Tara", + "icon": { + "url": "ipfs://QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D", + "width": 310, + "height": 310, + "format": "png" + }, + "rpc": [ + "https://taraxa-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.testnet.taraxa.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "shortName": "taratest", + "chainId": 842, + "networkId": 842, + "explorers": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "taraxa-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8453.ts b/packages/chains/chains/8453.ts new file mode 100644 index 00000000000..687828e64d2 --- /dev/null +++ b/packages/chains/chains/8453.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Base", + "chain": "ETH", + "rpc": [ + "https://base.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://developer-access-mainnet.base.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "base", + "chainId": 8453, + "networkId": 8453, + "icon": { + "url": "ipfs://QmW5Vn15HeRkScMfPcW12ZdZcC2yUASpu6eCsECRdEmjjj/base-512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "explorers": [ + { + "name": "basescout", + "url": "https://base.blockscout.com", + "standard": "none" + }, + { + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" + } + ], + "status": "active", + "testnet": false, + "slug": "base" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/84531.ts b/packages/chains/chains/84531.ts new file mode 100644 index 00000000000..f58d48c4c42 --- /dev/null +++ b/packages/chains/chains/84531.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Base Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://base-goerli.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://goerli.base.org" + ], + "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, + "icon": { + "url": "ipfs://QmW5Vn15HeRkScMfPcW12ZdZcC2yUASpu6eCsECRdEmjjj/base-512.png", + "height": 512, + "width": 512, + "format": "png" + }, + "explorers": [ + { + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "standard": "none" + }, + { + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" + } + ], + "testnet": true, + "slug": "base-goerli" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/846000.ts b/packages/chains/chains/846000.ts new file mode 100644 index 00000000000..8d772ae95de --- /dev/null +++ b/packages/chains/chains/846000.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "4GoodNetwork", + "chain": "4GN", + "rpc": [ + "https://4goodnetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://chain.deptofgood.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "APTA", + "symbol": "APTA", + "decimals": 18 + }, + "infoURL": "https://bloqs4good.com", + "shortName": "bloqs4good", + "chainId": 846000, + "networkId": 846000, + "testnet": false, + "slug": "4goodnetwork" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/85449.ts b/packages/chains/chains/85449.ts new file mode 100644 index 00000000000..054cbb05f6d --- /dev/null +++ b/packages/chains/chains/85449.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "CYBERTRUST", + "chain": "CYBER", + "rpc": [ + "https://cybertrust.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "http://testnet.cybertrust.space:48501" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cyber Trust", + "symbol": "CYBER", + "decimals": 18 + }, + "infoURL": "https://cybertrust.space", + "shortName": "Cyber", + "chainId": 85449, + "networkId": 48501, + "testnet": true, + "slug": "cybertrust" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/859.ts b/packages/chains/chains/859.ts new file mode 100644 index 00000000000..573e8551322 --- /dev/null +++ b/packages/chains/chains/859.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zeeth Chain Dev", + "chain": "ZeethChainDev", + "rpc": [ + "https://zeeth-chain-dev.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.dev.zeeth.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "zeethdev", + "chainId": 859, + "networkId": 859, + "explorers": [ + { + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "zeeth-chain-dev" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8654.ts b/packages/chains/chains/8654.ts new file mode 100644 index 00000000000..fba6558cd30 --- /dev/null +++ b/packages/chains/chains/8654.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Toki Network", + "chain": "TOKI", + "rpc": [ + "https://toki-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.buildwithtoki.com/v0/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki", + "chainId": 8654, + "networkId": 8654, + "icon": { + "url": "ipfs://QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [], + "testnet": false, + "slug": "toki-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8655.ts b/packages/chains/chains/8655.ts new file mode 100644 index 00000000000..b7f21829a06 --- /dev/null +++ b/packages/chains/chains/8655.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Toki Testnet", + "chain": "TOKI", + "rpc": [ + "https://toki-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.buildwithtoki.com/v0/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki-testnet", + "chainId": 8655, + "networkId": 8655, + "icon": { + "url": "ipfs://QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [], + "testnet": true, + "slug": "toki-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/868.ts b/packages/chains/chains/868.ts new file mode 100644 index 00000000000..a5a6d910c5e --- /dev/null +++ b/packages/chains/chains/868.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Fantasia Chain Mainnet", + "chain": "FSC", + "rpc": [ + "https://fantasia-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-data1.fantasiachain.com/", + "https://mainnet-data2.fantasiachain.com/", + "https://mainnet-data3.fantasiachain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FST", + "symbol": "FST", + "decimals": 18 + }, + "infoURL": "https://fantasia.technology/", + "shortName": "FSCMainnet", + "chainId": 868, + "networkId": 868, + "explorers": [ + { + "name": "FSCScan", + "url": "https://explorer.fantasiachain.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "fantasia-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8723.ts b/packages/chains/chains/8723.ts new file mode 100644 index 00000000000..4d2e2333394 --- /dev/null +++ b/packages/chains/chains/8723.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TOOL Global Mainnet", + "chain": "OLO", + "rpc": [ + "https://tool-global.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet-web3.wolot.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "infoURL": "https://ibdt.io", + "shortName": "olo", + "chainId": 8723, + "networkId": 8723, + "slip44": 479, + "explorers": [ + { + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "tool-global" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8724.ts b/packages/chains/chains/8724.ts new file mode 100644 index 00000000000..72edbab98be --- /dev/null +++ b/packages/chains/chains/8724.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TOOL Global Testnet", + "chain": "OLO", + "rpc": [ + "https://tool-global-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-web3.wolot.io" + ], + "faucets": [ + "https://testnet-explorer.wolot.io" + ], + "nativeCurrency": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.wolot.io", + "shortName": "tolo", + "chainId": 8724, + "networkId": 8724, + "slip44": 479, + "testnet": true, + "slug": "tool-global-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8738.ts b/packages/chains/chains/8738.ts new file mode 100644 index 00000000000..756e28c9b37 --- /dev/null +++ b/packages/chains/chains/8738.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Alph Network", + "chain": "ALPH", + "rpc": [ + "https://alph-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.alph.network", + "wss://rpc.alph.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Alph Network", + "symbol": "ALPH", + "decimals": 18 + }, + "infoURL": "https://alph.network", + "shortName": "alph", + "chainId": 8738, + "networkId": 8738, + "explorers": [ + { + "name": "alphscan", + "url": "https://explorer.alph.network", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "alph-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/876.ts b/packages/chains/chains/876.ts new file mode 100644 index 00000000000..187aaa29976 --- /dev/null +++ b/packages/chains/chains/876.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Bandai Namco Research Verse Mainnet", + "chain": "Bandai Namco Research Verse", + "icon": { + "url": "ipfs://bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq", + "width": 2048, + "height": 2048, + "format": "png" + }, + "rpc": [ + "https://bandai-namco-research-verse.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.main.oasvrs.bnken.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.bandainamco-mirai.com/en/", + "shortName": "BNKEN", + "chainId": 876, + "networkId": 876, + "explorers": [ + { + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + }, + "testnet": false, + "slug": "bandai-namco-research-verse" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8768.ts b/packages/chains/chains/8768.ts new file mode 100644 index 00000000000..7a6474a017f --- /dev/null +++ b/packages/chains/chains/8768.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TMY Chain", + "chain": "TMY", + "icon": { + "url": "ipfs://Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH", + "width": 1024, + "height": 1023, + "format": "svg" + }, + "rpc": [ + "https://tmy-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://node1.tmyblockchain.org/rpc" + ], + "faucets": [ + "https://faucet.tmychain.org/" + ], + "nativeCurrency": { + "name": "TMY", + "symbol": "TMY", + "decimals": 18 + }, + "infoURL": "https://tmychain.org/", + "shortName": "tmy", + "chainId": 8768, + "networkId": 8768, + "testnet": false, + "slug": "tmy-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/877.ts b/packages/chains/chains/877.ts new file mode 100644 index 00000000000..cdab7d3c4dd --- /dev/null +++ b/packages/chains/chains/877.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dexit Network", + "chain": "DXT", + "rpc": [ + "https://dexit-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dxt.dexit.network" + ], + "faucets": [ + "https://faucet.dexit.network" + ], + "nativeCurrency": { + "name": "Dexit network", + "symbol": "DXT", + "decimals": 18 + }, + "infoURL": "https://dexit.network", + "shortName": "DXT", + "chainId": 877, + "networkId": 877, + "explorers": [ + { + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "dexit-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8794598.ts b/packages/chains/chains/8794598.ts new file mode 100644 index 00000000000..80297c02619 --- /dev/null +++ b/packages/chains/chains/8794598.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "HAPchain", + "chain": "HAPchain", + "rpc": [ + "https://hapchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://jsonrpc.hap.land" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap", + "chainId": 8794598, + "networkId": 8794598, + "icon": { + "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout.hap.land", + "standard": "none", + "icon": { + "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": false, + "slug": "hapchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/880.ts b/packages/chains/chains/880.ts new file mode 100644 index 00000000000..022f8d5a8ae --- /dev/null +++ b/packages/chains/chains/880.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Ambros Chain Mainnet", + "chain": "ambroschain", + "rpc": [ + "https://ambros-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.ambros.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "AMBROS", + "symbol": "AMBROS", + "decimals": 18 + }, + "infoURL": "https://ambros.network", + "shortName": "ambros", + "chainId": 880, + "networkId": 880, + "explorers": [ + { + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", + "standard": "none" + } + ], + "testnet": false, + "slug": "ambros-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8848.ts b/packages/chains/chains/8848.ts new file mode 100644 index 00000000000..44b0817fc80 --- /dev/null +++ b/packages/chains/chains/8848.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MARO Blockchain Mainnet", + "chain": "MARO Blockchain", + "icon": { + "url": "ipfs://bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa", + "width": 160, + "height": 160, + "format": "png" + }, + "rpc": [ + "https://maro-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.ma.ro" + ], + "faucets": [], + "nativeCurrency": { + "name": "MARO", + "symbol": "MARO", + "decimals": 18 + }, + "infoURL": "https://ma.ro/", + "shortName": "maro", + "chainId": 8848, + "networkId": 8848, + "explorers": [ + { + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } + ], + "testnet": false, + "slug": "maro-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/888.ts b/packages/chains/chains/888.ts new file mode 100644 index 00000000000..3e4ffaca724 --- /dev/null +++ b/packages/chains/chains/888.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Wanchain", + "chain": "WAN", + "rpc": [ + "https://wanchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://gwan-ssl.wandevs.org:56891/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "infoURL": "https://www.wanscan.org", + "shortName": "wan", + "chainId": 888, + "networkId": 888, + "slip44": 5718350, + "testnet": false, + "slug": "wanchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8880.ts b/packages/chains/chains/8880.ts new file mode 100644 index 00000000000..5a21b664381 --- /dev/null +++ b/packages/chains/chains/8880.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Unique", + "icon": { + "url": "ipfs://QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR", + "width": 48, + "height": 48, + "format": "svg" + }, + "chain": "UNQ", + "rpc": [ + "https://unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.unique.network", + "https://eu-rpc.unique.network", + "https://asia-rpc.unique.network", + "https://us-rpc.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Unique", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "unq", + "chainId": 8880, + "networkId": 8880, + "explorers": [ + { + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } + ], + "testnet": false, + "slug": "unique" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8881.ts b/packages/chains/chains/8881.ts new file mode 100644 index 00000000000..89f4d459ef3 --- /dev/null +++ b/packages/chains/chains/8881.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quartz by Unique", + "icon": { + "url": "ipfs://QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp", + "width": 48, + "height": 48, + "format": "svg" + }, + "chain": "UNQ", + "rpc": [ + "https://quartz-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-quartz.unique.network", + "https://quartz.api.onfinality.io/public-ws", + "https://eu-rpc-quartz.unique.network", + "https://asia-rpc-quartz.unique.network", + "https://us-rpc-quartz.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "qtz", + "chainId": 8881, + "networkId": 8881, + "explorers": [ + { + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "standard": "none" + } + ], + "testnet": false, + "slug": "quartz-by-unique" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8882.ts b/packages/chains/chains/8882.ts new file mode 100644 index 00000000000..644c722cb71 --- /dev/null +++ b/packages/chains/chains/8882.ts @@ -0,0 +1,39 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Opal testnet by Unique", + "icon": { + "url": "ipfs://QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc", + "width": 48, + "height": 48, + "format": "svg" + }, + "chain": "UNQ", + "rpc": [ + "https://opal-testnet-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-opal.unique.network", + "https://us-rpc-opal.unique.network", + "https://eu-rpc-opal.unique.network", + "https://asia-rpc-opal.unique.network" + ], + "faucets": [ + "https://t.me/unique2faucet_opal_bot" + ], + "nativeCurrency": { + "name": "Opal", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "opl", + "chainId": 8882, + "networkId": 8882, + "explorers": [ + { + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } + ], + "testnet": true, + "slug": "opal-testnet-by-unique" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8883.ts b/packages/chains/chains/8883.ts new file mode 100644 index 00000000000..eb6f1787ff1 --- /dev/null +++ b/packages/chains/chains/8883.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Sapphire by Unique", + "icon": { + "url": "ipfs://Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf", + "width": 48, + "height": 48, + "format": "svg" + }, + "chain": "UNQ", + "rpc": [ + "https://sapphire-by-unique.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-sapphire.unique.network", + "https://us-rpc-sapphire.unique.network", + "https://eu-rpc-sapphire.unique.network", + "https://asia-rpc-sapphire.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "sph", + "chainId": 8883, + "networkId": 8883, + "explorers": [ + { + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } + ], + "testnet": false, + "slug": "sapphire-by-unique" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888.ts b/packages/chains/chains/8888.ts new file mode 100644 index 00000000000..45a7cd5c943 --- /dev/null +++ b/packages/chains/chains/8888.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "XANAChain", + "chain": "XANAChain", + "rpc": [ + "https://xanachain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.xana.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "XETA", + "symbol": "XETA", + "decimals": 18 + }, + "infoURL": "https://xanachain.xana.net/", + "shortName": "XANAChain", + "chainId": 8888, + "networkId": 8888, + "icon": { + "url": "ipfs://QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj", + "width": 512, + "height": 512, + "format": "png" + }, + "explorers": [ + { + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" + } + ], + "redFlags": [ + "reusedChainId" + ], + "testnet": false, + "slug": "xanachain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88880.ts b/packages/chains/chains/88880.ts new file mode 100644 index 00000000000..8c08f740580 --- /dev/null +++ b/packages/chains/chains/88880.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Chiliz Scoville Testnet", + "chain": "CHZ", + "rpc": [ + "https://chiliz-scoville-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://scoville-rpc.chiliz.com" + ], + "faucets": [ + "https://scoville-faucet.chiliz.com" + ], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED", + "width": 400, + "height": 400, + "format": "png" + }, + "infoURL": "https://www.chiliz.com/en/chain", + "shortName": "chz", + "chainId": 88880, + "networkId": 88880, + "explorers": [ + { + "name": "scoville-explorer", + "url": "https://scoville-explorer.chiliz.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "chiliz-scoville-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88888.ts b/packages/chains/chains/88888.ts new file mode 100644 index 00000000000..2e2c9498da4 --- /dev/null +++ b/packages/chains/chains/88888.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "IVAR Chain Mainnet", + "chain": "IVAR", + "icon": { + "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", + "width": 519, + "height": 519, + "format": "svg" + }, + "rpc": [ + "https://ivar-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "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" + } + ], + "testnet": false, + "slug": "ivar-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/888888.ts b/packages/chains/chains/888888.ts new file mode 100644 index 00000000000..ca84fd93a8f --- /dev/null +++ b/packages/chains/chains/888888.ts @@ -0,0 +1,29 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vision - Mainnet", + "chain": "Vision", + "rpc": [ + "https://vision.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://infragrid.v.network/ethereum/compatible" + ], + "faucets": [], + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "infoURL": "https://www.v.network", + "explorers": [ + { + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } + ], + "shortName": "vision", + "chainId": 888888, + "networkId": 888888, + "slip44": 60, + "testnet": false, + "slug": "vision" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888881.ts b/packages/chains/chains/8888881.ts new file mode 100644 index 00000000000..bfed14d7449 --- /dev/null +++ b/packages/chains/chains/8888881.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quarix Testnet", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Q", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix-testnet", + "chainId": 8888881, + "networkId": 8888881, + "icon": { + "url": "ipfs://QmZmY6xVNzRAGwyT64PuyHaQ33BR84HEWvTVf6YHPW7kvQ", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [], + "testnet": true, + "slug": "quarix-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8888888.ts b/packages/chains/chains/8888888.ts new file mode 100644 index 00000000000..c2d13353729 --- /dev/null +++ b/packages/chains/chains/8888888.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Quarix", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Q", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix", + "chainId": 8888888, + "networkId": 8888888, + "icon": { + "url": "ipfs://QmZmY6xVNzRAGwyT64PuyHaQ33BR84HEWvTVf6YHPW7kvQ", + "width": 1024, + "height": 1024, + "format": "png" + }, + "explorers": [], + "testnet": false, + "slug": "quarix" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/88888888.ts b/packages/chains/chains/88888888.ts new file mode 100644 index 00000000000..50dc2d5d3e0 --- /dev/null +++ b/packages/chains/chains/88888888.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "T.E.A.M Blockchain", + "chain": "TEAM", + "icon": { + "url": "ipfs://QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt", + "width": 248, + "height": 248, + "format": "png" + }, + "rpc": [ + "https://t-e-a-m-blockchain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.teamblockchain.team" + ], + "faucets": [], + "nativeCurrency": { + "name": "TEAM", + "symbol": "$TEAM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://teamblockchain.team", + "shortName": "team", + "chainId": 88888888, + "networkId": 88888888, + "explorers": [ + { + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "t-e-a-m-blockchain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8889.ts b/packages/chains/chains/8889.ts new file mode 100644 index 00000000000..d4a46d03479 --- /dev/null +++ b/packages/chains/chains/8889.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Vyvo Smart Chain", + "chain": "VSC", + "rpc": [ + "https://vyvo-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://vsc-dataseed.vyvo.org:8889" + ], + "faucets": [], + "nativeCurrency": { + "name": "VSC", + "symbol": "VSC", + "decimals": 18 + }, + "infoURL": "https://vsc-dataseed.vyvo.org", + "shortName": "vsc", + "chainId": 8889, + "networkId": 8889, + "testnet": false, + "slug": "vyvo-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8898.ts b/packages/chains/chains/8898.ts new file mode 100644 index 00000000000..17dffea5404 --- /dev/null +++ b/packages/chains/chains/8898.ts @@ -0,0 +1,45 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mammoth Mainnet", + "title": "Mammoth Chain", + "chain": "MMT", + "rpc": [ + "https://mammoth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://dataseed.mmtscan.io", + "https://dataseed1.mmtscan.io", + "https://dataseed2.mmtscan.io" + ], + "faucets": [ + "https://faucet.mmtscan.io/" + ], + "nativeCurrency": { + "name": "Mammoth Token", + "symbol": "MMT", + "decimals": 18 + }, + "infoURL": "https://mmtchain.io/", + "shortName": "mmt", + "chainId": 8898, + "networkId": 8898, + "icon": { + "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", + "width": 250, + "height": 250, + "format": "png" + }, + "explorers": [ + { + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", + "width": 250, + "height": 250, + "format": "png" + } + } + ], + "testnet": false, + "slug": "mammoth" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8899.ts b/packages/chains/chains/8899.ts new file mode 100644 index 00000000000..a336027c1fe --- /dev/null +++ b/packages/chains/chains/8899.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "JIBCHAIN L1", + "chain": "JBC", + "rpc": [ + "https://jibchain-l1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-l1.jibchain.net" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "JIBCOIN", + "symbol": "JBC", + "decimals": 18 + }, + "infoURL": "https://jibchain.net", + "shortName": "jbc", + "chainId": 8899, + "networkId": 8899, + "explorers": [ + { + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "jibchain-l1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8989.ts b/packages/chains/chains/8989.ts new file mode 100644 index 00000000000..85c2b38e2b3 --- /dev/null +++ b/packages/chains/chains/8989.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Giant Mammoth Mainnet", + "title": "Giant Mammoth Chain", + "chain": "GMMT", + "rpc": [ + "https://giant-mammoth.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-asia.gmmtchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Giant Mammoth Coin", + "symbol": "GMMT", + "decimals": 18 + }, + "infoURL": "https://gmmtchain.io/", + "shortName": "gmmt", + "chainId": 8989, + "networkId": 8989, + "icon": { + "url": "ipfs://QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF", + "width": 468, + "height": 518, + "format": "png" + }, + "explorers": [ + { + "name": "gmmtscan", + "url": "https://scan.gmmtchain.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF", + "width": 468, + "height": 518, + "format": "png" + } + } + ], + "testnet": false, + "slug": "giant-mammoth" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/8995.ts b/packages/chains/chains/8995.ts new file mode 100644 index 00000000000..1004918b302 --- /dev/null +++ b/packages/chains/chains/8995.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "bloxberg", + "chain": "bloxberg", + "rpc": [ + "https://bloxberg.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://core.bloxberg.org" + ], + "faucets": [ + "https://faucet.bloxberg.org/" + ], + "nativeCurrency": { + "name": "BERG", + "symbol": "U+25B3", + "decimals": 18 + }, + "infoURL": "https://bloxberg.org", + "shortName": "berg", + "chainId": 8995, + "networkId": 8995, + "testnet": false, + "slug": "bloxberg" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/900.ts b/packages/chains/chains/900.ts new file mode 100644 index 00000000000..59650de80d4 --- /dev/null +++ b/packages/chains/chains/900.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Garizon Testnet Stage0", + "chain": "GAR", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "rpc": [ + "https://garizon-testnet-stage0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://s0-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s0", + "chainId": 900, + "networkId": 900, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "garizon-testnet-stage0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9000.ts b/packages/chains/chains/9000.ts new file mode 100644 index 00000000000..f0736c3e0c3 --- /dev/null +++ b/packages/chains/chains/9000.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Evmos Testnet", + "chain": "Evmos", + "rpc": [ + "https://evmos-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://eth.bd.evmos.dev:8545" + ], + "faucets": [ + "https://faucet.evmos.dev" + ], + "nativeCurrency": { + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos-testnet", + "chainId": 9000, + "networkId": 9000, + "icon": { + "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://testnet.escan.live", + "standard": "none", + "icon": { + "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": true, + "slug": "evmos-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/900000.ts b/packages/chains/chains/900000.ts new file mode 100644 index 00000000000..ba45535eb30 --- /dev/null +++ b/packages/chains/chains/900000.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Posichain Mainnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://posichain-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.posichain.org", + "https://api.s0.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-s0", + "chainId": 900000, + "networkId": 900000, + "explorers": [ + { + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "posichain-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9001.ts b/packages/chains/chains/9001.ts new file mode 100644 index 00000000000..ed6f62e1374 --- /dev/null +++ b/packages/chains/chains/9001.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Evmos", + "chain": "Evmos", + "rpc": [ + "https://evmos.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evmos-evm.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos", + "chainId": 9001, + "networkId": 9001, + "icon": { + "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", + "width": 400, + "height": 400, + "format": "png" + }, + "explorers": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://escan.live", + "standard": "none", + "icon": { + "url": "ipfs://QmeZW6VKUFTbz7PPW8PmDR3ZHa6osYPLBFPnW8T5LSU49c", + "width": 400, + "height": 400, + "format": "png" + } + } + ], + "testnet": false, + "slug": "evmos" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/901.ts b/packages/chains/chains/901.ts new file mode 100644 index 00000000000..5ef686847ad --- /dev/null +++ b/packages/chains/chains/901.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Garizon Testnet Stage1", + "chain": "GAR", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "rpc": [ + "https://garizon-testnet-stage1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://s1-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s1", + "chainId": 901, + "networkId": 901, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + }, + "testnet": true, + "slug": "garizon-testnet-stage1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9012.ts b/packages/chains/chains/9012.ts new file mode 100644 index 00000000000..03005b05bb3 --- /dev/null +++ b/packages/chains/chains/9012.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "BerylBit Mainnet", + "chain": "BRB", + "rpc": [ + "https://berylbit.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mainnet.berylbit.io" + ], + "faucets": [ + "https://t.me/BerylBit" + ], + "nativeCurrency": { + "name": "BerylBit Chain Native Token", + "symbol": "BRB", + "decimals": 18 + }, + "infoURL": "https://www.beryl-bit.com", + "shortName": "brb", + "chainId": 9012, + "networkId": 9012, + "icon": { + "url": "ipfs://QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi", + "width": 162, + "height": 162, + "format": "png" + }, + "explorers": [ + { + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "berylbit" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/902.ts b/packages/chains/chains/902.ts new file mode 100644 index 00000000000..79c01b4c4d9 --- /dev/null +++ b/packages/chains/chains/902.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Garizon Testnet Stage2", + "chain": "GAR", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "rpc": [ + "https://garizon-testnet-stage2.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://s2-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s2", + "chainId": 902, + "networkId": 902, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + }, + "testnet": true, + "slug": "garizon-testnet-stage2" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/90210.ts b/packages/chains/chains/90210.ts new file mode 100644 index 00000000000..a50f0ad216c --- /dev/null +++ b/packages/chains/chains/90210.ts @@ -0,0 +1,32 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Beverly Hills", + "title": "Ethereum multi-client Verkle Testnet Beverly Hills", + "chain": "ETH", + "rpc": [ + "https://beverly-hills.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.beverlyhills.ethdevops.io:8545" + ], + "faucets": [ + "https://faucet.beverlyhills.ethdevops.io" + ], + "nativeCurrency": { + "name": "Beverly Hills Testnet Ether", + "symbol": "BVE", + "decimals": 18 + }, + "infoURL": "https://beverlyhills.ethdevops.io", + "shortName": "bvhl", + "chainId": 90210, + "networkId": 90210, + "status": "incubating", + "explorers": [ + { + "name": "Beverly Hills explorer", + "url": "https://explorer.beverlyhills.ethdevops.io", + "standard": "none" + } + ], + "testnet": true, + "slug": "beverly-hills" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/903.ts b/packages/chains/chains/903.ts new file mode 100644 index 00000000000..aa12d6b4c54 --- /dev/null +++ b/packages/chains/chains/903.ts @@ -0,0 +1,46 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Garizon Testnet Stage3", + "chain": "GAR", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "rpc": [ + "https://garizon-testnet-stage3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://s3-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s3", + "chainId": 903, + "networkId": 903, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + }, + "testnet": true, + "slug": "garizon-testnet-stage3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/909.ts b/packages/chains/chains/909.ts new file mode 100644 index 00000000000..a4f3ae1f12f --- /dev/null +++ b/packages/chains/chains/909.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Portal Fantasy Chain", + "chain": "PF", + "icon": { + "url": "ipfs://QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc", + "width": 200, + "height": 200, + "format": "png" + }, + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PF", + "chainId": 909, + "networkId": 909, + "explorers": [], + "status": "incubating", + "testnet": false, + "slug": "portal-fantasy-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/910.ts b/packages/chains/chains/910.ts new file mode 100644 index 00000000000..eaacef2df65 --- /dev/null +++ b/packages/chains/chains/910.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "DecentraBone Layer1 Testnet", + "chain": "DBONE", + "rpc": [ + "https://decentrabone-layer1-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://layer1test.decentrabone.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DecentraBone", + "symbol": "DBONE", + "decimals": 18 + }, + "infoURL": "https://decentrabone.com", + "shortName": "DBONE", + "chainId": 910, + "networkId": 910, + "testnet": true, + "slug": "decentrabone-layer1-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9100.ts b/packages/chains/chains/9100.ts new file mode 100644 index 00000000000..c6707385a9c --- /dev/null +++ b/packages/chains/chains/9100.ts @@ -0,0 +1,22 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Genesis Coin", + "chain": "Genesis", + "rpc": [ + "https://genesis-coin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://genesis-gn.com", + "wss://genesis-gn.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GN Coin", + "symbol": "GNC", + "decimals": 18 + }, + "infoURL": "https://genesis-gn.com", + "shortName": "GENEC", + "chainId": 9100, + "networkId": 9100, + "testnet": false, + "slug": "genesis-coin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/910000.ts b/packages/chains/chains/910000.ts new file mode 100644 index 00000000000..b2d1776ba66 --- /dev/null +++ b/packages/chains/chains/910000.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Posichain Testnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://posichain-testnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s0.t.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-t-s0", + "chainId": 910000, + "networkId": 910000, + "explorers": [ + { + "name": "Posichain Explorer Testnet", + "url": "https://explorer-testnet.posichain.org", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "posichain-testnet-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/91002.ts b/packages/chains/chains/91002.ts new file mode 100644 index 00000000000..90592ad1104 --- /dev/null +++ b/packages/chains/chains/91002.ts @@ -0,0 +1,37 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nautilus Chain", + "title": "Nautilus Trition Testnet", + "chain": "ETH", + "icon": { + "url": "ipfs://QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM", + "width": 500, + "height": 500, + "format": "png" + }, + "rpc": [ + "https://nautilus-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://triton.api.nautchain.xyz" + ], + "faucets": [ + "https://faucet.eclipse.builders" + ], + "nativeCurrency": { + "name": "Nautilus Zebec Testnet Tokens", + "symbol": "tZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUT", + "chainId": 91002, + "networkId": 91002, + "explorers": [ + { + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "nautilus-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/917.ts b/packages/chains/chains/917.ts new file mode 100644 index 00000000000..097e7137cf1 --- /dev/null +++ b/packages/chains/chains/917.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rinia Testnet", + "chain": "FIRE", + "icon": { + "url": "ipfs://QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1", + "width": 512, + "height": 512, + "format": "png" + }, + "rpc": [ + "https://rinia-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rinia.rpc1.thefirechain.com" + ], + "faucets": [ + "https://faucet.thefirechain.com" + ], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "tfire", + "chainId": 917, + "networkId": 917, + "explorers": [], + "status": "incubating", + "testnet": true, + "slug": "rinia-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/919.ts b/packages/chains/chains/919.ts new file mode 100644 index 00000000000..79161e9462f --- /dev/null +++ b/packages/chains/chains/919.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mode Testnet ", + "chain": "ModeTest", + "shortName": "ModeTest", + "chainId": 919, + "testnet": true, + "rpc": [ + "https://mode-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://sepolia.mode.network/" + ], + "explorers": [ + { + "name": "mode-sepolia-vtnhnpim72", + "url": "https://sepolia.explorer.mode.network/", + "standard": "EIP3091" + } + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": { + "height": 2160, + "width": 2160, + "format": "png", + "url": "ipfs://bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou" + }, + "slug": "mode-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/920000.ts b/packages/chains/chains/920000.ts new file mode 100644 index 00000000000..e52cd2b11b6 --- /dev/null +++ b/packages/chains/chains/920000.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Posichain Devnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://posichain-devnet-shard-0.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s0.d.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s0", + "chainId": 920000, + "networkId": 920000, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "posichain-devnet-shard-0" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/920001.ts b/packages/chains/chains/920001.ts new file mode 100644 index 00000000000..6efb3051cd9 --- /dev/null +++ b/packages/chains/chains/920001.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Posichain Devnet Shard 1", + "chain": "PSC", + "rpc": [ + "https://posichain-devnet-shard-1.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.s1.d.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s1", + "chainId": 920001, + "networkId": 920001, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "posichain-devnet-shard-1" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/92001.ts b/packages/chains/chains/92001.ts new file mode 100644 index 00000000000..7ae7d056966 --- /dev/null +++ b/packages/chains/chains/92001.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lambda Testnet", + "chain": "Lambda", + "rpc": [ + "https://lambda-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm.lambda.top/" + ], + "faucets": [ + "https://faucet.lambda.top" + ], + "nativeCurrency": { + "name": "test-Lamb", + "symbol": "LAMB", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "lambda-testnet", + "chainId": 92001, + "networkId": 92001, + "icon": { + "url": "ipfs://QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy", + "width": 500, + "height": 500, + "format": "png" + }, + "explorers": [ + { + "name": "Lambda EVM Explorer", + "url": "https://explorer.lambda.top", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy", + "width": 500, + "height": 500, + "format": "png" + } + } + ], + "testnet": true, + "slug": "lambda-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9223.ts b/packages/chains/chains/9223.ts new file mode 100644 index 00000000000..708db6d251b --- /dev/null +++ b/packages/chains/chains/9223.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Codefin Mainnet", + "chain": "COF", + "icon": { + "url": "ipfs://QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp", + "width": 1024, + "height": 1024, + "format": "png" + }, + "rpc": [ + "https://codefin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://chain-rpc.codefin.pro" + ], + "faucets": [], + "nativeCurrency": { + "name": "Codefin", + "symbol": "COF", + "decimals": 18 + }, + "infoURL": "https://network.codefin.pro", + "shortName": "COF", + "chainId": 9223, + "networkId": 9223, + "explorers": [ + { + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "codefin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/923018.ts b/packages/chains/chains/923018.ts new file mode 100644 index 00000000000..8fcaa670c6e --- /dev/null +++ b/packages/chains/chains/923018.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "FNCY Testnet", + "chain": "FNCY", + "rpc": [ + "https://fncy-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://fncy-testnet-seed.fncy.world" + ], + "faucets": [ + "https://faucet-testnet.fncy.world" + ], + "nativeCurrency": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "infoURL": "https://fncyscan-testnet.fncy.world", + "shortName": "tFNCY", + "chainId": 923018, + "networkId": 923018, + "icon": { + "url": "ipfs://QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD", + "width": 256, + "height": 256, + "format": "png" + }, + "explorers": [ + { + "name": "fncy scan testnet", + "url": "https://fncyscan-testnet.fncy.world", + "icon": { + "url": "ipfs://QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD", + "width": 256, + "height": 256, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "fncy-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9339.ts b/packages/chains/chains/9339.ts new file mode 100644 index 00000000000..a209c577a0c --- /dev/null +++ b/packages/chains/chains/9339.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Dogcoin Testnet", + "chain": "DOGS", + "icon": { + "url": "ipfs://QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3", + "width": 160, + "height": 171, + "format": "png" + }, + "rpc": [ + "https://dogcoin-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.dogcoin.me" + ], + "faucets": [ + "https://faucet.dogcoin.network" + ], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSt", + "chainId": 9339, + "networkId": 9339, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "dogcoin-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/942.ts b/packages/chains/chains/942.ts new file mode 100644 index 00000000000..e964e5c8f9a --- /dev/null +++ b/packages/chains/chains/942.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PulseChain Testnet v3", + "shortName": "t3pls", + "chain": "t3PLS", + "chainId": 942, + "networkId": 942, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://pulsechain-testnet-v3.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.v3.testnet.pulsechain.com/", + "wss://rpc.v3.testnet.pulsechain.com/" + ], + "faucets": [ + "https://faucet.v3.testnet.pulsechain.com/" + ], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + }, + "testnet": true, + "slug": "pulsechain-testnet-v3" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/943.ts b/packages/chains/chains/943.ts new file mode 100644 index 00000000000..e814b59075d --- /dev/null +++ b/packages/chains/chains/943.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PulseChain Testnet v4", + "shortName": "t4pls", + "chain": "t4PLS", + "chainId": 943, + "networkId": 943, + "icon": { + "url": "ipfs://Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj", + "width": 433, + "height": 402, + "format": "png" + }, + "infoURL": "https://pulsechain.com", + "rpc": [ + "https://pulsechain-testnet-v4.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.v4.testnet.pulsechain.com/", + "wss://rpc.v4.testnet.pulsechain.com/" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.v4.testnet.pulsechain.com/" + ], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "incubating", + "explorers": [], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + }, + "testnet": true, + "slug": "pulsechain-testnet-v4" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9527.ts b/packages/chains/chains/9527.ts new file mode 100644 index 00000000000..4abe28bbbca --- /dev/null +++ b/packages/chains/chains/9527.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Rangers Protocol Testnet Robin", + "chain": "Rangers", + "icon": { + "url": "ipfs://QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG", + "width": 2000, + "height": 2000, + "format": "png" + }, + "rpc": [ + "https://rangers-protocol-testnet-robin.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://robin.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [ + "https://robin-faucet.rangersprotocol.com" + ], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "tRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "trpg", + "chainId": 9527, + "networkId": 9527, + "explorers": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ], + "testnet": true, + "slug": "rangers-protocol-testnet-robin" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9528.ts b/packages/chains/chains/9528.ts new file mode 100644 index 00000000000..52008ee596e --- /dev/null +++ b/packages/chains/chains/9528.ts @@ -0,0 +1,30 @@ +import type { Chain } from "../src/types"; +export default { + "name": "QEasyWeb3 Testnet", + "chain": "QET", + "rpc": [ + "https://qeasyweb3-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://qeasyweb3.com" + ], + "faucets": [ + "http://faucet.qeasyweb3.com" + ], + "nativeCurrency": { + "name": "QET", + "symbol": "QET", + "decimals": 18 + }, + "infoURL": "https://www.qeasyweb3.com", + "shortName": "QETTest", + "chainId": 9528, + "networkId": 9528, + "explorers": [ + { + "name": "QEasyWeb3 Explorer", + "url": "https://www.qeasyweb3.com", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "qeasyweb3-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/955305.ts b/packages/chains/chains/955305.ts new file mode 100644 index 00000000000..43b608d73e2 --- /dev/null +++ b/packages/chains/chains/955305.ts @@ -0,0 +1,38 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Eluvio Content Fabric", + "chain": "Eluvio", + "rpc": [ + "https://eluvio-content-fabric.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://host-76-74-28-226.contentfabric.io/eth/", + "https://host-76-74-28-232.contentfabric.io/eth/", + "https://host-76-74-29-2.contentfabric.io/eth/", + "https://host-76-74-29-8.contentfabric.io/eth/", + "https://host-76-74-29-34.contentfabric.io/eth/", + "https://host-76-74-29-35.contentfabric.io/eth/", + "https://host-154-14-211-98.contentfabric.io/eth/", + "https://host-154-14-192-66.contentfabric.io/eth/", + "https://host-60-240-133-202.contentfabric.io/eth/", + "https://host-64-235-250-98.contentfabric.io/eth/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ELV", + "symbol": "ELV", + "decimals": 18 + }, + "infoURL": "https://eluv.io", + "shortName": "elv", + "chainId": 955305, + "networkId": 955305, + "slip44": 1011, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "eluvio-content-fabric" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9559.ts b/packages/chains/chains/9559.ts new file mode 100644 index 00000000000..36f8f9d84d5 --- /dev/null +++ b/packages/chains/chains/9559.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Neonlink Testnet", + "chain": "Neonlink", + "rpc": [ + "https://neonlink-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.neonlink.io" + ], + "faucets": [ + "https://faucet.neonlink.io/" + ], + "nativeCurrency": { + "name": "Neonlink Native Token", + "symbol": "tNEON", + "decimals": 18 + }, + "infoURL": "https://neonlink.io", + "shortName": "testneon", + "chainId": 9559, + "networkId": 9559, + "icon": { + "url": "ipfs://QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz", + "width": 512, + "height": 512, + "format": "svg" + }, + "explorers": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://testnet-scan.neonlink.io", + "standard": "EIP3091", + "icon": { + "url": "ipfs://QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz", + "width": 512, + "height": 512, + "format": "svg" + } + } + ], + "testnet": true, + "slug": "neonlink-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/956.ts b/packages/chains/chains/956.ts new file mode 100644 index 00000000000..7903ab40906 --- /dev/null +++ b/packages/chains/chains/956.ts @@ -0,0 +1,18 @@ +import type { Chain } from "../src/types"; +export default { + "name": "muNode Testnet", + "chain": "munode", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://munode.dev/", + "shortName": "munode", + "chainId": 956, + "networkId": 956, + "testnet": true, + "slug": "munode-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/96970.ts b/packages/chains/chains/96970.ts new file mode 100644 index 00000000000..e715d816a2c --- /dev/null +++ b/packages/chains/chains/96970.ts @@ -0,0 +1,47 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Mantis Testnet (Hexapod)", + "chain": "Mantis", + "icon": { + "url": "ipfs://Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy", + "width": 512, + "height": 330, + "format": "png" + }, + "rpc": [ + "https://mantis-testnet-hexapod.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://mantis-rpc.switch.ch", + "https://mantis-rpc.kore-technologies.ch", + "https://mantis-rpc.phoenix-systems.io" + ], + "faucets": [ + "https://mantis.switch.ch/faucet", + "https://mantis.kore-technologies.ch/faucet", + "https://mantis.phoenix-systems.io/faucet", + "https://mantis.block-spirit.ch/faucet" + ], + "nativeCurrency": { + "name": "Mantis", + "symbol": "MANTIS", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "mantis", + "chainId": 96970, + "networkId": 96970, + "explorers": [ + { + "name": "Mantis Blockscout", + "url": "https://blockscout.mantis.hexapod.network", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "mantis-testnet-hexapod" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/970.ts b/packages/chains/chains/970.ts new file mode 100644 index 00000000000..489e74a26ac --- /dev/null +++ b/packages/chains/chains/970.ts @@ -0,0 +1,27 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oort Mainnet", + "chain": "Oort Mainnet", + "rpc": [ + "https://oort.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.oortech.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "ccn", + "chainId": 970, + "networkId": 970, + "icon": { + "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", + "width": 1043, + "height": 1079, + "format": "png" + }, + "testnet": false, + "slug": "oort" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9700.ts b/packages/chains/chains/9700.ts new file mode 100644 index 00000000000..c65df92a7a2 --- /dev/null +++ b/packages/chains/chains/9700.ts @@ -0,0 +1,25 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oort MainnetDev", + "title": "Oort MainnetDev", + "chain": "MainnetDev", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "MainnetDev", + "chainId": 9700, + "networkId": 9700, + "icon": { + "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", + "width": 1043, + "height": 1079, + "format": "png" + }, + "testnet": false, + "slug": "oort-dev" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/971.ts b/packages/chains/chains/971.ts new file mode 100644 index 00000000000..31360728039 --- /dev/null +++ b/packages/chains/chains/971.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oort Huygens", + "chain": "Huygens", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Huygens", + "chainId": 971, + "networkId": 971, + "icon": { + "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", + "width": 1043, + "height": 1079, + "format": "png" + }, + "testnet": false, + "slug": "oort-huygens" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/972.ts b/packages/chains/chains/972.ts new file mode 100644 index 00000000000..8eb74f9ebbf --- /dev/null +++ b/packages/chains/chains/972.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Oort Ascraeus", + "title": "Oort Ascraeus", + "chain": "Ascraeus", + "rpc": [ + "https://oort-ascraeus.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ascraeus-rpc.oortech.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCNA", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Ascraeus", + "chainId": 972, + "networkId": 972, + "icon": { + "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", + "width": 1043, + "height": 1079, + "format": "png" + }, + "testnet": false, + "slug": "oort-ascraeus" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9728.ts b/packages/chains/chains/9728.ts new file mode 100644 index 00000000000..889e67d19d9 --- /dev/null +++ b/packages/chains/chains/9728.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Boba BNB Testnet", + "chain": "Boba BNB Testnet", + "rpc": [ + "https://boba-bnb-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.bnb.boba.network", + "wss://wss.testnet.bnb.boba.network", + "https://replica.testnet.bnb.boba.network", + "wss://replica-wss.testnet.bnb.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbTestnet", + "chainId": 9728, + "networkId": 9728, + "explorers": [ + { + "name": "Boba BNB Testnet block explorer", + "url": "https://blockexplorer.testnet.bnb.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "testnet": true, + "slug": "boba-bnb-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9768.ts b/packages/chains/chains/9768.ts new file mode 100644 index 00000000000..fc3882b5945 --- /dev/null +++ b/packages/chains/chains/9768.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "MainnetZ Testnet", + "chain": "NetZ", + "icon": { + "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", + "width": 400, + "height": 400, + "format": "png" + }, + "rpc": [ + "https://z-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.mainnetz.io" + ], + "faucets": [ + "https://faucet.mainnetz.io" + ], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://testnet.mainnetz.io", + "shortName": "NetZt", + "chainId": 9768, + "networkId": 9768, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "z-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/977.ts b/packages/chains/chains/977.ts new file mode 100644 index 00000000000..e403362d6f2 --- /dev/null +++ b/packages/chains/chains/977.ts @@ -0,0 +1,24 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Nepal Blockchain Network", + "chain": "YETI", + "rpc": [ + "https://nepal-blockchain-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://api.nepalblockchain.dev", + "https://api.nepalblockchain.network" + ], + "faucets": [ + "https://faucet.nepalblockchain.network" + ], + "nativeCurrency": { + "name": "Nepal Blockchain Network Ether", + "symbol": "YETI", + "decimals": 18 + }, + "infoURL": "https://nepalblockchain.network", + "shortName": "yeti", + "chainId": 977, + "networkId": 977, + "testnet": false, + "slug": "nepal-blockchain-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9779.ts b/packages/chains/chains/9779.ts new file mode 100644 index 00000000000..a480287ba47 --- /dev/null +++ b/packages/chains/chains/9779.ts @@ -0,0 +1,40 @@ +import type { Chain } from "../src/types"; +export default { + "name": "PepeNetwork Mainnet", + "chain": "PepeNetwork", + "rpc": [ + "https://pepenetwork.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-mainnet.pepenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "WPEPE", + "decimals": 18 + }, + "infoURL": "https://pepenetwork.io", + "shortName": "pn", + "chainId": 9779, + "networkId": 9779, + "icon": { + "url": "ipfs://QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", + "width": 960, + "height": 944, + "format": "png" + }, + "explorers": [ + { + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": { + "url": "ipfs://QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", + "width": 960, + "height": 944, + "format": "png" + }, + "standard": "none" + } + ], + "testnet": false, + "slug": "pepenetwork" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9790.ts b/packages/chains/chains/9790.ts new file mode 100644 index 00000000000..59fc9fc75d1 --- /dev/null +++ b/packages/chains/chains/9790.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Carbon EVM", + "chain": "Carbon", + "icon": { + "url": "ipfs://QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", + "width": 1600, + "height": 1600, + "format": "png" + }, + "rpc": [ + "https://carbon-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://evm-api.carbon.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon", + "chainId": 9790, + "networkId": 9790, + "explorers": [], + "testnet": false, + "slug": "carbon-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9792.ts b/packages/chains/chains/9792.ts new file mode 100644 index 00000000000..1ef77f0dc78 --- /dev/null +++ b/packages/chains/chains/9792.ts @@ -0,0 +1,28 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Carbon EVM Testnet", + "chain": "Carbon", + "icon": { + "url": "ipfs://QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", + "width": 1600, + "height": 1600, + "format": "png" + }, + "rpc": [ + "https://carbon-evm-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://test-evm-api.carbon.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon-testnet", + "chainId": 9792, + "networkId": 9792, + "explorers": [], + "testnet": true, + "slug": "carbon-evm-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/980.ts b/packages/chains/chains/980.ts new file mode 100644 index 00000000000..372ab986c92 --- /dev/null +++ b/packages/chains/chains/980.ts @@ -0,0 +1,34 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TOP Mainnet EVM", + "chain": "TOP", + "icon": { + "url": "ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [ + "https://top-evm.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://ethapi.topnetwork.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top_evm", + "chainId": 980, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "top-evm" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/985.ts b/packages/chains/chains/985.ts new file mode 100644 index 00000000000..1672322e30f --- /dev/null +++ b/packages/chains/chains/985.ts @@ -0,0 +1,43 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Memo Smart Chain Mainnet", + "chain": "MEMO", + "rpc": [ + "https://memo-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://chain.metamemo.one:8501", + "wss://chain.metamemo.one:16801" + ], + "faucets": [ + "https://faucet.metamemo.one/" + ], + "nativeCurrency": { + "name": "Memo", + "symbol": "CMEMO", + "decimals": 18 + }, + "infoURL": "www.memolabs.org", + "shortName": "memochain", + "chainId": 985, + "networkId": 985, + "icon": { + "url": "ipfs://bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq", + "width": 128, + "height": 128, + "format": "png" + }, + "explorers": [ + { + "name": "Memo Mainnet Explorer", + "url": "https://scan.metamemo.one:8080", + "icon": { + "url": "ipfs://bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq", + "width": 128, + "height": 128, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "memo-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/989.ts b/packages/chains/chains/989.ts new file mode 100644 index 00000000000..d2bee4bbdf3 --- /dev/null +++ b/packages/chains/chains/989.ts @@ -0,0 +1,31 @@ +import type { Chain } from "../src/types"; +export default { + "name": "TOP Mainnet", + "chain": "TOP", + "icon": { + "url": "ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", + "width": 800, + "height": 800, + "format": "png" + }, + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "TOP", + "symbol": "TOP", + "decimals": 6 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top", + "chainId": 989, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ], + "testnet": false, + "slug": "top" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/990.ts b/packages/chains/chains/990.ts new file mode 100644 index 00000000000..a912abaf305 --- /dev/null +++ b/packages/chains/chains/990.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "eLiberty Mainnet", + "chain": "$EL", + "icon": { + "url": "ipfs://Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9", + "width": 150, + "height": 150, + "format": "png" + }, + "rpc": [ + "https://eliberty.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.eliberty.ngo" + ], + "faucets": [ + "https://faucet.eliberty.ngo" + ], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELm", + "chainId": 990, + "networkId": 990, + "explorers": [ + { + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } + ], + "testnet": false, + "slug": "eliberty" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99099.ts b/packages/chains/chains/99099.ts new file mode 100644 index 00000000000..e5519c55993 --- /dev/null +++ b/packages/chains/chains/99099.ts @@ -0,0 +1,36 @@ +import type { Chain } from "../src/types"; +export default { + "name": "eLiberty Testnet", + "chain": "$EL", + "icon": { + "url": "ipfs://Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9", + "width": 150, + "height": 150, + "format": "png" + }, + "rpc": [ + "https://eliberty-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rpc.eliberty.ngo" + ], + "faucets": [ + "https://faucet.eliberty.ngo" + ], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELt", + "chainId": 99099, + "networkId": 99099, + "explorers": [ + { + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "eliberty-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99415706.ts b/packages/chains/chains/99415706.ts new file mode 100644 index 00000000000..94249438a05 --- /dev/null +++ b/packages/chains/chains/99415706.ts @@ -0,0 +1,23 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Joys Digital TestNet", + "chain": "TOYS", + "rpc": [ + "https://joys-digital-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://toys.joys.cash/" + ], + "faucets": [ + "https://faucet.joys.digital/" + ], + "nativeCurrency": { + "name": "TOYS", + "symbol": "TOYS", + "decimals": 18 + }, + "infoURL": "https://joys.digital", + "shortName": "TOYS", + "chainId": 99415706, + "networkId": 99415706, + "testnet": true, + "slug": "joys-digital-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/997.ts b/packages/chains/chains/997.ts new file mode 100644 index 00000000000..cae5ad349ca --- /dev/null +++ b/packages/chains/chains/997.ts @@ -0,0 +1,42 @@ +import type { Chain } from "../src/types"; +export default { + "name": "5ireChain Thunder", + "chain": "5ireChain", + "rpc": [ + "https://5irechain-thunder.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc-testnet.5ire.network" + ], + "faucets": [ + "https://explorer.5ire.network/faucet" + ], + "nativeCurrency": { + "name": "5ire Token", + "symbol": "5ire", + "decimals": 18 + }, + "infoURL": "https://5ire.org", + "shortName": "5ire", + "chainId": 997, + "networkId": 997, + "icon": { + "url": "ipfs://QmaZDNDFLWESH4i3XqwEWfWBb1HPnQSNbDAr74nr2x8QAk", + "width": 800, + "height": 800, + "format": "svg" + }, + "explorers": [ + { + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", + "standard": "none", + "icon": { + "url": "ipfs://QmaZDNDFLWESH4i3XqwEWfWBb1HPnQSNbDAr74nr2x8QAk", + "width": 800, + "height": 800, + "format": "svg" + } + } + ], + "testnet": true, + "slug": "5irechain-thunder" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/998.ts b/packages/chains/chains/998.ts new file mode 100644 index 00000000000..2c18ef07931 --- /dev/null +++ b/packages/chains/chains/998.ts @@ -0,0 +1,41 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Lucky Network", + "chain": "LN", + "rpc": [ + "https://lucky-network.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.luckynetwork.org", + "wss://ws.lnscan.org", + "https://rpc.lnscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lucky", + "symbol": "L99", + "decimals": 18 + }, + "infoURL": "https://luckynetwork.org", + "shortName": "ln", + "chainId": 998, + "networkId": 998, + "icon": { + "url": "ipfs://bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m", + "width": 205, + "height": 28, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" + }, + { + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } + ], + "testnet": false, + "slug": "lucky-network" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/999.ts b/packages/chains/chains/999.ts new file mode 100644 index 00000000000..d1ec502a2d1 --- /dev/null +++ b/packages/chains/chains/999.ts @@ -0,0 +1,26 @@ +import type { Chain } from "../src/types"; +export default { + "name": "Zora Testnet", + "chain": "ETH", + "rpc": [ + "https://zora-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.rpc.zora.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "GETH", + "decimals": 18 + }, + "icon": { + "url": "ipfs://QmZ6qaRwTPFEZUspwMUjaxC6KhmzcELdRQcQzS3P72Dzts/Vector.svg", + "height": 512, + "width": 512, + "format": "svg" + }, + "shortName": "Zora", + "chainId": 999, + "networkId": 999, + "testnet": true, + "slug": "zora-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9997.ts b/packages/chains/chains/9997.ts new file mode 100644 index 00000000000..4c21eb291f8 --- /dev/null +++ b/packages/chains/chains/9997.ts @@ -0,0 +1,48 @@ +import type { Chain } from "../src/types"; +export default { + "name": "AltLayer Testnet", + "chain": "ETH", + "rpc": [ + "https://altlayer-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet-rollup-api.altlayer.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://altlayer.io", + "shortName": "alt-testnet", + "chainId": 9997, + "networkId": 9997, + "icon": { + "url": "ipfs://QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb", + "width": 1080, + "height": 1025, + "format": "png" + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": { + "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", + "width": 512, + "height": 512, + "format": "png" + }, + "standard": "EIP3091" + } + ], + "testnet": true, + "slug": "altlayer-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/9999.ts b/packages/chains/chains/9999.ts new file mode 100644 index 00000000000..0d6f3d8fa8f --- /dev/null +++ b/packages/chains/chains/9999.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "myOwn Testnet", + "chain": "myOwn", + "rpc": [ + "https://myown-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://geth.dev.bccloud.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "MYN", + "symbol": "MYN", + "decimals": 18 + }, + "infoURL": "https://docs.bccloud.net/", + "shortName": "myn", + "chainId": 9999, + "networkId": 9999, + "testnet": true, + "slug": "myown-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99998.ts b/packages/chains/chains/99998.ts new file mode 100644 index 00000000000..b87da51e33c --- /dev/null +++ b/packages/chains/chains/99998.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "UB Smart Chain(testnet)", + "chain": "USC", + "rpc": [ + "https://ub-smart-chain-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://testnet.rpc.uschain.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "infoURL": "https://www.ubchain.site", + "shortName": "usctest", + "chainId": 99998, + "networkId": 99998, + "testnet": true, + "slug": "ub-smart-chain-testnet" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/chains/chains/99999.ts b/packages/chains/chains/99999.ts new file mode 100644 index 00000000000..4385be2bf7b --- /dev/null +++ b/packages/chains/chains/99999.ts @@ -0,0 +1,21 @@ +import type { Chain } from "../src/types"; +export default { + "name": "UB Smart Chain", + "chain": "USC", + "rpc": [ + "https://ub-smart-chain.rpc.thirdweb.com/${THIRDWEB_API_KEY}", + "https://rpc.uschain.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "infoURL": "https://www.ubchain.site/", + "shortName": "usc", + "chainId": 99999, + "networkId": 99999, + "testnet": false, + "slug": "ub-smart-chain" +} as const satisfies Chain; \ No newline at end of file diff --git a/packages/wallets/evm/connectors/token-bound-smart-wallet/package.json b/packages/wallets/evm/connectors/token-bound-smart-wallet/package.json new file mode 100644 index 00000000000..dcd99dca970 --- /dev/null +++ b/packages/wallets/evm/connectors/token-bound-smart-wallet/package.json @@ -0,0 +1,7 @@ +{ + "main": "dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.cjs.js", + "module": "dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.esm.js", + "browser": { + "./dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.esm.js": "./dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.browser.esm.js" + } +} diff --git a/packages/wallets/evm/wallets/token-bound-smart-wallet/package.json b/packages/wallets/evm/wallets/token-bound-smart-wallet/package.json new file mode 100644 index 00000000000..c050e38ecb7 --- /dev/null +++ b/packages/wallets/evm/wallets/token-bound-smart-wallet/package.json @@ -0,0 +1,7 @@ +{ + "main": "dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.cjs.js", + "module": "dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.esm.js", + "browser": { + "./dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.esm.js": "./dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.browser.esm.js" + } +} diff --git a/packages/wallets/package.json b/packages/wallets/package.json index dd2001c857e..ab1c0c05332 100644 --- a/packages/wallets/package.json +++ b/packages/wallets/package.json @@ -281,6 +281,13 @@ }, "default": "./evm/connectors/coinbase-wallet/dist/thirdweb-dev-wallets-evm-connectors-coinbase-wallet.cjs.js" }, + "./evm/wallets/token-bound-smart-wallet": { + "module": { + "browser": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.browser.esm.js", + "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.esm.js" + }, + "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.cjs.js" + }, "./evm/connectors/wallet-connect-v1": { "module": { "browser": "./evm/connectors/wallet-connect-v1/dist/thirdweb-dev-wallets-evm-connectors-wallet-connect-v1.browser.esm.js", @@ -288,6 +295,13 @@ }, "default": "./evm/connectors/wallet-connect-v1/dist/thirdweb-dev-wallets-evm-connectors-wallet-connect-v1.cjs.js" }, + "./evm/connectors/token-bound-smart-wallet": { + "module": { + "browser": "./evm/connectors/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.browser.esm.js", + "default": "./evm/connectors/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.esm.js" + }, + "default": "./evm/connectors/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-connectors-token-bound-smart-wallet.cjs.js" + }, "./package.json": "./package.json" }, "repository": "https://github.com/thirdweb-dev/js/tree/main/packages/wallets", From 73a51fac6177b77363de554042a6215152f79861 Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Wed, 26 Jul 2023 17:48:47 +0100 Subject: [PATCH 06/15] wip --- .../token-bound-smart-wallet/index.ts | 9 ++-- .../token-bound-smart-wallet/types.ts | 5 +-- packages/wallets/src/evm/index.ts | 1 + .../wallets/src/evm/wallets/smart-wallet.ts | 40 ++++++++--------- .../evm/wallets/token-bound-smart-wallet.ts | 43 ++++++++++++++----- 5 files changed, 62 insertions(+), 36 deletions(-) diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 02c8e3dfa66..1d2d959d73a 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -11,11 +11,11 @@ import { SmartWalletConfig } from "../smart-wallet/types"; let SmartWalletConnector = module.SmartWalletConnector; -export class TokenBoundConnnector extends SmartWalletConnector { +export class TokenBoundSmartWalletConnector extends SmartWalletConnector { protected config: TokenBoundSmartWalletConfig; constructor(config: TokenBoundSmartWalletConfig) { - const smartWalletConfig: SmartWalletConfig = { + const tokenBoundSmartWalletConfig: TokenBoundSmartWalletConfig = { chain: config.chain, factoryAddress: config.factoryAddress, clientId: config.clientId, @@ -25,8 +25,11 @@ export class TokenBoundConnnector extends SmartWalletConnector { paymasterUrl: config.paymasterUrl, paymasterAPI: config.paymasterAPI, entryPointAddress: config.entryPointAddress, + tokenContract: config.tokenContract, + tokenId: config.tokenId, + implementation: config.implementation, } - super(smartWalletConfig); + super(tokenBoundSmartWalletConfig); this.config = config; } diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 3ca622f0ee3..8a7e8b5bb20 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -10,12 +10,11 @@ import type { import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; import { SmartWalletConfig } from "../smart-wallet/types"; -export type TokenBoundSmartWalletConfig = SmartWalletConfig & { +export type TokenBoundSmartWalletConfig = { tokenContract: SmartContract; tokenId: Number; implementation: SmartContract; - owner: string; -} & ContractInfoInput & +} & SmartWalletConfig & ContractInfoInput & WalletConnectReceiverConfig; export type ContractInfoInput = { diff --git a/packages/wallets/src/evm/index.ts b/packages/wallets/src/evm/index.ts index 3f1845303c0..81b50a26429 100644 --- a/packages/wallets/src/evm/index.ts +++ b/packages/wallets/src/evm/index.ts @@ -35,6 +35,7 @@ export * from "./wallets/wallet-connect-v1"; export * from "./wallets/safe"; export * from "./wallets/magic"; export * from "./wallets/smart-wallet"; +export * from "./wallets/token-bound-smart-wallet"; export * from "./wallets/ethers"; export * from "./wallets/private-key"; export * from "./wallets/zerion"; diff --git a/packages/wallets/src/evm/wallets/smart-wallet.ts b/packages/wallets/src/evm/wallets/smart-wallet.ts index 12d35bca7e7..7ad38803977 100644 --- a/packages/wallets/src/evm/wallets/smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/smart-wallet.ts @@ -28,7 +28,7 @@ export class SmartWallet connector?: SmartWalletConnectorType; public enableConnectApp: boolean = false; - #wcWallet: WalletConnectHandler; + protected wcWallet: WalletConnectHandler; static meta = { name: "Smart Wallet", @@ -38,7 +38,7 @@ export class SmartWallet static id = walletIds.smartWallet; public get walletName() { - return "Smart Wallet" as const; + return "Smart Wallet"; } constructor(options: WalletOptions) { @@ -47,7 +47,7 @@ export class SmartWallet }); this.enableConnectApp = options?.enableConnectApp || false; - this.#wcWallet = this.enableConnectApp + this.wcWallet = this.enableConnectApp ? new WalletConnectV2Handler({ walletConnectWalletMetadata: options?.walletConnectWalletMetadata, walletConenctV2ProjectId: options?.walletConenctV2ProjectId, @@ -59,9 +59,9 @@ export class SmartWallet async getConnector(): Promise { if (!this.connector) { if (this.enableConnectApp) { - await this.#wcWallet.init(); + await this.wcWallet.init(); - this.#setupWalletConnectEventsListeners(); + this.setupWalletConnectEventsListeners(); } const { SmartWalletConnector } = await import( @@ -127,64 +127,64 @@ export class SmartWallet throw new Error("enableConnectApp is set to false in this wallet config"); } - this.#wcWallet?.connectApp(uri); + this.wcWallet?.connectApp(uri); } async approveSession(): Promise { - await this.#wcWallet.approveSession(this); + await this.wcWallet.approveSession(this); this.emit("message", { type: "session_approved" }); } rejectSession() { - return this.#wcWallet.rejectSession(); + return this.wcWallet.rejectSession(); } approveRequest() { - return this.#wcWallet.approveEIP155Request(this); + return this.wcWallet.approveEIP155Request(this); } rejectRequest() { - return this.#wcWallet.rejectEIP155Request(); + return this.wcWallet.rejectEIP155Request(); } getActiveSessions(): WCSession[] { - if (!this.#wcWallet) { + if (!this.wcWallet) { throw new Error( "Please, init the wallet before making session requests.", ); } - return this.#wcWallet.getActiveSessions(); + return this.wcWallet.getActiveSessions(); } disconnectSession(): Promise { - return this.#wcWallet?.disconnectSession(); + return this.wcWallet?.disconnectSession(); } isWCReceiverEnabled() { return this.enableConnectApp; } - #setupWalletConnectEventsListeners() { - if (!this.#wcWallet) { + setupWalletConnectEventsListeners() { + if (!this.wcWallet) { throw new Error( "Please, init the wallet before making session requests.", ); } - this.#wcWallet.on("session_proposal", (proposal: WCProposal) => { + this.wcWallet.on("session_proposal", (proposal: WCProposal) => { this.emit("message", { type: "session_proposal", data: proposal, }); }); - this.#wcWallet.on("session_delete", () => { + this.wcWallet.on("session_delete", () => { this.emit("message", { type: "session_delete" }); }); - this.#wcWallet.on("switch_chain", (request: WCRequest) => { + this.wcWallet.on("switch_chain", (request: WCRequest) => { const chainId = request.params[0].chainId; this.emit("message", { @@ -192,10 +192,10 @@ export class SmartWallet data: { chainId }, }); - this.#wcWallet.disconnectSession(); + this.wcWallet.disconnectSession(); }); - this.#wcWallet.on("session_request", (request: WCRequest) => { + this.wcWallet.on("session_request", (request: WCRequest) => { this.emit("message", { type: "session_request", data: request, diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 3e2a6b3fc8e..b57e9e830fb 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,23 +1,46 @@ -import { SmartWallet } from "./smart-wallet"; +import { SmartWallet, SmartWalletConfig } from "./smart-wallet"; +import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import { walletIds } from "../constants/walletIds"; -import { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; -import { WalletOptions } from "./base"; +import type { + TokenBoundSmartWalletConfig +} from "../connectors/token-bound-smart-wallet/types"; +import { AbstractClientWallet, WalletOptions } from "./base"; +import type { SmartWalletConnectionArgs } from "../connectors/smart-wallet/types"; +import { WalletConnectV2Handler } from "../../core/WalletConnect/WalletConnectV2Handler"; +import { NoOpWalletConnectHandler } from "../../core/WalletConnect/constants"; export class TokenBoundSmartWallet extends SmartWallet { + connector?: TokenBoundSmartWalletConnectorType; + static meta = { name: "Token Bound Smart Wallet", - // TODO: change this URL iconURL: - "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/smart-wallet.svg", + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", }; + static id = walletIds.tokenBoundSmartWallet; public get walletName() { - return "Token Bound Smart Wallet" as "Smart Wallet"; + return "Token Bound Smart Wallet"; } constructor(options: WalletOptions) { - options.walletId = walletIds.tokenBoundSmartWallet; - super(options - ); + super(options); + } + + async getConnector(): Promise { + if (!this.connector) { + if (this.enableConnectApp) { + await this.wcWallet.init(); + this.setupWalletConnectEventsListeners(); + } + + const { TokenBoundSmartWalletConnector } = await import( + "../connectors/token-bound-smart-wallet" + ); + this.connector = new TokenBoundSmartWalletConnector( + this.options as TokenBoundSmartWalletConfig, + ); + } + return this.connector; } -} \ No newline at end of file +} From 39e22b90f7021ed04ccd87285c1f70cd2451cb89 Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Wed, 26 Jul 2023 17:48:47 +0100 Subject: [PATCH 07/15] wip --- .../src/evm/connectors/smart-wallet/types.ts | 5 ++- .../token-bound-smart-wallet/index.ts | 28 +++++++++--- .../token-bound-smart-wallet/types.ts | 30 +++++++------ packages/wallets/src/evm/index.ts | 1 + .../wallets/src/evm/wallets/smart-wallet.ts | 40 ++++++++--------- .../evm/wallets/token-bound-smart-wallet.ts | 43 ++++++++++++++----- 6 files changed, 96 insertions(+), 51 deletions(-) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/types.ts b/packages/wallets/src/evm/connectors/smart-wallet/types.ts index f8ada20da0e..bf53064302a 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/types.ts @@ -35,7 +35,7 @@ export type SmartWalletOptions = WalletOptions<{}>; export interface AccountApiParams extends Omit, - ContractInfo { + ContractInfo { chain: ChainOrRpcUrl; localSigner: Signer; factoryAddress: string; @@ -82,6 +82,7 @@ export type FactoryContractInfo = { createAccount: ( factory: SmartContract, owner: string, + optionalParam?: any ) => Promise; - getAccountAddress: (factory: SmartContract, owner: string) => Promise; + getAccountAddress: (factory: SmartContract, owner: string, optionalParam?: any) => Promise; }; diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 02c8e3dfa66..76ec0625c14 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -7,15 +7,14 @@ import { EVMWallet } from "../../interfaces"; import * as module from "../smart-wallet"; import { ethers } from "ethers"; import { SmartContract } from "@thirdweb-dev/sdk"; -import { SmartWalletConfig } from "../smart-wallet/types"; let SmartWalletConnector = module.SmartWalletConnector; -export class TokenBoundConnnector extends SmartWalletConnector { +export class TokenBoundSmartWalletConnector extends SmartWalletConnector { protected config: TokenBoundSmartWalletConfig; constructor(config: TokenBoundSmartWalletConfig) { - const smartWalletConfig: SmartWalletConfig = { + const tokenBoundSmartWalletConfig: TokenBoundSmartWalletConfig = { chain: config.chain, factoryAddress: config.factoryAddress, clientId: config.clientId, @@ -25,8 +24,11 @@ export class TokenBoundConnnector extends SmartWalletConnector { paymasterUrl: config.paymasterUrl, paymasterAPI: config.paymasterAPI, entryPointAddress: config.entryPointAddress, + tokenContract: config.tokenContract, + tokenId: config.tokenId, + implementation: config.implementation, } - super(smartWalletConfig); + super(tokenBoundSmartWalletConfig); this.config = config; } @@ -46,9 +48,21 @@ export class TokenBoundConnnector extends SmartWalletConnector { }; } - protected defaultTokenBoundFactoryInfo(): FactoryContractInfo { + protected defaultFactoryInfo(): FactoryContractInfo { return { - createAccount: async (factory: SmartContract, implementation: SmartContract, chainId: Number, tokenContract: SmartContract, tokenId: Number, salt: Number = 1) => { + createAccount: async (factory: SmartContract, owner: string, { + implementation, + chainId, + tokenContract, + tokenId, + salt = 1 // Set default value to 1 here + }: { + implementation: SmartContract, + chainId: Number, + tokenContract: SmartContract, + tokenId: Number, + salt?: Number // This line makes salt optional + }) => { return factory.prepare("createAccount", [ implementation, chainId, @@ -58,7 +72,7 @@ export class TokenBoundConnnector extends SmartWalletConnector { ethers.utils.toUtf8Bytes(""), ]); }, - getAccountAddress: async (factory, implementation, chainId, tokenContract, tokenId, salt = 1) => { + getAccountAddress: async (factory, owner, { implementation, chainId, tokenContract, tokenId, salt = 1 }) => { return await factory.call("address", [ implementation, chainId, diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 3ca622f0ee3..738e814b157 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -10,12 +10,11 @@ import type { import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; import { SmartWalletConfig } from "../smart-wallet/types"; -export type TokenBoundSmartWalletConfig = SmartWalletConfig & { +export type TokenBoundSmartWalletConfig = { tokenContract: SmartContract; tokenId: Number; implementation: SmartContract; - owner: string; -} & ContractInfoInput & +} & SmartWalletConfig & ContractInfoInput & WalletConnectReceiverConfig; export type ContractInfoInput = { @@ -27,18 +26,25 @@ export type FactoryContractInfo = { abi?: ContractInterface; createAccount: ( factory: SmartContract, - implementation: SmartContract, - chainId: Number, - tokenContract: SmartContract, - tokenId: Number + owner: string, + tokenInfo: { + implementation: SmartContract, + chainId: Number, + tokenContract: SmartContract, + tokenId: Number, + salt?: Number + } ) => Promise; getAccountAddress: ( factory: SmartContract, - implementation: SmartContract, - chainId: Number, - tokenContract: SmartContract, - tokenId: Number, - salt: Number + owner: string, + tokenInfo: { + implementation: SmartContract, + chainId: Number, + tokenContract: SmartContract, + tokenId: Number, + salt: Number + } ) => Promise; }; diff --git a/packages/wallets/src/evm/index.ts b/packages/wallets/src/evm/index.ts index 3f1845303c0..81b50a26429 100644 --- a/packages/wallets/src/evm/index.ts +++ b/packages/wallets/src/evm/index.ts @@ -35,6 +35,7 @@ export * from "./wallets/wallet-connect-v1"; export * from "./wallets/safe"; export * from "./wallets/magic"; export * from "./wallets/smart-wallet"; +export * from "./wallets/token-bound-smart-wallet"; export * from "./wallets/ethers"; export * from "./wallets/private-key"; export * from "./wallets/zerion"; diff --git a/packages/wallets/src/evm/wallets/smart-wallet.ts b/packages/wallets/src/evm/wallets/smart-wallet.ts index 12d35bca7e7..7ad38803977 100644 --- a/packages/wallets/src/evm/wallets/smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/smart-wallet.ts @@ -28,7 +28,7 @@ export class SmartWallet connector?: SmartWalletConnectorType; public enableConnectApp: boolean = false; - #wcWallet: WalletConnectHandler; + protected wcWallet: WalletConnectHandler; static meta = { name: "Smart Wallet", @@ -38,7 +38,7 @@ export class SmartWallet static id = walletIds.smartWallet; public get walletName() { - return "Smart Wallet" as const; + return "Smart Wallet"; } constructor(options: WalletOptions) { @@ -47,7 +47,7 @@ export class SmartWallet }); this.enableConnectApp = options?.enableConnectApp || false; - this.#wcWallet = this.enableConnectApp + this.wcWallet = this.enableConnectApp ? new WalletConnectV2Handler({ walletConnectWalletMetadata: options?.walletConnectWalletMetadata, walletConenctV2ProjectId: options?.walletConenctV2ProjectId, @@ -59,9 +59,9 @@ export class SmartWallet async getConnector(): Promise { if (!this.connector) { if (this.enableConnectApp) { - await this.#wcWallet.init(); + await this.wcWallet.init(); - this.#setupWalletConnectEventsListeners(); + this.setupWalletConnectEventsListeners(); } const { SmartWalletConnector } = await import( @@ -127,64 +127,64 @@ export class SmartWallet throw new Error("enableConnectApp is set to false in this wallet config"); } - this.#wcWallet?.connectApp(uri); + this.wcWallet?.connectApp(uri); } async approveSession(): Promise { - await this.#wcWallet.approveSession(this); + await this.wcWallet.approveSession(this); this.emit("message", { type: "session_approved" }); } rejectSession() { - return this.#wcWallet.rejectSession(); + return this.wcWallet.rejectSession(); } approveRequest() { - return this.#wcWallet.approveEIP155Request(this); + return this.wcWallet.approveEIP155Request(this); } rejectRequest() { - return this.#wcWallet.rejectEIP155Request(); + return this.wcWallet.rejectEIP155Request(); } getActiveSessions(): WCSession[] { - if (!this.#wcWallet) { + if (!this.wcWallet) { throw new Error( "Please, init the wallet before making session requests.", ); } - return this.#wcWallet.getActiveSessions(); + return this.wcWallet.getActiveSessions(); } disconnectSession(): Promise { - return this.#wcWallet?.disconnectSession(); + return this.wcWallet?.disconnectSession(); } isWCReceiverEnabled() { return this.enableConnectApp; } - #setupWalletConnectEventsListeners() { - if (!this.#wcWallet) { + setupWalletConnectEventsListeners() { + if (!this.wcWallet) { throw new Error( "Please, init the wallet before making session requests.", ); } - this.#wcWallet.on("session_proposal", (proposal: WCProposal) => { + this.wcWallet.on("session_proposal", (proposal: WCProposal) => { this.emit("message", { type: "session_proposal", data: proposal, }); }); - this.#wcWallet.on("session_delete", () => { + this.wcWallet.on("session_delete", () => { this.emit("message", { type: "session_delete" }); }); - this.#wcWallet.on("switch_chain", (request: WCRequest) => { + this.wcWallet.on("switch_chain", (request: WCRequest) => { const chainId = request.params[0].chainId; this.emit("message", { @@ -192,10 +192,10 @@ export class SmartWallet data: { chainId }, }); - this.#wcWallet.disconnectSession(); + this.wcWallet.disconnectSession(); }); - this.#wcWallet.on("session_request", (request: WCRequest) => { + this.wcWallet.on("session_request", (request: WCRequest) => { this.emit("message", { type: "session_request", data: request, diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 3e2a6b3fc8e..b57e9e830fb 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,23 +1,46 @@ -import { SmartWallet } from "./smart-wallet"; +import { SmartWallet, SmartWalletConfig } from "./smart-wallet"; +import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import { walletIds } from "../constants/walletIds"; -import { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; -import { WalletOptions } from "./base"; +import type { + TokenBoundSmartWalletConfig +} from "../connectors/token-bound-smart-wallet/types"; +import { AbstractClientWallet, WalletOptions } from "./base"; +import type { SmartWalletConnectionArgs } from "../connectors/smart-wallet/types"; +import { WalletConnectV2Handler } from "../../core/WalletConnect/WalletConnectV2Handler"; +import { NoOpWalletConnectHandler } from "../../core/WalletConnect/constants"; export class TokenBoundSmartWallet extends SmartWallet { + connector?: TokenBoundSmartWalletConnectorType; + static meta = { name: "Token Bound Smart Wallet", - // TODO: change this URL iconURL: - "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/smart-wallet.svg", + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", }; + static id = walletIds.tokenBoundSmartWallet; public get walletName() { - return "Token Bound Smart Wallet" as "Smart Wallet"; + return "Token Bound Smart Wallet"; } constructor(options: WalletOptions) { - options.walletId = walletIds.tokenBoundSmartWallet; - super(options - ); + super(options); + } + + async getConnector(): Promise { + if (!this.connector) { + if (this.enableConnectApp) { + await this.wcWallet.init(); + this.setupWalletConnectEventsListeners(); + } + + const { TokenBoundSmartWalletConnector } = await import( + "../connectors/token-bound-smart-wallet" + ); + this.connector = new TokenBoundSmartWalletConnector( + this.options as TokenBoundSmartWalletConfig, + ); + } + return this.connector; } -} \ No newline at end of file +} From 7477b730c8be654c462b34d832e35979d69a465b Mon Sep 17 00:00:00 2001 From: ikethirdweb Date: Wed, 26 Jul 2023 16:00:12 -0400 Subject: [PATCH 08/15] restructure --- .../src/evm/connectors/smart-wallet/index.ts | 37 ++++- .../token-bound-smart-wallet/index.ts | 144 ++++++++---------- .../token-bound-smart-wallet/types.ts | 89 +++++------ .../evm/wallets/token-bound-smart-wallet.ts | 68 ++++----- 4 files changed, 172 insertions(+), 166 deletions(-) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index 95d8d15f60b..3927d374abc 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -1,4 +1,4 @@ -import { Chain, getChainByChainId } from "@thirdweb-dev/chains"; +import { Chain, getChainByChainId, getChainBySlug } from "@thirdweb-dev/chains"; import { ConnectParams, Connector } from "../../interfaces/connector"; import { ERC4337EthersProvider } from "./lib/erc4337-provider"; import { getVerifyingPaymaster } from "./lib/paymaster"; @@ -28,19 +28,21 @@ export class SmartWalletConnector extends Connector { private aaProvider: ERC4337EthersProvider | undefined; private accountApi: AccountAPI | undefined; personalWallet?: EVMWallet; + chainId?: number; constructor(config: SmartWalletConfig) { super(); this.config = config; } - async initialize(personalWallet: EVMWallet, factoryAddress: string = this.config.factoryAddress) { + async initialize(personalWallet: EVMWallet) { const config = this.config; const originalProvider = getChainProvider(config.chain, { clientId: config.clientId, secretKey: config.secretKey, }) as providers.BaseProvider; const chainSlug = await this.getChainSlug(config.chain, originalProvider); + this.chainId = await this.getChainId(config.chain, originalProvider); const bundlerUrl = this.config.bundlerUrl || `https://${chainSlug}.bundler.thirdweb.com`; const paymasterUrl = @@ -62,7 +64,7 @@ export class SmartWalletConnector extends Connector { this.config.secretKey, ) : undefined, - factoryAddress: factoryAddress, + factoryAddress: config.factoryAddress, factoryInfo: config.factoryInfo || this.defaultFactoryInfo(), accountInfo: config.accountInfo || this.defaultAccountInfo(), clientId: config.clientId, @@ -134,7 +136,7 @@ export class SmartWalletConnector extends Connector { } // eslint-disable-next-line @typescript-eslint/no-unused-vars - updateChains(chains: Chain[]): void { } + updateChains(chains: Chain[]): void {} /** * Execute a single transaction @@ -220,7 +222,7 @@ export class SmartWalletConnector extends Connector { protected defaultFactoryInfo(): FactoryContractInfo { return { - createAccount: async (factory: SmartContract, owner: string) => { + createAccount: async (factory, owner) => { return factory.prepare("createAccount", [ owner, ethers.utils.toUtf8Bytes(""), @@ -276,4 +278,29 @@ export class SmartWalletConnector extends Connector { throw new Error(`Invalid network: ${chainOrRpc}`); } } + + protected async getChainId( + chainOrRpc: ChainOrRpcUrl, + provider: ethers.providers.Provider, + ): Promise { + if (typeof chainOrRpc === "object") { + return chainOrRpc.chainId; + } + if (typeof chainOrRpc === "number") { + const chain = getChainByChainId(chainOrRpc); + return chain.chainId; + } + if (typeof chainOrRpc === "string") { + if (chainOrRpc.startsWith("http") || chainOrRpc.startsWith("ws")) { + // if it's a url, try to get the chain id from the provider + const chainId = (await provider.getNetwork()).chainId; + const chain = getChainByChainId(chainId); + return chain.chainId; + } + // otherwise its the network name + return getChainBySlug(chainOrRpc).chainId; + } else { + throw new Error(`Invalid network: ${chainOrRpc}`); + } + } } diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 76ec0625c14..aa7d3f7eb79 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -1,86 +1,76 @@ import { - AccountContractInfo, - FactoryContractInfo, - TokenBoundSmartWalletConfig, -} from "./types" -import { EVMWallet } from "../../interfaces"; -import * as module from "../smart-wallet"; + AccountContractInfo, + FactoryContractInfo, + TokenBoundSmartWalletConfig, +} from "./types"; import { ethers } from "ethers"; import { SmartContract } from "@thirdweb-dev/sdk"; - -let SmartWalletConnector = module.SmartWalletConnector; +import { SmartWalletConnector } from "../smart-wallet"; +import { getChainByChainId } from "@thirdweb-dev/chains"; export class TokenBoundSmartWalletConnector extends SmartWalletConnector { - protected config: TokenBoundSmartWalletConfig; + protected config: TokenBoundSmartWalletConfig; - constructor(config: TokenBoundSmartWalletConfig) { - const tokenBoundSmartWalletConfig: TokenBoundSmartWalletConfig = { - chain: config.chain, - factoryAddress: config.factoryAddress, - clientId: config.clientId, - secretKey: config.secretKey, - gasless: config.gasless, - bundlerUrl: config.bundlerUrl, - paymasterUrl: config.paymasterUrl, - paymasterAPI: config.paymasterAPI, - entryPointAddress: config.entryPointAddress, - tokenContract: config.tokenContract, - tokenId: config.tokenId, - implementation: config.implementation, - } - super(tokenBoundSmartWalletConfig); - this.config = config; - } + constructor(config: TokenBoundSmartWalletConfig) { + config.factoryAddress = + config.factoryAddress || "0x02101dfB77FDE026414827Fdc604ddAF224F0921"; - async initialize(personalWallet: EVMWallet) { - const factoryAddress = this.config.factoryAddress || "0x02101dfB77FDE026414827Fdc604ddAF224F0921"; - await super.initialize(personalWallet, factoryAddress); - } + super(config); + this.config = config; + } - protected defaultAccountInfo(): AccountContractInfo { - return { - execute: async (account, target, value, data) => { - return account.prepare("executeCall", [target, value, data]); - }, - getNonce: async (account) => { - return account.call("nonce", []); - }, - }; - } + protected defaultAccountInfo(): AccountContractInfo { + return { + execute: async (account, target, value, data) => { + return account.prepare("executeCall", [target, value, data]); + }, + getNonce: async (account) => { + return account.call("nonce", []); + }, + }; + } - protected defaultFactoryInfo(): FactoryContractInfo { - return { - createAccount: async (factory: SmartContract, owner: string, { - implementation, - chainId, - tokenContract, - tokenId, - salt = 1 // Set default value to 1 here - }: { - implementation: SmartContract, - chainId: Number, - tokenContract: SmartContract, - tokenId: Number, - salt?: Number // This line makes salt optional - }) => { - return factory.prepare("createAccount", [ - implementation, - chainId, - tokenContract, - tokenId, - salt, - ethers.utils.toUtf8Bytes(""), - ]); - }, - getAccountAddress: async (factory, owner, { implementation, chainId, tokenContract, tokenId, salt = 1 }) => { - return await factory.call("address", [ - implementation, - chainId, - tokenContract, - tokenId, - salt - ]); - }, - }; - } -} \ No newline at end of file + protected defaultFactoryInfo(): FactoryContractInfo { + return { + createAccount: async ( + factory, + owner, + { + implementation = this.config.implementation, + chainId = this.chainId, + tokenContract = this.config.tokenContract, + tokenId = this.config.tokenId, + salt = 1, + }, + ) => { + return factory.prepare("createAccount", [ + implementation, + chainId, + tokenContract, + tokenId, + salt, + ethers.utils.toUtf8Bytes(""), + ]); + }, + getAccountAddress: async ( + factory, + owner, + { + implementation = this.config.implementation, + chainId = this.chainId, + tokenContract = this.config.tokenContract, + tokenId = this.config.tokenId, + salt = 1, + }, + ) => { + return await factory.call("address", [ + implementation, + chainId, + tokenContract, + tokenId, + salt, + ]); + }, + }; + } +} diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 738e814b157..46cf0193c50 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -1,60 +1,51 @@ -import type { - SmartContract, - Transaction, -} from "@thirdweb-dev/sdk"; -import type { - BigNumber, - BigNumberish, - ContractInterface, -} from "ethers"; -import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; +import type { SmartContract, Transaction } from "@thirdweb-dev/sdk"; +import type { BigNumber, BigNumberish, ContractInterface } from "ethers"; import { SmartWalletConfig } from "../smart-wallet/types"; export type TokenBoundSmartWalletConfig = { - tokenContract: SmartContract; - tokenId: Number; - implementation: SmartContract; -} & SmartWalletConfig & ContractInfoInput & - WalletConnectReceiverConfig; + tokenContract: string; + tokenId: Number; + implementation: string; +} & SmartWalletConfig; export type ContractInfoInput = { - factoryInfo?: FactoryContractInfo; - accountInfo?: AccountContractInfo; + factoryInfo?: FactoryContractInfo; + accountInfo?: AccountContractInfo; }; export type FactoryContractInfo = { - abi?: ContractInterface; - createAccount: ( - factory: SmartContract, - owner: string, - tokenInfo: { - implementation: SmartContract, - chainId: Number, - tokenContract: SmartContract, - tokenId: Number, - salt?: Number - } - ) => Promise; - getAccountAddress: ( - factory: SmartContract, - owner: string, - tokenInfo: { - implementation: SmartContract, - chainId: Number, - tokenContract: SmartContract, - tokenId: Number, - salt: Number - } - ) => Promise; + abi?: ContractInterface; + createAccount: ( + factory: SmartContract, + owner: string, + tokenInfo: { + implementation: string; + chainId: Number; + tokenContract: string; + tokenId: Number; + salt?: Number; + }, + ) => Promise; + getAccountAddress: ( + factory: SmartContract, + owner: string, + tokenInfo: { + implementation: string; + chainId: Number; + tokenContract: string; + tokenId: Number; + salt: Number; + }, + ) => Promise; }; export type AccountContractInfo = { - abi?: ContractInterface; - getNonce: (account: SmartContract) => Promise; - execute: ( - account: SmartContract, - target: string, - value: BigNumberish, - data: string, - ) => Promise; -}; \ No newline at end of file + abi?: ContractInterface; + getNonce: (account: SmartContract) => Promise; + execute: ( + account: SmartContract, + target: string, + value: BigNumberish, + data: string, + ) => Promise; +}; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index b57e9e830fb..bd86dbe7f0e 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,46 +1,44 @@ -import { SmartWallet, SmartWalletConfig } from "./smart-wallet"; +import { SmartWallet } from "./smart-wallet"; import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import { walletIds } from "../constants/walletIds"; -import type { - TokenBoundSmartWalletConfig -} from "../connectors/token-bound-smart-wallet/types"; -import { AbstractClientWallet, WalletOptions } from "./base"; -import type { SmartWalletConnectionArgs } from "../connectors/smart-wallet/types"; -import { WalletConnectV2Handler } from "../../core/WalletConnect/WalletConnectV2Handler"; -import { NoOpWalletConnectHandler } from "../../core/WalletConnect/constants"; +import type { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; +import { WalletOptions } from "./base"; +/** + * + */ export class TokenBoundSmartWallet extends SmartWallet { - connector?: TokenBoundSmartWalletConnectorType; + connector?: TokenBoundSmartWalletConnectorType; - static meta = { - name: "Token Bound Smart Wallet", - iconURL: - "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", - }; + static meta = { + name: "Token Bound Smart Wallet", + iconURL: + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", + }; - static id = walletIds.tokenBoundSmartWallet; - public get walletName() { - return "Token Bound Smart Wallet"; - } + static id = walletIds.tokenBoundSmartWallet; + public get walletName() { + return "Token Bound Smart Wallet"; + } - constructor(options: WalletOptions) { - super(options); - } + constructor(options: WalletOptions) { + super(options); + } - async getConnector(): Promise { - if (!this.connector) { - if (this.enableConnectApp) { - await this.wcWallet.init(); - this.setupWalletConnectEventsListeners(); - } + async getConnector(): Promise { + if (!this.connector) { + if (this.enableConnectApp) { + await this.wcWallet.init(); + this.setupWalletConnectEventsListeners(); + } - const { TokenBoundSmartWalletConnector } = await import( - "../connectors/token-bound-smart-wallet" - ); - this.connector = new TokenBoundSmartWalletConnector( - this.options as TokenBoundSmartWalletConfig, - ); - } - return this.connector; + const { TokenBoundSmartWalletConnector } = await import( + "../connectors/token-bound-smart-wallet" + ); + this.connector = new TokenBoundSmartWalletConnector( + this.options as TokenBoundSmartWalletConfig, + ); } + return this.connector; + } } From 5ab826be946b0b727d70d7071119d2eff11757e3 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Wed, 26 Jul 2023 17:28:45 -0700 Subject: [PATCH 09/15] cleanup --- .../src/evm/connectors/smart-wallet/index.ts | 27 +-------- .../connectors/smart-wallet/lib/constants.ts | 1 + .../token-bound-smart-wallet/index.ts | 58 ++++++------------- .../token-bound-smart-wallet/types.ts | 50 ++-------------- 4 files changed, 24 insertions(+), 112 deletions(-) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index 3927d374abc..31d792969f9 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -41,8 +41,8 @@ export class SmartWalletConnector extends Connector { clientId: config.clientId, secretKey: config.secretKey, }) as providers.BaseProvider; + this.chainId = (await originalProvider.getNetwork()).chainId; const chainSlug = await this.getChainSlug(config.chain, originalProvider); - this.chainId = await this.getChainId(config.chain, originalProvider); const bundlerUrl = this.config.bundlerUrl || `https://${chainSlug}.bundler.thirdweb.com`; const paymasterUrl = @@ -278,29 +278,4 @@ export class SmartWalletConnector extends Connector { throw new Error(`Invalid network: ${chainOrRpc}`); } } - - protected async getChainId( - chainOrRpc: ChainOrRpcUrl, - provider: ethers.providers.Provider, - ): Promise { - if (typeof chainOrRpc === "object") { - return chainOrRpc.chainId; - } - if (typeof chainOrRpc === "number") { - const chain = getChainByChainId(chainOrRpc); - return chain.chainId; - } - if (typeof chainOrRpc === "string") { - if (chainOrRpc.startsWith("http") || chainOrRpc.startsWith("ws")) { - // if it's a url, try to get the chain id from the provider - const chainId = (await provider.getNetwork()).chainId; - const chain = getChainByChainId(chainId); - return chain.chainId; - } - // otherwise its the network name - return getChainBySlug(chainOrRpc).chainId; - } else { - throw new Error(`Invalid network: ${chainOrRpc}`); - } - } } diff --git a/packages/wallets/src/evm/connectors/smart-wallet/lib/constants.ts b/packages/wallets/src/evm/connectors/smart-wallet/lib/constants.ts index 07bf742b0c4..b352f3cfb06 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/lib/constants.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/lib/constants.ts @@ -1,4 +1,5 @@ export const ENTRYPOINT_ADDRESS = "0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789"; // v0.6 +export const ERC6551_REGISTRY = "0x02101dfB77FDE026414827Fdc604ddAF224F0921"; export const MINIMAL_ACCOUNT_ABI = [ { diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index aa7d3f7eb79..b2db815fa67 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -1,19 +1,17 @@ +import { TokenBoundSmartWalletConfig } from "./types"; +import { ethers } from "ethers"; +import { SmartWalletConnector } from "../smart-wallet"; import { AccountContractInfo, FactoryContractInfo, - TokenBoundSmartWalletConfig, -} from "./types"; -import { ethers } from "ethers"; -import { SmartContract } from "@thirdweb-dev/sdk"; -import { SmartWalletConnector } from "../smart-wallet"; -import { getChainByChainId } from "@thirdweb-dev/chains"; +} from "../smart-wallet/types"; +import { ERC6551_REGISTRY } from "../smart-wallet/lib/constants"; export class TokenBoundSmartWalletConnector extends SmartWalletConnector { protected config: TokenBoundSmartWalletConfig; constructor(config: TokenBoundSmartWalletConfig) { - config.factoryAddress = - config.factoryAddress || "0x02101dfB77FDE026414827Fdc604ddAF224F0921"; + config.factoryAddress = config.factoryAddress || ERC6551_REGISTRY; super(config); this.config = config; @@ -32,43 +30,23 @@ export class TokenBoundSmartWalletConnector extends SmartWalletConnector { protected defaultFactoryInfo(): FactoryContractInfo { return { - createAccount: async ( - factory, - owner, - { - implementation = this.config.implementation, - chainId = this.chainId, - tokenContract = this.config.tokenContract, - tokenId = this.config.tokenId, - salt = 1, - }, - ) => { + createAccount: async (factory, owner) => { return factory.prepare("createAccount", [ - implementation, - chainId, - tokenContract, - tokenId, - salt, + this.config.accountImplementation, + this.chainId, + this.config.tokenContract, + this.config.tokenId, + this.config.salt, ethers.utils.toUtf8Bytes(""), ]); }, - getAccountAddress: async ( - factory, - owner, - { - implementation = this.config.implementation, - chainId = this.chainId, - tokenContract = this.config.tokenContract, - tokenId = this.config.tokenId, - salt = 1, - }, - ) => { + getAccountAddress: async (factory, owner) => { return await factory.call("address", [ - implementation, - chainId, - tokenContract, - tokenId, - salt, + this.config.accountImplementation, + this.chainId, + this.config.tokenContract, + this.config.tokenId, + this.config.salt, ]); }, }; diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 46cf0193c50..c93103187f5 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -1,51 +1,9 @@ -import type { SmartContract, Transaction } from "@thirdweb-dev/sdk"; -import type { BigNumber, BigNumberish, ContractInterface } from "ethers"; +import type { BigNumberish } from "ethers"; import { SmartWalletConfig } from "../smart-wallet/types"; export type TokenBoundSmartWalletConfig = { tokenContract: string; - tokenId: Number; - implementation: string; + tokenId: BigNumberish; + accountImplementation: string; // TODO provide default implementation published by us + salt?: BigNumberish; } & SmartWalletConfig; - -export type ContractInfoInput = { - factoryInfo?: FactoryContractInfo; - accountInfo?: AccountContractInfo; -}; - -export type FactoryContractInfo = { - abi?: ContractInterface; - createAccount: ( - factory: SmartContract, - owner: string, - tokenInfo: { - implementation: string; - chainId: Number; - tokenContract: string; - tokenId: Number; - salt?: Number; - }, - ) => Promise; - getAccountAddress: ( - factory: SmartContract, - owner: string, - tokenInfo: { - implementation: string; - chainId: Number; - tokenContract: string; - tokenId: Number; - salt: Number; - }, - ) => Promise; -}; - -export type AccountContractInfo = { - abi?: ContractInterface; - getNonce: (account: SmartContract) => Promise; - execute: ( - account: SmartContract, - target: string, - value: BigNumberish, - data: string, - ) => Promise; -}; From cf5bb9382a548c196826b23ebafba812de6bcf0e Mon Sep 17 00:00:00 2001 From: ciaranightingale Date: Thu, 27 Jul 2023 21:49:51 +0100 Subject: [PATCH 10/15] working code & fix factoryAddress required --- .../token-bound-smart-wallet/index.ts | 86 +++++++++---------- .../token-bound-smart-wallet/types.ts | 29 ++++++- .../evm/wallets/token-bound-smart-wallet.ts | 56 ++++++------ 3 files changed, 96 insertions(+), 75 deletions(-) diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index b2db815fa67..a1145de3fff 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -1,54 +1,54 @@ -import { TokenBoundSmartWalletConfig } from "./types"; +import { TokenBoundSmartWalletConfig, TokenBoundSmartWalletConfigInput } from "./types"; import { ethers } from "ethers"; import { SmartWalletConnector } from "../smart-wallet"; import { - AccountContractInfo, - FactoryContractInfo, + AccountContractInfo, + FactoryContractInfo, } from "../smart-wallet/types"; import { ERC6551_REGISTRY } from "../smart-wallet/lib/constants"; +import { SmartWalletConfig } from "../smart-wallet/types"; export class TokenBoundSmartWalletConnector extends SmartWalletConnector { - protected config: TokenBoundSmartWalletConfig; + protected config: TokenBoundSmartWalletConfig; - constructor(config: TokenBoundSmartWalletConfig) { - config.factoryAddress = config.factoryAddress || ERC6551_REGISTRY; + constructor(input: TokenBoundSmartWalletConfigInput) { + input.factoryAddress = input.factoryAddress || ERC6551_REGISTRY; + super(input as TokenBoundSmartWalletConfig); + this.config = input as TokenBoundSmartWalletConfig; + } - super(config); - this.config = config; - } + protected defaultAccountInfo(): AccountContractInfo { + return { + execute: async (account, target, value, data) => { + return account.prepare("executeCall", [target, value, data]); + }, + getNonce: async (account) => { + return account.call("nonce", []); + }, + }; + } - protected defaultAccountInfo(): AccountContractInfo { - return { - execute: async (account, target, value, data) => { - return account.prepare("executeCall", [target, value, data]); - }, - getNonce: async (account) => { - return account.call("nonce", []); - }, - }; - } - - protected defaultFactoryInfo(): FactoryContractInfo { - return { - createAccount: async (factory, owner) => { - return factory.prepare("createAccount", [ - this.config.accountImplementation, - this.chainId, - this.config.tokenContract, - this.config.tokenId, - this.config.salt, - ethers.utils.toUtf8Bytes(""), - ]); - }, - getAccountAddress: async (factory, owner) => { - return await factory.call("address", [ - this.config.accountImplementation, - this.chainId, - this.config.tokenContract, - this.config.tokenId, - this.config.salt, - ]); - }, - }; - } + protected defaultFactoryInfo(): FactoryContractInfo { + return { + createAccount: async (factory, owner) => { + return factory.prepare("createAccount", [ + this.config.accountImplementation, + this.chainId, + this.config.tokenContract, + this.config.tokenId, + this.config.salt, + ethers.utils.toUtf8Bytes(""), + ]); + }, + getAccountAddress: async (factory, owner) => { + return await factory.call("account", [ + this.config.accountImplementation, + this.chainId, + this.config.tokenContract, + this.config.tokenId, + this.config.salt, + ]); + }, + }; + } } diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index c93103187f5..180f5a5a164 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -1,9 +1,30 @@ import type { BigNumberish } from "ethers"; +import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; +import type { ChainOrRpcUrl } from "@thirdweb-dev/sdk"; +import { ContractInfoInput } from "../smart-wallet/types"; +import { PaymasterAPI } from "@account-abstraction/sdk"; import { SmartWalletConfig } from "../smart-wallet/types"; +export type TokenBoundSmartWalletConfigInput = { + chain: ChainOrRpcUrl; + factoryAddress?: string; + clientId?: string; + secretKey?: string; + gasless: boolean; + bundlerUrl?: string; + paymasterUrl?: string; + paymasterAPI?: PaymasterAPI; + entryPointAddress?: string; + tokenContract: string; + tokenId: BigNumberish; + accountImplementation: string; // TODO provide default implementation published by us + salt?: BigNumberish; +} & ContractInfoInput & + WalletConnectReceiverConfig; + export type TokenBoundSmartWalletConfig = { - tokenContract: string; - tokenId: BigNumberish; - accountImplementation: string; // TODO provide default implementation published by us - salt?: BigNumberish; + tokenContract: string; + tokenId: BigNumberish; + accountImplementation: string; // TODO provide default implementation published by us + salt?: BigNumberish; } & SmartWalletConfig; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index bd86dbe7f0e..c1a24789e7b 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,44 +1,44 @@ import { SmartWallet } from "./smart-wallet"; import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import { walletIds } from "../constants/walletIds"; -import type { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; +import type { TokenBoundSmartWalletConfigInput, TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; import { WalletOptions } from "./base"; /** * */ export class TokenBoundSmartWallet extends SmartWallet { - connector?: TokenBoundSmartWalletConnectorType; + connector?: TokenBoundSmartWalletConnectorType; - static meta = { - name: "Token Bound Smart Wallet", - iconURL: - "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", - }; + static meta = { + name: "Token Bound Smart Wallet", + iconURL: + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", + }; - static id = walletIds.tokenBoundSmartWallet; - public get walletName() { - return "Token Bound Smart Wallet"; - } + static id = walletIds.tokenBoundSmartWallet; + public get walletName() { + return "Token Bound Smart Wallet"; + } - constructor(options: WalletOptions) { - super(options); - } + constructor(options: WalletOptions) { + super(options as TokenBoundSmartWalletConfig); + } - async getConnector(): Promise { - if (!this.connector) { - if (this.enableConnectApp) { - await this.wcWallet.init(); - this.setupWalletConnectEventsListeners(); - } + async getConnector(): Promise { + if (!this.connector) { + if (this.enableConnectApp) { + await this.wcWallet.init(); + this.setupWalletConnectEventsListeners(); + } - const { TokenBoundSmartWalletConnector } = await import( - "../connectors/token-bound-smart-wallet" - ); - this.connector = new TokenBoundSmartWalletConnector( - this.options as TokenBoundSmartWalletConfig, - ); + const { TokenBoundSmartWalletConnector } = await import( + "../connectors/token-bound-smart-wallet" + ); + this.connector = new TokenBoundSmartWalletConnector( + this.options as TokenBoundSmartWalletConfig, + ); + } + return this.connector; } - return this.connector; - } } From e93da7f23afb2563b59bde6fcc9492bb4240d7f9 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Fri, 13 Oct 2023 20:48:29 -0700 Subject: [PATCH 11/15] fix types --- .../src/evm/connectors/smart-wallet/index.ts | 33 +------- .../smart-wallet/lib/provider-utils.ts | 2 +- .../token-bound-smart-wallet/index.ts | 81 ++++++++----------- .../token-bound-smart-wallet/types.ts | 31 ++----- .../evm/wallets/token-bound-smart-wallet.ts | 63 ++++++++------- 5 files changed, 78 insertions(+), 132 deletions(-) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index cabc86c60d1..1bb3eb0b8fa 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -15,7 +15,6 @@ import { EVMWallet } from "../../interfaces"; import { ERC4337EthersSigner } from "./lib/erc4337-signer"; import { BigNumber, ethers, providers } from "ethers"; import { - ChainOrRpcUrl, getChainProvider, SignerPermissionsInput, SignerWithPermissions, @@ -45,11 +44,11 @@ export class SmartWalletConnector extends Connector { secretKey: config.secretKey, }) as providers.BaseProvider; this.chainId = (await originalProvider.getNetwork()).chainId; - const chainSlug = await this.getChainSlug(config.chain, originalProvider); const bundlerUrl = - this.config.bundlerUrl || `https://${chainSlug}.bundler.thirdweb.com`; + this.config.bundlerUrl || `https://${this.chainId}.bundler.thirdweb.com`; const paymasterUrl = - this.config.paymasterUrl || `https://${chainSlug}.bundler.thirdweb.com`; + this.config.paymasterUrl || + `https://${this.chainId}.bundler.thirdweb.com`; const entryPointAddress = config.entryPointAddress || ENTRYPOINT_ADDRESS; const localSigner = await params.personalWallet.getSigner(); const providerConfig: ProviderConfig = { @@ -80,6 +79,7 @@ export class SmartWalletConnector extends Connector { providerConfig, accountApi, originalProvider, + this.chainId, ); this.accountApi = accountApi; } @@ -397,29 +397,4 @@ export class SmartWalletConnector extends Connector { }, }; } - - private async getChainSlug( - chainOrRpc: ChainOrRpcUrl, - provider: ethers.providers.Provider, - ): Promise { - if (typeof chainOrRpc === "object") { - return chainOrRpc.slug; - } - if (typeof chainOrRpc === "number") { - const chain = getChainByChainId(chainOrRpc); - return chain.slug; - } - if (typeof chainOrRpc === "string") { - if (chainOrRpc.startsWith("http") || chainOrRpc.startsWith("ws")) { - // if it's a url, try to get the chain id from the provider - const chainId = (await provider.getNetwork()).chainId; - const chain = getChainByChainId(chainId); - return chain.slug; - } - // otherwise its the network name - return chainOrRpc; - } else { - throw new Error(`Invalid network: ${chainOrRpc}`); - } - } } diff --git a/packages/wallets/src/evm/connectors/smart-wallet/lib/provider-utils.ts b/packages/wallets/src/evm/connectors/smart-wallet/lib/provider-utils.ts index bc98e539162..c1aaf9d9631 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/lib/provider-utils.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/lib/provider-utils.ts @@ -15,13 +15,13 @@ export async function create4337Provider( config: ProviderConfig, accountApi: AccountAPI, originalProvider: providers.BaseProvider, + chainId: number, ): Promise { const entryPoint = EntryPoint__factory.connect( config.entryPointAddress, originalProvider, ); - const chainId = (await originalProvider.getNetwork()).chainId; const httpRpcClient = new HttpRpcClient( config.bundlerUrl, config.entryPointAddress, diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index a1145de3fff..aa93dcdd5cb 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -1,54 +1,43 @@ -import { TokenBoundSmartWalletConfig, TokenBoundSmartWalletConfigInput } from "./types"; +import { TokenBoundSmartWalletConfig } from "./types"; import { ethers } from "ethers"; import { SmartWalletConnector } from "../smart-wallet"; -import { - AccountContractInfo, - FactoryContractInfo, -} from "../smart-wallet/types"; +import { FactoryContractInfo } from "../smart-wallet/types"; import { ERC6551_REGISTRY } from "../smart-wallet/lib/constants"; -import { SmartWalletConfig } from "../smart-wallet/types"; export class TokenBoundSmartWalletConnector extends SmartWalletConnector { - protected config: TokenBoundSmartWalletConfig; + protected tbaConfig: TokenBoundSmartWalletConfig; - constructor(input: TokenBoundSmartWalletConfigInput) { - input.factoryAddress = input.factoryAddress || ERC6551_REGISTRY; - super(input as TokenBoundSmartWalletConfig); - this.config = input as TokenBoundSmartWalletConfig; - } + constructor(input: TokenBoundSmartWalletConfig) { + super({ + ...input, + factoryAddress: ERC6551_REGISTRY, + }); + this.tbaConfig = input; + } - protected defaultAccountInfo(): AccountContractInfo { - return { - execute: async (account, target, value, data) => { - return account.prepare("executeCall", [target, value, data]); - }, - getNonce: async (account) => { - return account.call("nonce", []); - }, - }; - } - - protected defaultFactoryInfo(): FactoryContractInfo { - return { - createAccount: async (factory, owner) => { - return factory.prepare("createAccount", [ - this.config.accountImplementation, - this.chainId, - this.config.tokenContract, - this.config.tokenId, - this.config.salt, - ethers.utils.toUtf8Bytes(""), - ]); - }, - getAccountAddress: async (factory, owner) => { - return await factory.call("account", [ - this.config.accountImplementation, - this.chainId, - this.config.tokenContract, - this.config.tokenId, - this.config.salt, - ]); - }, - }; - } + protected defaultFactoryInfo(): FactoryContractInfo { + return { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + createAccount: async (factory, owner) => { + return factory.prepare("createAccount", [ + this.tbaConfig.accountImplementation, + this.chainId, + this.tbaConfig.tokenContract, + this.tbaConfig.tokenId, + this.tbaConfig.salt, + ethers.utils.toUtf8Bytes(""), + ]); + }, + // eslint-disable-next-line @typescript-eslint/no-unused-vars + getAccountAddress: async (factory, owner) => { + return await factory.call("account", [ + this.tbaConfig.accountImplementation, + this.chainId, + this.tbaConfig.tokenContract, + this.tbaConfig.tokenId, + this.tbaConfig.salt, + ]); + }, + }; + } } diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 180f5a5a164..5c09eace79b 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -1,30 +1,9 @@ import type { BigNumberish } from "ethers"; -import { WalletConnectReceiverConfig } from "../../../core/types/walletConnect"; -import type { ChainOrRpcUrl } from "@thirdweb-dev/sdk"; -import { ContractInfoInput } from "../smart-wallet/types"; -import { PaymasterAPI } from "@account-abstraction/sdk"; import { SmartWalletConfig } from "../smart-wallet/types"; -export type TokenBoundSmartWalletConfigInput = { - chain: ChainOrRpcUrl; - factoryAddress?: string; - clientId?: string; - secretKey?: string; - gasless: boolean; - bundlerUrl?: string; - paymasterUrl?: string; - paymasterAPI?: PaymasterAPI; - entryPointAddress?: string; - tokenContract: string; - tokenId: BigNumberish; - accountImplementation: string; // TODO provide default implementation published by us - salt?: BigNumberish; -} & ContractInfoInput & - WalletConnectReceiverConfig; - export type TokenBoundSmartWalletConfig = { - tokenContract: string; - tokenId: BigNumberish; - accountImplementation: string; // TODO provide default implementation published by us - salt?: BigNumberish; -} & SmartWalletConfig; + tokenContract: string; + tokenId: BigNumberish; + accountImplementation?: string; + salt?: BigNumberish; +} & Omit; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index c1a24789e7b..55a57a41abc 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -1,44 +1,47 @@ import { SmartWallet } from "./smart-wallet"; import type { TokenBoundSmartWalletConnector as TokenBoundSmartWalletConnectorType } from "../connectors/token-bound-smart-wallet"; import { walletIds } from "../constants/walletIds"; -import type { TokenBoundSmartWalletConfigInput, TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; +import type { TokenBoundSmartWalletConfig } from "../connectors/token-bound-smart-wallet/types"; import { WalletOptions } from "./base"; +import { ERC6551_REGISTRY } from "../connectors/smart-wallet/lib/constants"; /** - * + * A smart wallet controlled by the holder of a particular NFT. */ export class TokenBoundSmartWallet extends SmartWallet { - connector?: TokenBoundSmartWalletConnectorType; + tbaConnector?: TokenBoundSmartWalletConnectorType; + tbaOptions: TokenBoundSmartWalletConfig; - static meta = { - name: "Token Bound Smart Wallet", - iconURL: - "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/token-bound-smart-wallet.svg", - }; + static meta = { + name: "Token Bound Smart Wallet", + iconURL: + "ipfs://QmeAJVqn17aDNQhjEU3kcWVZCFBrfta8LzaDGkS8Egdiyk/smart-wallet.svg", + }; - static id = walletIds.tokenBoundSmartWallet; - public get walletName() { - return "Token Bound Smart Wallet"; - } - - constructor(options: WalletOptions) { - super(options as TokenBoundSmartWalletConfig); - } + static id = walletIds.tokenBoundSmartWallet; + public get walletName() { + return "Token Bound Smart Wallet"; + } - async getConnector(): Promise { - if (!this.connector) { - if (this.enableConnectApp) { - await this.wcWallet.init(); - this.setupWalletConnectEventsListeners(); - } + constructor(options: WalletOptions) { + super({ + ...options, + factoryAddress: ERC6551_REGISTRY, + }); + this.tbaOptions = options; + } - const { TokenBoundSmartWalletConnector } = await import( - "../connectors/token-bound-smart-wallet" - ); - this.connector = new TokenBoundSmartWalletConnector( - this.options as TokenBoundSmartWalletConfig, - ); - } - return this.connector; + async getConnector(): Promise { + if (!this.tbaConnector) { + if (this.enableConnectApp) { + await this.wcWallet.init(); + this.setupWalletConnectEventsListeners(); + } + const { TokenBoundSmartWalletConnector } = await import( + "../connectors/token-bound-smart-wallet" + ); + this.tbaConnector = new TokenBoundSmartWalletConnector(this.tbaOptions); } + return this.tbaConnector; + } } From 6b4642a7e81d21accbdffbc9e52c052b3e55aa4e Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Fri, 13 Oct 2023 20:57:28 -0700 Subject: [PATCH 12/15] linting --- packages/wallets/src/evm/connectors/smart-wallet/index.ts | 3 +-- packages/wallets/src/evm/connectors/smart-wallet/types.ts | 5 ++--- .../src/evm/connectors/token-bound-smart-wallet/index.ts | 6 ++---- .../src/evm/connectors/token-bound-smart-wallet/types.ts | 1 + .../wallets/src/evm/wallets/token-bound-smart-wallet.ts | 3 ++- 5 files changed, 8 insertions(+), 10 deletions(-) diff --git a/packages/wallets/src/evm/connectors/smart-wallet/index.ts b/packages/wallets/src/evm/connectors/smart-wallet/index.ts index 1bb3eb0b8fa..4675af200b8 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/index.ts @@ -1,4 +1,4 @@ -import { Chain, getChainByChainId } from "@thirdweb-dev/chains"; +import { Chain } from "@thirdweb-dev/chains"; import { ConnectParams, Connector } from "../../interfaces/connector"; import { ERC4337EthersProvider } from "./lib/erc4337-provider"; import { getVerifyingPaymaster } from "./lib/paymaster"; @@ -126,7 +126,6 @@ export class SmartWalletConnector extends Connector { // eslint-disable-next-line @typescript-eslint/no-unused-vars async switchChain(chainId: number): Promise { - // TODO implement chain switching const provider = await this.getProvider(); const currentChainId = (await provider.getNetwork()).chainId; if (currentChainId !== chainId) { diff --git a/packages/wallets/src/evm/connectors/smart-wallet/types.ts b/packages/wallets/src/evm/connectors/smart-wallet/types.ts index 8c331b61d2d..ea7f2200af6 100644 --- a/packages/wallets/src/evm/connectors/smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/smart-wallet/types.ts @@ -36,7 +36,7 @@ export type SmartWalletOptions = WalletOptions; export interface AccountApiParams extends Omit, - ContractInfo { + ContractInfo { chain: ChainOrRpcUrl; localSigner: Signer; factoryAddress: string; @@ -83,7 +83,6 @@ export type FactoryContractInfo = { createAccount: ( factory: SmartContract, owner: string, - optionalParam?: any ) => Promise; - getAccountAddress: (factory: SmartContract, owner: string, optionalParam?: any) => Promise; + getAccountAddress: (factory: SmartContract, owner: string) => Promise; }; diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index aa93dcdd5cb..0d93e182707 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -17,8 +17,7 @@ export class TokenBoundSmartWalletConnector extends SmartWalletConnector { protected defaultFactoryInfo(): FactoryContractInfo { return { - // eslint-disable-next-line @typescript-eslint/no-unused-vars - createAccount: async (factory, owner) => { + createAccount: async (factory) => { return factory.prepare("createAccount", [ this.tbaConfig.accountImplementation, this.chainId, @@ -28,8 +27,7 @@ export class TokenBoundSmartWalletConnector extends SmartWalletConnector { ethers.utils.toUtf8Bytes(""), ]); }, - // eslint-disable-next-line @typescript-eslint/no-unused-vars - getAccountAddress: async (factory, owner) => { + getAccountAddress: async (factory) => { return await factory.call("account", [ this.tbaConfig.accountImplementation, this.chainId, diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 5c09eace79b..811f43c4c10 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -5,5 +5,6 @@ export type TokenBoundSmartWalletConfig = { tokenContract: string; tokenId: BigNumberish; accountImplementation?: string; + registryAddress?: string; salt?: BigNumberish; } & Omit; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 55a57a41abc..46d1867d8ba 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -26,7 +26,8 @@ export class TokenBoundSmartWallet extends SmartWallet { constructor(options: WalletOptions) { super({ ...options, - factoryAddress: ERC6551_REGISTRY, + // TODO default account implementation address + factoryAddress: options.registryAddress || ERC6551_REGISTRY, }); this.tbaOptions = options; } From 8a07db233ccc95f4b32200d1f4c3a3b00f3bd873 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Fri, 13 Oct 2023 21:05:35 -0700 Subject: [PATCH 13/15] fix build --- packages/react-core/src/core/hooks/wallet-hooks.ts | 2 ++ packages/wallets/package.json | 14 +++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/packages/react-core/src/core/hooks/wallet-hooks.ts b/packages/react-core/src/core/hooks/wallet-hooks.ts index a783e39cc08..06680f49ba5 100644 --- a/packages/react-core/src/core/hooks/wallet-hooks.ts +++ b/packages/react-core/src/core/hooks/wallet-hooks.ts @@ -13,6 +13,7 @@ import type { RainbowWallet, SafeWallet, SmartWallet, + TokenBoundSmartWallet, TrustWallet, WalletConnect, walletIds, @@ -31,6 +32,7 @@ type WalletIdToWalletTypeMap = { magicLink: MagicLink; paper: PaperWallet; smartWallet: SmartWallet; + tokenBoundSmartWallet: TokenBoundSmartWallet; safe: SafeWallet; trust: TrustWallet; embeddedWallet: EmbeddedWallet; diff --git a/packages/wallets/package.json b/packages/wallets/package.json index 64835d6d2ae..999ec6e8ef3 100644 --- a/packages/wallets/package.json +++ b/packages/wallets/package.json @@ -316,13 +316,6 @@ }, "default": "./evm/connectors/coinbase-wallet/dist/thirdweb-dev-wallets-evm-connectors-coinbase-wallet.cjs.js" }, - "./evm/wallets/token-bound-smart-wallet": { - "module": { - "browser": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.browser.esm.js", - "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.esm.js" - }, - "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.cjs.js" - }, "./evm/connectors/embedded-wallet": { "module": { "browser": "./evm/connectors/embedded-wallet/dist/thirdweb-dev-wallets-evm-connectors-embedded-wallet.browser.esm.js", @@ -330,6 +323,13 @@ }, "default": "./evm/connectors/embedded-wallet/dist/thirdweb-dev-wallets-evm-connectors-embedded-wallet.cjs.js" }, + "./evm/wallets/token-bound-smart-wallet": { + "module": { + "browser": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.browser.esm.js", + "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.esm.js" + }, + "default": "./evm/wallets/token-bound-smart-wallet/dist/thirdweb-dev-wallets-evm-wallets-token-bound-smart-wallet.cjs.js" + }, "./evm/connectors/wallet-connect-v1": { "module": { "browser": "./evm/connectors/wallet-connect-v1/dist/thirdweb-dev-wallets-evm-connectors-wallet-connect-v1.browser.esm.js", From 4c8dd1cfe55bdee2ced38045596db00208abebc0 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Mon, 23 Oct 2023 21:39:09 -0700 Subject: [PATCH 14/15] require account impl for now --- .../src/evm/connectors/token-bound-smart-wallet/index.ts | 3 ++- .../src/evm/connectors/token-bound-smart-wallet/types.ts | 2 +- packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts index 0d93e182707..cf91a139e15 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/index.ts @@ -10,9 +10,10 @@ export class TokenBoundSmartWalletConnector extends SmartWalletConnector { constructor(input: TokenBoundSmartWalletConfig) { super({ ...input, - factoryAddress: ERC6551_REGISTRY, + factoryAddress: input.registryAddress || ERC6551_REGISTRY, }); this.tbaConfig = input; + // TODO default account implementation address } protected defaultFactoryInfo(): FactoryContractInfo { diff --git a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts index 811f43c4c10..aeab32443b7 100644 --- a/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts +++ b/packages/wallets/src/evm/connectors/token-bound-smart-wallet/types.ts @@ -4,7 +4,7 @@ import { SmartWalletConfig } from "../smart-wallet/types"; export type TokenBoundSmartWalletConfig = { tokenContract: string; tokenId: BigNumberish; - accountImplementation?: string; + accountImplementation: string; registryAddress?: string; salt?: BigNumberish; } & Omit; diff --git a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts index 46d1867d8ba..02a3f97f94b 100644 --- a/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts +++ b/packages/wallets/src/evm/wallets/token-bound-smart-wallet.ts @@ -26,7 +26,6 @@ export class TokenBoundSmartWallet extends SmartWallet { constructor(options: WalletOptions) { super({ ...options, - // TODO default account implementation address factoryAddress: options.registryAddress || ERC6551_REGISTRY, }); this.tbaOptions = options; From c9616edc25c8b28a27a9c25f4712fdd8431b8fe0 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Mon, 23 Oct 2023 21:40:21 -0700 Subject: [PATCH 15/15] changeset --- .changeset/many-camels-punch.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/many-camels-punch.md diff --git a/.changeset/many-camels-punch.md b/.changeset/many-camels-punch.md new file mode 100644 index 00000000000..859a3728494 --- /dev/null +++ b/.changeset/many-camels-punch.md @@ -0,0 +1,5 @@ +--- +"@thirdweb-dev/wallets": patch +--- + +Introduce TokenBoundSmartWallet class for ERC-6551 support