@0xsquid/squid-types 0.1.144 → 0.1.145

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.
@@ -1,6 +1,6 @@
1
1
  import { Dex, DexName } from "../dexes";
2
2
  import { ChainData, ChainType } from "../chains";
3
- import { ActionType } from "../routes";
3
+ import { ActionType, FillerAddresses } from "../routes";
4
4
  import { Token } from "../tokens";
5
5
  import { WrapperType } from "wrappers";
6
6
  import { BridgeType } from "bridges";
@@ -55,7 +55,7 @@ export interface ActionBaseData {
55
55
  name: string;
56
56
  provider: string;
57
57
  liquidityProvider: string;
58
- fillerAddress: string;
58
+ fillerAddresses: FillerAddresses;
59
59
  }
60
60
  export interface PathAction {
61
61
  type: ActionType;
@@ -12,7 +12,8 @@ export declare enum HubEventType {
12
12
  export type Order = {
13
13
  fromAddress: string;
14
14
  toAddress: string;
15
- filler: string;
15
+ fillerFrom: string;
16
+ fillerTo: string;
16
17
  fromToken: string;
17
18
  toToken: string;
18
19
  expiry: string;
@@ -147,6 +147,12 @@ export interface CustomCallDetails {
147
147
  provider?: string;
148
148
  calls: ChainCall[];
149
149
  }
150
+ export interface FillerAddresses {
151
+ evm: string;
152
+ cosmos: string;
153
+ solana: string;
154
+ sui: string;
155
+ }
150
156
  export interface LiquidityProviderDetails {
151
157
  liquidityProvider: string;
152
158
  target: string;
@@ -155,7 +161,7 @@ export interface LiquidityProviderDetails {
155
161
  name: string;
156
162
  logoURI?: string;
157
163
  calls?: ChainCall[];
158
- fillerAddress: string;
164
+ fillerAddresses: FillerAddresses;
159
165
  expiry: string;
160
166
  }
161
167
  export interface Integrator {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":";;;AA2GA,IAAY,UAQX;AARD,WAAY,UAAU;IACpB,2BAAa,CAAA;IACb,2BAAa,CAAA;IACb,+BAAiB,CAAA;IACjB,2CAA6B,CAAA;IAC7B,+BAAiB,CAAA;IACjB,yBAAW,CAAA;IACX,yBAAW,CAAA;AACb,CAAC,EARW,UAAU,0BAAV,UAAU,QAQrB;AA6ED,IAAY,SAMX;AAND,WAAY,SAAS;IACnB,kCAAqB,CAAA;IACrB,sCAAyB,CAAA;IACzB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,0BAAa,CAAA;AACf,CAAC,EANW,SAAS,yBAAT,SAAS,QAMpB;AAqFD,IAAY,WAcX;AAdD,WAAY,WAAW;IACrB,yDAAU,CAAA;IACV,mEAAe,CAAA;IACf,+DAAa,CAAA;IACb,qDAAQ,CAAA;IACR,+DAAa,CAAA;IACb,yEAAkB,CAAA;IAClB,qEAAgB,CAAA;IAChB,2DAAW,CAAA;IACX,yDAAU,CAAA;IACV,mEAAe,CAAA;IACf,gEAAa,CAAA;IACb,0EAAkB,CAAA;IAClB,4DAAW,CAAA;AACb,CAAC,EAdW,WAAW,2BAAX,WAAW,QActB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":";;;AA2GA,IAAY,UAQX;AARD,WAAY,UAAU;IACpB,2BAAa,CAAA;IACb,2BAAa,CAAA;IACb,+BAAiB,CAAA;IACjB,2CAA6B,CAAA;IAC7B,+BAAiB,CAAA;IACjB,yBAAW,CAAA;IACX,yBAAW,CAAA;AACb,CAAC,EARW,UAAU,0BAAV,UAAU,QAQrB;AAoFD,IAAY,SAMX;AAND,WAAY,SAAS;IACnB,kCAAqB,CAAA;IACrB,sCAAyB,CAAA;IACzB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,0BAAa,CAAA;AACf,CAAC,EANW,SAAS,yBAAT,SAAS,QAMpB;AAqFD,IAAY,WAcX;AAdD,WAAY,WAAW;IACrB,yDAAU,CAAA;IACV,mEAAe,CAAA;IACf,+DAAa,CAAA;IACb,qDAAQ,CAAA;IACR,+DAAa,CAAA;IACb,yEAAkB,CAAA;IAClB,qEAAgB,CAAA;IAChB,2DAAW,CAAA;IACX,yDAAU,CAAA;IACV,mEAAe,CAAA;IACf,gEAAa,CAAA;IACb,0EAAkB,CAAA;IAClB,4DAAW,CAAA;AACb,CAAC,EAdW,WAAW,2BAAX,WAAW,QActB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsquid/squid-types",
3
- "version": "0.1.144",
3
+ "version": "0.1.145",
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",