@aurigami/sdk 1.4.5 → 1.4.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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.5",
2
+ "version": "1.4.6",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -120,7 +120,7 @@ function shouldFetchFromCoingecko(address: string) {
120
120
  export async function fetchPrice(address: Address, provider: providers.Provider): Promise<BigNumber> {
121
121
  if (hardcodePLYPrice && isSameAddress(address, networkAddresses.tokens.PLY)) return new BigNumber(0);
122
122
 
123
- // if (isSameAddress(address, networkAddresses.tokens.stNEAR)) return fetchStNEARPrice();
123
+ if (isSameAddress(address, networkAddresses.tokens.stNEAR)) return fetchStNEARPrice();
124
124
  if (shouldFetchFromCoingecko(address)) return fetchPriceFromCoingecko(address);
125
125
 
126
126
  const matchingAuToken = networkAddresses.auTokens.find((auToken) => {