From 8b765af366e393baa059c8134f0b4c48c4899c27 Mon Sep 17 00:00:00 2001 From: Emil Date: Mon, 18 Apr 2022 17:24:31 +0300 Subject: [PATCH] new networks in bundle.js added new networks in bundle.js: * gnosis * kucoin * andromeda * cronos * aurora --- js/Bundle.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/Bundle.js b/js/Bundle.js index fa5dd83a..93a101d7 100644 --- a/js/Bundle.js +++ b/js/Bundle.js @@ -182,6 +182,11 @@ function getChainID(network) { if (network === 'arbitrum') return 42161 if (network === 'moonbeam') return 1284 if (network === 'moonriver') return 1285 + if (network === 'gnosis') return 100 + if (network === 'kucoin') return 321 + if (network === 'andromeda') return 1088 + if (network === 'cronos') return 25 + if (network === 'aurora') return 1313161554 throw new Error(`unsupported network ${network}`) }