@deserialize/swap-sdk 0.0.8 → 0.0.9

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/swapSDK.js CHANGED
@@ -193,7 +193,7 @@ class SwapSDK {
193
193
  address: new web3_js_1.PublicKey(token.address),
194
194
  chainId: token.chainId,
195
195
  decimals: token.decimals,
196
- logoURL: token.logoURL,
196
+ logoURI: token.logoURI,
197
197
  }));
198
198
  }
199
199
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deserialize/swap-sdk",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Swap SDK for the deserialize aggregator",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/swapSDK.ts CHANGED
@@ -286,7 +286,7 @@ export class SwapSDK {
286
286
  address: new PublicKey(token.address),
287
287
  chainId: token.chainId,
288
288
  decimals: token.decimals,
289
- logoURL: token.logoURL,
289
+ logoURI: token.logoURI,
290
290
  }));
291
291
  }
292
292