From a2827dc80db2cfb3e0427b6a254ed859705a03f3 Mon Sep 17 00:00:00 2001 From: Jordan Enev Date: Fri, 17 Feb 2023 13:07:32 +0200 Subject: [PATCH] Add: Mumbai test network. --- js/Bundle.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/Bundle.js b/js/Bundle.js index f2a47285..f26f098b 100644 --- a/js/Bundle.js +++ b/js/Bundle.js @@ -205,6 +205,7 @@ function getChainID(network) { if (network === 'cronos') return 25 if (network === 'aurora') return 1313161554 if (network === 'rinkeby') return 4 + if (network === 'mumbai') return 80001 if (network === 'optimism') return 10 throw new Error(`unsupported network ${network}`) }