From 1daf255420805537a886b455ee59e63d52c6dad5 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Tue, 26 Aug 2025 17:08:35 -1000 Subject: [PATCH] feat: add elastos smart and identity chains, and taiko --- package.json | 2 +- .../constants/src/lib/constants/constants.ts | 66 +++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 9b7bbe719..d9545cfbf 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "@cosmjs/proto-signing": "0.30.1", "@cosmjs/stargate": "0.30.1", "@dotenvx/dotenvx": "^1.6.4", - "@lit-protocol/accs-schemas": "^0.0.31", + "@lit-protocol/accs-schemas": "^0.0.33", "@lit-protocol/contracts": "^0.0.74", "@lit-protocol/lit-status-sdk": "^0.1.8", "@metamask/eth-sig-util": "5.0.2", diff --git a/packages/constants/src/lib/constants/constants.ts b/packages/constants/src/lib/constants/constants.ts index 6b59a258a..5171d7313 100644 --- a/packages/constants/src/lib/constants/constants.ts +++ b/packages/constants/src/lib/constants/constants.ts @@ -1176,6 +1176,72 @@ export const LIT_CHAINS: LITChain = { type: null, vmType: 'EVM', }, + elastosSmartChainMainnet: { + contractAddress: null, + chainId: 20, + name: 'Elastos Smart Chain Mainnet', + symbol: 'ELA', + decimals: 18, + rpcUrls: ['https://api.elastos.io/esc'], + blockExplorerUrls: ['https://esc.elastos.io'], + type: null, + vmType: 'EVM', + }, + elastosSmartChainTestnet: { + contractAddress: null, + chainId: 21, + name: 'Elastos Smart Chain Testnet', + symbol: 'ELA', + decimals: 18, + rpcUrls: ['https://api-testnet.elastos.io/esc'], + blockExplorerUrls: ['https://esc-testnet.elastos.io'], + type: null, + vmType: 'EVM', + }, + elastosIdentityChainMainnet: { + contractAddress: null, + chainId: 22, + name: 'Elastos Identity Chain Mainnet', + symbol: 'EID', + decimals: 18, + rpcUrls: ['https://api.elastos.io/eid'], + blockExplorerUrls: ['https://eid.elastos.io'], + type: null, + vmType: 'EVM', + }, + elastosIdentityChainTestnet: { + contractAddress: null, + chainId: 23, + name: 'Elastos Identity Chain Testnet', + symbol: 'EID', + decimals: 18, + rpcUrls: ['https://api-testnet.elastos.io/eid'], + blockExplorerUrls: ['https://eid-testnet.elastos.io'], + type: null, + vmType: 'EVM', + }, + taikoAlethiaMainnet: { + contractAddress: null, + chainId: 167000, + name: 'Taiko Alethia Mainnet', + symbol: 'ETH', + decimals: 18, + rpcUrls: ['https://rpc.taiko.xyz'], + blockExplorerUrls: ['https://taikoscan.io'], + type: null, + vmType: 'EVM', + }, + taikoHeklaTestnet: { + contractAddress: null, + chainId: 167009, + name: 'Taiko Hekla Testnet', + symbol: 'ETH', + decimals: 18, + rpcUrls: ['https://rpc.hekla.taiko.xyz'], + blockExplorerUrls: ['https://hekla.taikoscan.io'], + type: null, + vmType: 'EVM', + }, }; /**