@deserialize/swap-sdk 0.0.121 → 0.0.131

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
@@ -81,7 +81,7 @@ export interface SwapIxResult {
81
81
  export interface Token {
82
82
  name: string;
83
83
  symbol: string;
84
- address: PublicKey;
84
+ address: string;
85
85
  chainId: number;
86
86
  decimals: number;
87
87
  logoURI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deserialize/swap-sdk",
3
- "version": "0.0.121",
3
+ "version": "0.0.131",
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
@@ -99,7 +99,7 @@ export interface SwapIxResult {
99
99
  export interface Token {
100
100
  name: string;
101
101
  symbol: string;
102
- address: PublicKey;
102
+ address: string;
103
103
  chainId: number;
104
104
  decimals: number;
105
105
  logoURI: string;