@aurigami/sdk 1.5.5 → 1.5.6
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 +1 -1
- 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 +1 -1
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/constants.ts +1 -3
package/package.json
CHANGED
package/src/constants.ts
CHANGED
|
@@ -119,9 +119,7 @@ export const PLYWNEAR_REWARD_TOKENS = [
|
|
|
119
119
|
'0xFa94348467f64D5A457F75F8bc40495D33c65aBB', // TRI
|
|
120
120
|
];
|
|
121
121
|
// could call RPC to get all the staking pools but it's not necessary for now
|
|
122
|
-
|
|
123
|
-
// TODO: fix this
|
|
124
|
-
export const ALL_STAKING_POOLS: number[] = [];
|
|
122
|
+
export const ALL_STAKING_POOLS: number[] = [PLYWNEAR_POOL_ID];
|
|
125
123
|
export const INF = BN.from(2).pow(256).sub(1);
|
|
126
124
|
|
|
127
125
|
export const AIRDROP_START_TIMESTAMP = 1649858400;
|