1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

add Polygon Mumbai as supported chainId

This commit is contained in:
Matthias Kretschmann 2021-07-12 14:42:46 +02:00
parent 0acb18dec1
commit e06b6af56f
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module.exports = {
chainIds: [1, 137],
// List of all supported chainIds. Used to populate the Chains user preferences list.
chainIdsSupported: [1, 3, 4, 137, 1287, 56],
chainIdsSupported: [1, 3, 4, 137, 80001, 1287, 56],
rbacUrl: process.env.GATSBY_RBAC_URL,

View File

@ -41,6 +41,9 @@ export function getNetworkDisplayName(
case 137:
displayName = 'Polygon'
break
case 80001:
displayName = 'Polygon Mumbai'
break
case 8996:
displayName = 'Development'
break