From df89934eabaf595a934172468a8b6c84b3a02f76 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:28:42 +0300 Subject: [PATCH 01/15] update compute units --- .../ComputeUnits/ComputeUnitsTable.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index abe92c5ad..498339b3d 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -78,6 +78,13 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { const hrefPath = fixedPath[endpoint] ? fixedPath[endpoint] : camelToSnakeCase(endpoint); + let additionalInfo = dynamic ? `+${price} CU${price > 1 ? "s" : ""} per ${DynamicPriceUnits?.[endpoint]}` : "0"; + + // Specific text for the getMultipleTokenPrices endpoint + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = '+5, if you add the query parameter include=perecent_change'; + } + return ( @@ -87,18 +94,12 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { {path} {price} - - {dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : 0} - + {additionalInfo} {rateLimitCost} ); })} - + ); }; From f46fd822e3d67501b338fbe856260c48349a7a34 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:33:15 +0300 Subject: [PATCH 02/15] update --- .../ComputeUnits/ComputeUnitsTable.tsx | 54 ++++++++++--------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 498339b3d..e578fa574 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -73,33 +73,37 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { - {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { - const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; - const hrefPath = fixedPath[endpoint] - ? fixedPath[endpoint] - : camelToSnakeCase(endpoint); - let additionalInfo = dynamic ? `+${price} CU${price > 1 ? "s" : ""} per ${DynamicPriceUnits?.[endpoint]}` : "0"; + {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { + const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; + const hrefPath = fixedPath[endpoint] + ? fixedPath[endpoint] + : camelToSnakeCase(endpoint); + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : "0"; - // Specific text for the getMultipleTokenPrices endpoint - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = '+5, if you add the query parameter include=perecent_change'; - } + // Specific text for the getMultipleTokenPrices endpoint + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } - return ( - - - - {endpoint} - - - {path} - {price} - {additionalInfo} - {rateLimitCost} - - ); - })} - + return ( + + + + {endpoint} + + + {path} + {price} + {additionalInfo} + {rateLimitCost} + + ); + })} + ); }; From 8b4f2abb9307563b8ac611191884fc4134026d98 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:38:53 +0300 Subject: [PATCH 03/15] update --- .../ComputeUnits/ComputeUnitsTable.tsx | 55 +++++++++---------- 1 file changed, 26 insertions(+), 29 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index e578fa574..fdca21b8a 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -73,37 +73,34 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { - {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { - const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; - const hrefPath = fixedPath[endpoint] - ? fixedPath[endpoint] - : camelToSnakeCase(endpoint); - let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : "0"; + {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { + const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; + const hrefPath = fixedPath[endpoint] + ? fixedPath[endpoint] + : camelToSnakeCase(endpoint); + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? 's' : ''} per ${DynamicPriceUnits?.[endpoint]}` + : '0'; - // Specific text for the getMultipleTokenPrices endpoint - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } + if (endpoint === 'getMultipleTokenPrices') { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } - return ( - - - - {endpoint} - - - {path} - {price} - {additionalInfo} - {rateLimitCost} - - ); - })} - + return ( + + + + {endpoint} + + + {path} + {price} + {additionalInfo} + {rateLimitCost} + + ); + })} + ); }; From 7a3c467730786cdf7630576ba91085b2326b63c9 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:43:30 +0300 Subject: [PATCH 04/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index fdca21b8a..138736a45 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -79,11 +79,13 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { ? fixedPath[endpoint] : camelToSnakeCase(endpoint); let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? 's' : ''} per ${DynamicPriceUnits?.[endpoint]}` - : '0'; + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : "0"; - if (endpoint === 'getMultipleTokenPrices') { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter "include=perecent_change"; } return ( @@ -95,12 +97,15 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { {path} {price} - {additionalInfo} + + {additionalInfo} + {rateLimitCost} ); })} + ); }; From a9d904a2d57b830d7991cb5337f4199f06dc9d9b Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:45:25 +0300 Subject: [PATCH 05/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 138736a45..39f14a229 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -85,7 +85,7 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { : "0"; if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter "include=perecent_change"; + additionalInfo = "+5, if you add the query parameter include=perecent_change"; } return ( From 51086f0d11e242280b42139392692908dcc73469 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Tue, 14 Nov 2023 14:48:51 +0300 Subject: [PATCH 06/15] fix --- .../ComputeUnits/ComputeUnitsTable.tsx | 59 +++++++++---------- 1 file changed, 28 insertions(+), 31 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 39f14a229..523ee11e9 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -73,39 +73,36 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { - {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { - const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; - const hrefPath = fixedPath[endpoint] - ? fixedPath[endpoint] - : camelToSnakeCase(endpoint); - let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : "0"; + {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { + const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; + const hrefPath = fixedPath[endpoint] + ? fixedPath[endpoint] + : camelToSnakeCase(endpoint); + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } - - return ( - - - - {endpoint} - - - {path} - {price} - - {additionalInfo} - - {rateLimitCost} - - ); - })} - + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } + return ( + + + + {endpoint} + + + {path} + {price} + {additionalInfo} {/* Removed unnecessary newlines */} + {rateLimitCost} + + ); + })} + ); }; From 8ab78fb47c31bfa5e8e49d1d0e74c09ce4f4b245 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:41:28 +0300 Subject: [PATCH 07/15] update --- .../ComputeUnits/ComputeUnitsTable.tsx | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 523ee11e9..18e12c833 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -73,36 +73,36 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { - {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { - const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; - const hrefPath = fixedPath[endpoint] - ? fixedPath[endpoint] - : camelToSnakeCase(endpoint); - let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : "0"; + {endpoints?.[chain]?.map((e: EndpointWeightResponse, index: number) => { + const { endpoint, path, price, rateLimitCost, dynamic } = e ?? {}; + const hrefPath = fixedPath[endpoint] + ? fixedPath[endpoint] + : camelToSnakeCase(endpoint); + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } - return ( - - - - {endpoint} - - - {path} - {price} - {additionalInfo} {/* Removed unnecessary newlines */} - {rateLimitCost} - - ); - })} - + return ( + + + + {endpoint} + + + {path} + {price} + {additionalInfo} + {rateLimitCost} + + ); + })} + ); }; From 4d447c84ed2f9b0f9b7c9505d4a7069ddf14da31 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:44:17 +0300 Subject: [PATCH 08/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 18e12c833..e3da09f11 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -85,7 +85,7 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { : "0"; if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; + additionalInfo = '+5, if you add the query parameter include=perecent_change'; } return ( From 6de00efb2aa650cb5cddde5dad29678140d8358d Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:46:21 +0300 Subject: [PATCH 09/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index e3da09f11..9e1365a6b 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -78,11 +78,12 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { const hrefPath = fixedPath[endpoint] ? fixedPath[endpoint] : camelToSnakeCase(endpoint); - let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : "0"; + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + // The line break and indentation that Prettier is expecting: + DynamicPriceUnits?.[endpoint] + }` + : "0"; if (endpoint === "getMultipleTokenPrices") { additionalInfo = '+5, if you add the query parameter include=perecent_change'; From 82e88cfe7d33ba9db15e1cdd0dfdf97cee1eaf4b Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:47:47 +0300 Subject: [PATCH 10/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 9e1365a6b..68b43b331 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -86,7 +86,7 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { : "0"; if (endpoint === "getMultipleTokenPrices") { - additionalInfo = '+5, if you add the query parameter include=perecent_change'; + additionalInfo = "+5, if you add the query parameter include=perecent_change"; } return ( From 2ef92ffe0bb37be869b1bb67c9fb2aea98eb31f5 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:56:30 +0300 Subject: [PATCH 11/15] update --- .../ComputeUnits/ComputeUnitsTable.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index 68b43b331..d38c30c6e 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -80,15 +80,13 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { : camelToSnakeCase(endpoint); let additionalInfo = dynamic ? `+${price} CU${price > 1 ? "s" : ""} per ${ - // The line break and indentation that Prettier is expecting: DynamicPriceUnits?.[endpoint] }` : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } - + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } return ( @@ -98,7 +96,13 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { {path} {price} - {additionalInfo} + + {dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : 0} + {rateLimitCost} ); From e2ced3cdb86db8a2676e7672805fce9138c10872 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 00:59:56 +0300 Subject: [PATCH 12/15] update --- .../ComputeUnits/ComputeUnitsTable.tsx | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index d38c30c6e..ce5bf84f9 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -78,15 +78,15 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { const hrefPath = fixedPath[endpoint] ? fixedPath[endpoint] : camelToSnakeCase(endpoint); - let additionalInfo = dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : "0"; + let additionalInfo = dynamic + ? `+${price} CU${price > 1 ? "s" : ""} per ${ + DynamicPriceUnits?.[endpoint] + }` + : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = "+5, if you add the query parameter include=perecent_change"; + } return ( @@ -97,11 +97,7 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { {path} {price} - {dynamic - ? `+${price} CU${price > 1 ? "s" : ""} per ${ - DynamicPriceUnits?.[endpoint] - }` - : 0} + {additionalInfo} {rateLimitCost} From ad2b90a2d2d85df633175ba2b8dabecb16b7d8d9 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 01:05:05 +0300 Subject: [PATCH 13/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index ce5bf84f9..cb301b767 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -84,9 +84,10 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { }` : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = "+5, if you add the query parameter include=perecent_change"; - } + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = + "+5, if you add the query parameter include=perecent_change"; + } return ( @@ -96,9 +97,7 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { {path} {price} - - {additionalInfo} - + {additionalInfo} {rateLimitCost} ); From 16f4cb00c58eb5295bb9aa64cb85a00c63536098 Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 01:06:48 +0300 Subject: [PATCH 14/15] update --- src/components/ComputeUnits/ComputeUnitsTable.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ComputeUnits/ComputeUnitsTable.tsx b/src/components/ComputeUnits/ComputeUnitsTable.tsx index cb301b767..1e07566b7 100644 --- a/src/components/ComputeUnits/ComputeUnitsTable.tsx +++ b/src/components/ComputeUnits/ComputeUnitsTable.tsx @@ -84,10 +84,10 @@ const ComputeUnitsTable = ({ chain }): JSX.Element => { }` : "0"; - if (endpoint === "getMultipleTokenPrices") { - additionalInfo = - "+5, if you add the query parameter include=perecent_change"; - } + if (endpoint === "getMultipleTokenPrices") { + additionalInfo = + "+5, if you add the query parameter include=perecent_change"; + } return ( From 659247d57611cb4634c293a17abf2e2e15eab92c Mon Sep 17 00:00:00 2001 From: Nazeim Date: Wed, 15 Nov 2023 01:12:18 +0300 Subject: [PATCH 15/15] update --- .../SupportedChains/EVM/authAPI/index.tsx | 28 ------------- .../SupportedChains/EVM/streamsAPI/index.tsx | 42 ------------------- .../SupportedChains/EVM/web3api/index.tsx | 42 ------------------- 3 files changed, 112 deletions(-) diff --git a/src/components/SupportedChains/EVM/authAPI/index.tsx b/src/components/SupportedChains/EVM/authAPI/index.tsx index 3a6e1aaeb..8bb9f7d08 100644 --- a/src/components/SupportedChains/EVM/authAPI/index.tsx +++ b/src/components/SupportedChains/EVM/authAPI/index.tsx @@ -95,34 +95,6 @@ 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", - }, - { - Name: "Chiliz", - "Chain Id (Int)": "88888", - "Chain Id (Hex)": "0x15b38", - EvmChain: "EvmChain.CHILIZ", - Type: "Mainnet", - }, - { - Name: "Chiliz Spicy", - "Chain Id (Int)": "88882", - "Chain Id (Hex)": "0x15b32", - EvmChain: "EvmChain.CHILIZ_SPICY", - Type: "Testnet", - }, ]; return ; diff --git a/src/components/SupportedChains/EVM/streamsAPI/index.tsx b/src/components/SupportedChains/EVM/streamsAPI/index.tsx index 730c773b9..e4ad4da4a 100644 --- a/src/components/SupportedChains/EVM/streamsAPI/index.tsx +++ b/src/components/SupportedChains/EVM/streamsAPI/index.tsx @@ -137,48 +137,6 @@ 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: "Chiliz", - "Chain Id (Hex)": "0x15b38", - "Internal Transaction Supported": "✅ YES", - "Blocks until confirmed": "100", - Note: "🔥 NEW", - }, - { - Chain: "Chiliz Spicy TEST", - "Chain Id (Hex)": "0x15b32", - "Internal Transaction Supported": "✅ YES", - "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 856cfa696..64957837c 100644 --- a/src/components/SupportedChains/EVM/web3api/index.tsx +++ b/src/components/SupportedChains/EVM/web3api/index.tsx @@ -95,48 +95,6 @@ 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: "Chiliz", - "Chain Id (Int)": "88888", - "Chain Id (Hex)": "0x15b38", - EvmChain: "EvmChain.CHILIZ", - Type: "Mainnet", - }, - { - Name: "Chiliz Spicy", - "Chain Id (Int)": "88882", - "Chain Id (Hex)": "0x15b32", - EvmChain: "EvmChain.CHILIZ_SPICY", - 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
;