@aurigami/sdk 1.6.7 → 1.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.cjs.development.js +3 -2
- package/dist/sdk.cjs.development.js.map +1 -1
- package/dist/sdk.cjs.production.min.js +1 -1
- package/dist/sdk.cjs.production.min.js.map +1 -1
- package/dist/sdk.esm.js +3 -2
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/SDK.ts +1 -1
- package/src/consts/constants.ts +2 -1
package/dist/sdk.esm.js
CHANGED
|
@@ -82,7 +82,8 @@ var networkAddresses = {
|
|
|
82
82
|
MULTICALL: /*#__PURE__*/MAINNET_ADDRESSES.multicall.toLowerCase(),
|
|
83
83
|
TEAM_MULTISIG: /*#__PURE__*/'0x2D05FfFE70CE64c5954710D4C308dB31C8dBd8dE'.toLowerCase(),
|
|
84
84
|
PLY_TOKEN_LOCK: /*#__PURE__*/MAINNET_ADDRESSES.plyTokenLock.toLowerCase(),
|
|
85
|
-
REFERRAL: /*#__PURE__*/MAINNET_ADDRESSES.referralDirectory.
|
|
85
|
+
REFERRAL: /*#__PURE__*/MAINNET_ADDRESSES.referralDirectory.toLowerCase(),
|
|
86
|
+
ULTILIZATION_HELPER: /*#__PURE__*/MAINNET_ADDRESSES.ultilizationHelper.toLowerCase()
|
|
86
87
|
},
|
|
87
88
|
tokens: {
|
|
88
89
|
AURORA: /*#__PURE__*/'0x8bec47865ade3b172a928df8f990bc7f2a3b9f79'.toLowerCase(),
|
|
@@ -4382,7 +4383,7 @@ var SdkRead = /*#__PURE__*/function (_BlockchainEntityRead) {
|
|
|
4382
4383
|
while (1) {
|
|
4383
4384
|
switch (_context8.prev = _context8.next) {
|
|
4384
4385
|
case 0:
|
|
4385
|
-
helper = new Contract(networkAddresses.misc.
|
|
4386
|
+
helper = new Contract(networkAddresses.misc.ULTILIZATION_HELPER, abis$a.abi, this._networkConnection.provider);
|
|
4386
4387
|
_context8.next = 3;
|
|
4387
4388
|
return helper.getAccountLiquidity(userAddr);
|
|
4388
4389
|
|