@0xsquid/squid-types 0.1.97 → 0.1.98

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.
@@ -55,6 +55,7 @@ export interface ActionBaseData {
55
55
  name: string;
56
56
  provider: string;
57
57
  liquidityProvider: string;
58
+ fillerAddress: string;
58
59
  }
59
60
  export interface PathAction {
60
61
  type: ActionType;
@@ -9,3 +9,21 @@ export declare enum HubEventType {
9
9
  SETTLEMENT_FILLED = "SettlementFilled",
10
10
  SETTLEMENT_PROCESSED = "SettlementProcessed"
11
11
  }
12
+ export type Order = {
13
+ fromAddress: string;
14
+ toAddress: string;
15
+ filler: string;
16
+ fromToken: string;
17
+ toToken: string;
18
+ expiry: string;
19
+ fromAssetType: string;
20
+ toAssetType: string;
21
+ fromAmount: string;
22
+ tokenId: string;
23
+ fillAmount: string;
24
+ fillTokenId: string;
25
+ feeRate: string;
26
+ fromChain: string;
27
+ toChain: string;
28
+ postHookHash: string;
29
+ };
@@ -153,6 +153,8 @@ export interface LiquidityProviderDetails {
153
153
  name: string;
154
154
  logoURI?: string;
155
155
  calls?: ChainCall[];
156
+ fillerAddress: string;
157
+ expiry: string;
156
158
  }
157
159
  export interface Integrator {
158
160
  id: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":";;;AAyGA,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;AA2ED,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;AAoFD,IAAY,WAWX;AAXD,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;AACjB,CAAC,EAXW,WAAW,2BAAX,WAAW,QAWtB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":";;;AAyGA,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;AAoFD,IAAY,WAWX;AAXD,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;AACjB,CAAC,EAXW,WAAW,2BAAX,WAAW,QAWtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsquid/squid-types",
3
- "version": "0.1.97",
3
+ "version": "0.1.98",
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",