@aurigami/sdk 1.2.3 → 1.2.4
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 -3
- 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 -3
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/MoneyMarket.ts +2 -2
- package/src/constants.ts +1 -1
package/package.json
CHANGED
package/src/MoneyMarket.ts
CHANGED
|
@@ -213,7 +213,7 @@ export class MoneyMarketRead extends BlockchainEntityRead {
|
|
|
213
213
|
const NEARToken = new Token(networkAddresses.tokens.WNEAR, getDecimal(networkAddresses.tokens.WNEAR));
|
|
214
214
|
const rewardStopTime = 1648648800;
|
|
215
215
|
if (isSameAddress(this.underlying.address, networkAddresses.tokens.USDC) && getCurrentTimestamp() <= rewardStopTime) {
|
|
216
|
-
return new TokenAmount(NEARToken, "
|
|
216
|
+
return new TokenAmount(NEARToken, "1250", false);
|
|
217
217
|
} else {
|
|
218
218
|
return new TokenAmount(NEARToken, "0");
|
|
219
219
|
}
|
|
@@ -223,7 +223,7 @@ export class MoneyMarketRead extends BlockchainEntityRead {
|
|
|
223
223
|
const NEARToken = new Token(networkAddresses.tokens.WNEAR, getDecimal(networkAddresses.tokens.WNEAR));
|
|
224
224
|
const rewardStopTime = 1648648800;
|
|
225
225
|
if (isSameAddress(this.underlying.address, networkAddresses.tokens.USDC) && getCurrentTimestamp() <= rewardStopTime) {
|
|
226
|
-
return new TokenAmount(NEARToken, "
|
|
226
|
+
return new TokenAmount(NEARToken, "3750", false);
|
|
227
227
|
} else {
|
|
228
228
|
return new TokenAmount(NEARToken, "0");
|
|
229
229
|
}
|
package/src/constants.ts
CHANGED
|
@@ -51,7 +51,7 @@ export const networkAddresses: NetworkAddresses = {
|
|
|
51
51
|
{
|
|
52
52
|
name: "auSTNEAR",
|
|
53
53
|
address: "0x3195949f267702723bc614cAE037cdc8D1E94786".toLowerCase(),
|
|
54
|
-
underlying: '
|
|
54
|
+
underlying: '0x07F9F7f963C5cD2BBFFd30CcfB964Be114332E30'.toLowerCase()
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
name: "auAURORA",
|