@chainflip/rpc 1.6.12 → 1.8.0
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/common.cjs +2 -0
- package/dist/common.d.cts +523 -408
- package/dist/common.d.ts +523 -408
- package/dist/common.mjs +3 -1
- package/dist/parsers.cjs +34 -2
- package/dist/parsers.d.cts +545 -459
- package/dist/parsers.d.ts +545 -459
- package/dist/parsers.mjs +33 -1
- package/package.json +3 -3
package/dist/common.d.cts
CHANGED
|
@@ -22,30 +22,62 @@ type AdditionalOrder = {
|
|
|
22
22
|
sell_amount: `0x${string}`;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
type CcmParams = {
|
|
26
|
+
message: HexString;
|
|
27
|
+
gas_budget: HexString;
|
|
28
|
+
};
|
|
29
|
+
type FillOrKillParams = {
|
|
30
|
+
refund_address: string;
|
|
31
|
+
retry_duration: number;
|
|
32
|
+
min_price: `0x${string}`;
|
|
33
|
+
};
|
|
34
|
+
type DcaParams = {
|
|
35
|
+
number_of_chunks: number;
|
|
36
|
+
chunk_interval: number;
|
|
37
|
+
};
|
|
25
38
|
type RpcRequest = WithHash<{
|
|
26
39
|
broker_requestSwapDepositAddress: [
|
|
27
40
|
sourceAsset: UncheckedAssetAndChain,
|
|
28
41
|
destinationAsset: UncheckedAssetAndChain,
|
|
29
42
|
destinationAddress: string,
|
|
30
43
|
brokerCommission: number,
|
|
31
|
-
ccmMetadata?: Nullish<
|
|
32
|
-
message: HexString;
|
|
33
|
-
gas_budget: HexString;
|
|
34
|
-
}>,
|
|
44
|
+
ccmMetadata?: Nullish<CcmParams>,
|
|
35
45
|
boostFee?: Nullish<number>,
|
|
36
46
|
affiliateFees?: Nullish<{
|
|
37
47
|
account: string;
|
|
38
48
|
bps: number;
|
|
39
49
|
}[]>,
|
|
40
|
-
fillOrKillParams?: Nullish<
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
fillOrKillParams?: Nullish<FillOrKillParams>,
|
|
51
|
+
dcaParams?: Nullish<DcaParams>
|
|
52
|
+
];
|
|
53
|
+
broker_request_swap_parameter_encoding: [
|
|
54
|
+
sourceAsset: UncheckedAssetAndChain,
|
|
55
|
+
destinationAsset: UncheckedAssetAndChain,
|
|
56
|
+
destinationAddress: string,
|
|
57
|
+
brokerCommission: number,
|
|
58
|
+
extraParameters: {
|
|
59
|
+
chain: 'Bitcoin';
|
|
60
|
+
min_output_amount: `0x${string}`;
|
|
61
|
+
retry_duration: number;
|
|
62
|
+
} | {
|
|
63
|
+
chain: 'Ethereum' | 'Arbitrum';
|
|
64
|
+
input_amount: `0x${string}`;
|
|
65
|
+
refund_parameters: FillOrKillParams;
|
|
66
|
+
} | {
|
|
67
|
+
chain: 'Solana';
|
|
68
|
+
from: string;
|
|
69
|
+
event_data_account: string;
|
|
70
|
+
input_amount: string;
|
|
71
|
+
refund_parameters: FillOrKillParams;
|
|
72
|
+
from_token_account?: string;
|
|
73
|
+
},
|
|
74
|
+
ccmParams?: Nullish<CcmParams>,
|
|
75
|
+
boostFee?: Nullish<number>,
|
|
76
|
+
affiliateFees?: Nullish<{
|
|
77
|
+
account: string;
|
|
78
|
+
bps: number;
|
|
79
|
+
}[]>,
|
|
80
|
+
dcaParams?: Nullish<DcaParams>
|
|
49
81
|
];
|
|
50
82
|
cf_account_info: [accountId: string];
|
|
51
83
|
cf_accounts: [];
|
|
@@ -135,6 +167,86 @@ declare const rpcResult: {
|
|
|
135
167
|
source_chain_expiry_block: string | number;
|
|
136
168
|
channel_opening_fee: string;
|
|
137
169
|
}>;
|
|
170
|
+
readonly broker_request_swap_parameter_encoding: z.ZodDiscriminatedUnion<"chain", [z.ZodObject<{
|
|
171
|
+
chain: z.ZodLiteral<"Bitcoin">;
|
|
172
|
+
nulldata_payload: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
173
|
+
deposit_address: z.ZodString;
|
|
174
|
+
}, "strip", z.ZodTypeAny, {
|
|
175
|
+
chain: "Bitcoin";
|
|
176
|
+
nulldata_payload: `0x${string}`;
|
|
177
|
+
deposit_address: string;
|
|
178
|
+
}, {
|
|
179
|
+
chain: "Bitcoin";
|
|
180
|
+
nulldata_payload: string;
|
|
181
|
+
deposit_address: string;
|
|
182
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
183
|
+
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
184
|
+
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
185
|
+
value: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
186
|
+
}, {
|
|
187
|
+
chain: z.ZodLiteral<"Ethereum">;
|
|
188
|
+
}>, "strip", z.ZodTypeAny, {
|
|
189
|
+
value: bigint;
|
|
190
|
+
chain: "Ethereum";
|
|
191
|
+
to: `0x${string}`;
|
|
192
|
+
calldata: `0x${string}`;
|
|
193
|
+
}, {
|
|
194
|
+
value: string | number;
|
|
195
|
+
chain: "Ethereum";
|
|
196
|
+
to: string;
|
|
197
|
+
calldata: string;
|
|
198
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
199
|
+
to: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
200
|
+
calldata: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
201
|
+
value: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
202
|
+
}, {
|
|
203
|
+
chain: z.ZodLiteral<"Arbitrum">;
|
|
204
|
+
}>, "strip", z.ZodTypeAny, {
|
|
205
|
+
value: bigint;
|
|
206
|
+
chain: "Arbitrum";
|
|
207
|
+
to: `0x${string}`;
|
|
208
|
+
calldata: `0x${string}`;
|
|
209
|
+
}, {
|
|
210
|
+
value: string | number;
|
|
211
|
+
chain: "Arbitrum";
|
|
212
|
+
to: string;
|
|
213
|
+
calldata: string;
|
|
214
|
+
}>, z.ZodObject<{
|
|
215
|
+
chain: z.ZodLiteral<"Solana">;
|
|
216
|
+
program_id: z.ZodString;
|
|
217
|
+
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
218
|
+
accounts: z.ZodArray<z.ZodObject<{
|
|
219
|
+
pubkey: z.ZodString;
|
|
220
|
+
is_signer: z.ZodBoolean;
|
|
221
|
+
is_writable: z.ZodBoolean;
|
|
222
|
+
}, "strip", z.ZodTypeAny, {
|
|
223
|
+
pubkey: string;
|
|
224
|
+
is_signer: boolean;
|
|
225
|
+
is_writable: boolean;
|
|
226
|
+
}, {
|
|
227
|
+
pubkey: string;
|
|
228
|
+
is_signer: boolean;
|
|
229
|
+
is_writable: boolean;
|
|
230
|
+
}>, "many">;
|
|
231
|
+
}, "strip", z.ZodTypeAny, {
|
|
232
|
+
chain: "Solana";
|
|
233
|
+
program_id: string;
|
|
234
|
+
data: `0x${string}`;
|
|
235
|
+
accounts: {
|
|
236
|
+
pubkey: string;
|
|
237
|
+
is_signer: boolean;
|
|
238
|
+
is_writable: boolean;
|
|
239
|
+
}[];
|
|
240
|
+
}, {
|
|
241
|
+
chain: "Solana";
|
|
242
|
+
program_id: string;
|
|
243
|
+
data: string;
|
|
244
|
+
accounts: {
|
|
245
|
+
pubkey: string;
|
|
246
|
+
is_signer: boolean;
|
|
247
|
+
is_writable: boolean;
|
|
248
|
+
}[];
|
|
249
|
+
}>]>;
|
|
138
250
|
readonly cf_accounts: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
139
251
|
readonly cf_account_info: z.ZodUnion<[z.ZodObject<{
|
|
140
252
|
role: z.ZodLiteral<"unregistered">;
|
|
@@ -209,9 +321,6 @@ declare const rpcResult: {
|
|
|
209
321
|
FLIP: bigint;
|
|
210
322
|
USDT: bigint;
|
|
211
323
|
};
|
|
212
|
-
Polkadot: {
|
|
213
|
-
DOT: bigint;
|
|
214
|
-
};
|
|
215
324
|
Arbitrum: {
|
|
216
325
|
ETH: bigint;
|
|
217
326
|
USDC: bigint;
|
|
@@ -220,6 +329,9 @@ declare const rpcResult: {
|
|
|
220
329
|
USDC: bigint;
|
|
221
330
|
SOL: bigint;
|
|
222
331
|
};
|
|
332
|
+
Polkadot: {
|
|
333
|
+
DOT: bigint;
|
|
334
|
+
};
|
|
223
335
|
}, {
|
|
224
336
|
Bitcoin: {
|
|
225
337
|
BTC: string | number;
|
|
@@ -230,18 +342,19 @@ declare const rpcResult: {
|
|
|
230
342
|
FLIP: string | number;
|
|
231
343
|
USDT: string | number;
|
|
232
344
|
};
|
|
233
|
-
Polkadot: {
|
|
234
|
-
DOT: string | number;
|
|
235
|
-
};
|
|
236
345
|
Arbitrum: {
|
|
237
346
|
ETH: string | number;
|
|
238
347
|
USDC: string | number;
|
|
239
348
|
};
|
|
349
|
+
Polkadot: {
|
|
350
|
+
DOT: string | number;
|
|
351
|
+
};
|
|
240
352
|
Solana?: {
|
|
241
353
|
USDC?: string | number | undefined;
|
|
242
354
|
SOL?: string | number | undefined;
|
|
243
355
|
} | undefined;
|
|
244
356
|
}>;
|
|
357
|
+
btc_vault_deposit_address: z.ZodNullable<z.ZodString>;
|
|
245
358
|
}, "strip", z.ZodTypeAny, {
|
|
246
359
|
role: "broker";
|
|
247
360
|
flip_balance: bigint;
|
|
@@ -255,9 +368,6 @@ declare const rpcResult: {
|
|
|
255
368
|
FLIP: bigint;
|
|
256
369
|
USDT: bigint;
|
|
257
370
|
};
|
|
258
|
-
Polkadot: {
|
|
259
|
-
DOT: bigint;
|
|
260
|
-
};
|
|
261
371
|
Arbitrum: {
|
|
262
372
|
ETH: bigint;
|
|
263
373
|
USDC: bigint;
|
|
@@ -266,7 +376,11 @@ declare const rpcResult: {
|
|
|
266
376
|
USDC: bigint;
|
|
267
377
|
SOL: bigint;
|
|
268
378
|
};
|
|
379
|
+
Polkadot: {
|
|
380
|
+
DOT: bigint;
|
|
381
|
+
};
|
|
269
382
|
};
|
|
383
|
+
btc_vault_deposit_address: string | null;
|
|
270
384
|
}, {
|
|
271
385
|
role: "broker";
|
|
272
386
|
flip_balance: string | number;
|
|
@@ -280,18 +394,19 @@ declare const rpcResult: {
|
|
|
280
394
|
FLIP: string | number;
|
|
281
395
|
USDT: string | number;
|
|
282
396
|
};
|
|
283
|
-
Polkadot: {
|
|
284
|
-
DOT: string | number;
|
|
285
|
-
};
|
|
286
397
|
Arbitrum: {
|
|
287
398
|
ETH: string | number;
|
|
288
399
|
USDC: string | number;
|
|
289
400
|
};
|
|
401
|
+
Polkadot: {
|
|
402
|
+
DOT: string | number;
|
|
403
|
+
};
|
|
290
404
|
Solana?: {
|
|
291
405
|
USDC?: string | number | undefined;
|
|
292
406
|
SOL?: string | number | undefined;
|
|
293
407
|
} | undefined;
|
|
294
408
|
};
|
|
409
|
+
btc_vault_deposit_address: string | null;
|
|
295
410
|
}>, z.ZodObject<{
|
|
296
411
|
role: z.ZodLiteral<"liquidity_provider">;
|
|
297
412
|
balances: z.ZodObject<{
|
|
@@ -355,9 +470,6 @@ declare const rpcResult: {
|
|
|
355
470
|
FLIP: bigint;
|
|
356
471
|
USDT: bigint;
|
|
357
472
|
};
|
|
358
|
-
Polkadot: {
|
|
359
|
-
DOT: bigint;
|
|
360
|
-
};
|
|
361
473
|
Arbitrum: {
|
|
362
474
|
ETH: bigint;
|
|
363
475
|
USDC: bigint;
|
|
@@ -366,6 +478,9 @@ declare const rpcResult: {
|
|
|
366
478
|
USDC: bigint;
|
|
367
479
|
SOL: bigint;
|
|
368
480
|
};
|
|
481
|
+
Polkadot: {
|
|
482
|
+
DOT: bigint;
|
|
483
|
+
};
|
|
369
484
|
}, {
|
|
370
485
|
Bitcoin: {
|
|
371
486
|
BTC: string | number;
|
|
@@ -376,13 +491,13 @@ declare const rpcResult: {
|
|
|
376
491
|
FLIP: string | number;
|
|
377
492
|
USDT: string | number;
|
|
378
493
|
};
|
|
379
|
-
Polkadot: {
|
|
380
|
-
DOT: string | number;
|
|
381
|
-
};
|
|
382
494
|
Arbitrum: {
|
|
383
495
|
ETH: string | number;
|
|
384
496
|
USDC: string | number;
|
|
385
497
|
};
|
|
498
|
+
Polkadot: {
|
|
499
|
+
DOT: string | number;
|
|
500
|
+
};
|
|
386
501
|
Solana?: {
|
|
387
502
|
USDC?: string | number | undefined;
|
|
388
503
|
SOL?: string | number | undefined;
|
|
@@ -397,14 +512,14 @@ declare const rpcResult: {
|
|
|
397
512
|
}, "strip", z.ZodTypeAny, {
|
|
398
513
|
Bitcoin: string | null;
|
|
399
514
|
Ethereum: string | null;
|
|
400
|
-
Polkadot: string | null;
|
|
401
515
|
Arbitrum: string | null;
|
|
402
516
|
Solana: string | null;
|
|
517
|
+
Polkadot: string | null;
|
|
403
518
|
}, {
|
|
404
519
|
Bitcoin: string | null;
|
|
405
520
|
Ethereum: string | null;
|
|
406
|
-
Polkadot: string | null;
|
|
407
521
|
Arbitrum: string | null;
|
|
522
|
+
Polkadot: string | null;
|
|
408
523
|
Solana?: string | null | undefined;
|
|
409
524
|
}>;
|
|
410
525
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -469,9 +584,6 @@ declare const rpcResult: {
|
|
|
469
584
|
FLIP: bigint;
|
|
470
585
|
USDT: bigint;
|
|
471
586
|
};
|
|
472
|
-
Polkadot: {
|
|
473
|
-
DOT: bigint;
|
|
474
|
-
};
|
|
475
587
|
Arbitrum: {
|
|
476
588
|
ETH: bigint;
|
|
477
589
|
USDC: bigint;
|
|
@@ -480,6 +592,9 @@ declare const rpcResult: {
|
|
|
480
592
|
USDC: bigint;
|
|
481
593
|
SOL: bigint;
|
|
482
594
|
};
|
|
595
|
+
Polkadot: {
|
|
596
|
+
DOT: bigint;
|
|
597
|
+
};
|
|
483
598
|
}, {
|
|
484
599
|
Bitcoin: {
|
|
485
600
|
BTC: string | number;
|
|
@@ -490,13 +605,13 @@ declare const rpcResult: {
|
|
|
490
605
|
FLIP: string | number;
|
|
491
606
|
USDT: string | number;
|
|
492
607
|
};
|
|
493
|
-
Polkadot: {
|
|
494
|
-
DOT: string | number;
|
|
495
|
-
};
|
|
496
608
|
Arbitrum: {
|
|
497
609
|
ETH: string | number;
|
|
498
610
|
USDC: string | number;
|
|
499
611
|
};
|
|
612
|
+
Polkadot: {
|
|
613
|
+
DOT: string | number;
|
|
614
|
+
};
|
|
500
615
|
Solana?: {
|
|
501
616
|
USDC?: string | number | undefined;
|
|
502
617
|
SOL?: string | number | undefined;
|
|
@@ -893,15 +1008,6 @@ declare const rpcResult: {
|
|
|
893
1008
|
is_withdrawing: boolean;
|
|
894
1009
|
}[];
|
|
895
1010
|
};
|
|
896
|
-
Polkadot: {
|
|
897
|
-
DOT: {
|
|
898
|
-
fee_tier: number;
|
|
899
|
-
total_balance: bigint;
|
|
900
|
-
available_balance: bigint;
|
|
901
|
-
in_use_balance: bigint;
|
|
902
|
-
is_withdrawing: boolean;
|
|
903
|
-
}[];
|
|
904
|
-
};
|
|
905
1011
|
Arbitrum: {
|
|
906
1012
|
ETH: {
|
|
907
1013
|
fee_tier: number;
|
|
@@ -934,6 +1040,15 @@ declare const rpcResult: {
|
|
|
934
1040
|
is_withdrawing: boolean;
|
|
935
1041
|
}[];
|
|
936
1042
|
};
|
|
1043
|
+
Polkadot: {
|
|
1044
|
+
DOT: {
|
|
1045
|
+
fee_tier: number;
|
|
1046
|
+
total_balance: bigint;
|
|
1047
|
+
available_balance: bigint;
|
|
1048
|
+
in_use_balance: bigint;
|
|
1049
|
+
is_withdrawing: boolean;
|
|
1050
|
+
}[];
|
|
1051
|
+
};
|
|
937
1052
|
}, {
|
|
938
1053
|
Bitcoin: {
|
|
939
1054
|
BTC: {
|
|
@@ -974,24 +1089,24 @@ declare const rpcResult: {
|
|
|
974
1089
|
is_withdrawing: boolean;
|
|
975
1090
|
}[];
|
|
976
1091
|
};
|
|
977
|
-
|
|
978
|
-
|
|
1092
|
+
Arbitrum: {
|
|
1093
|
+
ETH: {
|
|
979
1094
|
fee_tier: number;
|
|
980
1095
|
total_balance: string;
|
|
981
1096
|
available_balance: string;
|
|
982
1097
|
in_use_balance: string;
|
|
983
1098
|
is_withdrawing: boolean;
|
|
984
1099
|
}[];
|
|
985
|
-
|
|
986
|
-
Arbitrum: {
|
|
987
|
-
ETH: {
|
|
1100
|
+
USDC: {
|
|
988
1101
|
fee_tier: number;
|
|
989
1102
|
total_balance: string;
|
|
990
1103
|
available_balance: string;
|
|
991
1104
|
in_use_balance: string;
|
|
992
1105
|
is_withdrawing: boolean;
|
|
993
1106
|
}[];
|
|
994
|
-
|
|
1107
|
+
};
|
|
1108
|
+
Polkadot: {
|
|
1109
|
+
DOT: {
|
|
995
1110
|
fee_tier: number;
|
|
996
1111
|
total_balance: string;
|
|
997
1112
|
available_balance: string;
|
|
@@ -1029,9 +1144,6 @@ declare const rpcResult: {
|
|
|
1029
1144
|
FLIP: bigint;
|
|
1030
1145
|
USDT: bigint;
|
|
1031
1146
|
};
|
|
1032
|
-
Polkadot: {
|
|
1033
|
-
DOT: bigint;
|
|
1034
|
-
};
|
|
1035
1147
|
Arbitrum: {
|
|
1036
1148
|
ETH: bigint;
|
|
1037
1149
|
USDC: bigint;
|
|
@@ -1040,6 +1152,9 @@ declare const rpcResult: {
|
|
|
1040
1152
|
USDC: bigint;
|
|
1041
1153
|
SOL: bigint;
|
|
1042
1154
|
};
|
|
1155
|
+
Polkadot: {
|
|
1156
|
+
DOT: bigint;
|
|
1157
|
+
};
|
|
1043
1158
|
};
|
|
1044
1159
|
balances: {
|
|
1045
1160
|
Bitcoin: {
|
|
@@ -1051,9 +1166,6 @@ declare const rpcResult: {
|
|
|
1051
1166
|
FLIP: bigint;
|
|
1052
1167
|
USDT: bigint;
|
|
1053
1168
|
};
|
|
1054
|
-
Polkadot: {
|
|
1055
|
-
DOT: bigint;
|
|
1056
|
-
};
|
|
1057
1169
|
Arbitrum: {
|
|
1058
1170
|
ETH: bigint;
|
|
1059
1171
|
USDC: bigint;
|
|
@@ -1062,13 +1174,16 @@ declare const rpcResult: {
|
|
|
1062
1174
|
USDC: bigint;
|
|
1063
1175
|
SOL: bigint;
|
|
1064
1176
|
};
|
|
1177
|
+
Polkadot: {
|
|
1178
|
+
DOT: bigint;
|
|
1179
|
+
};
|
|
1065
1180
|
};
|
|
1066
1181
|
refund_addresses: {
|
|
1067
1182
|
Bitcoin: string | null;
|
|
1068
1183
|
Ethereum: string | null;
|
|
1069
|
-
Polkadot: string | null;
|
|
1070
1184
|
Arbitrum: string | null;
|
|
1071
1185
|
Solana: string | null;
|
|
1186
|
+
Polkadot: string | null;
|
|
1072
1187
|
};
|
|
1073
1188
|
boost_balances: {
|
|
1074
1189
|
Bitcoin: {
|
|
@@ -1110,15 +1225,6 @@ declare const rpcResult: {
|
|
|
1110
1225
|
is_withdrawing: boolean;
|
|
1111
1226
|
}[];
|
|
1112
1227
|
};
|
|
1113
|
-
Polkadot: {
|
|
1114
|
-
DOT: {
|
|
1115
|
-
fee_tier: number;
|
|
1116
|
-
total_balance: bigint;
|
|
1117
|
-
available_balance: bigint;
|
|
1118
|
-
in_use_balance: bigint;
|
|
1119
|
-
is_withdrawing: boolean;
|
|
1120
|
-
}[];
|
|
1121
|
-
};
|
|
1122
1228
|
Arbitrum: {
|
|
1123
1229
|
ETH: {
|
|
1124
1230
|
fee_tier: number;
|
|
@@ -1151,6 +1257,15 @@ declare const rpcResult: {
|
|
|
1151
1257
|
is_withdrawing: boolean;
|
|
1152
1258
|
}[];
|
|
1153
1259
|
};
|
|
1260
|
+
Polkadot: {
|
|
1261
|
+
DOT: {
|
|
1262
|
+
fee_tier: number;
|
|
1263
|
+
total_balance: bigint;
|
|
1264
|
+
available_balance: bigint;
|
|
1265
|
+
in_use_balance: bigint;
|
|
1266
|
+
is_withdrawing: boolean;
|
|
1267
|
+
}[];
|
|
1268
|
+
};
|
|
1154
1269
|
};
|
|
1155
1270
|
}, {
|
|
1156
1271
|
role: "liquidity_provider";
|
|
@@ -1165,13 +1280,13 @@ declare const rpcResult: {
|
|
|
1165
1280
|
FLIP: string | number;
|
|
1166
1281
|
USDT: string | number;
|
|
1167
1282
|
};
|
|
1168
|
-
Polkadot: {
|
|
1169
|
-
DOT: string | number;
|
|
1170
|
-
};
|
|
1171
1283
|
Arbitrum: {
|
|
1172
1284
|
ETH: string | number;
|
|
1173
1285
|
USDC: string | number;
|
|
1174
1286
|
};
|
|
1287
|
+
Polkadot: {
|
|
1288
|
+
DOT: string | number;
|
|
1289
|
+
};
|
|
1175
1290
|
Solana?: {
|
|
1176
1291
|
USDC?: string | number | undefined;
|
|
1177
1292
|
SOL?: string | number | undefined;
|
|
@@ -1187,13 +1302,13 @@ declare const rpcResult: {
|
|
|
1187
1302
|
FLIP: string | number;
|
|
1188
1303
|
USDT: string | number;
|
|
1189
1304
|
};
|
|
1190
|
-
Polkadot: {
|
|
1191
|
-
DOT: string | number;
|
|
1192
|
-
};
|
|
1193
1305
|
Arbitrum: {
|
|
1194
1306
|
ETH: string | number;
|
|
1195
1307
|
USDC: string | number;
|
|
1196
1308
|
};
|
|
1309
|
+
Polkadot: {
|
|
1310
|
+
DOT: string | number;
|
|
1311
|
+
};
|
|
1197
1312
|
Solana?: {
|
|
1198
1313
|
USDC?: string | number | undefined;
|
|
1199
1314
|
SOL?: string | number | undefined;
|
|
@@ -1202,8 +1317,8 @@ declare const rpcResult: {
|
|
|
1202
1317
|
refund_addresses: {
|
|
1203
1318
|
Bitcoin: string | null;
|
|
1204
1319
|
Ethereum: string | null;
|
|
1205
|
-
Polkadot: string | null;
|
|
1206
1320
|
Arbitrum: string | null;
|
|
1321
|
+
Polkadot: string | null;
|
|
1207
1322
|
Solana?: string | null | undefined;
|
|
1208
1323
|
};
|
|
1209
1324
|
boost_balances: {
|
|
@@ -1246,24 +1361,24 @@ declare const rpcResult: {
|
|
|
1246
1361
|
is_withdrawing: boolean;
|
|
1247
1362
|
}[];
|
|
1248
1363
|
};
|
|
1249
|
-
|
|
1250
|
-
|
|
1364
|
+
Arbitrum: {
|
|
1365
|
+
ETH: {
|
|
1251
1366
|
fee_tier: number;
|
|
1252
1367
|
total_balance: string;
|
|
1253
1368
|
available_balance: string;
|
|
1254
1369
|
in_use_balance: string;
|
|
1255
1370
|
is_withdrawing: boolean;
|
|
1256
1371
|
}[];
|
|
1257
|
-
|
|
1258
|
-
Arbitrum: {
|
|
1259
|
-
ETH: {
|
|
1372
|
+
USDC: {
|
|
1260
1373
|
fee_tier: number;
|
|
1261
1374
|
total_balance: string;
|
|
1262
1375
|
available_balance: string;
|
|
1263
1376
|
in_use_balance: string;
|
|
1264
1377
|
is_withdrawing: boolean;
|
|
1265
1378
|
}[];
|
|
1266
|
-
|
|
1379
|
+
};
|
|
1380
|
+
Polkadot: {
|
|
1381
|
+
DOT: {
|
|
1267
1382
|
fee_tier: number;
|
|
1268
1383
|
total_balance: string;
|
|
1269
1384
|
available_balance: string;
|
|
@@ -1621,9 +1736,6 @@ declare const rpcResult: {
|
|
|
1621
1736
|
FLIP: bigint;
|
|
1622
1737
|
USDT: bigint;
|
|
1623
1738
|
};
|
|
1624
|
-
Polkadot: {
|
|
1625
|
-
DOT: bigint;
|
|
1626
|
-
};
|
|
1627
1739
|
Arbitrum: {
|
|
1628
1740
|
ETH: bigint;
|
|
1629
1741
|
USDC: bigint;
|
|
@@ -1632,6 +1744,9 @@ declare const rpcResult: {
|
|
|
1632
1744
|
USDC: bigint;
|
|
1633
1745
|
SOL: bigint;
|
|
1634
1746
|
};
|
|
1747
|
+
Polkadot: {
|
|
1748
|
+
DOT: bigint;
|
|
1749
|
+
};
|
|
1635
1750
|
}, {
|
|
1636
1751
|
Bitcoin: {
|
|
1637
1752
|
BTC: string | number;
|
|
@@ -1642,13 +1757,13 @@ declare const rpcResult: {
|
|
|
1642
1757
|
FLIP: string | number;
|
|
1643
1758
|
USDT: string | number;
|
|
1644
1759
|
};
|
|
1645
|
-
Polkadot: {
|
|
1646
|
-
DOT: string | number;
|
|
1647
|
-
};
|
|
1648
1760
|
Arbitrum: {
|
|
1649
1761
|
ETH: string | number;
|
|
1650
1762
|
USDC: string | number;
|
|
1651
1763
|
};
|
|
1764
|
+
Polkadot: {
|
|
1765
|
+
DOT: string | number;
|
|
1766
|
+
};
|
|
1652
1767
|
Solana?: {
|
|
1653
1768
|
USDC?: string | number | undefined;
|
|
1654
1769
|
SOL?: string | number | undefined;
|
|
@@ -1715,9 +1830,6 @@ declare const rpcResult: {
|
|
|
1715
1830
|
FLIP: bigint | null;
|
|
1716
1831
|
USDT: bigint | null;
|
|
1717
1832
|
};
|
|
1718
|
-
Polkadot: {
|
|
1719
|
-
DOT: bigint | null;
|
|
1720
|
-
};
|
|
1721
1833
|
Arbitrum: {
|
|
1722
1834
|
ETH: bigint | null;
|
|
1723
1835
|
USDC: bigint | null;
|
|
@@ -1726,6 +1838,9 @@ declare const rpcResult: {
|
|
|
1726
1838
|
USDC: bigint | null;
|
|
1727
1839
|
SOL: bigint | null;
|
|
1728
1840
|
};
|
|
1841
|
+
Polkadot: {
|
|
1842
|
+
DOT: bigint | null;
|
|
1843
|
+
};
|
|
1729
1844
|
}, {
|
|
1730
1845
|
Bitcoin: {
|
|
1731
1846
|
BTC: string | number | null;
|
|
@@ -1736,13 +1851,13 @@ declare const rpcResult: {
|
|
|
1736
1851
|
FLIP: string | number | null;
|
|
1737
1852
|
USDT: string | number | null;
|
|
1738
1853
|
};
|
|
1739
|
-
Polkadot: {
|
|
1740
|
-
DOT: string | number | null;
|
|
1741
|
-
};
|
|
1742
1854
|
Arbitrum: {
|
|
1743
1855
|
ETH: string | number | null;
|
|
1744
1856
|
USDC: string | number | null;
|
|
1745
1857
|
};
|
|
1858
|
+
Polkadot: {
|
|
1859
|
+
DOT: string | number | null;
|
|
1860
|
+
};
|
|
1746
1861
|
Solana?: {
|
|
1747
1862
|
USDC?: string | number | null | undefined;
|
|
1748
1863
|
SOL?: string | number | null | undefined;
|
|
@@ -1809,9 +1924,6 @@ declare const rpcResult: {
|
|
|
1809
1924
|
FLIP: bigint | null;
|
|
1810
1925
|
USDT: bigint | null;
|
|
1811
1926
|
};
|
|
1812
|
-
Polkadot: {
|
|
1813
|
-
DOT: bigint | null;
|
|
1814
|
-
};
|
|
1815
1927
|
Arbitrum: {
|
|
1816
1928
|
ETH: bigint | null;
|
|
1817
1929
|
USDC: bigint | null;
|
|
@@ -1820,6 +1932,9 @@ declare const rpcResult: {
|
|
|
1820
1932
|
USDC: bigint | null;
|
|
1821
1933
|
SOL: bigint | null;
|
|
1822
1934
|
};
|
|
1935
|
+
Polkadot: {
|
|
1936
|
+
DOT: bigint | null;
|
|
1937
|
+
};
|
|
1823
1938
|
}, {
|
|
1824
1939
|
Bitcoin: {
|
|
1825
1940
|
BTC: string | number | null;
|
|
@@ -1830,13 +1945,13 @@ declare const rpcResult: {
|
|
|
1830
1945
|
FLIP: string | number | null;
|
|
1831
1946
|
USDT: string | number | null;
|
|
1832
1947
|
};
|
|
1833
|
-
Polkadot: {
|
|
1834
|
-
DOT: string | number | null;
|
|
1835
|
-
};
|
|
1836
1948
|
Arbitrum: {
|
|
1837
1949
|
ETH: string | number | null;
|
|
1838
1950
|
USDC: string | number | null;
|
|
1839
1951
|
};
|
|
1952
|
+
Polkadot: {
|
|
1953
|
+
DOT: string | number | null;
|
|
1954
|
+
};
|
|
1840
1955
|
Solana?: {
|
|
1841
1956
|
USDC?: string | number | null | undefined;
|
|
1842
1957
|
SOL?: string | number | null | undefined;
|
|
@@ -1851,14 +1966,14 @@ declare const rpcResult: {
|
|
|
1851
1966
|
}, "strip", z.ZodTypeAny, {
|
|
1852
1967
|
Bitcoin: number | null;
|
|
1853
1968
|
Ethereum: number | null;
|
|
1854
|
-
Polkadot: number | null;
|
|
1855
1969
|
Arbitrum: number | null;
|
|
1856
1970
|
Solana: number | null;
|
|
1971
|
+
Polkadot: number | null;
|
|
1857
1972
|
}, {
|
|
1858
1973
|
Bitcoin: number | null;
|
|
1859
1974
|
Ethereum: number | null;
|
|
1860
|
-
Polkadot: number | null;
|
|
1861
1975
|
Arbitrum: number | null;
|
|
1976
|
+
Polkadot: number | null;
|
|
1862
1977
|
Solana?: number | null | undefined;
|
|
1863
1978
|
}>;
|
|
1864
1979
|
egress_dust_limits: z.ZodObject<{
|
|
@@ -1922,9 +2037,6 @@ declare const rpcResult: {
|
|
|
1922
2037
|
FLIP: bigint;
|
|
1923
2038
|
USDT: bigint;
|
|
1924
2039
|
};
|
|
1925
|
-
Polkadot: {
|
|
1926
|
-
DOT: bigint;
|
|
1927
|
-
};
|
|
1928
2040
|
Arbitrum: {
|
|
1929
2041
|
ETH: bigint;
|
|
1930
2042
|
USDC: bigint;
|
|
@@ -1933,6 +2045,9 @@ declare const rpcResult: {
|
|
|
1933
2045
|
USDC: bigint;
|
|
1934
2046
|
SOL: bigint;
|
|
1935
2047
|
};
|
|
2048
|
+
Polkadot: {
|
|
2049
|
+
DOT: bigint;
|
|
2050
|
+
};
|
|
1936
2051
|
}, {
|
|
1937
2052
|
Bitcoin: {
|
|
1938
2053
|
BTC: string | number;
|
|
@@ -1943,13 +2058,13 @@ declare const rpcResult: {
|
|
|
1943
2058
|
FLIP: string | number;
|
|
1944
2059
|
USDT: string | number;
|
|
1945
2060
|
};
|
|
1946
|
-
Polkadot: {
|
|
1947
|
-
DOT: string | number;
|
|
1948
|
-
};
|
|
1949
2061
|
Arbitrum: {
|
|
1950
2062
|
ETH: string | number;
|
|
1951
2063
|
USDC: string | number;
|
|
1952
2064
|
};
|
|
2065
|
+
Polkadot: {
|
|
2066
|
+
DOT: string | number;
|
|
2067
|
+
};
|
|
1953
2068
|
Solana?: {
|
|
1954
2069
|
USDC?: string | number | undefined;
|
|
1955
2070
|
SOL?: string | number | undefined;
|
|
@@ -1964,14 +2079,14 @@ declare const rpcResult: {
|
|
|
1964
2079
|
}, "strip", z.ZodTypeAny, {
|
|
1965
2080
|
Bitcoin: bigint;
|
|
1966
2081
|
Ethereum: bigint;
|
|
1967
|
-
Polkadot: bigint;
|
|
1968
2082
|
Arbitrum: bigint;
|
|
1969
2083
|
Solana: bigint;
|
|
2084
|
+
Polkadot: bigint;
|
|
1970
2085
|
}, {
|
|
1971
2086
|
Bitcoin: string | number;
|
|
1972
2087
|
Ethereum: string | number;
|
|
1973
|
-
Polkadot: string | number;
|
|
1974
2088
|
Arbitrum: string | number;
|
|
2089
|
+
Polkadot: string | number;
|
|
1975
2090
|
Solana?: string | number | undefined;
|
|
1976
2091
|
}>;
|
|
1977
2092
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -1983,14 +2098,14 @@ declare const rpcResult: {
|
|
|
1983
2098
|
}, "strip", z.ZodTypeAny, {
|
|
1984
2099
|
Bitcoin: number;
|
|
1985
2100
|
Ethereum: number;
|
|
1986
|
-
Polkadot: number;
|
|
1987
2101
|
Arbitrum: number;
|
|
1988
2102
|
Solana: number;
|
|
2103
|
+
Polkadot: number;
|
|
1989
2104
|
}, {
|
|
1990
2105
|
Bitcoin: number;
|
|
1991
2106
|
Ethereum: number;
|
|
1992
|
-
Polkadot: number;
|
|
1993
2107
|
Arbitrum: number;
|
|
2108
|
+
Polkadot: number;
|
|
1994
2109
|
Solana?: number | undefined;
|
|
1995
2110
|
}>>>;
|
|
1996
2111
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2004,9 +2119,6 @@ declare const rpcResult: {
|
|
|
2004
2119
|
FLIP: bigint;
|
|
2005
2120
|
USDT: bigint;
|
|
2006
2121
|
};
|
|
2007
|
-
Polkadot: {
|
|
2008
|
-
DOT: bigint;
|
|
2009
|
-
};
|
|
2010
2122
|
Arbitrum: {
|
|
2011
2123
|
ETH: bigint;
|
|
2012
2124
|
USDC: bigint;
|
|
@@ -2015,6 +2127,9 @@ declare const rpcResult: {
|
|
|
2015
2127
|
USDC: bigint;
|
|
2016
2128
|
SOL: bigint;
|
|
2017
2129
|
};
|
|
2130
|
+
Polkadot: {
|
|
2131
|
+
DOT: bigint;
|
|
2132
|
+
};
|
|
2018
2133
|
};
|
|
2019
2134
|
ingress_fees: {
|
|
2020
2135
|
Bitcoin: {
|
|
@@ -2026,9 +2141,6 @@ declare const rpcResult: {
|
|
|
2026
2141
|
FLIP: bigint | null;
|
|
2027
2142
|
USDT: bigint | null;
|
|
2028
2143
|
};
|
|
2029
|
-
Polkadot: {
|
|
2030
|
-
DOT: bigint | null;
|
|
2031
|
-
};
|
|
2032
2144
|
Arbitrum: {
|
|
2033
2145
|
ETH: bigint | null;
|
|
2034
2146
|
USDC: bigint | null;
|
|
@@ -2037,6 +2149,9 @@ declare const rpcResult: {
|
|
|
2037
2149
|
USDC: bigint | null;
|
|
2038
2150
|
SOL: bigint | null;
|
|
2039
2151
|
};
|
|
2152
|
+
Polkadot: {
|
|
2153
|
+
DOT: bigint | null;
|
|
2154
|
+
};
|
|
2040
2155
|
};
|
|
2041
2156
|
egress_fees: {
|
|
2042
2157
|
Bitcoin: {
|
|
@@ -2048,9 +2163,6 @@ declare const rpcResult: {
|
|
|
2048
2163
|
FLIP: bigint | null;
|
|
2049
2164
|
USDT: bigint | null;
|
|
2050
2165
|
};
|
|
2051
|
-
Polkadot: {
|
|
2052
|
-
DOT: bigint | null;
|
|
2053
|
-
};
|
|
2054
2166
|
Arbitrum: {
|
|
2055
2167
|
ETH: bigint | null;
|
|
2056
2168
|
USDC: bigint | null;
|
|
@@ -2059,13 +2171,16 @@ declare const rpcResult: {
|
|
|
2059
2171
|
USDC: bigint | null;
|
|
2060
2172
|
SOL: bigint | null;
|
|
2061
2173
|
};
|
|
2174
|
+
Polkadot: {
|
|
2175
|
+
DOT: bigint | null;
|
|
2176
|
+
};
|
|
2062
2177
|
};
|
|
2063
2178
|
witness_safety_margins: {
|
|
2064
2179
|
Bitcoin: number | null;
|
|
2065
2180
|
Ethereum: number | null;
|
|
2066
|
-
Polkadot: number | null;
|
|
2067
2181
|
Arbitrum: number | null;
|
|
2068
2182
|
Solana: number | null;
|
|
2183
|
+
Polkadot: number | null;
|
|
2069
2184
|
};
|
|
2070
2185
|
egress_dust_limits: {
|
|
2071
2186
|
Bitcoin: {
|
|
@@ -2077,9 +2192,6 @@ declare const rpcResult: {
|
|
|
2077
2192
|
FLIP: bigint;
|
|
2078
2193
|
USDT: bigint;
|
|
2079
2194
|
};
|
|
2080
|
-
Polkadot: {
|
|
2081
|
-
DOT: bigint;
|
|
2082
|
-
};
|
|
2083
2195
|
Arbitrum: {
|
|
2084
2196
|
ETH: bigint;
|
|
2085
2197
|
USDC: bigint;
|
|
@@ -2088,20 +2200,23 @@ declare const rpcResult: {
|
|
|
2088
2200
|
USDC: bigint;
|
|
2089
2201
|
SOL: bigint;
|
|
2090
2202
|
};
|
|
2203
|
+
Polkadot: {
|
|
2204
|
+
DOT: bigint;
|
|
2205
|
+
};
|
|
2091
2206
|
};
|
|
2092
2207
|
channel_opening_fees: {
|
|
2093
2208
|
Bitcoin: bigint;
|
|
2094
2209
|
Ethereum: bigint;
|
|
2095
|
-
Polkadot: bigint;
|
|
2096
2210
|
Arbitrum: bigint;
|
|
2097
2211
|
Solana: bigint;
|
|
2212
|
+
Polkadot: bigint;
|
|
2098
2213
|
};
|
|
2099
2214
|
max_swap_retry_duration_blocks: {
|
|
2100
2215
|
Bitcoin: number;
|
|
2101
2216
|
Ethereum: number;
|
|
2102
|
-
Polkadot: number;
|
|
2103
2217
|
Arbitrum: number;
|
|
2104
2218
|
Solana: number;
|
|
2219
|
+
Polkadot: number;
|
|
2105
2220
|
};
|
|
2106
2221
|
}, {
|
|
2107
2222
|
minimum_deposit_amounts: {
|
|
@@ -2114,13 +2229,13 @@ declare const rpcResult: {
|
|
|
2114
2229
|
FLIP: string | number;
|
|
2115
2230
|
USDT: string | number;
|
|
2116
2231
|
};
|
|
2117
|
-
Polkadot: {
|
|
2118
|
-
DOT: string | number;
|
|
2119
|
-
};
|
|
2120
2232
|
Arbitrum: {
|
|
2121
2233
|
ETH: string | number;
|
|
2122
2234
|
USDC: string | number;
|
|
2123
2235
|
};
|
|
2236
|
+
Polkadot: {
|
|
2237
|
+
DOT: string | number;
|
|
2238
|
+
};
|
|
2124
2239
|
Solana?: {
|
|
2125
2240
|
USDC?: string | number | undefined;
|
|
2126
2241
|
SOL?: string | number | undefined;
|
|
@@ -2136,13 +2251,13 @@ declare const rpcResult: {
|
|
|
2136
2251
|
FLIP: string | number | null;
|
|
2137
2252
|
USDT: string | number | null;
|
|
2138
2253
|
};
|
|
2139
|
-
Polkadot: {
|
|
2140
|
-
DOT: string | number | null;
|
|
2141
|
-
};
|
|
2142
2254
|
Arbitrum: {
|
|
2143
2255
|
ETH: string | number | null;
|
|
2144
2256
|
USDC: string | number | null;
|
|
2145
2257
|
};
|
|
2258
|
+
Polkadot: {
|
|
2259
|
+
DOT: string | number | null;
|
|
2260
|
+
};
|
|
2146
2261
|
Solana?: {
|
|
2147
2262
|
USDC?: string | number | null | undefined;
|
|
2148
2263
|
SOL?: string | number | null | undefined;
|
|
@@ -2158,13 +2273,13 @@ declare const rpcResult: {
|
|
|
2158
2273
|
FLIP: string | number | null;
|
|
2159
2274
|
USDT: string | number | null;
|
|
2160
2275
|
};
|
|
2161
|
-
Polkadot: {
|
|
2162
|
-
DOT: string | number | null;
|
|
2163
|
-
};
|
|
2164
2276
|
Arbitrum: {
|
|
2165
2277
|
ETH: string | number | null;
|
|
2166
2278
|
USDC: string | number | null;
|
|
2167
2279
|
};
|
|
2280
|
+
Polkadot: {
|
|
2281
|
+
DOT: string | number | null;
|
|
2282
|
+
};
|
|
2168
2283
|
Solana?: {
|
|
2169
2284
|
USDC?: string | number | null | undefined;
|
|
2170
2285
|
SOL?: string | number | null | undefined;
|
|
@@ -2173,8 +2288,8 @@ declare const rpcResult: {
|
|
|
2173
2288
|
witness_safety_margins: {
|
|
2174
2289
|
Bitcoin: number | null;
|
|
2175
2290
|
Ethereum: number | null;
|
|
2176
|
-
Polkadot: number | null;
|
|
2177
2291
|
Arbitrum: number | null;
|
|
2292
|
+
Polkadot: number | null;
|
|
2178
2293
|
Solana?: number | null | undefined;
|
|
2179
2294
|
};
|
|
2180
2295
|
egress_dust_limits: {
|
|
@@ -2187,13 +2302,13 @@ declare const rpcResult: {
|
|
|
2187
2302
|
FLIP: string | number;
|
|
2188
2303
|
USDT: string | number;
|
|
2189
2304
|
};
|
|
2190
|
-
Polkadot: {
|
|
2191
|
-
DOT: string | number;
|
|
2192
|
-
};
|
|
2193
2305
|
Arbitrum: {
|
|
2194
2306
|
ETH: string | number;
|
|
2195
2307
|
USDC: string | number;
|
|
2196
2308
|
};
|
|
2309
|
+
Polkadot: {
|
|
2310
|
+
DOT: string | number;
|
|
2311
|
+
};
|
|
2197
2312
|
Solana?: {
|
|
2198
2313
|
USDC?: string | number | undefined;
|
|
2199
2314
|
SOL?: string | number | undefined;
|
|
@@ -2202,15 +2317,15 @@ declare const rpcResult: {
|
|
|
2202
2317
|
channel_opening_fees: {
|
|
2203
2318
|
Bitcoin: string | number;
|
|
2204
2319
|
Ethereum: string | number;
|
|
2205
|
-
Polkadot: string | number;
|
|
2206
2320
|
Arbitrum: string | number;
|
|
2321
|
+
Polkadot: string | number;
|
|
2207
2322
|
Solana?: string | number | undefined;
|
|
2208
2323
|
};
|
|
2209
2324
|
max_swap_retry_duration_blocks?: {
|
|
2210
2325
|
Bitcoin: number;
|
|
2211
2326
|
Ethereum: number;
|
|
2212
|
-
Polkadot: number;
|
|
2213
2327
|
Arbitrum: number;
|
|
2328
|
+
Polkadot: number;
|
|
2214
2329
|
Solana?: number | undefined;
|
|
2215
2330
|
} | undefined;
|
|
2216
2331
|
}>, Omit<{
|
|
@@ -2224,9 +2339,6 @@ declare const rpcResult: {
|
|
|
2224
2339
|
FLIP: bigint;
|
|
2225
2340
|
USDT: bigint;
|
|
2226
2341
|
};
|
|
2227
|
-
Polkadot: {
|
|
2228
|
-
DOT: bigint;
|
|
2229
|
-
};
|
|
2230
2342
|
Arbitrum: {
|
|
2231
2343
|
ETH: bigint;
|
|
2232
2344
|
USDC: bigint;
|
|
@@ -2235,6 +2347,9 @@ declare const rpcResult: {
|
|
|
2235
2347
|
USDC: bigint;
|
|
2236
2348
|
SOL: bigint;
|
|
2237
2349
|
};
|
|
2350
|
+
Polkadot: {
|
|
2351
|
+
DOT: bigint;
|
|
2352
|
+
};
|
|
2238
2353
|
};
|
|
2239
2354
|
ingress_fees: {
|
|
2240
2355
|
Bitcoin: {
|
|
@@ -2246,9 +2361,6 @@ declare const rpcResult: {
|
|
|
2246
2361
|
FLIP: bigint | null;
|
|
2247
2362
|
USDT: bigint | null;
|
|
2248
2363
|
};
|
|
2249
|
-
Polkadot: {
|
|
2250
|
-
DOT: bigint | null;
|
|
2251
|
-
};
|
|
2252
2364
|
Arbitrum: {
|
|
2253
2365
|
ETH: bigint | null;
|
|
2254
2366
|
USDC: bigint | null;
|
|
@@ -2257,6 +2369,9 @@ declare const rpcResult: {
|
|
|
2257
2369
|
USDC: bigint | null;
|
|
2258
2370
|
SOL: bigint | null;
|
|
2259
2371
|
};
|
|
2372
|
+
Polkadot: {
|
|
2373
|
+
DOT: bigint | null;
|
|
2374
|
+
};
|
|
2260
2375
|
};
|
|
2261
2376
|
egress_fees: {
|
|
2262
2377
|
Bitcoin: {
|
|
@@ -2268,9 +2383,6 @@ declare const rpcResult: {
|
|
|
2268
2383
|
FLIP: bigint | null;
|
|
2269
2384
|
USDT: bigint | null;
|
|
2270
2385
|
};
|
|
2271
|
-
Polkadot: {
|
|
2272
|
-
DOT: bigint | null;
|
|
2273
|
-
};
|
|
2274
2386
|
Arbitrum: {
|
|
2275
2387
|
ETH: bigint | null;
|
|
2276
2388
|
USDC: bigint | null;
|
|
@@ -2279,13 +2391,16 @@ declare const rpcResult: {
|
|
|
2279
2391
|
USDC: bigint | null;
|
|
2280
2392
|
SOL: bigint | null;
|
|
2281
2393
|
};
|
|
2394
|
+
Polkadot: {
|
|
2395
|
+
DOT: bigint | null;
|
|
2396
|
+
};
|
|
2282
2397
|
};
|
|
2283
2398
|
witness_safety_margins: {
|
|
2284
2399
|
Bitcoin: number | null;
|
|
2285
2400
|
Ethereum: number | null;
|
|
2286
|
-
Polkadot: number | null;
|
|
2287
2401
|
Arbitrum: number | null;
|
|
2288
2402
|
Solana: number | null;
|
|
2403
|
+
Polkadot: number | null;
|
|
2289
2404
|
};
|
|
2290
2405
|
egress_dust_limits: {
|
|
2291
2406
|
Bitcoin: {
|
|
@@ -2297,9 +2412,6 @@ declare const rpcResult: {
|
|
|
2297
2412
|
FLIP: bigint;
|
|
2298
2413
|
USDT: bigint;
|
|
2299
2414
|
};
|
|
2300
|
-
Polkadot: {
|
|
2301
|
-
DOT: bigint;
|
|
2302
|
-
};
|
|
2303
2415
|
Arbitrum: {
|
|
2304
2416
|
ETH: bigint;
|
|
2305
2417
|
USDC: bigint;
|
|
@@ -2308,20 +2420,23 @@ declare const rpcResult: {
|
|
|
2308
2420
|
USDC: bigint;
|
|
2309
2421
|
SOL: bigint;
|
|
2310
2422
|
};
|
|
2423
|
+
Polkadot: {
|
|
2424
|
+
DOT: bigint;
|
|
2425
|
+
};
|
|
2311
2426
|
};
|
|
2312
2427
|
channel_opening_fees: {
|
|
2313
2428
|
Bitcoin: bigint;
|
|
2314
2429
|
Ethereum: bigint;
|
|
2315
|
-
Polkadot: bigint;
|
|
2316
2430
|
Arbitrum: bigint;
|
|
2317
2431
|
Solana: bigint;
|
|
2432
|
+
Polkadot: bigint;
|
|
2318
2433
|
};
|
|
2319
2434
|
max_swap_retry_duration_blocks: {
|
|
2320
2435
|
Bitcoin: number;
|
|
2321
2436
|
Ethereum: number;
|
|
2322
|
-
Polkadot: number;
|
|
2323
2437
|
Arbitrum: number;
|
|
2324
2438
|
Solana: number;
|
|
2439
|
+
Polkadot: number;
|
|
2325
2440
|
};
|
|
2326
2441
|
}, "egress_dust_limits"> & {
|
|
2327
2442
|
readonly minimum_egress_amounts: {
|
|
@@ -2334,9 +2449,6 @@ declare const rpcResult: {
|
|
|
2334
2449
|
FLIP: bigint;
|
|
2335
2450
|
USDT: bigint;
|
|
2336
2451
|
};
|
|
2337
|
-
Polkadot: {
|
|
2338
|
-
DOT: bigint;
|
|
2339
|
-
};
|
|
2340
2452
|
Arbitrum: {
|
|
2341
2453
|
ETH: bigint;
|
|
2342
2454
|
USDC: bigint;
|
|
@@ -2345,6 +2457,9 @@ declare const rpcResult: {
|
|
|
2345
2457
|
USDC: bigint;
|
|
2346
2458
|
SOL: bigint;
|
|
2347
2459
|
};
|
|
2460
|
+
Polkadot: {
|
|
2461
|
+
DOT: bigint;
|
|
2462
|
+
};
|
|
2348
2463
|
};
|
|
2349
2464
|
}, {
|
|
2350
2465
|
minimum_deposit_amounts: {
|
|
@@ -2357,13 +2472,13 @@ declare const rpcResult: {
|
|
|
2357
2472
|
FLIP: string | number;
|
|
2358
2473
|
USDT: string | number;
|
|
2359
2474
|
};
|
|
2360
|
-
Polkadot: {
|
|
2361
|
-
DOT: string | number;
|
|
2362
|
-
};
|
|
2363
2475
|
Arbitrum: {
|
|
2364
2476
|
ETH: string | number;
|
|
2365
2477
|
USDC: string | number;
|
|
2366
2478
|
};
|
|
2479
|
+
Polkadot: {
|
|
2480
|
+
DOT: string | number;
|
|
2481
|
+
};
|
|
2367
2482
|
Solana?: {
|
|
2368
2483
|
USDC?: string | number | undefined;
|
|
2369
2484
|
SOL?: string | number | undefined;
|
|
@@ -2379,13 +2494,13 @@ declare const rpcResult: {
|
|
|
2379
2494
|
FLIP: string | number | null;
|
|
2380
2495
|
USDT: string | number | null;
|
|
2381
2496
|
};
|
|
2382
|
-
Polkadot: {
|
|
2383
|
-
DOT: string | number | null;
|
|
2384
|
-
};
|
|
2385
2497
|
Arbitrum: {
|
|
2386
2498
|
ETH: string | number | null;
|
|
2387
2499
|
USDC: string | number | null;
|
|
2388
2500
|
};
|
|
2501
|
+
Polkadot: {
|
|
2502
|
+
DOT: string | number | null;
|
|
2503
|
+
};
|
|
2389
2504
|
Solana?: {
|
|
2390
2505
|
USDC?: string | number | null | undefined;
|
|
2391
2506
|
SOL?: string | number | null | undefined;
|
|
@@ -2401,13 +2516,13 @@ declare const rpcResult: {
|
|
|
2401
2516
|
FLIP: string | number | null;
|
|
2402
2517
|
USDT: string | number | null;
|
|
2403
2518
|
};
|
|
2404
|
-
Polkadot: {
|
|
2405
|
-
DOT: string | number | null;
|
|
2406
|
-
};
|
|
2407
2519
|
Arbitrum: {
|
|
2408
2520
|
ETH: string | number | null;
|
|
2409
2521
|
USDC: string | number | null;
|
|
2410
2522
|
};
|
|
2523
|
+
Polkadot: {
|
|
2524
|
+
DOT: string | number | null;
|
|
2525
|
+
};
|
|
2411
2526
|
Solana?: {
|
|
2412
2527
|
USDC?: string | number | null | undefined;
|
|
2413
2528
|
SOL?: string | number | null | undefined;
|
|
@@ -2416,8 +2531,8 @@ declare const rpcResult: {
|
|
|
2416
2531
|
witness_safety_margins: {
|
|
2417
2532
|
Bitcoin: number | null;
|
|
2418
2533
|
Ethereum: number | null;
|
|
2419
|
-
Polkadot: number | null;
|
|
2420
2534
|
Arbitrum: number | null;
|
|
2535
|
+
Polkadot: number | null;
|
|
2421
2536
|
Solana?: number | null | undefined;
|
|
2422
2537
|
};
|
|
2423
2538
|
egress_dust_limits: {
|
|
@@ -2430,13 +2545,13 @@ declare const rpcResult: {
|
|
|
2430
2545
|
FLIP: string | number;
|
|
2431
2546
|
USDT: string | number;
|
|
2432
2547
|
};
|
|
2433
|
-
Polkadot: {
|
|
2434
|
-
DOT: string | number;
|
|
2435
|
-
};
|
|
2436
2548
|
Arbitrum: {
|
|
2437
2549
|
ETH: string | number;
|
|
2438
2550
|
USDC: string | number;
|
|
2439
2551
|
};
|
|
2552
|
+
Polkadot: {
|
|
2553
|
+
DOT: string | number;
|
|
2554
|
+
};
|
|
2440
2555
|
Solana?: {
|
|
2441
2556
|
USDC?: string | number | undefined;
|
|
2442
2557
|
SOL?: string | number | undefined;
|
|
@@ -2445,15 +2560,15 @@ declare const rpcResult: {
|
|
|
2445
2560
|
channel_opening_fees: {
|
|
2446
2561
|
Bitcoin: string | number;
|
|
2447
2562
|
Ethereum: string | number;
|
|
2448
|
-
Polkadot: string | number;
|
|
2449
2563
|
Arbitrum: string | number;
|
|
2564
|
+
Polkadot: string | number;
|
|
2450
2565
|
Solana?: string | number | undefined;
|
|
2451
2566
|
};
|
|
2452
2567
|
max_swap_retry_duration_blocks?: {
|
|
2453
2568
|
Bitcoin: number;
|
|
2454
2569
|
Ethereum: number;
|
|
2455
|
-
Polkadot: number;
|
|
2456
2570
|
Arbitrum: number;
|
|
2571
|
+
Polkadot: number;
|
|
2457
2572
|
Solana?: number | undefined;
|
|
2458
2573
|
} | undefined;
|
|
2459
2574
|
}>;
|
|
@@ -2519,9 +2634,6 @@ declare const rpcResult: {
|
|
|
2519
2634
|
FLIP: bigint | null;
|
|
2520
2635
|
USDT: bigint | null;
|
|
2521
2636
|
};
|
|
2522
|
-
Polkadot: {
|
|
2523
|
-
DOT: bigint | null;
|
|
2524
|
-
};
|
|
2525
2637
|
Arbitrum: {
|
|
2526
2638
|
ETH: bigint | null;
|
|
2527
2639
|
USDC: bigint | null;
|
|
@@ -2530,6 +2642,9 @@ declare const rpcResult: {
|
|
|
2530
2642
|
USDC: bigint | null;
|
|
2531
2643
|
SOL: bigint | null;
|
|
2532
2644
|
};
|
|
2645
|
+
Polkadot: {
|
|
2646
|
+
DOT: bigint | null;
|
|
2647
|
+
};
|
|
2533
2648
|
}, {
|
|
2534
2649
|
Bitcoin: {
|
|
2535
2650
|
BTC: string | number | null;
|
|
@@ -2540,13 +2655,13 @@ declare const rpcResult: {
|
|
|
2540
2655
|
FLIP: string | number | null;
|
|
2541
2656
|
USDT: string | number | null;
|
|
2542
2657
|
};
|
|
2543
|
-
Polkadot: {
|
|
2544
|
-
DOT: string | number | null;
|
|
2545
|
-
};
|
|
2546
2658
|
Arbitrum: {
|
|
2547
2659
|
ETH: string | number | null;
|
|
2548
2660
|
USDC: string | number | null;
|
|
2549
2661
|
};
|
|
2662
|
+
Polkadot: {
|
|
2663
|
+
DOT: string | number | null;
|
|
2664
|
+
};
|
|
2550
2665
|
Solana?: {
|
|
2551
2666
|
USDC?: string | number | null | undefined;
|
|
2552
2667
|
SOL?: string | number | null | undefined;
|
|
@@ -2564,9 +2679,6 @@ declare const rpcResult: {
|
|
|
2564
2679
|
FLIP: bigint | null;
|
|
2565
2680
|
USDT: bigint | null;
|
|
2566
2681
|
};
|
|
2567
|
-
Polkadot: {
|
|
2568
|
-
DOT: bigint | null;
|
|
2569
|
-
};
|
|
2570
2682
|
Arbitrum: {
|
|
2571
2683
|
ETH: bigint | null;
|
|
2572
2684
|
USDC: bigint | null;
|
|
@@ -2575,6 +2687,9 @@ declare const rpcResult: {
|
|
|
2575
2687
|
USDC: bigint | null;
|
|
2576
2688
|
SOL: bigint | null;
|
|
2577
2689
|
};
|
|
2690
|
+
Polkadot: {
|
|
2691
|
+
DOT: bigint | null;
|
|
2692
|
+
};
|
|
2578
2693
|
};
|
|
2579
2694
|
network_fee_hundredth_pips: number;
|
|
2580
2695
|
}, {
|
|
@@ -2588,13 +2703,13 @@ declare const rpcResult: {
|
|
|
2588
2703
|
FLIP: string | number | null;
|
|
2589
2704
|
USDT: string | number | null;
|
|
2590
2705
|
};
|
|
2591
|
-
Polkadot: {
|
|
2592
|
-
DOT: string | number | null;
|
|
2593
|
-
};
|
|
2594
2706
|
Arbitrum: {
|
|
2595
2707
|
ETH: string | number | null;
|
|
2596
2708
|
USDC: string | number | null;
|
|
2597
2709
|
};
|
|
2710
|
+
Polkadot: {
|
|
2711
|
+
DOT: string | number | null;
|
|
2712
|
+
};
|
|
2598
2713
|
Solana?: {
|
|
2599
2714
|
USDC?: string | number | null | undefined;
|
|
2600
2715
|
SOL?: string | number | null | undefined;
|
|
@@ -4987,8 +5102,8 @@ declare const rpcResult: {
|
|
|
4987
5102
|
};
|
|
4988
5103
|
};
|
|
4989
5104
|
};
|
|
4990
|
-
|
|
4991
|
-
|
|
5105
|
+
Arbitrum: {
|
|
5106
|
+
ETH: {
|
|
4992
5107
|
limit_order_fee_hundredth_pips: number;
|
|
4993
5108
|
range_order_fee_hundredth_pips: number;
|
|
4994
5109
|
range_order_total_fees_earned: {
|
|
@@ -5035,9 +5150,7 @@ declare const rpcResult: {
|
|
|
5035
5150
|
readonly asset: "USDC";
|
|
5036
5151
|
};
|
|
5037
5152
|
};
|
|
5038
|
-
|
|
5039
|
-
Arbitrum: {
|
|
5040
|
-
ETH: {
|
|
5153
|
+
USDC: {
|
|
5041
5154
|
limit_order_fee_hundredth_pips: number;
|
|
5042
5155
|
range_order_fee_hundredth_pips: number;
|
|
5043
5156
|
range_order_total_fees_earned: {
|
|
@@ -5084,6 +5197,8 @@ declare const rpcResult: {
|
|
|
5084
5197
|
readonly asset: "USDC";
|
|
5085
5198
|
};
|
|
5086
5199
|
};
|
|
5200
|
+
};
|
|
5201
|
+
Solana: {
|
|
5087
5202
|
USDC: {
|
|
5088
5203
|
limit_order_fee_hundredth_pips: number;
|
|
5089
5204
|
range_order_fee_hundredth_pips: number;
|
|
@@ -5131,9 +5246,7 @@ declare const rpcResult: {
|
|
|
5131
5246
|
readonly asset: "USDC";
|
|
5132
5247
|
};
|
|
5133
5248
|
};
|
|
5134
|
-
|
|
5135
|
-
Solana: {
|
|
5136
|
-
USDC: {
|
|
5249
|
+
SOL: {
|
|
5137
5250
|
limit_order_fee_hundredth_pips: number;
|
|
5138
5251
|
range_order_fee_hundredth_pips: number;
|
|
5139
5252
|
range_order_total_fees_earned: {
|
|
@@ -5180,7 +5293,9 @@ declare const rpcResult: {
|
|
|
5180
5293
|
readonly asset: "USDC";
|
|
5181
5294
|
};
|
|
5182
5295
|
};
|
|
5183
|
-
|
|
5296
|
+
};
|
|
5297
|
+
Polkadot: {
|
|
5298
|
+
DOT: {
|
|
5184
5299
|
limit_order_fee_hundredth_pips: number;
|
|
5185
5300
|
range_order_fee_hundredth_pips: number;
|
|
5186
5301
|
range_order_total_fees_earned: {
|
|
@@ -5329,8 +5444,8 @@ declare const rpcResult: {
|
|
|
5329
5444
|
};
|
|
5330
5445
|
} | null;
|
|
5331
5446
|
};
|
|
5332
|
-
|
|
5333
|
-
|
|
5447
|
+
Arbitrum: {
|
|
5448
|
+
ETH: {
|
|
5334
5449
|
limit_order_fee_hundredth_pips: number;
|
|
5335
5450
|
range_order_fee_hundredth_pips: number;
|
|
5336
5451
|
range_order_total_fees_earned: {
|
|
@@ -5354,9 +5469,7 @@ declare const rpcResult: {
|
|
|
5354
5469
|
asset: "USDC";
|
|
5355
5470
|
};
|
|
5356
5471
|
} | null;
|
|
5357
|
-
|
|
5358
|
-
Arbitrum: {
|
|
5359
|
-
ETH: {
|
|
5472
|
+
USDC: {
|
|
5360
5473
|
limit_order_fee_hundredth_pips: number;
|
|
5361
5474
|
range_order_fee_hundredth_pips: number;
|
|
5362
5475
|
range_order_total_fees_earned: {
|
|
@@ -5380,7 +5493,9 @@ declare const rpcResult: {
|
|
|
5380
5493
|
asset: "USDC";
|
|
5381
5494
|
};
|
|
5382
5495
|
} | null;
|
|
5383
|
-
|
|
5496
|
+
};
|
|
5497
|
+
Polkadot: {
|
|
5498
|
+
DOT: {
|
|
5384
5499
|
limit_order_fee_hundredth_pips: number;
|
|
5385
5500
|
range_order_fee_hundredth_pips: number;
|
|
5386
5501
|
range_order_total_fees_earned: {
|
|
@@ -5650,8 +5765,8 @@ declare const rpcResult: {
|
|
|
5650
5765
|
};
|
|
5651
5766
|
};
|
|
5652
5767
|
};
|
|
5653
|
-
|
|
5654
|
-
|
|
5768
|
+
Arbitrum: {
|
|
5769
|
+
ETH: {
|
|
5655
5770
|
limit_order_fee_hundredth_pips: number;
|
|
5656
5771
|
range_order_fee_hundredth_pips: number;
|
|
5657
5772
|
range_order_total_fees_earned: {
|
|
@@ -5698,9 +5813,7 @@ declare const rpcResult: {
|
|
|
5698
5813
|
readonly asset: "USDC";
|
|
5699
5814
|
};
|
|
5700
5815
|
};
|
|
5701
|
-
|
|
5702
|
-
Arbitrum: {
|
|
5703
|
-
ETH: {
|
|
5816
|
+
USDC: {
|
|
5704
5817
|
limit_order_fee_hundredth_pips: number;
|
|
5705
5818
|
range_order_fee_hundredth_pips: number;
|
|
5706
5819
|
range_order_total_fees_earned: {
|
|
@@ -5747,6 +5860,8 @@ declare const rpcResult: {
|
|
|
5747
5860
|
readonly asset: "USDC";
|
|
5748
5861
|
};
|
|
5749
5862
|
};
|
|
5863
|
+
};
|
|
5864
|
+
Solana: {
|
|
5750
5865
|
USDC: {
|
|
5751
5866
|
limit_order_fee_hundredth_pips: number;
|
|
5752
5867
|
range_order_fee_hundredth_pips: number;
|
|
@@ -5794,9 +5909,7 @@ declare const rpcResult: {
|
|
|
5794
5909
|
readonly asset: "USDC";
|
|
5795
5910
|
};
|
|
5796
5911
|
};
|
|
5797
|
-
|
|
5798
|
-
Solana: {
|
|
5799
|
-
USDC: {
|
|
5912
|
+
SOL: {
|
|
5800
5913
|
limit_order_fee_hundredth_pips: number;
|
|
5801
5914
|
range_order_fee_hundredth_pips: number;
|
|
5802
5915
|
range_order_total_fees_earned: {
|
|
@@ -5843,7 +5956,9 @@ declare const rpcResult: {
|
|
|
5843
5956
|
readonly asset: "USDC";
|
|
5844
5957
|
};
|
|
5845
5958
|
};
|
|
5846
|
-
|
|
5959
|
+
};
|
|
5960
|
+
Polkadot: {
|
|
5961
|
+
DOT: {
|
|
5847
5962
|
limit_order_fee_hundredth_pips: number;
|
|
5848
5963
|
range_order_fee_hundredth_pips: number;
|
|
5849
5964
|
range_order_total_fees_earned: {
|
|
@@ -5994,8 +6109,8 @@ declare const rpcResult: {
|
|
|
5994
6109
|
};
|
|
5995
6110
|
} | null;
|
|
5996
6111
|
};
|
|
5997
|
-
|
|
5998
|
-
|
|
6112
|
+
Arbitrum: {
|
|
6113
|
+
ETH: {
|
|
5999
6114
|
limit_order_fee_hundredth_pips: number;
|
|
6000
6115
|
range_order_fee_hundredth_pips: number;
|
|
6001
6116
|
range_order_total_fees_earned: {
|
|
@@ -6019,9 +6134,7 @@ declare const rpcResult: {
|
|
|
6019
6134
|
asset: "USDC";
|
|
6020
6135
|
};
|
|
6021
6136
|
} | null;
|
|
6022
|
-
|
|
6023
|
-
Arbitrum: {
|
|
6024
|
-
ETH: {
|
|
6137
|
+
USDC: {
|
|
6025
6138
|
limit_order_fee_hundredth_pips: number;
|
|
6026
6139
|
range_order_fee_hundredth_pips: number;
|
|
6027
6140
|
range_order_total_fees_earned: {
|
|
@@ -6045,7 +6158,9 @@ declare const rpcResult: {
|
|
|
6045
6158
|
asset: "USDC";
|
|
6046
6159
|
};
|
|
6047
6160
|
} | null;
|
|
6048
|
-
|
|
6161
|
+
};
|
|
6162
|
+
Polkadot: {
|
|
6163
|
+
DOT: {
|
|
6049
6164
|
limit_order_fee_hundredth_pips: number;
|
|
6050
6165
|
range_order_fee_hundredth_pips: number;
|
|
6051
6166
|
range_order_total_fees_earned: {
|
|
@@ -6134,9 +6249,6 @@ declare const rpcResult: {
|
|
|
6134
6249
|
FLIP: bigint;
|
|
6135
6250
|
USDT: bigint;
|
|
6136
6251
|
};
|
|
6137
|
-
Polkadot: {
|
|
6138
|
-
DOT: bigint;
|
|
6139
|
-
};
|
|
6140
6252
|
Arbitrum: {
|
|
6141
6253
|
ETH: bigint;
|
|
6142
6254
|
USDC: bigint;
|
|
@@ -6145,6 +6257,9 @@ declare const rpcResult: {
|
|
|
6145
6257
|
USDC: bigint;
|
|
6146
6258
|
SOL: bigint;
|
|
6147
6259
|
};
|
|
6260
|
+
Polkadot: {
|
|
6261
|
+
DOT: bigint;
|
|
6262
|
+
};
|
|
6148
6263
|
};
|
|
6149
6264
|
ingress_fees: {
|
|
6150
6265
|
Bitcoin: {
|
|
@@ -6156,9 +6271,6 @@ declare const rpcResult: {
|
|
|
6156
6271
|
FLIP: bigint | null;
|
|
6157
6272
|
USDT: bigint | null;
|
|
6158
6273
|
};
|
|
6159
|
-
Polkadot: {
|
|
6160
|
-
DOT: bigint | null;
|
|
6161
|
-
};
|
|
6162
6274
|
Arbitrum: {
|
|
6163
6275
|
ETH: bigint | null;
|
|
6164
6276
|
USDC: bigint | null;
|
|
@@ -6167,6 +6279,9 @@ declare const rpcResult: {
|
|
|
6167
6279
|
USDC: bigint | null;
|
|
6168
6280
|
SOL: bigint | null;
|
|
6169
6281
|
};
|
|
6282
|
+
Polkadot: {
|
|
6283
|
+
DOT: bigint | null;
|
|
6284
|
+
};
|
|
6170
6285
|
};
|
|
6171
6286
|
egress_fees: {
|
|
6172
6287
|
Bitcoin: {
|
|
@@ -6178,9 +6293,6 @@ declare const rpcResult: {
|
|
|
6178
6293
|
FLIP: bigint | null;
|
|
6179
6294
|
USDT: bigint | null;
|
|
6180
6295
|
};
|
|
6181
|
-
Polkadot: {
|
|
6182
|
-
DOT: bigint | null;
|
|
6183
|
-
};
|
|
6184
6296
|
Arbitrum: {
|
|
6185
6297
|
ETH: bigint | null;
|
|
6186
6298
|
USDC: bigint | null;
|
|
@@ -6189,13 +6301,16 @@ declare const rpcResult: {
|
|
|
6189
6301
|
USDC: bigint | null;
|
|
6190
6302
|
SOL: bigint | null;
|
|
6191
6303
|
};
|
|
6304
|
+
Polkadot: {
|
|
6305
|
+
DOT: bigint | null;
|
|
6306
|
+
};
|
|
6192
6307
|
};
|
|
6193
6308
|
witness_safety_margins: {
|
|
6194
6309
|
Bitcoin: number | null;
|
|
6195
6310
|
Ethereum: number | null;
|
|
6196
|
-
Polkadot: number | null;
|
|
6197
6311
|
Arbitrum: number | null;
|
|
6198
6312
|
Solana: number | null;
|
|
6313
|
+
Polkadot: number | null;
|
|
6199
6314
|
};
|
|
6200
6315
|
egress_dust_limits: {
|
|
6201
6316
|
Bitcoin: {
|
|
@@ -6207,9 +6322,6 @@ declare const rpcResult: {
|
|
|
6207
6322
|
FLIP: bigint;
|
|
6208
6323
|
USDT: bigint;
|
|
6209
6324
|
};
|
|
6210
|
-
Polkadot: {
|
|
6211
|
-
DOT: bigint;
|
|
6212
|
-
};
|
|
6213
6325
|
Arbitrum: {
|
|
6214
6326
|
ETH: bigint;
|
|
6215
6327
|
USDC: bigint;
|
|
@@ -6218,20 +6330,23 @@ declare const rpcResult: {
|
|
|
6218
6330
|
USDC: bigint;
|
|
6219
6331
|
SOL: bigint;
|
|
6220
6332
|
};
|
|
6333
|
+
Polkadot: {
|
|
6334
|
+
DOT: bigint;
|
|
6335
|
+
};
|
|
6221
6336
|
};
|
|
6222
6337
|
channel_opening_fees: {
|
|
6223
6338
|
Bitcoin: bigint;
|
|
6224
6339
|
Ethereum: bigint;
|
|
6225
|
-
Polkadot: bigint;
|
|
6226
6340
|
Arbitrum: bigint;
|
|
6227
6341
|
Solana: bigint;
|
|
6342
|
+
Polkadot: bigint;
|
|
6228
6343
|
};
|
|
6229
6344
|
max_swap_retry_duration_blocks: {
|
|
6230
6345
|
Bitcoin: number;
|
|
6231
6346
|
Ethereum: number;
|
|
6232
|
-
Polkadot: number;
|
|
6233
6347
|
Arbitrum: number;
|
|
6234
6348
|
Solana: number;
|
|
6349
|
+
Polkadot: number;
|
|
6235
6350
|
};
|
|
6236
6351
|
}, "egress_dust_limits"> & {
|
|
6237
6352
|
readonly minimum_egress_amounts: {
|
|
@@ -6244,9 +6359,6 @@ declare const rpcResult: {
|
|
|
6244
6359
|
FLIP: bigint;
|
|
6245
6360
|
USDT: bigint;
|
|
6246
6361
|
};
|
|
6247
|
-
Polkadot: {
|
|
6248
|
-
DOT: bigint;
|
|
6249
|
-
};
|
|
6250
6362
|
Arbitrum: {
|
|
6251
6363
|
ETH: bigint;
|
|
6252
6364
|
USDC: bigint;
|
|
@@ -6255,6 +6367,9 @@ declare const rpcResult: {
|
|
|
6255
6367
|
USDC: bigint;
|
|
6256
6368
|
SOL: bigint;
|
|
6257
6369
|
};
|
|
6370
|
+
Polkadot: {
|
|
6371
|
+
DOT: bigint;
|
|
6372
|
+
};
|
|
6258
6373
|
};
|
|
6259
6374
|
};
|
|
6260
6375
|
swapping: {
|
|
@@ -6268,9 +6383,6 @@ declare const rpcResult: {
|
|
|
6268
6383
|
FLIP: bigint | null;
|
|
6269
6384
|
USDT: bigint | null;
|
|
6270
6385
|
};
|
|
6271
|
-
Polkadot: {
|
|
6272
|
-
DOT: bigint | null;
|
|
6273
|
-
};
|
|
6274
6386
|
Arbitrum: {
|
|
6275
6387
|
ETH: bigint | null;
|
|
6276
6388
|
USDC: bigint | null;
|
|
@@ -6279,6 +6391,9 @@ declare const rpcResult: {
|
|
|
6279
6391
|
USDC: bigint | null;
|
|
6280
6392
|
SOL: bigint | null;
|
|
6281
6393
|
};
|
|
6394
|
+
Polkadot: {
|
|
6395
|
+
DOT: bigint | null;
|
|
6396
|
+
};
|
|
6282
6397
|
};
|
|
6283
6398
|
network_fee_hundredth_pips: number;
|
|
6284
6399
|
};
|
|
@@ -6480,8 +6595,8 @@ declare const rpcResult: {
|
|
|
6480
6595
|
};
|
|
6481
6596
|
};
|
|
6482
6597
|
};
|
|
6483
|
-
|
|
6484
|
-
|
|
6598
|
+
Arbitrum: {
|
|
6599
|
+
ETH: {
|
|
6485
6600
|
limit_order_fee_hundredth_pips: number;
|
|
6486
6601
|
range_order_fee_hundredth_pips: number;
|
|
6487
6602
|
range_order_total_fees_earned: {
|
|
@@ -6528,9 +6643,7 @@ declare const rpcResult: {
|
|
|
6528
6643
|
readonly asset: "USDC";
|
|
6529
6644
|
};
|
|
6530
6645
|
};
|
|
6531
|
-
|
|
6532
|
-
Arbitrum: {
|
|
6533
|
-
ETH: {
|
|
6646
|
+
USDC: {
|
|
6534
6647
|
limit_order_fee_hundredth_pips: number;
|
|
6535
6648
|
range_order_fee_hundredth_pips: number;
|
|
6536
6649
|
range_order_total_fees_earned: {
|
|
@@ -6577,6 +6690,8 @@ declare const rpcResult: {
|
|
|
6577
6690
|
readonly asset: "USDC";
|
|
6578
6691
|
};
|
|
6579
6692
|
};
|
|
6693
|
+
};
|
|
6694
|
+
Solana: {
|
|
6580
6695
|
USDC: {
|
|
6581
6696
|
limit_order_fee_hundredth_pips: number;
|
|
6582
6697
|
range_order_fee_hundredth_pips: number;
|
|
@@ -6624,9 +6739,7 @@ declare const rpcResult: {
|
|
|
6624
6739
|
readonly asset: "USDC";
|
|
6625
6740
|
};
|
|
6626
6741
|
};
|
|
6627
|
-
|
|
6628
|
-
Solana: {
|
|
6629
|
-
USDC: {
|
|
6742
|
+
SOL: {
|
|
6630
6743
|
limit_order_fee_hundredth_pips: number;
|
|
6631
6744
|
range_order_fee_hundredth_pips: number;
|
|
6632
6745
|
range_order_total_fees_earned: {
|
|
@@ -6673,7 +6786,9 @@ declare const rpcResult: {
|
|
|
6673
6786
|
readonly asset: "USDC";
|
|
6674
6787
|
};
|
|
6675
6788
|
};
|
|
6676
|
-
|
|
6789
|
+
};
|
|
6790
|
+
Polkadot: {
|
|
6791
|
+
DOT: {
|
|
6677
6792
|
limit_order_fee_hundredth_pips: number;
|
|
6678
6793
|
range_order_fee_hundredth_pips: number;
|
|
6679
6794
|
range_order_total_fees_earned: {
|
|
@@ -6735,13 +6850,13 @@ declare const rpcResult: {
|
|
|
6735
6850
|
FLIP: string | number;
|
|
6736
6851
|
USDT: string | number;
|
|
6737
6852
|
};
|
|
6738
|
-
Polkadot: {
|
|
6739
|
-
DOT: string | number;
|
|
6740
|
-
};
|
|
6741
6853
|
Arbitrum: {
|
|
6742
6854
|
ETH: string | number;
|
|
6743
6855
|
USDC: string | number;
|
|
6744
6856
|
};
|
|
6857
|
+
Polkadot: {
|
|
6858
|
+
DOT: string | number;
|
|
6859
|
+
};
|
|
6745
6860
|
Solana?: {
|
|
6746
6861
|
USDC?: string | number | undefined;
|
|
6747
6862
|
SOL?: string | number | undefined;
|
|
@@ -6757,13 +6872,13 @@ declare const rpcResult: {
|
|
|
6757
6872
|
FLIP: string | number | null;
|
|
6758
6873
|
USDT: string | number | null;
|
|
6759
6874
|
};
|
|
6760
|
-
Polkadot: {
|
|
6761
|
-
DOT: string | number | null;
|
|
6762
|
-
};
|
|
6763
6875
|
Arbitrum: {
|
|
6764
6876
|
ETH: string | number | null;
|
|
6765
6877
|
USDC: string | number | null;
|
|
6766
6878
|
};
|
|
6879
|
+
Polkadot: {
|
|
6880
|
+
DOT: string | number | null;
|
|
6881
|
+
};
|
|
6767
6882
|
Solana?: {
|
|
6768
6883
|
USDC?: string | number | null | undefined;
|
|
6769
6884
|
SOL?: string | number | null | undefined;
|
|
@@ -6779,13 +6894,13 @@ declare const rpcResult: {
|
|
|
6779
6894
|
FLIP: string | number | null;
|
|
6780
6895
|
USDT: string | number | null;
|
|
6781
6896
|
};
|
|
6782
|
-
Polkadot: {
|
|
6783
|
-
DOT: string | number | null;
|
|
6784
|
-
};
|
|
6785
6897
|
Arbitrum: {
|
|
6786
6898
|
ETH: string | number | null;
|
|
6787
6899
|
USDC: string | number | null;
|
|
6788
6900
|
};
|
|
6901
|
+
Polkadot: {
|
|
6902
|
+
DOT: string | number | null;
|
|
6903
|
+
};
|
|
6789
6904
|
Solana?: {
|
|
6790
6905
|
USDC?: string | number | null | undefined;
|
|
6791
6906
|
SOL?: string | number | null | undefined;
|
|
@@ -6794,8 +6909,8 @@ declare const rpcResult: {
|
|
|
6794
6909
|
witness_safety_margins: {
|
|
6795
6910
|
Bitcoin: number | null;
|
|
6796
6911
|
Ethereum: number | null;
|
|
6797
|
-
Polkadot: number | null;
|
|
6798
6912
|
Arbitrum: number | null;
|
|
6913
|
+
Polkadot: number | null;
|
|
6799
6914
|
Solana?: number | null | undefined;
|
|
6800
6915
|
};
|
|
6801
6916
|
egress_dust_limits: {
|
|
@@ -6808,13 +6923,13 @@ declare const rpcResult: {
|
|
|
6808
6923
|
FLIP: string | number;
|
|
6809
6924
|
USDT: string | number;
|
|
6810
6925
|
};
|
|
6811
|
-
Polkadot: {
|
|
6812
|
-
DOT: string | number;
|
|
6813
|
-
};
|
|
6814
6926
|
Arbitrum: {
|
|
6815
6927
|
ETH: string | number;
|
|
6816
6928
|
USDC: string | number;
|
|
6817
6929
|
};
|
|
6930
|
+
Polkadot: {
|
|
6931
|
+
DOT: string | number;
|
|
6932
|
+
};
|
|
6818
6933
|
Solana?: {
|
|
6819
6934
|
USDC?: string | number | undefined;
|
|
6820
6935
|
SOL?: string | number | undefined;
|
|
@@ -6823,15 +6938,15 @@ declare const rpcResult: {
|
|
|
6823
6938
|
channel_opening_fees: {
|
|
6824
6939
|
Bitcoin: string | number;
|
|
6825
6940
|
Ethereum: string | number;
|
|
6826
|
-
Polkadot: string | number;
|
|
6827
6941
|
Arbitrum: string | number;
|
|
6942
|
+
Polkadot: string | number;
|
|
6828
6943
|
Solana?: string | number | undefined;
|
|
6829
6944
|
};
|
|
6830
6945
|
max_swap_retry_duration_blocks?: {
|
|
6831
6946
|
Bitcoin: number;
|
|
6832
6947
|
Ethereum: number;
|
|
6833
|
-
Polkadot: number;
|
|
6834
6948
|
Arbitrum: number;
|
|
6949
|
+
Polkadot: number;
|
|
6835
6950
|
Solana?: number | undefined;
|
|
6836
6951
|
} | undefined;
|
|
6837
6952
|
};
|
|
@@ -6846,13 +6961,13 @@ declare const rpcResult: {
|
|
|
6846
6961
|
FLIP: string | number | null;
|
|
6847
6962
|
USDT: string | number | null;
|
|
6848
6963
|
};
|
|
6849
|
-
Polkadot: {
|
|
6850
|
-
DOT: string | number | null;
|
|
6851
|
-
};
|
|
6852
6964
|
Arbitrum: {
|
|
6853
6965
|
ETH: string | number | null;
|
|
6854
6966
|
USDC: string | number | null;
|
|
6855
6967
|
};
|
|
6968
|
+
Polkadot: {
|
|
6969
|
+
DOT: string | number | null;
|
|
6970
|
+
};
|
|
6856
6971
|
Solana?: {
|
|
6857
6972
|
USDC?: string | number | null | undefined;
|
|
6858
6973
|
SOL?: string | number | null | undefined;
|
|
@@ -6966,8 +7081,8 @@ declare const rpcResult: {
|
|
|
6966
7081
|
};
|
|
6967
7082
|
} | null;
|
|
6968
7083
|
};
|
|
6969
|
-
|
|
6970
|
-
|
|
7084
|
+
Arbitrum: {
|
|
7085
|
+
ETH: {
|
|
6971
7086
|
limit_order_fee_hundredth_pips: number;
|
|
6972
7087
|
range_order_fee_hundredth_pips: number;
|
|
6973
7088
|
range_order_total_fees_earned: {
|
|
@@ -6991,9 +7106,7 @@ declare const rpcResult: {
|
|
|
6991
7106
|
asset: "USDC";
|
|
6992
7107
|
};
|
|
6993
7108
|
} | null;
|
|
6994
|
-
|
|
6995
|
-
Arbitrum: {
|
|
6996
|
-
ETH: {
|
|
7109
|
+
USDC: {
|
|
6997
7110
|
limit_order_fee_hundredth_pips: number;
|
|
6998
7111
|
range_order_fee_hundredth_pips: number;
|
|
6999
7112
|
range_order_total_fees_earned: {
|
|
@@ -7017,7 +7130,9 @@ declare const rpcResult: {
|
|
|
7017
7130
|
asset: "USDC";
|
|
7018
7131
|
};
|
|
7019
7132
|
} | null;
|
|
7020
|
-
|
|
7133
|
+
};
|
|
7134
|
+
Polkadot: {
|
|
7135
|
+
DOT: {
|
|
7021
7136
|
limit_order_fee_hundredth_pips: number;
|
|
7022
7137
|
range_order_fee_hundredth_pips: number;
|
|
7023
7138
|
range_order_total_fees_earned: {
|
|
@@ -7167,9 +7282,6 @@ declare const rpcResult: {
|
|
|
7167
7282
|
FLIP: bigint;
|
|
7168
7283
|
USDT: bigint;
|
|
7169
7284
|
};
|
|
7170
|
-
Polkadot: {
|
|
7171
|
-
DOT: bigint;
|
|
7172
|
-
};
|
|
7173
7285
|
Arbitrum: {
|
|
7174
7286
|
ETH: bigint;
|
|
7175
7287
|
USDC: bigint;
|
|
@@ -7178,6 +7290,9 @@ declare const rpcResult: {
|
|
|
7178
7290
|
USDC: bigint;
|
|
7179
7291
|
SOL: bigint;
|
|
7180
7292
|
};
|
|
7293
|
+
Polkadot: {
|
|
7294
|
+
DOT: bigint;
|
|
7295
|
+
};
|
|
7181
7296
|
}, {
|
|
7182
7297
|
Bitcoin: {
|
|
7183
7298
|
BTC: string | number;
|
|
@@ -7188,13 +7303,13 @@ declare const rpcResult: {
|
|
|
7188
7303
|
FLIP: string | number;
|
|
7189
7304
|
USDT: string | number;
|
|
7190
7305
|
};
|
|
7191
|
-
Polkadot: {
|
|
7192
|
-
DOT: string | number;
|
|
7193
|
-
};
|
|
7194
7306
|
Arbitrum: {
|
|
7195
7307
|
ETH: string | number;
|
|
7196
7308
|
USDC: string | number;
|
|
7197
7309
|
};
|
|
7310
|
+
Polkadot: {
|
|
7311
|
+
DOT: string | number;
|
|
7312
|
+
};
|
|
7198
7313
|
Solana?: {
|
|
7199
7314
|
USDC?: string | number | undefined;
|
|
7200
7315
|
SOL?: string | number | undefined;
|
|
@@ -7259,10 +7374,7 @@ declare const rpcResult: {
|
|
|
7259
7374
|
ETH: bigint | null;
|
|
7260
7375
|
USDC: bigint | null;
|
|
7261
7376
|
FLIP: bigint | null;
|
|
7262
|
-
USDT: bigint | null;
|
|
7263
|
-
};
|
|
7264
|
-
Polkadot: {
|
|
7265
|
-
DOT: bigint | null;
|
|
7377
|
+
USDT: bigint | null;
|
|
7266
7378
|
};
|
|
7267
7379
|
Arbitrum: {
|
|
7268
7380
|
ETH: bigint | null;
|
|
@@ -7272,6 +7384,9 @@ declare const rpcResult: {
|
|
|
7272
7384
|
USDC: bigint | null;
|
|
7273
7385
|
SOL: bigint | null;
|
|
7274
7386
|
};
|
|
7387
|
+
Polkadot: {
|
|
7388
|
+
DOT: bigint | null;
|
|
7389
|
+
};
|
|
7275
7390
|
}, {
|
|
7276
7391
|
Bitcoin: {
|
|
7277
7392
|
BTC: string | number | null;
|
|
@@ -7282,13 +7397,13 @@ declare const rpcResult: {
|
|
|
7282
7397
|
FLIP: string | number | null;
|
|
7283
7398
|
USDT: string | number | null;
|
|
7284
7399
|
};
|
|
7285
|
-
Polkadot: {
|
|
7286
|
-
DOT: string | number | null;
|
|
7287
|
-
};
|
|
7288
7400
|
Arbitrum: {
|
|
7289
7401
|
ETH: string | number | null;
|
|
7290
7402
|
USDC: string | number | null;
|
|
7291
7403
|
};
|
|
7404
|
+
Polkadot: {
|
|
7405
|
+
DOT: string | number | null;
|
|
7406
|
+
};
|
|
7292
7407
|
Solana?: {
|
|
7293
7408
|
USDC?: string | number | null | undefined;
|
|
7294
7409
|
SOL?: string | number | null | undefined;
|
|
@@ -7355,9 +7470,6 @@ declare const rpcResult: {
|
|
|
7355
7470
|
FLIP: bigint | null;
|
|
7356
7471
|
USDT: bigint | null;
|
|
7357
7472
|
};
|
|
7358
|
-
Polkadot: {
|
|
7359
|
-
DOT: bigint | null;
|
|
7360
|
-
};
|
|
7361
7473
|
Arbitrum: {
|
|
7362
7474
|
ETH: bigint | null;
|
|
7363
7475
|
USDC: bigint | null;
|
|
@@ -7366,6 +7478,9 @@ declare const rpcResult: {
|
|
|
7366
7478
|
USDC: bigint | null;
|
|
7367
7479
|
SOL: bigint | null;
|
|
7368
7480
|
};
|
|
7481
|
+
Polkadot: {
|
|
7482
|
+
DOT: bigint | null;
|
|
7483
|
+
};
|
|
7369
7484
|
}, {
|
|
7370
7485
|
Bitcoin: {
|
|
7371
7486
|
BTC: string | number | null;
|
|
@@ -7376,13 +7491,13 @@ declare const rpcResult: {
|
|
|
7376
7491
|
FLIP: string | number | null;
|
|
7377
7492
|
USDT: string | number | null;
|
|
7378
7493
|
};
|
|
7379
|
-
Polkadot: {
|
|
7380
|
-
DOT: string | number | null;
|
|
7381
|
-
};
|
|
7382
7494
|
Arbitrum: {
|
|
7383
7495
|
ETH: string | number | null;
|
|
7384
7496
|
USDC: string | number | null;
|
|
7385
7497
|
};
|
|
7498
|
+
Polkadot: {
|
|
7499
|
+
DOT: string | number | null;
|
|
7500
|
+
};
|
|
7386
7501
|
Solana?: {
|
|
7387
7502
|
USDC?: string | number | null | undefined;
|
|
7388
7503
|
SOL?: string | number | null | undefined;
|
|
@@ -7397,14 +7512,14 @@ declare const rpcResult: {
|
|
|
7397
7512
|
}, "strip", z.ZodTypeAny, {
|
|
7398
7513
|
Bitcoin: number | null;
|
|
7399
7514
|
Ethereum: number | null;
|
|
7400
|
-
Polkadot: number | null;
|
|
7401
7515
|
Arbitrum: number | null;
|
|
7402
7516
|
Solana: number | null;
|
|
7517
|
+
Polkadot: number | null;
|
|
7403
7518
|
}, {
|
|
7404
7519
|
Bitcoin: number | null;
|
|
7405
7520
|
Ethereum: number | null;
|
|
7406
|
-
Polkadot: number | null;
|
|
7407
7521
|
Arbitrum: number | null;
|
|
7522
|
+
Polkadot: number | null;
|
|
7408
7523
|
Solana?: number | null | undefined;
|
|
7409
7524
|
}>;
|
|
7410
7525
|
egress_dust_limits: z.ZodObject<{
|
|
@@ -7468,9 +7583,6 @@ declare const rpcResult: {
|
|
|
7468
7583
|
FLIP: bigint;
|
|
7469
7584
|
USDT: bigint;
|
|
7470
7585
|
};
|
|
7471
|
-
Polkadot: {
|
|
7472
|
-
DOT: bigint;
|
|
7473
|
-
};
|
|
7474
7586
|
Arbitrum: {
|
|
7475
7587
|
ETH: bigint;
|
|
7476
7588
|
USDC: bigint;
|
|
@@ -7479,6 +7591,9 @@ declare const rpcResult: {
|
|
|
7479
7591
|
USDC: bigint;
|
|
7480
7592
|
SOL: bigint;
|
|
7481
7593
|
};
|
|
7594
|
+
Polkadot: {
|
|
7595
|
+
DOT: bigint;
|
|
7596
|
+
};
|
|
7482
7597
|
}, {
|
|
7483
7598
|
Bitcoin: {
|
|
7484
7599
|
BTC: string | number;
|
|
@@ -7489,13 +7604,13 @@ declare const rpcResult: {
|
|
|
7489
7604
|
FLIP: string | number;
|
|
7490
7605
|
USDT: string | number;
|
|
7491
7606
|
};
|
|
7492
|
-
Polkadot: {
|
|
7493
|
-
DOT: string | number;
|
|
7494
|
-
};
|
|
7495
7607
|
Arbitrum: {
|
|
7496
7608
|
ETH: string | number;
|
|
7497
7609
|
USDC: string | number;
|
|
7498
7610
|
};
|
|
7611
|
+
Polkadot: {
|
|
7612
|
+
DOT: string | number;
|
|
7613
|
+
};
|
|
7499
7614
|
Solana?: {
|
|
7500
7615
|
USDC?: string | number | undefined;
|
|
7501
7616
|
SOL?: string | number | undefined;
|
|
@@ -7510,14 +7625,14 @@ declare const rpcResult: {
|
|
|
7510
7625
|
}, "strip", z.ZodTypeAny, {
|
|
7511
7626
|
Bitcoin: bigint;
|
|
7512
7627
|
Ethereum: bigint;
|
|
7513
|
-
Polkadot: bigint;
|
|
7514
7628
|
Arbitrum: bigint;
|
|
7515
7629
|
Solana: bigint;
|
|
7630
|
+
Polkadot: bigint;
|
|
7516
7631
|
}, {
|
|
7517
7632
|
Bitcoin: string | number;
|
|
7518
7633
|
Ethereum: string | number;
|
|
7519
|
-
Polkadot: string | number;
|
|
7520
7634
|
Arbitrum: string | number;
|
|
7635
|
+
Polkadot: string | number;
|
|
7521
7636
|
Solana?: string | number | undefined;
|
|
7522
7637
|
}>;
|
|
7523
7638
|
max_swap_retry_duration_blocks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -7529,14 +7644,14 @@ declare const rpcResult: {
|
|
|
7529
7644
|
}, "strip", z.ZodTypeAny, {
|
|
7530
7645
|
Bitcoin: number;
|
|
7531
7646
|
Ethereum: number;
|
|
7532
|
-
Polkadot: number;
|
|
7533
7647
|
Arbitrum: number;
|
|
7534
7648
|
Solana: number;
|
|
7649
|
+
Polkadot: number;
|
|
7535
7650
|
}, {
|
|
7536
7651
|
Bitcoin: number;
|
|
7537
7652
|
Ethereum: number;
|
|
7538
|
-
Polkadot: number;
|
|
7539
7653
|
Arbitrum: number;
|
|
7654
|
+
Polkadot: number;
|
|
7540
7655
|
Solana?: number | undefined;
|
|
7541
7656
|
}>>>;
|
|
7542
7657
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7550,9 +7665,6 @@ declare const rpcResult: {
|
|
|
7550
7665
|
FLIP: bigint;
|
|
7551
7666
|
USDT: bigint;
|
|
7552
7667
|
};
|
|
7553
|
-
Polkadot: {
|
|
7554
|
-
DOT: bigint;
|
|
7555
|
-
};
|
|
7556
7668
|
Arbitrum: {
|
|
7557
7669
|
ETH: bigint;
|
|
7558
7670
|
USDC: bigint;
|
|
@@ -7561,6 +7673,9 @@ declare const rpcResult: {
|
|
|
7561
7673
|
USDC: bigint;
|
|
7562
7674
|
SOL: bigint;
|
|
7563
7675
|
};
|
|
7676
|
+
Polkadot: {
|
|
7677
|
+
DOT: bigint;
|
|
7678
|
+
};
|
|
7564
7679
|
};
|
|
7565
7680
|
ingress_fees: {
|
|
7566
7681
|
Bitcoin: {
|
|
@@ -7572,9 +7687,6 @@ declare const rpcResult: {
|
|
|
7572
7687
|
FLIP: bigint | null;
|
|
7573
7688
|
USDT: bigint | null;
|
|
7574
7689
|
};
|
|
7575
|
-
Polkadot: {
|
|
7576
|
-
DOT: bigint | null;
|
|
7577
|
-
};
|
|
7578
7690
|
Arbitrum: {
|
|
7579
7691
|
ETH: bigint | null;
|
|
7580
7692
|
USDC: bigint | null;
|
|
@@ -7583,6 +7695,9 @@ declare const rpcResult: {
|
|
|
7583
7695
|
USDC: bigint | null;
|
|
7584
7696
|
SOL: bigint | null;
|
|
7585
7697
|
};
|
|
7698
|
+
Polkadot: {
|
|
7699
|
+
DOT: bigint | null;
|
|
7700
|
+
};
|
|
7586
7701
|
};
|
|
7587
7702
|
egress_fees: {
|
|
7588
7703
|
Bitcoin: {
|
|
@@ -7594,9 +7709,6 @@ declare const rpcResult: {
|
|
|
7594
7709
|
FLIP: bigint | null;
|
|
7595
7710
|
USDT: bigint | null;
|
|
7596
7711
|
};
|
|
7597
|
-
Polkadot: {
|
|
7598
|
-
DOT: bigint | null;
|
|
7599
|
-
};
|
|
7600
7712
|
Arbitrum: {
|
|
7601
7713
|
ETH: bigint | null;
|
|
7602
7714
|
USDC: bigint | null;
|
|
@@ -7605,13 +7717,16 @@ declare const rpcResult: {
|
|
|
7605
7717
|
USDC: bigint | null;
|
|
7606
7718
|
SOL: bigint | null;
|
|
7607
7719
|
};
|
|
7720
|
+
Polkadot: {
|
|
7721
|
+
DOT: bigint | null;
|
|
7722
|
+
};
|
|
7608
7723
|
};
|
|
7609
7724
|
witness_safety_margins: {
|
|
7610
7725
|
Bitcoin: number | null;
|
|
7611
7726
|
Ethereum: number | null;
|
|
7612
|
-
Polkadot: number | null;
|
|
7613
7727
|
Arbitrum: number | null;
|
|
7614
7728
|
Solana: number | null;
|
|
7729
|
+
Polkadot: number | null;
|
|
7615
7730
|
};
|
|
7616
7731
|
egress_dust_limits: {
|
|
7617
7732
|
Bitcoin: {
|
|
@@ -7623,9 +7738,6 @@ declare const rpcResult: {
|
|
|
7623
7738
|
FLIP: bigint;
|
|
7624
7739
|
USDT: bigint;
|
|
7625
7740
|
};
|
|
7626
|
-
Polkadot: {
|
|
7627
|
-
DOT: bigint;
|
|
7628
|
-
};
|
|
7629
7741
|
Arbitrum: {
|
|
7630
7742
|
ETH: bigint;
|
|
7631
7743
|
USDC: bigint;
|
|
@@ -7634,20 +7746,23 @@ declare const rpcResult: {
|
|
|
7634
7746
|
USDC: bigint;
|
|
7635
7747
|
SOL: bigint;
|
|
7636
7748
|
};
|
|
7749
|
+
Polkadot: {
|
|
7750
|
+
DOT: bigint;
|
|
7751
|
+
};
|
|
7637
7752
|
};
|
|
7638
7753
|
channel_opening_fees: {
|
|
7639
7754
|
Bitcoin: bigint;
|
|
7640
7755
|
Ethereum: bigint;
|
|
7641
|
-
Polkadot: bigint;
|
|
7642
7756
|
Arbitrum: bigint;
|
|
7643
7757
|
Solana: bigint;
|
|
7758
|
+
Polkadot: bigint;
|
|
7644
7759
|
};
|
|
7645
7760
|
max_swap_retry_duration_blocks: {
|
|
7646
7761
|
Bitcoin: number;
|
|
7647
7762
|
Ethereum: number;
|
|
7648
|
-
Polkadot: number;
|
|
7649
7763
|
Arbitrum: number;
|
|
7650
7764
|
Solana: number;
|
|
7765
|
+
Polkadot: number;
|
|
7651
7766
|
};
|
|
7652
7767
|
}, {
|
|
7653
7768
|
minimum_deposit_amounts: {
|
|
@@ -7660,13 +7775,13 @@ declare const rpcResult: {
|
|
|
7660
7775
|
FLIP: string | number;
|
|
7661
7776
|
USDT: string | number;
|
|
7662
7777
|
};
|
|
7663
|
-
Polkadot: {
|
|
7664
|
-
DOT: string | number;
|
|
7665
|
-
};
|
|
7666
7778
|
Arbitrum: {
|
|
7667
7779
|
ETH: string | number;
|
|
7668
7780
|
USDC: string | number;
|
|
7669
7781
|
};
|
|
7782
|
+
Polkadot: {
|
|
7783
|
+
DOT: string | number;
|
|
7784
|
+
};
|
|
7670
7785
|
Solana?: {
|
|
7671
7786
|
USDC?: string | number | undefined;
|
|
7672
7787
|
SOL?: string | number | undefined;
|
|
@@ -7682,13 +7797,13 @@ declare const rpcResult: {
|
|
|
7682
7797
|
FLIP: string | number | null;
|
|
7683
7798
|
USDT: string | number | null;
|
|
7684
7799
|
};
|
|
7685
|
-
Polkadot: {
|
|
7686
|
-
DOT: string | number | null;
|
|
7687
|
-
};
|
|
7688
7800
|
Arbitrum: {
|
|
7689
7801
|
ETH: string | number | null;
|
|
7690
7802
|
USDC: string | number | null;
|
|
7691
7803
|
};
|
|
7804
|
+
Polkadot: {
|
|
7805
|
+
DOT: string | number | null;
|
|
7806
|
+
};
|
|
7692
7807
|
Solana?: {
|
|
7693
7808
|
USDC?: string | number | null | undefined;
|
|
7694
7809
|
SOL?: string | number | null | undefined;
|
|
@@ -7704,13 +7819,13 @@ declare const rpcResult: {
|
|
|
7704
7819
|
FLIP: string | number | null;
|
|
7705
7820
|
USDT: string | number | null;
|
|
7706
7821
|
};
|
|
7707
|
-
Polkadot: {
|
|
7708
|
-
DOT: string | number | null;
|
|
7709
|
-
};
|
|
7710
7822
|
Arbitrum: {
|
|
7711
7823
|
ETH: string | number | null;
|
|
7712
7824
|
USDC: string | number | null;
|
|
7713
7825
|
};
|
|
7826
|
+
Polkadot: {
|
|
7827
|
+
DOT: string | number | null;
|
|
7828
|
+
};
|
|
7714
7829
|
Solana?: {
|
|
7715
7830
|
USDC?: string | number | null | undefined;
|
|
7716
7831
|
SOL?: string | number | null | undefined;
|
|
@@ -7719,8 +7834,8 @@ declare const rpcResult: {
|
|
|
7719
7834
|
witness_safety_margins: {
|
|
7720
7835
|
Bitcoin: number | null;
|
|
7721
7836
|
Ethereum: number | null;
|
|
7722
|
-
Polkadot: number | null;
|
|
7723
7837
|
Arbitrum: number | null;
|
|
7838
|
+
Polkadot: number | null;
|
|
7724
7839
|
Solana?: number | null | undefined;
|
|
7725
7840
|
};
|
|
7726
7841
|
egress_dust_limits: {
|
|
@@ -7733,13 +7848,13 @@ declare const rpcResult: {
|
|
|
7733
7848
|
FLIP: string | number;
|
|
7734
7849
|
USDT: string | number;
|
|
7735
7850
|
};
|
|
7736
|
-
Polkadot: {
|
|
7737
|
-
DOT: string | number;
|
|
7738
|
-
};
|
|
7739
7851
|
Arbitrum: {
|
|
7740
7852
|
ETH: string | number;
|
|
7741
7853
|
USDC: string | number;
|
|
7742
7854
|
};
|
|
7855
|
+
Polkadot: {
|
|
7856
|
+
DOT: string | number;
|
|
7857
|
+
};
|
|
7743
7858
|
Solana?: {
|
|
7744
7859
|
USDC?: string | number | undefined;
|
|
7745
7860
|
SOL?: string | number | undefined;
|
|
@@ -7748,15 +7863,15 @@ declare const rpcResult: {
|
|
|
7748
7863
|
channel_opening_fees: {
|
|
7749
7864
|
Bitcoin: string | number;
|
|
7750
7865
|
Ethereum: string | number;
|
|
7751
|
-
Polkadot: string | number;
|
|
7752
7866
|
Arbitrum: string | number;
|
|
7867
|
+
Polkadot: string | number;
|
|
7753
7868
|
Solana?: string | number | undefined;
|
|
7754
7869
|
};
|
|
7755
7870
|
max_swap_retry_duration_blocks?: {
|
|
7756
7871
|
Bitcoin: number;
|
|
7757
7872
|
Ethereum: number;
|
|
7758
|
-
Polkadot: number;
|
|
7759
7873
|
Arbitrum: number;
|
|
7874
|
+
Polkadot: number;
|
|
7760
7875
|
Solana?: number | undefined;
|
|
7761
7876
|
} | undefined;
|
|
7762
7877
|
}>, Omit<{
|
|
@@ -7770,9 +7885,6 @@ declare const rpcResult: {
|
|
|
7770
7885
|
FLIP: bigint;
|
|
7771
7886
|
USDT: bigint;
|
|
7772
7887
|
};
|
|
7773
|
-
Polkadot: {
|
|
7774
|
-
DOT: bigint;
|
|
7775
|
-
};
|
|
7776
7888
|
Arbitrum: {
|
|
7777
7889
|
ETH: bigint;
|
|
7778
7890
|
USDC: bigint;
|
|
@@ -7781,6 +7893,9 @@ declare const rpcResult: {
|
|
|
7781
7893
|
USDC: bigint;
|
|
7782
7894
|
SOL: bigint;
|
|
7783
7895
|
};
|
|
7896
|
+
Polkadot: {
|
|
7897
|
+
DOT: bigint;
|
|
7898
|
+
};
|
|
7784
7899
|
};
|
|
7785
7900
|
ingress_fees: {
|
|
7786
7901
|
Bitcoin: {
|
|
@@ -7792,9 +7907,6 @@ declare const rpcResult: {
|
|
|
7792
7907
|
FLIP: bigint | null;
|
|
7793
7908
|
USDT: bigint | null;
|
|
7794
7909
|
};
|
|
7795
|
-
Polkadot: {
|
|
7796
|
-
DOT: bigint | null;
|
|
7797
|
-
};
|
|
7798
7910
|
Arbitrum: {
|
|
7799
7911
|
ETH: bigint | null;
|
|
7800
7912
|
USDC: bigint | null;
|
|
@@ -7803,6 +7915,9 @@ declare const rpcResult: {
|
|
|
7803
7915
|
USDC: bigint | null;
|
|
7804
7916
|
SOL: bigint | null;
|
|
7805
7917
|
};
|
|
7918
|
+
Polkadot: {
|
|
7919
|
+
DOT: bigint | null;
|
|
7920
|
+
};
|
|
7806
7921
|
};
|
|
7807
7922
|
egress_fees: {
|
|
7808
7923
|
Bitcoin: {
|
|
@@ -7814,9 +7929,6 @@ declare const rpcResult: {
|
|
|
7814
7929
|
FLIP: bigint | null;
|
|
7815
7930
|
USDT: bigint | null;
|
|
7816
7931
|
};
|
|
7817
|
-
Polkadot: {
|
|
7818
|
-
DOT: bigint | null;
|
|
7819
|
-
};
|
|
7820
7932
|
Arbitrum: {
|
|
7821
7933
|
ETH: bigint | null;
|
|
7822
7934
|
USDC: bigint | null;
|
|
@@ -7825,13 +7937,16 @@ declare const rpcResult: {
|
|
|
7825
7937
|
USDC: bigint | null;
|
|
7826
7938
|
SOL: bigint | null;
|
|
7827
7939
|
};
|
|
7940
|
+
Polkadot: {
|
|
7941
|
+
DOT: bigint | null;
|
|
7942
|
+
};
|
|
7828
7943
|
};
|
|
7829
7944
|
witness_safety_margins: {
|
|
7830
7945
|
Bitcoin: number | null;
|
|
7831
7946
|
Ethereum: number | null;
|
|
7832
|
-
Polkadot: number | null;
|
|
7833
7947
|
Arbitrum: number | null;
|
|
7834
7948
|
Solana: number | null;
|
|
7949
|
+
Polkadot: number | null;
|
|
7835
7950
|
};
|
|
7836
7951
|
egress_dust_limits: {
|
|
7837
7952
|
Bitcoin: {
|
|
@@ -7843,9 +7958,6 @@ declare const rpcResult: {
|
|
|
7843
7958
|
FLIP: bigint;
|
|
7844
7959
|
USDT: bigint;
|
|
7845
7960
|
};
|
|
7846
|
-
Polkadot: {
|
|
7847
|
-
DOT: bigint;
|
|
7848
|
-
};
|
|
7849
7961
|
Arbitrum: {
|
|
7850
7962
|
ETH: bigint;
|
|
7851
7963
|
USDC: bigint;
|
|
@@ -7854,20 +7966,23 @@ declare const rpcResult: {
|
|
|
7854
7966
|
USDC: bigint;
|
|
7855
7967
|
SOL: bigint;
|
|
7856
7968
|
};
|
|
7969
|
+
Polkadot: {
|
|
7970
|
+
DOT: bigint;
|
|
7971
|
+
};
|
|
7857
7972
|
};
|
|
7858
7973
|
channel_opening_fees: {
|
|
7859
7974
|
Bitcoin: bigint;
|
|
7860
7975
|
Ethereum: bigint;
|
|
7861
|
-
Polkadot: bigint;
|
|
7862
7976
|
Arbitrum: bigint;
|
|
7863
7977
|
Solana: bigint;
|
|
7978
|
+
Polkadot: bigint;
|
|
7864
7979
|
};
|
|
7865
7980
|
max_swap_retry_duration_blocks: {
|
|
7866
7981
|
Bitcoin: number;
|
|
7867
7982
|
Ethereum: number;
|
|
7868
|
-
Polkadot: number;
|
|
7869
7983
|
Arbitrum: number;
|
|
7870
7984
|
Solana: number;
|
|
7985
|
+
Polkadot: number;
|
|
7871
7986
|
};
|
|
7872
7987
|
}, "egress_dust_limits"> & {
|
|
7873
7988
|
readonly minimum_egress_amounts: {
|
|
@@ -7880,9 +7995,6 @@ declare const rpcResult: {
|
|
|
7880
7995
|
FLIP: bigint;
|
|
7881
7996
|
USDT: bigint;
|
|
7882
7997
|
};
|
|
7883
|
-
Polkadot: {
|
|
7884
|
-
DOT: bigint;
|
|
7885
|
-
};
|
|
7886
7998
|
Arbitrum: {
|
|
7887
7999
|
ETH: bigint;
|
|
7888
8000
|
USDC: bigint;
|
|
@@ -7891,6 +8003,9 @@ declare const rpcResult: {
|
|
|
7891
8003
|
USDC: bigint;
|
|
7892
8004
|
SOL: bigint;
|
|
7893
8005
|
};
|
|
8006
|
+
Polkadot: {
|
|
8007
|
+
DOT: bigint;
|
|
8008
|
+
};
|
|
7894
8009
|
};
|
|
7895
8010
|
}, {
|
|
7896
8011
|
minimum_deposit_amounts: {
|
|
@@ -7903,13 +8018,13 @@ declare const rpcResult: {
|
|
|
7903
8018
|
FLIP: string | number;
|
|
7904
8019
|
USDT: string | number;
|
|
7905
8020
|
};
|
|
7906
|
-
Polkadot: {
|
|
7907
|
-
DOT: string | number;
|
|
7908
|
-
};
|
|
7909
8021
|
Arbitrum: {
|
|
7910
8022
|
ETH: string | number;
|
|
7911
8023
|
USDC: string | number;
|
|
7912
8024
|
};
|
|
8025
|
+
Polkadot: {
|
|
8026
|
+
DOT: string | number;
|
|
8027
|
+
};
|
|
7913
8028
|
Solana?: {
|
|
7914
8029
|
USDC?: string | number | undefined;
|
|
7915
8030
|
SOL?: string | number | undefined;
|
|
@@ -7925,13 +8040,13 @@ declare const rpcResult: {
|
|
|
7925
8040
|
FLIP: string | number | null;
|
|
7926
8041
|
USDT: string | number | null;
|
|
7927
8042
|
};
|
|
7928
|
-
Polkadot: {
|
|
7929
|
-
DOT: string | number | null;
|
|
7930
|
-
};
|
|
7931
8043
|
Arbitrum: {
|
|
7932
8044
|
ETH: string | number | null;
|
|
7933
8045
|
USDC: string | number | null;
|
|
7934
8046
|
};
|
|
8047
|
+
Polkadot: {
|
|
8048
|
+
DOT: string | number | null;
|
|
8049
|
+
};
|
|
7935
8050
|
Solana?: {
|
|
7936
8051
|
USDC?: string | number | null | undefined;
|
|
7937
8052
|
SOL?: string | number | null | undefined;
|
|
@@ -7947,13 +8062,13 @@ declare const rpcResult: {
|
|
|
7947
8062
|
FLIP: string | number | null;
|
|
7948
8063
|
USDT: string | number | null;
|
|
7949
8064
|
};
|
|
7950
|
-
Polkadot: {
|
|
7951
|
-
DOT: string | number | null;
|
|
7952
|
-
};
|
|
7953
8065
|
Arbitrum: {
|
|
7954
8066
|
ETH: string | number | null;
|
|
7955
8067
|
USDC: string | number | null;
|
|
7956
8068
|
};
|
|
8069
|
+
Polkadot: {
|
|
8070
|
+
DOT: string | number | null;
|
|
8071
|
+
};
|
|
7957
8072
|
Solana?: {
|
|
7958
8073
|
USDC?: string | number | null | undefined;
|
|
7959
8074
|
SOL?: string | number | null | undefined;
|
|
@@ -7962,8 +8077,8 @@ declare const rpcResult: {
|
|
|
7962
8077
|
witness_safety_margins: {
|
|
7963
8078
|
Bitcoin: number | null;
|
|
7964
8079
|
Ethereum: number | null;
|
|
7965
|
-
Polkadot: number | null;
|
|
7966
8080
|
Arbitrum: number | null;
|
|
8081
|
+
Polkadot: number | null;
|
|
7967
8082
|
Solana?: number | null | undefined;
|
|
7968
8083
|
};
|
|
7969
8084
|
egress_dust_limits: {
|
|
@@ -7976,13 +8091,13 @@ declare const rpcResult: {
|
|
|
7976
8091
|
FLIP: string | number;
|
|
7977
8092
|
USDT: string | number;
|
|
7978
8093
|
};
|
|
7979
|
-
Polkadot: {
|
|
7980
|
-
DOT: string | number;
|
|
7981
|
-
};
|
|
7982
8094
|
Arbitrum: {
|
|
7983
8095
|
ETH: string | number;
|
|
7984
8096
|
USDC: string | number;
|
|
7985
8097
|
};
|
|
8098
|
+
Polkadot: {
|
|
8099
|
+
DOT: string | number;
|
|
8100
|
+
};
|
|
7986
8101
|
Solana?: {
|
|
7987
8102
|
USDC?: string | number | undefined;
|
|
7988
8103
|
SOL?: string | number | undefined;
|
|
@@ -7991,15 +8106,15 @@ declare const rpcResult: {
|
|
|
7991
8106
|
channel_opening_fees: {
|
|
7992
8107
|
Bitcoin: string | number;
|
|
7993
8108
|
Ethereum: string | number;
|
|
7994
|
-
Polkadot: string | number;
|
|
7995
8109
|
Arbitrum: string | number;
|
|
8110
|
+
Polkadot: string | number;
|
|
7996
8111
|
Solana?: string | number | undefined;
|
|
7997
8112
|
};
|
|
7998
8113
|
max_swap_retry_duration_blocks?: {
|
|
7999
8114
|
Bitcoin: number;
|
|
8000
8115
|
Ethereum: number;
|
|
8001
|
-
Polkadot: number;
|
|
8002
8116
|
Arbitrum: number;
|
|
8117
|
+
Polkadot: number;
|
|
8003
8118
|
Solana?: number | undefined;
|
|
8004
8119
|
} | undefined;
|
|
8005
8120
|
}>;
|
|
@@ -10952,8 +11067,8 @@ declare const rpcResult: {
|
|
|
10952
11067
|
};
|
|
10953
11068
|
};
|
|
10954
11069
|
};
|
|
10955
|
-
|
|
10956
|
-
|
|
11070
|
+
Arbitrum: {
|
|
11071
|
+
ETH: {
|
|
10957
11072
|
limit_order_fee_hundredth_pips: number;
|
|
10958
11073
|
range_order_fee_hundredth_pips: number;
|
|
10959
11074
|
range_order_total_fees_earned: {
|
|
@@ -11000,9 +11115,7 @@ declare const rpcResult: {
|
|
|
11000
11115
|
readonly asset: "USDC";
|
|
11001
11116
|
};
|
|
11002
11117
|
};
|
|
11003
|
-
|
|
11004
|
-
Arbitrum: {
|
|
11005
|
-
ETH: {
|
|
11118
|
+
USDC: {
|
|
11006
11119
|
limit_order_fee_hundredth_pips: number;
|
|
11007
11120
|
range_order_fee_hundredth_pips: number;
|
|
11008
11121
|
range_order_total_fees_earned: {
|
|
@@ -11049,6 +11162,8 @@ declare const rpcResult: {
|
|
|
11049
11162
|
readonly asset: "USDC";
|
|
11050
11163
|
};
|
|
11051
11164
|
};
|
|
11165
|
+
};
|
|
11166
|
+
Solana: {
|
|
11052
11167
|
USDC: {
|
|
11053
11168
|
limit_order_fee_hundredth_pips: number;
|
|
11054
11169
|
range_order_fee_hundredth_pips: number;
|
|
@@ -11096,9 +11211,7 @@ declare const rpcResult: {
|
|
|
11096
11211
|
readonly asset: "USDC";
|
|
11097
11212
|
};
|
|
11098
11213
|
};
|
|
11099
|
-
|
|
11100
|
-
Solana: {
|
|
11101
|
-
USDC: {
|
|
11214
|
+
SOL: {
|
|
11102
11215
|
limit_order_fee_hundredth_pips: number;
|
|
11103
11216
|
range_order_fee_hundredth_pips: number;
|
|
11104
11217
|
range_order_total_fees_earned: {
|
|
@@ -11145,7 +11258,9 @@ declare const rpcResult: {
|
|
|
11145
11258
|
readonly asset: "USDC";
|
|
11146
11259
|
};
|
|
11147
11260
|
};
|
|
11148
|
-
|
|
11261
|
+
};
|
|
11262
|
+
Polkadot: {
|
|
11263
|
+
DOT: {
|
|
11149
11264
|
limit_order_fee_hundredth_pips: number;
|
|
11150
11265
|
range_order_fee_hundredth_pips: number;
|
|
11151
11266
|
range_order_total_fees_earned: {
|
|
@@ -11294,8 +11409,8 @@ declare const rpcResult: {
|
|
|
11294
11409
|
};
|
|
11295
11410
|
} | null;
|
|
11296
11411
|
};
|
|
11297
|
-
|
|
11298
|
-
|
|
11412
|
+
Arbitrum: {
|
|
11413
|
+
ETH: {
|
|
11299
11414
|
limit_order_fee_hundredth_pips: number;
|
|
11300
11415
|
range_order_fee_hundredth_pips: number;
|
|
11301
11416
|
range_order_total_fees_earned: {
|
|
@@ -11319,9 +11434,7 @@ declare const rpcResult: {
|
|
|
11319
11434
|
asset: "USDC";
|
|
11320
11435
|
};
|
|
11321
11436
|
} | null;
|
|
11322
|
-
|
|
11323
|
-
Arbitrum: {
|
|
11324
|
-
ETH: {
|
|
11437
|
+
USDC: {
|
|
11325
11438
|
limit_order_fee_hundredth_pips: number;
|
|
11326
11439
|
range_order_fee_hundredth_pips: number;
|
|
11327
11440
|
range_order_total_fees_earned: {
|
|
@@ -11345,7 +11458,9 @@ declare const rpcResult: {
|
|
|
11345
11458
|
asset: "USDC";
|
|
11346
11459
|
};
|
|
11347
11460
|
} | null;
|
|
11348
|
-
|
|
11461
|
+
};
|
|
11462
|
+
Polkadot: {
|
|
11463
|
+
DOT: {
|
|
11349
11464
|
limit_order_fee_hundredth_pips: number;
|
|
11350
11465
|
range_order_fee_hundredth_pips: number;
|
|
11351
11466
|
range_order_total_fees_earned: {
|
|
@@ -11615,8 +11730,8 @@ declare const rpcResult: {
|
|
|
11615
11730
|
};
|
|
11616
11731
|
};
|
|
11617
11732
|
};
|
|
11618
|
-
|
|
11619
|
-
|
|
11733
|
+
Arbitrum: {
|
|
11734
|
+
ETH: {
|
|
11620
11735
|
limit_order_fee_hundredth_pips: number;
|
|
11621
11736
|
range_order_fee_hundredth_pips: number;
|
|
11622
11737
|
range_order_total_fees_earned: {
|
|
@@ -11663,9 +11778,7 @@ declare const rpcResult: {
|
|
|
11663
11778
|
readonly asset: "USDC";
|
|
11664
11779
|
};
|
|
11665
11780
|
};
|
|
11666
|
-
|
|
11667
|
-
Arbitrum: {
|
|
11668
|
-
ETH: {
|
|
11781
|
+
USDC: {
|
|
11669
11782
|
limit_order_fee_hundredth_pips: number;
|
|
11670
11783
|
range_order_fee_hundredth_pips: number;
|
|
11671
11784
|
range_order_total_fees_earned: {
|
|
@@ -11712,6 +11825,8 @@ declare const rpcResult: {
|
|
|
11712
11825
|
readonly asset: "USDC";
|
|
11713
11826
|
};
|
|
11714
11827
|
};
|
|
11828
|
+
};
|
|
11829
|
+
Solana: {
|
|
11715
11830
|
USDC: {
|
|
11716
11831
|
limit_order_fee_hundredth_pips: number;
|
|
11717
11832
|
range_order_fee_hundredth_pips: number;
|
|
@@ -11759,9 +11874,7 @@ declare const rpcResult: {
|
|
|
11759
11874
|
readonly asset: "USDC";
|
|
11760
11875
|
};
|
|
11761
11876
|
};
|
|
11762
|
-
|
|
11763
|
-
Solana: {
|
|
11764
|
-
USDC: {
|
|
11877
|
+
SOL: {
|
|
11765
11878
|
limit_order_fee_hundredth_pips: number;
|
|
11766
11879
|
range_order_fee_hundredth_pips: number;
|
|
11767
11880
|
range_order_total_fees_earned: {
|
|
@@ -11808,7 +11921,9 @@ declare const rpcResult: {
|
|
|
11808
11921
|
readonly asset: "USDC";
|
|
11809
11922
|
};
|
|
11810
11923
|
};
|
|
11811
|
-
|
|
11924
|
+
};
|
|
11925
|
+
Polkadot: {
|
|
11926
|
+
DOT: {
|
|
11812
11927
|
limit_order_fee_hundredth_pips: number;
|
|
11813
11928
|
range_order_fee_hundredth_pips: number;
|
|
11814
11929
|
range_order_total_fees_earned: {
|
|
@@ -11959,8 +12074,8 @@ declare const rpcResult: {
|
|
|
11959
12074
|
};
|
|
11960
12075
|
} | null;
|
|
11961
12076
|
};
|
|
11962
|
-
|
|
11963
|
-
|
|
12077
|
+
Arbitrum: {
|
|
12078
|
+
ETH: {
|
|
11964
12079
|
limit_order_fee_hundredth_pips: number;
|
|
11965
12080
|
range_order_fee_hundredth_pips: number;
|
|
11966
12081
|
range_order_total_fees_earned: {
|
|
@@ -11984,9 +12099,7 @@ declare const rpcResult: {
|
|
|
11984
12099
|
asset: "USDC";
|
|
11985
12100
|
};
|
|
11986
12101
|
} | null;
|
|
11987
|
-
|
|
11988
|
-
Arbitrum: {
|
|
11989
|
-
ETH: {
|
|
12102
|
+
USDC: {
|
|
11990
12103
|
limit_order_fee_hundredth_pips: number;
|
|
11991
12104
|
range_order_fee_hundredth_pips: number;
|
|
11992
12105
|
range_order_total_fees_earned: {
|
|
@@ -12010,7 +12123,9 @@ declare const rpcResult: {
|
|
|
12010
12123
|
asset: "USDC";
|
|
12011
12124
|
};
|
|
12012
12125
|
} | null;
|
|
12013
|
-
|
|
12126
|
+
};
|
|
12127
|
+
Polkadot: {
|
|
12128
|
+
DOT: {
|
|
12014
12129
|
limit_order_fee_hundredth_pips: number;
|
|
12015
12130
|
range_order_fee_hundredth_pips: number;
|
|
12016
12131
|
range_order_total_fees_earned: {
|
|
@@ -13364,9 +13479,6 @@ declare const rpcResult: {
|
|
|
13364
13479
|
FLIP: bigint | null;
|
|
13365
13480
|
USDT: bigint | null;
|
|
13366
13481
|
};
|
|
13367
|
-
Polkadot: {
|
|
13368
|
-
DOT: bigint | null;
|
|
13369
|
-
};
|
|
13370
13482
|
Arbitrum: {
|
|
13371
13483
|
ETH: bigint | null;
|
|
13372
13484
|
USDC: bigint | null;
|
|
@@ -13375,6 +13487,9 @@ declare const rpcResult: {
|
|
|
13375
13487
|
USDC: bigint | null;
|
|
13376
13488
|
SOL: bigint | null;
|
|
13377
13489
|
};
|
|
13490
|
+
Polkadot: {
|
|
13491
|
+
DOT: bigint | null;
|
|
13492
|
+
};
|
|
13378
13493
|
}, {
|
|
13379
13494
|
Bitcoin: {
|
|
13380
13495
|
BTC: string | number | null;
|
|
@@ -13385,13 +13500,13 @@ declare const rpcResult: {
|
|
|
13385
13500
|
FLIP: string | number | null;
|
|
13386
13501
|
USDT: string | number | null;
|
|
13387
13502
|
};
|
|
13388
|
-
Polkadot: {
|
|
13389
|
-
DOT: string | number | null;
|
|
13390
|
-
};
|
|
13391
13503
|
Arbitrum: {
|
|
13392
13504
|
ETH: string | number | null;
|
|
13393
13505
|
USDC: string | number | null;
|
|
13394
13506
|
};
|
|
13507
|
+
Polkadot: {
|
|
13508
|
+
DOT: string | number | null;
|
|
13509
|
+
};
|
|
13395
13510
|
Solana?: {
|
|
13396
13511
|
USDC?: string | number | null | undefined;
|
|
13397
13512
|
SOL?: string | number | null | undefined;
|
|
@@ -13409,9 +13524,6 @@ declare const rpcResult: {
|
|
|
13409
13524
|
FLIP: bigint | null;
|
|
13410
13525
|
USDT: bigint | null;
|
|
13411
13526
|
};
|
|
13412
|
-
Polkadot: {
|
|
13413
|
-
DOT: bigint | null;
|
|
13414
|
-
};
|
|
13415
13527
|
Arbitrum: {
|
|
13416
13528
|
ETH: bigint | null;
|
|
13417
13529
|
USDC: bigint | null;
|
|
@@ -13420,6 +13532,9 @@ declare const rpcResult: {
|
|
|
13420
13532
|
USDC: bigint | null;
|
|
13421
13533
|
SOL: bigint | null;
|
|
13422
13534
|
};
|
|
13535
|
+
Polkadot: {
|
|
13536
|
+
DOT: bigint | null;
|
|
13537
|
+
};
|
|
13423
13538
|
};
|
|
13424
13539
|
network_fee_hundredth_pips: number;
|
|
13425
13540
|
}, {
|
|
@@ -13433,13 +13548,13 @@ declare const rpcResult: {
|
|
|
13433
13548
|
FLIP: string | number | null;
|
|
13434
13549
|
USDT: string | number | null;
|
|
13435
13550
|
};
|
|
13436
|
-
Polkadot: {
|
|
13437
|
-
DOT: string | number | null;
|
|
13438
|
-
};
|
|
13439
13551
|
Arbitrum: {
|
|
13440
13552
|
ETH: string | number | null;
|
|
13441
13553
|
USDC: string | number | null;
|
|
13442
13554
|
};
|
|
13555
|
+
Polkadot: {
|
|
13556
|
+
DOT: string | number | null;
|
|
13557
|
+
};
|
|
13443
13558
|
Solana?: {
|
|
13444
13559
|
USDC?: string | number | null | undefined;
|
|
13445
13560
|
SOL?: string | number | null | undefined;
|