@deserialize/swap-sdk 0.0.12 → 0.0.13

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.d.ts CHANGED
@@ -84,7 +84,7 @@ export interface Token {
84
84
  address: PublicKey;
85
85
  chainId: number;
86
86
  decimals: number;
87
- logoURL: string;
87
+ logoURI: string;
88
88
  }
89
89
  /**
90
90
  * SwapSDK simplifies calling the swap endpoint as well as token-related endpoints.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deserialize/swap-sdk",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
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
@@ -102,7 +102,7 @@ export interface Token {
102
102
  address: PublicKey;
103
103
  chainId: number;
104
104
  decimals: number;
105
- logoURL: string;
105
+ logoURI: string;
106
106
  }
107
107
 
108
108
  /**