mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
39 lines
2.0 KiB
Diff
39 lines
2.0 KiB
Diff
diff --git a/dist/AssetsContractController.js b/dist/AssetsContractController.js
|
|
index 332c87d7cc5687dec4d80ec3c51dcc4bda632c32..1d88cd313efb00c9c9b57f6824ed74bbca6349e3 100644
|
|
--- a/dist/AssetsContractController.js
|
|
+++ b/dist/AssetsContractController.js
|
|
@@ -33,6 +33,7 @@ exports.SINGLE_CALL_BALANCES_ADDRESS_BY_CHAINID = {
|
|
[assetsUtil_1.SupportedTokenDetectionNetworks.bsc]: '0x2352c63A83f9Fd126af8676146721Fa00924d7e4',
|
|
[assetsUtil_1.SupportedTokenDetectionNetworks.polygon]: '0x2352c63A83f9Fd126af8676146721Fa00924d7e4',
|
|
[assetsUtil_1.SupportedTokenDetectionNetworks.avax]: '0xD023D153a0DFa485130ECFdE2FAA7e612EF94818',
|
|
+ [assetsUtil_1.SupportedTokenDetectionNetworks.aurora]: '0x1286415D333855237f89Df27D388127181448538',
|
|
};
|
|
exports.MISSING_PROVIDER_ERROR = 'AssetsContractController failed to set the provider correctly. A provider must be set for this method to be available';
|
|
/**
|
|
diff --git a/dist/assetsUtil.d.ts b/dist/assetsUtil.d.ts
|
|
index 1b69903a3f8e19f5a451c94791ea16fb18e94d93..d45fe80652fea24d19b2b30dd9af7e6219939153 100644
|
|
--- a/dist/assetsUtil.d.ts
|
|
+++ b/dist/assetsUtil.d.ts
|
|
@@ -45,7 +45,8 @@ export declare enum SupportedTokenDetectionNetworks {
|
|
mainnet = "1",
|
|
bsc = "56",
|
|
polygon = "137",
|
|
- avax = "43114"
|
|
+ avax = "43114",
|
|
+ aurora = "1313161554"
|
|
}
|
|
/**
|
|
* Check if token detection is enabled for certain networks.
|
|
diff --git a/dist/assetsUtil.js b/dist/assetsUtil.js
|
|
index 4b54e82504cdfae1d937860b0b89b14860385b8e..232228688454d32df818065119dff104f5b0c16c 100644
|
|
--- a/dist/assetsUtil.js
|
|
+++ b/dist/assetsUtil.js
|
|
@@ -120,6 +120,7 @@ var SupportedTokenDetectionNetworks;
|
|
SupportedTokenDetectionNetworks["bsc"] = "56";
|
|
SupportedTokenDetectionNetworks["polygon"] = "137";
|
|
SupportedTokenDetectionNetworks["avax"] = "43114";
|
|
+ SupportedTokenDetectionNetworks["aurora"] = "1313161554";
|
|
})(SupportedTokenDetectionNetworks = exports.SupportedTokenDetectionNetworks || (exports.SupportedTokenDetectionNetworks = {}));
|
|
/**
|
|
* Check if token detection is enabled for certain networks.
|