@0xsquid/squid-types 0.1.144 → 0.1.146
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/path/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
58
|
+
fillerAddresses: FillerAddresses;
|
|
59
59
|
}
|
|
60
60
|
export interface PathAction {
|
|
61
61
|
type: ActionType;
|
package/dist/rfq/index.d.ts
CHANGED
package/dist/routes/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
164
|
+
fillerAddresses: FillerAddresses;
|
|
159
165
|
expiry: string;
|
|
160
166
|
}
|
|
161
167
|
export interface Integrator {
|
package/dist/routes/index.js.map
CHANGED
|
@@ -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;
|
|
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/dist/squid/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export interface ChainflipDepositAddressData {
|
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
|
-
export type ChainCall = EvmContractCall | CosmosCall;
|
|
52
|
+
export type ChainCall = EvmContractCall | CosmosCall | SuiCoralCall;
|
|
53
53
|
export interface EvmContractCall {
|
|
54
54
|
chainType: ChainType.EVM;
|
|
55
55
|
callType: SquidCallType;
|
|
@@ -165,3 +165,10 @@ export interface CosmosCctpCall {
|
|
|
165
165
|
burnToken: string;
|
|
166
166
|
};
|
|
167
167
|
}
|
|
168
|
+
export interface SuiCoralCall {
|
|
169
|
+
chainType: ChainType.SUI;
|
|
170
|
+
coralID: string;
|
|
171
|
+
coralStateId: string;
|
|
172
|
+
coinType: string;
|
|
173
|
+
tx: string;
|
|
174
|
+
}
|