From 6c3af54946aa3d6879f29b527e9bf25e6d852d45 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Thu, 23 Nov 2023 12:16:12 +0300 Subject: [PATCH] Base update --- .../SupportedChains/EVM/authAPI/index.tsx | 14 ++++++++++ .../SupportedChains/EVM/streamsAPI/index.tsx | 28 +++++++++++++++++++ .../SupportedChains/EVM/web3api/index.tsx | 28 +++++++++++++++++++ 3 files changed, 70 insertions(+) diff --git a/src/components/SupportedChains/EVM/authAPI/index.tsx b/src/components/SupportedChains/EVM/authAPI/index.tsx index 8bb9f7d0..f37fbcd1 100644 --- a/src/components/SupportedChains/EVM/authAPI/index.tsx +++ b/src/components/SupportedChains/EVM/authAPI/index.tsx @@ -95,6 +95,20 @@ const EVMAuthChainData = () => { EvmChain: "EvmChain.ARBITRUM", Type: "Mainnet", }, + { + Name: "Gnosis", + "Chain Id (Int)": "100", + "Chain Id (Hex)": "0x64", + EvmChain: "EvmChain.GNOSIS", + Type: "Mainnet", + }, + { + Name: "Gnosis Chiado", + "Chain Id (Int)": "10200", + "Chain Id (Hex)": "0x27d8", + EvmChain: "EvmChain.GNOSIS_CHIADO", + Type: "Testnet", + }, ]; return ; diff --git a/src/components/SupportedChains/EVM/streamsAPI/index.tsx b/src/components/SupportedChains/EVM/streamsAPI/index.tsx index e4ad4da4..0465fd61 100644 --- a/src/components/SupportedChains/EVM/streamsAPI/index.tsx +++ b/src/components/SupportedChains/EVM/streamsAPI/index.tsx @@ -137,6 +137,34 @@ const EVMStreamChainData = () => { "Blocks until confirmed": "", Note: "🔥 NEW", }, +{ + Chain: "Gnosis", + "Chain Id (Hex)": "0x64", + "Internal Transaction Supported": "❌ NO", + "Blocks until confirmed": "100", + Note: "🔥 NEW", +}, +{ + Chain: "Gnosis Chiado TEST", + "Chain Id (Hex)": "0x27d8", + "Internal Transaction Supported": "❌ NO", + "Blocks until confirmed": "100", + Note: "🔥 NEW", +}, +{ + Chain: "BASE", + "Chain Id (Hex)": "0x2105", + "Internal Transaction Supported": "✅ YES", + "Blocks until confirmed": "100", + Note: "🔥 NEW", +}, +{ + Chain: "Base Goerli TEST", + "Chain Id (Hex)": "0x14a33", + "Internal Transaction Supported": "✅ YES", + "Blocks until confirmed": "100", + Note: "🔥 NEW", +}, ]; return
; diff --git a/src/components/SupportedChains/EVM/web3api/index.tsx b/src/components/SupportedChains/EVM/web3api/index.tsx index 64957837..81520c6b 100644 --- a/src/components/SupportedChains/EVM/web3api/index.tsx +++ b/src/components/SupportedChains/EVM/web3api/index.tsx @@ -95,6 +95,34 @@ const EVMChainData = () => { EvmChain: "EvmChain.ARBITRUM", Type: "Mainnet", }, + { + Name: "Gnosis", + "Chain Id (Int)": "100", + "Chain Id (Hex)": "0x64", + EvmChain: "EvmChain.GNOSIS", + Type: "Mainnet", +}, +{ + Name: "Gnosis Chiado", + "Chain Id (Int)": "10200", + "Chain Id (Hex)": "0x27d8", + EvmChain: "EvmChain.GNOSIS_CHIADO", + Type: "Testnet", +}, +{ + Name: "Base", + "Chain Id (Int)": "8453", + "Chain Id (Hex)": "0x2105", + EvmChain: "EvmChain.BASE", + Type: "Mainnet", +}, +{ + Name: "Base Goerli", + "Chain Id (Int)": "84531", + "Chain Id (Hex)": "0x14a33", + EvmChain: "EvmChain.BASE_GOERLI", + Type: "Testnet", +}, ]; return
;