From afd8fa4523f02eed53b91def647b84f892c6977b Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Tue, 15 Oct 2024 12:47:38 -1000 Subject: [PATCH 1/2] Rename `storyProtocolTestnet` to `storyIlaid`. Add `campTestnet` Signed-off-by: Wyatt Barnes --- packages/constants/src/lib/constants/constants.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/constants/src/lib/constants/constants.ts b/packages/constants/src/lib/constants/constants.ts index 3bc7624b6c..8a64092a3e 100644 --- a/packages/constants/src/lib/constants/constants.ts +++ b/packages/constants/src/lib/constants/constants.ts @@ -781,10 +781,10 @@ export const LIT_CHAINS: LITChain = { type: null, vmType: 'EVM', }, - storyProtocolTestnet: { + storyIlaid: { contractAddress: null, chainId: 1513, - name: 'Story Protocol Testnet', + name: 'Story Iliad Testnet', symbol: 'IP', decimals: 18, rpcUrls: ['https://testnet.storyrpc.io'], @@ -792,6 +792,17 @@ export const LIT_CHAINS: LITChain = { type: null, vmType: 'EVM', }, + campTestnet: { + contractAddress: null, + chainId: 325000, + name: 'Camp Testnet', + symbol: 'ETH', + decimals: 18, + rpcUrls: ['https://rpc.camp-network-testnet.gelato.digital'], + blockExplorerUrls: ['https://camp-network-testnet.blockscout.com'], + type: null, + vmType: 'EVM', + }, }; /** From a93f8f782f4eff7a847bf3c777f0995b277eb4ee Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Tue, 15 Oct 2024 13:07:55 -1000 Subject: [PATCH 2/2] Update constants.ts Signed-off-by: Wyatt Barnes --- packages/constants/src/lib/constants/constants.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/constants/src/lib/constants/constants.ts b/packages/constants/src/lib/constants/constants.ts index 8a64092a3e..444e2b5850 100644 --- a/packages/constants/src/lib/constants/constants.ts +++ b/packages/constants/src/lib/constants/constants.ts @@ -803,6 +803,17 @@ export const LIT_CHAINS: LITChain = { type: null, vmType: 'EVM', }, + hushedNorthstar: { + contractAddress: null, + chainId: 42161, + name: 'Hushed Northstar Devnet', + symbol: 'ETH', + decimals: 18, + rpcUrls: ['https://rpc.buildbear.io/yielddev'], + blockExplorerUrls: ['https://explorer.buildbear.io/yielddev/transactions'], + type: null, + vmType: 'EVM', + }, }; /**