@0xsquid/squid-types 0.1.48 → 0.1.49

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.
@@ -27,6 +27,9 @@ export interface PathActionInternal {
27
27
  toToken: string;
28
28
  data: Record<string, any>;
29
29
  }
30
+ export interface Buckets {
31
+ [key: number]: string;
32
+ }
30
33
  export interface ActionBaseData {
31
34
  dex: DexName | Dex;
32
35
  chainId: string;
@@ -43,6 +46,7 @@ export interface ActionBaseData {
43
46
  poolId: string;
44
47
  tokenOutDenom: string;
45
48
  }[];
49
+ buckets: Buckets;
46
50
  address: string;
47
51
  wrapper: string;
48
52
  coinAddresses: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsquid/squid-types",
3
- "version": "0.1.48",
3
+ "version": "0.1.49",
4
4
  "description": "JS and TS types relating to 0xsquid related projects.",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",