Skip to content

Commit

Permalink
Base update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazeim committed Nov 23, 2023
1 parent e39b85d commit 6c3af54
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/SupportedChains/EVM/authAPI/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Table headers={headers} data={data} />;
Expand Down
28 changes: 28 additions & 0 deletions src/components/SupportedChains/EVM/streamsAPI/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Table headers={headers} data={data} />;
Expand Down
28 changes: 28 additions & 0 deletions src/components/SupportedChains/EVM/web3api/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Table headers={headers} data={data} />;
Expand Down

0 comments on commit 6c3af54

Please sign in to comment.