@metamask-previews/bridge-controller 67.4.0-preview-0aca970c8 → 67.4.0-preview-d9398bcb1
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/CHANGELOG.md +2 -2
- package/dist/bridge-controller.cjs +22 -4
- package/dist/bridge-controller.cjs.map +1 -1
- package/dist/bridge-controller.d.cts +7 -1
- package/dist/bridge-controller.d.cts.map +1 -1
- package/dist/bridge-controller.d.mts +7 -1
- package/dist/bridge-controller.d.mts.map +1 -1
- package/dist/bridge-controller.mjs +22 -4
- package/dist/bridge-controller.mjs.map +1 -1
- package/dist/selectors.cjs +24 -16
- package/dist/selectors.cjs.map +1 -1
- package/dist/selectors.d.cts +110 -793
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +110 -793
- package/dist/selectors.d.mts.map +1 -1
- package/dist/selectors.mjs +24 -16
- package/dist/selectors.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +2 -1
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +2 -1
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/utils/validators.cjs +3 -15
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +13 -120
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +13 -120
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +3 -15
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +2 -1
package/dist/selectors.d.cts
CHANGED
|
@@ -15,6 +15,19 @@ type RemoteFeatureFlagControllerState = {
|
|
|
15
15
|
bridgeConfig: unknown;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* Minimal shape required for exchange-rate lookups (used by getExchangeRateByChainIdAndAddress).
|
|
20
|
+
* Uses types from assets-controllers; marketData and conversionRates also accept the bridge format.
|
|
21
|
+
*/
|
|
22
|
+
export type ExchangeRateSourcesForLookup = Pick<BridgeControllerState, 'assetExchangeRates'> & Partial<Pick<CurrencyRateState, 'currencyRates'>> & Partial<Pick<MultichainAssetsRatesControllerState, 'historicalPrices'>> & {
|
|
23
|
+
marketData?: TokenRatesControllerState['marketData'] | Record<string, Record<string, {
|
|
24
|
+
price?: number;
|
|
25
|
+
currency?: string;
|
|
26
|
+
}>>;
|
|
27
|
+
conversionRates?: MultichainAssetsRatesControllerState['conversionRates'] | Record<string, {
|
|
28
|
+
rate: string;
|
|
29
|
+
}>;
|
|
30
|
+
};
|
|
18
31
|
export type BridgeAppState = BridgeControllerState & {
|
|
19
32
|
gasFeeEstimatesByChainId: GasFeeEstimatesByChainId;
|
|
20
33
|
} & ExchangeRateControllerState & {
|
|
@@ -248,7 +261,7 @@ export declare const selectExchangeRateByChainIdAndAddress: (state: BridgeAppSta
|
|
|
248
261
|
* @param params The parameters to pass to {@link getExchangeRateByChainIdAndAddress}
|
|
249
262
|
* @returns Whether an exchange rate is available for the given chain and address
|
|
250
263
|
*/
|
|
251
|
-
export declare const selectIsAssetExchangeRateInState: (exchangeRateSources:
|
|
264
|
+
export declare const selectIsAssetExchangeRateInState: (exchangeRateSources: ExchangeRateSourcesForLookup, chainId?: string | number | undefined, rawAddress?: string | undefined) => boolean;
|
|
252
265
|
export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerState & BridgeControllerState & {
|
|
253
266
|
gasFeeEstimatesByChainId: GasFeeEstimatesByChainId;
|
|
254
267
|
} & MultichainAssetsRatesControllerState & TokenRatesControllerState & CurrencyRateState & Pick<BridgeControllerState, "assetExchangeRates"> & {
|
|
@@ -1027,16 +1040,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1027
1040
|
buyAmount?: string | undefined;
|
|
1028
1041
|
from?: string | undefined;
|
|
1029
1042
|
};
|
|
1030
|
-
typedData: {
|
|
1031
|
-
types: Record<string, {
|
|
1032
|
-
name: string;
|
|
1033
|
-
type: string;
|
|
1034
|
-
}[]>;
|
|
1035
|
-
primaryType: string;
|
|
1036
|
-
domain: Record<string, any>;
|
|
1037
|
-
message: Record<string, any>;
|
|
1038
|
-
};
|
|
1039
1043
|
settlementContract?: string | undefined;
|
|
1044
|
+
relayer?: string | undefined;
|
|
1040
1045
|
} | undefined;
|
|
1041
1046
|
gasSponsored?: boolean | undefined;
|
|
1042
1047
|
};
|
|
@@ -1280,16 +1285,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1280
1285
|
buyAmount?: string | undefined;
|
|
1281
1286
|
from?: string | undefined;
|
|
1282
1287
|
};
|
|
1283
|
-
typedData: {
|
|
1284
|
-
types: Record<string, {
|
|
1285
|
-
name: string;
|
|
1286
|
-
type: string;
|
|
1287
|
-
}[]>;
|
|
1288
|
-
primaryType: string;
|
|
1289
|
-
domain: Record<string, any>;
|
|
1290
|
-
message: Record<string, any>;
|
|
1291
|
-
};
|
|
1292
1288
|
settlementContract?: string | undefined;
|
|
1289
|
+
relayer?: string | undefined;
|
|
1293
1290
|
} | undefined;
|
|
1294
1291
|
gasSponsored?: boolean | undefined;
|
|
1295
1292
|
};
|
|
@@ -1533,16 +1530,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1533
1530
|
buyAmount?: string | undefined;
|
|
1534
1531
|
from?: string | undefined;
|
|
1535
1532
|
};
|
|
1536
|
-
typedData: {
|
|
1537
|
-
types: Record<string, {
|
|
1538
|
-
name: string;
|
|
1539
|
-
type: string;
|
|
1540
|
-
}[]>;
|
|
1541
|
-
primaryType: string;
|
|
1542
|
-
domain: Record<string, any>;
|
|
1543
|
-
message: Record<string, any>;
|
|
1544
|
-
};
|
|
1545
1533
|
settlementContract?: string | undefined;
|
|
1534
|
+
relayer?: string | undefined;
|
|
1546
1535
|
} | undefined;
|
|
1547
1536
|
gasSponsored?: boolean | undefined;
|
|
1548
1537
|
};
|
|
@@ -1797,16 +1786,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1797
1786
|
buyAmount?: string | undefined;
|
|
1798
1787
|
from?: string | undefined;
|
|
1799
1788
|
};
|
|
1800
|
-
typedData: {
|
|
1801
|
-
types: Record<string, {
|
|
1802
|
-
name: string;
|
|
1803
|
-
type: string;
|
|
1804
|
-
}[]>;
|
|
1805
|
-
primaryType: string;
|
|
1806
|
-
domain: Record<string, any>;
|
|
1807
|
-
message: Record<string, any>;
|
|
1808
|
-
};
|
|
1809
1789
|
settlementContract?: string | undefined;
|
|
1790
|
+
relayer?: string | undefined;
|
|
1810
1791
|
} | undefined;
|
|
1811
1792
|
gasSponsored?: boolean | undefined;
|
|
1812
1793
|
};
|
|
@@ -2049,16 +2030,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2049
2030
|
buyAmount?: string | undefined;
|
|
2050
2031
|
from?: string | undefined;
|
|
2051
2032
|
};
|
|
2052
|
-
typedData: {
|
|
2053
|
-
types: Record<string, {
|
|
2054
|
-
name: string;
|
|
2055
|
-
type: string;
|
|
2056
|
-
}[]>;
|
|
2057
|
-
primaryType: string;
|
|
2058
|
-
domain: Record<string, any>;
|
|
2059
|
-
message: Record<string, any>;
|
|
2060
|
-
};
|
|
2061
2033
|
settlementContract?: string | undefined;
|
|
2034
|
+
relayer?: string | undefined;
|
|
2062
2035
|
} | undefined;
|
|
2063
2036
|
gasSponsored?: boolean | undefined;
|
|
2064
2037
|
};
|
|
@@ -2301,16 +2274,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2301
2274
|
buyAmount?: string | undefined;
|
|
2302
2275
|
from?: string | undefined;
|
|
2303
2276
|
};
|
|
2304
|
-
typedData: {
|
|
2305
|
-
types: Record<string, {
|
|
2306
|
-
name: string;
|
|
2307
|
-
type: string;
|
|
2308
|
-
}[]>;
|
|
2309
|
-
primaryType: string;
|
|
2310
|
-
domain: Record<string, any>;
|
|
2311
|
-
message: Record<string, any>;
|
|
2312
|
-
};
|
|
2313
2277
|
settlementContract?: string | undefined;
|
|
2278
|
+
relayer?: string | undefined;
|
|
2314
2279
|
} | undefined;
|
|
2315
2280
|
gasSponsored?: boolean | undefined;
|
|
2316
2281
|
};
|
|
@@ -2554,16 +2519,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2554
2519
|
buyAmount?: string | undefined;
|
|
2555
2520
|
from?: string | undefined;
|
|
2556
2521
|
};
|
|
2557
|
-
typedData: {
|
|
2558
|
-
types: Record<string, {
|
|
2559
|
-
name: string;
|
|
2560
|
-
type: string;
|
|
2561
|
-
}[]>;
|
|
2562
|
-
primaryType: string;
|
|
2563
|
-
domain: Record<string, any>;
|
|
2564
|
-
message: Record<string, any>;
|
|
2565
|
-
};
|
|
2566
2522
|
settlementContract?: string | undefined;
|
|
2523
|
+
relayer?: string | undefined;
|
|
2567
2524
|
} | undefined;
|
|
2568
2525
|
gasSponsored?: boolean | undefined;
|
|
2569
2526
|
};
|
|
@@ -2807,16 +2764,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2807
2764
|
buyAmount?: string | undefined;
|
|
2808
2765
|
from?: string | undefined;
|
|
2809
2766
|
};
|
|
2810
|
-
typedData: {
|
|
2811
|
-
types: Record<string, {
|
|
2812
|
-
name: string;
|
|
2813
|
-
type: string;
|
|
2814
|
-
}[]>;
|
|
2815
|
-
primaryType: string;
|
|
2816
|
-
domain: Record<string, any>;
|
|
2817
|
-
message: Record<string, any>;
|
|
2818
|
-
};
|
|
2819
2767
|
settlementContract?: string | undefined;
|
|
2768
|
+
relayer?: string | undefined;
|
|
2820
2769
|
} | undefined;
|
|
2821
2770
|
gasSponsored?: boolean | undefined;
|
|
2822
2771
|
};
|
|
@@ -3060,16 +3009,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3060
3009
|
buyAmount?: string | undefined;
|
|
3061
3010
|
from?: string | undefined;
|
|
3062
3011
|
};
|
|
3063
|
-
typedData: {
|
|
3064
|
-
types: Record<string, {
|
|
3065
|
-
name: string;
|
|
3066
|
-
type: string;
|
|
3067
|
-
}[]>;
|
|
3068
|
-
primaryType: string;
|
|
3069
|
-
domain: Record<string, any>;
|
|
3070
|
-
message: Record<string, any>;
|
|
3071
|
-
};
|
|
3072
3012
|
settlementContract?: string | undefined;
|
|
3013
|
+
relayer?: string | undefined;
|
|
3073
3014
|
} | undefined;
|
|
3074
3015
|
gasSponsored?: boolean | undefined;
|
|
3075
3016
|
};
|
|
@@ -3320,16 +3261,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3320
3261
|
buyAmount?: string | undefined;
|
|
3321
3262
|
from?: string | undefined;
|
|
3322
3263
|
};
|
|
3323
|
-
typedData: {
|
|
3324
|
-
types: Record<string, {
|
|
3325
|
-
name: string;
|
|
3326
|
-
type: string;
|
|
3327
|
-
}[]>;
|
|
3328
|
-
primaryType: string;
|
|
3329
|
-
domain: Record<string, any>;
|
|
3330
|
-
message: Record<string, any>;
|
|
3331
|
-
};
|
|
3332
3264
|
settlementContract?: string | undefined;
|
|
3265
|
+
relayer?: string | undefined;
|
|
3333
3266
|
} | undefined;
|
|
3334
3267
|
gasSponsored?: boolean | undefined;
|
|
3335
3268
|
};
|
|
@@ -3572,16 +3505,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3572
3505
|
buyAmount?: string | undefined;
|
|
3573
3506
|
from?: string | undefined;
|
|
3574
3507
|
};
|
|
3575
|
-
typedData: {
|
|
3576
|
-
types: Record<string, {
|
|
3577
|
-
name: string;
|
|
3578
|
-
type: string;
|
|
3579
|
-
}[]>;
|
|
3580
|
-
primaryType: string;
|
|
3581
|
-
domain: Record<string, any>;
|
|
3582
|
-
message: Record<string, any>;
|
|
3583
|
-
};
|
|
3584
3508
|
settlementContract?: string | undefined;
|
|
3509
|
+
relayer?: string | undefined;
|
|
3585
3510
|
} | undefined;
|
|
3586
3511
|
gasSponsored?: boolean | undefined;
|
|
3587
3512
|
};
|
|
@@ -3824,16 +3749,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3824
3749
|
buyAmount?: string | undefined;
|
|
3825
3750
|
from?: string | undefined;
|
|
3826
3751
|
};
|
|
3827
|
-
typedData: {
|
|
3828
|
-
types: Record<string, {
|
|
3829
|
-
name: string;
|
|
3830
|
-
type: string;
|
|
3831
|
-
}[]>;
|
|
3832
|
-
primaryType: string;
|
|
3833
|
-
domain: Record<string, any>;
|
|
3834
|
-
message: Record<string, any>;
|
|
3835
|
-
};
|
|
3836
3752
|
settlementContract?: string | undefined;
|
|
3753
|
+
relayer?: string | undefined;
|
|
3837
3754
|
} | undefined;
|
|
3838
3755
|
gasSponsored?: boolean | undefined;
|
|
3839
3756
|
};
|
|
@@ -4077,16 +3994,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4077
3994
|
buyAmount?: string | undefined;
|
|
4078
3995
|
from?: string | undefined;
|
|
4079
3996
|
};
|
|
4080
|
-
typedData: {
|
|
4081
|
-
types: Record<string, {
|
|
4082
|
-
name: string;
|
|
4083
|
-
type: string;
|
|
4084
|
-
}[]>;
|
|
4085
|
-
primaryType: string;
|
|
4086
|
-
domain: Record<string, any>;
|
|
4087
|
-
message: Record<string, any>;
|
|
4088
|
-
};
|
|
4089
3997
|
settlementContract?: string | undefined;
|
|
3998
|
+
relayer?: string | undefined;
|
|
4090
3999
|
} | undefined;
|
|
4091
4000
|
gasSponsored?: boolean | undefined;
|
|
4092
4001
|
};
|
|
@@ -4330,16 +4239,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4330
4239
|
buyAmount?: string | undefined;
|
|
4331
4240
|
from?: string | undefined;
|
|
4332
4241
|
};
|
|
4333
|
-
typedData: {
|
|
4334
|
-
types: Record<string, {
|
|
4335
|
-
name: string;
|
|
4336
|
-
type: string;
|
|
4337
|
-
}[]>;
|
|
4338
|
-
primaryType: string;
|
|
4339
|
-
domain: Record<string, any>;
|
|
4340
|
-
message: Record<string, any>;
|
|
4341
|
-
};
|
|
4342
4242
|
settlementContract?: string | undefined;
|
|
4243
|
+
relayer?: string | undefined;
|
|
4343
4244
|
} | undefined;
|
|
4344
4245
|
gasSponsored?: boolean | undefined;
|
|
4345
4246
|
};
|
|
@@ -4583,16 +4484,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4583
4484
|
buyAmount?: string | undefined;
|
|
4584
4485
|
from?: string | undefined;
|
|
4585
4486
|
};
|
|
4586
|
-
typedData: {
|
|
4587
|
-
types: Record<string, {
|
|
4588
|
-
name: string;
|
|
4589
|
-
type: string;
|
|
4590
|
-
}[]>;
|
|
4591
|
-
primaryType: string;
|
|
4592
|
-
domain: Record<string, any>;
|
|
4593
|
-
message: Record<string, any>;
|
|
4594
|
-
};
|
|
4595
4487
|
settlementContract?: string | undefined;
|
|
4488
|
+
relayer?: string | undefined;
|
|
4596
4489
|
} | undefined;
|
|
4597
4490
|
gasSponsored?: boolean | undefined;
|
|
4598
4491
|
};
|
|
@@ -4848,16 +4741,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4848
4741
|
buyAmount?: string | undefined;
|
|
4849
4742
|
from?: string | undefined;
|
|
4850
4743
|
};
|
|
4851
|
-
typedData: {
|
|
4852
|
-
types: Record<string, {
|
|
4853
|
-
name: string;
|
|
4854
|
-
type: string;
|
|
4855
|
-
}[]>;
|
|
4856
|
-
primaryType: string;
|
|
4857
|
-
domain: Record<string, any>;
|
|
4858
|
-
message: Record<string, any>;
|
|
4859
|
-
};
|
|
4860
4744
|
settlementContract?: string | undefined;
|
|
4745
|
+
relayer?: string | undefined;
|
|
4861
4746
|
} | undefined;
|
|
4862
4747
|
gasSponsored?: boolean | undefined;
|
|
4863
4748
|
};
|
|
@@ -5101,16 +4986,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5101
4986
|
buyAmount?: string | undefined;
|
|
5102
4987
|
from?: string | undefined;
|
|
5103
4988
|
};
|
|
5104
|
-
typedData: {
|
|
5105
|
-
types: Record<string, {
|
|
5106
|
-
name: string;
|
|
5107
|
-
type: string;
|
|
5108
|
-
}[]>;
|
|
5109
|
-
primaryType: string;
|
|
5110
|
-
domain: Record<string, any>;
|
|
5111
|
-
message: Record<string, any>;
|
|
5112
|
-
};
|
|
5113
4989
|
settlementContract?: string | undefined;
|
|
4990
|
+
relayer?: string | undefined;
|
|
5114
4991
|
} | undefined;
|
|
5115
4992
|
gasSponsored?: boolean | undefined;
|
|
5116
4993
|
};
|
|
@@ -5354,16 +5231,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5354
5231
|
buyAmount?: string | undefined;
|
|
5355
5232
|
from?: string | undefined;
|
|
5356
5233
|
};
|
|
5357
|
-
typedData: {
|
|
5358
|
-
types: Record<string, {
|
|
5359
|
-
name: string;
|
|
5360
|
-
type: string;
|
|
5361
|
-
}[]>;
|
|
5362
|
-
primaryType: string;
|
|
5363
|
-
domain: Record<string, any>;
|
|
5364
|
-
message: Record<string, any>;
|
|
5365
|
-
};
|
|
5366
5234
|
settlementContract?: string | undefined;
|
|
5235
|
+
relayer?: string | undefined;
|
|
5367
5236
|
} | undefined;
|
|
5368
5237
|
gasSponsored?: boolean | undefined;
|
|
5369
5238
|
};
|
|
@@ -5618,16 +5487,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5618
5487
|
buyAmount?: string | undefined;
|
|
5619
5488
|
from?: string | undefined;
|
|
5620
5489
|
};
|
|
5621
|
-
typedData: {
|
|
5622
|
-
types: Record<string, {
|
|
5623
|
-
name: string;
|
|
5624
|
-
type: string;
|
|
5625
|
-
}[]>;
|
|
5626
|
-
primaryType: string;
|
|
5627
|
-
domain: Record<string, any>;
|
|
5628
|
-
message: Record<string, any>;
|
|
5629
|
-
};
|
|
5630
5490
|
settlementContract?: string | undefined;
|
|
5491
|
+
relayer?: string | undefined;
|
|
5631
5492
|
} | undefined;
|
|
5632
5493
|
gasSponsored?: boolean | undefined;
|
|
5633
5494
|
};
|
|
@@ -5765,11 +5626,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5765
5626
|
*/
|
|
5766
5627
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
5767
5628
|
adjustedReturn: {
|
|
5768
|
-
valueInCurrency: string | null;
|
|
5769
|
-
This is the amount required to submit the transactions
|
|
5770
|
-
Includes the relayer fee or other native fees
|
|
5771
|
-
Should be used for balance checks and tx submission.
|
|
5772
|
-
*/
|
|
5629
|
+
valueInCurrency: string | null;
|
|
5773
5630
|
usd: string | null;
|
|
5774
5631
|
};
|
|
5775
5632
|
cost: {
|
|
@@ -5929,16 +5786,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5929
5786
|
buyAmount?: string | undefined;
|
|
5930
5787
|
from?: string | undefined;
|
|
5931
5788
|
};
|
|
5932
|
-
typedData: {
|
|
5933
|
-
types: Record<string, {
|
|
5934
|
-
name: string;
|
|
5935
|
-
type: string;
|
|
5936
|
-
}[]>;
|
|
5937
|
-
primaryType: string;
|
|
5938
|
-
domain: Record<string, any>;
|
|
5939
|
-
message: Record<string, any>;
|
|
5940
|
-
};
|
|
5941
5789
|
settlementContract?: string | undefined;
|
|
5790
|
+
relayer?: string | undefined;
|
|
5942
5791
|
} | undefined;
|
|
5943
5792
|
gasSponsored?: boolean | undefined;
|
|
5944
5793
|
};
|
|
@@ -6143,16 +5992,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6143
5992
|
buyAmount?: string | undefined;
|
|
6144
5993
|
from?: string | undefined;
|
|
6145
5994
|
};
|
|
6146
|
-
typedData: {
|
|
6147
|
-
types: Record<string, {
|
|
6148
|
-
name: string;
|
|
6149
|
-
type: string;
|
|
6150
|
-
}[]>;
|
|
6151
|
-
primaryType: string;
|
|
6152
|
-
domain: Record<string, any>;
|
|
6153
|
-
message: Record<string, any>;
|
|
6154
|
-
};
|
|
6155
5995
|
settlementContract?: string | undefined;
|
|
5996
|
+
relayer?: string | undefined;
|
|
6156
5997
|
} | undefined;
|
|
6157
5998
|
gasSponsored?: boolean | undefined;
|
|
6158
5999
|
};
|
|
@@ -6286,11 +6127,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6286
6127
|
*/
|
|
6287
6128
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
6288
6129
|
adjustedReturn: {
|
|
6289
|
-
valueInCurrency: string | null;
|
|
6290
|
-
This is the amount required to submit the transactions
|
|
6291
|
-
Includes the relayer fee or other native fees
|
|
6292
|
-
Should be used for balance checks and tx submission.
|
|
6293
|
-
*/
|
|
6130
|
+
valueInCurrency: string | null;
|
|
6294
6131
|
usd: string | null;
|
|
6295
6132
|
};
|
|
6296
6133
|
cost: {
|
|
@@ -6450,16 +6287,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6450
6287
|
buyAmount?: string | undefined;
|
|
6451
6288
|
from?: string | undefined;
|
|
6452
6289
|
};
|
|
6453
|
-
typedData: {
|
|
6454
|
-
types: Record<string, {
|
|
6455
|
-
name: string;
|
|
6456
|
-
type: string;
|
|
6457
|
-
}[]>;
|
|
6458
|
-
primaryType: string;
|
|
6459
|
-
domain: Record<string, any>;
|
|
6460
|
-
message: Record<string, any>;
|
|
6461
|
-
};
|
|
6462
6290
|
settlementContract?: string | undefined;
|
|
6291
|
+
relayer?: string | undefined;
|
|
6463
6292
|
} | undefined;
|
|
6464
6293
|
gasSponsored?: boolean | undefined;
|
|
6465
6294
|
};
|
|
@@ -6664,16 +6493,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6664
6493
|
buyAmount?: string | undefined;
|
|
6665
6494
|
from?: string | undefined;
|
|
6666
6495
|
};
|
|
6667
|
-
typedData: {
|
|
6668
|
-
types: Record<string, {
|
|
6669
|
-
name: string;
|
|
6670
|
-
type: string;
|
|
6671
|
-
}[]>;
|
|
6672
|
-
primaryType: string;
|
|
6673
|
-
domain: Record<string, any>;
|
|
6674
|
-
message: Record<string, any>;
|
|
6675
|
-
};
|
|
6676
6496
|
settlementContract?: string | undefined;
|
|
6497
|
+
relayer?: string | undefined;
|
|
6677
6498
|
} | undefined;
|
|
6678
6499
|
gasSponsored?: boolean | undefined;
|
|
6679
6500
|
};
|
|
@@ -6921,16 +6742,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6921
6742
|
buyAmount?: string | undefined;
|
|
6922
6743
|
from?: string | undefined;
|
|
6923
6744
|
};
|
|
6924
|
-
typedData: {
|
|
6925
|
-
types: Record<string, {
|
|
6926
|
-
name: string;
|
|
6927
|
-
type: string;
|
|
6928
|
-
}[]>;
|
|
6929
|
-
primaryType: string;
|
|
6930
|
-
domain: Record<string, any>;
|
|
6931
|
-
message: Record<string, any>;
|
|
6932
|
-
};
|
|
6933
6745
|
settlementContract?: string | undefined;
|
|
6746
|
+
relayer?: string | undefined;
|
|
6934
6747
|
} | undefined;
|
|
6935
6748
|
gasSponsored?: boolean | undefined;
|
|
6936
6749
|
};
|
|
@@ -7068,11 +6881,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7068
6881
|
*/
|
|
7069
6882
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
7070
6883
|
adjustedReturn: {
|
|
7071
|
-
valueInCurrency: string | null;
|
|
7072
|
-
This is the amount required to submit the transactions
|
|
7073
|
-
Includes the relayer fee or other native fees
|
|
7074
|
-
Should be used for balance checks and tx submission.
|
|
7075
|
-
*/
|
|
6884
|
+
valueInCurrency: string | null;
|
|
7076
6885
|
usd: string | null;
|
|
7077
6886
|
};
|
|
7078
6887
|
cost: {
|
|
@@ -7232,16 +7041,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7232
7041
|
buyAmount?: string | undefined;
|
|
7233
7042
|
from?: string | undefined;
|
|
7234
7043
|
};
|
|
7235
|
-
typedData: {
|
|
7236
|
-
types: Record<string, {
|
|
7237
|
-
name: string;
|
|
7238
|
-
type: string;
|
|
7239
|
-
}[]>;
|
|
7240
|
-
primaryType: string;
|
|
7241
|
-
domain: Record<string, any>;
|
|
7242
|
-
message: Record<string, any>;
|
|
7243
|
-
};
|
|
7244
7044
|
settlementContract?: string | undefined;
|
|
7045
|
+
relayer?: string | undefined;
|
|
7245
7046
|
} | undefined;
|
|
7246
7047
|
gasSponsored?: boolean | undefined;
|
|
7247
7048
|
};
|
|
@@ -7451,16 +7252,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7451
7252
|
buyAmount?: string | undefined;
|
|
7452
7253
|
from?: string | undefined;
|
|
7453
7254
|
};
|
|
7454
|
-
typedData: {
|
|
7455
|
-
types: Record<string, {
|
|
7456
|
-
name: string;
|
|
7457
|
-
type: string;
|
|
7458
|
-
}[]>;
|
|
7459
|
-
primaryType: string;
|
|
7460
|
-
domain: Record<string, any>;
|
|
7461
|
-
message: Record<string, any>;
|
|
7462
|
-
};
|
|
7463
7255
|
settlementContract?: string | undefined;
|
|
7256
|
+
relayer?: string | undefined;
|
|
7464
7257
|
} | undefined;
|
|
7465
7258
|
gasSponsored?: boolean | undefined;
|
|
7466
7259
|
};
|
|
@@ -7597,11 +7390,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7597
7390
|
*/
|
|
7598
7391
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
7599
7392
|
adjustedReturn: {
|
|
7600
|
-
valueInCurrency: string | null;
|
|
7601
|
-
This is the amount required to submit the transactions
|
|
7602
|
-
Includes the relayer fee or other native fees
|
|
7603
|
-
Should be used for balance checks and tx submission.
|
|
7604
|
-
*/
|
|
7393
|
+
valueInCurrency: string | null;
|
|
7605
7394
|
usd: string | null;
|
|
7606
7395
|
};
|
|
7607
7396
|
cost: {
|
|
@@ -7761,16 +7550,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7761
7550
|
buyAmount?: string | undefined;
|
|
7762
7551
|
from?: string | undefined;
|
|
7763
7552
|
};
|
|
7764
|
-
typedData: {
|
|
7765
|
-
types: Record<string, {
|
|
7766
|
-
name: string;
|
|
7767
|
-
type: string;
|
|
7768
|
-
}[]>;
|
|
7769
|
-
primaryType: string;
|
|
7770
|
-
domain: Record<string, any>;
|
|
7771
|
-
message: Record<string, any>;
|
|
7772
|
-
};
|
|
7773
7553
|
settlementContract?: string | undefined;
|
|
7554
|
+
relayer?: string | undefined;
|
|
7774
7555
|
} | undefined;
|
|
7775
7556
|
gasSponsored?: boolean | undefined;
|
|
7776
7557
|
};
|
|
@@ -7976,16 +7757,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7976
7757
|
buyAmount?: string | undefined;
|
|
7977
7758
|
from?: string | undefined;
|
|
7978
7759
|
};
|
|
7979
|
-
typedData: {
|
|
7980
|
-
types: Record<string, {
|
|
7981
|
-
name: string;
|
|
7982
|
-
type: string;
|
|
7983
|
-
}[]>;
|
|
7984
|
-
primaryType: string;
|
|
7985
|
-
domain: Record<string, any>;
|
|
7986
|
-
message: Record<string, any>;
|
|
7987
|
-
};
|
|
7988
7760
|
settlementContract?: string | undefined;
|
|
7761
|
+
relayer?: string | undefined;
|
|
7989
7762
|
} | undefined;
|
|
7990
7763
|
gasSponsored?: boolean | undefined;
|
|
7991
7764
|
};
|
|
@@ -8122,11 +7895,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8122
7895
|
*/
|
|
8123
7896
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
8124
7897
|
adjustedReturn: {
|
|
8125
|
-
valueInCurrency: string | null;
|
|
8126
|
-
This is the amount required to submit the transactions
|
|
8127
|
-
Includes the relayer fee or other native fees
|
|
8128
|
-
Should be used for balance checks and tx submission.
|
|
8129
|
-
*/
|
|
7898
|
+
valueInCurrency: string | null;
|
|
8130
7899
|
usd: string | null;
|
|
8131
7900
|
};
|
|
8132
7901
|
cost: {
|
|
@@ -8286,16 +8055,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8286
8055
|
buyAmount?: string | undefined;
|
|
8287
8056
|
from?: string | undefined;
|
|
8288
8057
|
};
|
|
8289
|
-
typedData: {
|
|
8290
|
-
types: Record<string, {
|
|
8291
|
-
name: string;
|
|
8292
|
-
type: string;
|
|
8293
|
-
}[]>;
|
|
8294
|
-
primaryType: string;
|
|
8295
|
-
domain: Record<string, any>;
|
|
8296
|
-
message: Record<string, any>;
|
|
8297
|
-
};
|
|
8298
8058
|
settlementContract?: string | undefined;
|
|
8059
|
+
relayer?: string | undefined;
|
|
8299
8060
|
} | undefined;
|
|
8300
8061
|
gasSponsored?: boolean | undefined;
|
|
8301
8062
|
};
|
|
@@ -8395,11 +8156,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8395
8156
|
*/
|
|
8396
8157
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
8397
8158
|
adjustedReturn: {
|
|
8398
|
-
valueInCurrency: string | null;
|
|
8399
|
-
This is the amount required to submit the transactions
|
|
8400
|
-
Includes the relayer fee or other native fees
|
|
8401
|
-
Should be used for balance checks and tx submission.
|
|
8402
|
-
*/
|
|
8159
|
+
valueInCurrency: string | null;
|
|
8403
8160
|
usd: string | null;
|
|
8404
8161
|
};
|
|
8405
8162
|
cost: {
|
|
@@ -8559,16 +8316,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8559
8316
|
buyAmount?: string | undefined;
|
|
8560
8317
|
from?: string | undefined;
|
|
8561
8318
|
};
|
|
8562
|
-
typedData: {
|
|
8563
|
-
types: Record<string, {
|
|
8564
|
-
name: string;
|
|
8565
|
-
type: string;
|
|
8566
|
-
}[]>;
|
|
8567
|
-
primaryType: string;
|
|
8568
|
-
domain: Record<string, any>;
|
|
8569
|
-
message: Record<string, any>;
|
|
8570
|
-
};
|
|
8571
8319
|
settlementContract?: string | undefined;
|
|
8320
|
+
relayer?: string | undefined;
|
|
8572
8321
|
} | undefined;
|
|
8573
8322
|
gasSponsored?: boolean | undefined;
|
|
8574
8323
|
};
|
|
@@ -8774,16 +8523,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8774
8523
|
buyAmount?: string | undefined;
|
|
8775
8524
|
from?: string | undefined;
|
|
8776
8525
|
};
|
|
8777
|
-
typedData: {
|
|
8778
|
-
types: Record<string, {
|
|
8779
|
-
name: string;
|
|
8780
|
-
type: string;
|
|
8781
|
-
}[]>;
|
|
8782
|
-
primaryType: string;
|
|
8783
|
-
domain: Record<string, any>;
|
|
8784
|
-
message: Record<string, any>;
|
|
8785
|
-
};
|
|
8786
8526
|
settlementContract?: string | undefined;
|
|
8527
|
+
relayer?: string | undefined;
|
|
8787
8528
|
} | undefined;
|
|
8788
8529
|
gasSponsored?: boolean | undefined;
|
|
8789
8530
|
};
|
|
@@ -9158,16 +8899,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9158
8899
|
buyAmount?: string | undefined;
|
|
9159
8900
|
from?: string | undefined;
|
|
9160
8901
|
};
|
|
9161
|
-
typedData: {
|
|
9162
|
-
types: Record<string, {
|
|
9163
|
-
name: string;
|
|
9164
|
-
type: string;
|
|
9165
|
-
}[]>;
|
|
9166
|
-
primaryType: string;
|
|
9167
|
-
domain: Record<string, any>;
|
|
9168
|
-
message: Record<string, any>;
|
|
9169
|
-
};
|
|
9170
8902
|
settlementContract?: string | undefined;
|
|
8903
|
+
relayer?: string | undefined;
|
|
9171
8904
|
} | undefined;
|
|
9172
8905
|
gasSponsored?: boolean | undefined;
|
|
9173
8906
|
};
|
|
@@ -9415,16 +9148,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9415
9148
|
buyAmount?: string | undefined;
|
|
9416
9149
|
from?: string | undefined;
|
|
9417
9150
|
};
|
|
9418
|
-
typedData: {
|
|
9419
|
-
types: Record<string, {
|
|
9420
|
-
name: string;
|
|
9421
|
-
type: string;
|
|
9422
|
-
}[]>;
|
|
9423
|
-
primaryType: string;
|
|
9424
|
-
domain: Record<string, any>;
|
|
9425
|
-
message: Record<string, any>;
|
|
9426
|
-
};
|
|
9427
9151
|
settlementContract?: string | undefined;
|
|
9152
|
+
relayer?: string | undefined;
|
|
9428
9153
|
} | undefined;
|
|
9429
9154
|
gasSponsored?: boolean | undefined;
|
|
9430
9155
|
};
|
|
@@ -9667,16 +9392,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9667
9392
|
buyAmount?: string | undefined;
|
|
9668
9393
|
from?: string | undefined;
|
|
9669
9394
|
};
|
|
9670
|
-
typedData: {
|
|
9671
|
-
types: Record<string, {
|
|
9672
|
-
name: string;
|
|
9673
|
-
type: string;
|
|
9674
|
-
}[]>;
|
|
9675
|
-
primaryType: string;
|
|
9676
|
-
domain: Record<string, any>;
|
|
9677
|
-
message: Record<string, any>;
|
|
9678
|
-
};
|
|
9679
9395
|
settlementContract?: string | undefined;
|
|
9396
|
+
relayer?: string | undefined;
|
|
9680
9397
|
} | undefined;
|
|
9681
9398
|
gasSponsored?: boolean | undefined;
|
|
9682
9399
|
};
|
|
@@ -9920,16 +9637,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9920
9637
|
buyAmount?: string | undefined;
|
|
9921
9638
|
from?: string | undefined;
|
|
9922
9639
|
};
|
|
9923
|
-
typedData: {
|
|
9924
|
-
types: Record<string, {
|
|
9925
|
-
name: string;
|
|
9926
|
-
type: string;
|
|
9927
|
-
}[]>;
|
|
9928
|
-
primaryType: string;
|
|
9929
|
-
domain: Record<string, any>;
|
|
9930
|
-
message: Record<string, any>;
|
|
9931
|
-
};
|
|
9932
9640
|
settlementContract?: string | undefined;
|
|
9641
|
+
relayer?: string | undefined;
|
|
9933
9642
|
} | undefined;
|
|
9934
9643
|
gasSponsored?: boolean | undefined;
|
|
9935
9644
|
};
|
|
@@ -10172,16 +9881,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10172
9881
|
buyAmount?: string | undefined;
|
|
10173
9882
|
from?: string | undefined;
|
|
10174
9883
|
};
|
|
10175
|
-
typedData: {
|
|
10176
|
-
types: Record<string, {
|
|
10177
|
-
name: string;
|
|
10178
|
-
type: string;
|
|
10179
|
-
}[]>;
|
|
10180
|
-
primaryType: string;
|
|
10181
|
-
domain: Record<string, any>;
|
|
10182
|
-
message: Record<string, any>;
|
|
10183
|
-
};
|
|
10184
9884
|
settlementContract?: string | undefined;
|
|
9885
|
+
relayer?: string | undefined;
|
|
10185
9886
|
} | undefined;
|
|
10186
9887
|
gasSponsored?: boolean | undefined;
|
|
10187
9888
|
};
|
|
@@ -10429,16 +10130,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10429
10130
|
buyAmount?: string | undefined;
|
|
10430
10131
|
from?: string | undefined;
|
|
10431
10132
|
};
|
|
10432
|
-
typedData: {
|
|
10433
|
-
types: Record<string, {
|
|
10434
|
-
name: string;
|
|
10435
|
-
type: string;
|
|
10436
|
-
}[]>;
|
|
10437
|
-
primaryType: string;
|
|
10438
|
-
domain: Record<string, any>;
|
|
10439
|
-
message: Record<string, any>;
|
|
10440
|
-
};
|
|
10441
10133
|
settlementContract?: string | undefined;
|
|
10134
|
+
relayer?: string | undefined;
|
|
10442
10135
|
} | undefined;
|
|
10443
10136
|
gasSponsored?: boolean | undefined;
|
|
10444
10137
|
};
|
|
@@ -10686,16 +10379,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10686
10379
|
buyAmount?: string | undefined;
|
|
10687
10380
|
from?: string | undefined;
|
|
10688
10381
|
};
|
|
10689
|
-
typedData: {
|
|
10690
|
-
types: Record<string, {
|
|
10691
|
-
name: string;
|
|
10692
|
-
type: string;
|
|
10693
|
-
}[]>;
|
|
10694
|
-
primaryType: string;
|
|
10695
|
-
domain: Record<string, any>;
|
|
10696
|
-
message: Record<string, any>;
|
|
10697
|
-
};
|
|
10698
10382
|
settlementContract?: string | undefined;
|
|
10383
|
+
relayer?: string | undefined;
|
|
10699
10384
|
} | undefined;
|
|
10700
10385
|
gasSponsored?: boolean | undefined;
|
|
10701
10386
|
};
|
|
@@ -10833,11 +10518,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10833
10518
|
*/
|
|
10834
10519
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
10835
10520
|
adjustedReturn: {
|
|
10836
|
-
valueInCurrency: string | null;
|
|
10837
|
-
This is the amount required to submit the transactions
|
|
10838
|
-
Includes the relayer fee or other native fees
|
|
10839
|
-
Should be used for balance checks and tx submission.
|
|
10840
|
-
*/
|
|
10521
|
+
valueInCurrency: string | null;
|
|
10841
10522
|
usd: string | null;
|
|
10842
10523
|
};
|
|
10843
10524
|
cost: {
|
|
@@ -10997,16 +10678,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10997
10678
|
buyAmount?: string | undefined;
|
|
10998
10679
|
from?: string | undefined;
|
|
10999
10680
|
};
|
|
11000
|
-
typedData: {
|
|
11001
|
-
types: Record<string, {
|
|
11002
|
-
name: string;
|
|
11003
|
-
type: string;
|
|
11004
|
-
}[]>;
|
|
11005
|
-
primaryType: string;
|
|
11006
|
-
domain: Record<string, any>;
|
|
11007
|
-
message: Record<string, any>;
|
|
11008
|
-
};
|
|
11009
10681
|
settlementContract?: string | undefined;
|
|
10682
|
+
relayer?: string | undefined;
|
|
11010
10683
|
} | undefined;
|
|
11011
10684
|
gasSponsored?: boolean | undefined;
|
|
11012
10685
|
};
|
|
@@ -11211,16 +10884,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11211
10884
|
buyAmount?: string | undefined;
|
|
11212
10885
|
from?: string | undefined;
|
|
11213
10886
|
};
|
|
11214
|
-
typedData: {
|
|
11215
|
-
types: Record<string, {
|
|
11216
|
-
name: string;
|
|
11217
|
-
type: string;
|
|
11218
|
-
}[]>;
|
|
11219
|
-
primaryType: string;
|
|
11220
|
-
domain: Record<string, any>;
|
|
11221
|
-
message: Record<string, any>;
|
|
11222
|
-
};
|
|
11223
10887
|
settlementContract?: string | undefined;
|
|
10888
|
+
relayer?: string | undefined;
|
|
11224
10889
|
} | undefined;
|
|
11225
10890
|
gasSponsored?: boolean | undefined;
|
|
11226
10891
|
};
|
|
@@ -11354,11 +11019,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11354
11019
|
*/
|
|
11355
11020
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
11356
11021
|
adjustedReturn: {
|
|
11357
|
-
valueInCurrency: string | null;
|
|
11358
|
-
This is the amount required to submit the transactions
|
|
11359
|
-
Includes the relayer fee or other native fees
|
|
11360
|
-
Should be used for balance checks and tx submission.
|
|
11361
|
-
*/
|
|
11022
|
+
valueInCurrency: string | null;
|
|
11362
11023
|
usd: string | null;
|
|
11363
11024
|
};
|
|
11364
11025
|
cost: {
|
|
@@ -11518,16 +11179,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11518
11179
|
buyAmount?: string | undefined;
|
|
11519
11180
|
from?: string | undefined;
|
|
11520
11181
|
};
|
|
11521
|
-
typedData: {
|
|
11522
|
-
types: Record<string, {
|
|
11523
|
-
name: string;
|
|
11524
|
-
type: string;
|
|
11525
|
-
}[]>;
|
|
11526
|
-
primaryType: string;
|
|
11527
|
-
domain: Record<string, any>;
|
|
11528
|
-
message: Record<string, any>;
|
|
11529
|
-
};
|
|
11530
11182
|
settlementContract?: string | undefined;
|
|
11183
|
+
relayer?: string | undefined;
|
|
11531
11184
|
} | undefined;
|
|
11532
11185
|
gasSponsored?: boolean | undefined;
|
|
11533
11186
|
};
|
|
@@ -11732,16 +11385,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11732
11385
|
buyAmount?: string | undefined;
|
|
11733
11386
|
from?: string | undefined;
|
|
11734
11387
|
};
|
|
11735
|
-
typedData: {
|
|
11736
|
-
types: Record<string, {
|
|
11737
|
-
name: string;
|
|
11738
|
-
type: string;
|
|
11739
|
-
}[]>;
|
|
11740
|
-
primaryType: string;
|
|
11741
|
-
domain: Record<string, any>;
|
|
11742
|
-
message: Record<string, any>;
|
|
11743
|
-
};
|
|
11744
11388
|
settlementContract?: string | undefined;
|
|
11389
|
+
relayer?: string | undefined;
|
|
11745
11390
|
} | undefined;
|
|
11746
11391
|
gasSponsored?: boolean | undefined;
|
|
11747
11392
|
};
|
|
@@ -11989,16 +11634,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11989
11634
|
buyAmount?: string | undefined;
|
|
11990
11635
|
from?: string | undefined;
|
|
11991
11636
|
};
|
|
11992
|
-
typedData: {
|
|
11993
|
-
types: Record<string, {
|
|
11994
|
-
name: string;
|
|
11995
|
-
type: string;
|
|
11996
|
-
}[]>;
|
|
11997
|
-
primaryType: string;
|
|
11998
|
-
domain: Record<string, any>;
|
|
11999
|
-
message: Record<string, any>;
|
|
12000
|
-
};
|
|
12001
11637
|
settlementContract?: string | undefined;
|
|
11638
|
+
relayer?: string | undefined;
|
|
12002
11639
|
} | undefined;
|
|
12003
11640
|
gasSponsored?: boolean | undefined;
|
|
12004
11641
|
};
|
|
@@ -12136,11 +11773,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12136
11773
|
*/
|
|
12137
11774
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
12138
11775
|
adjustedReturn: {
|
|
12139
|
-
valueInCurrency: string | null;
|
|
12140
|
-
This is the amount required to submit the transactions
|
|
12141
|
-
Includes the relayer fee or other native fees
|
|
12142
|
-
Should be used for balance checks and tx submission.
|
|
12143
|
-
*/
|
|
11776
|
+
valueInCurrency: string | null;
|
|
12144
11777
|
usd: string | null;
|
|
12145
11778
|
};
|
|
12146
11779
|
cost: {
|
|
@@ -12300,16 +11933,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12300
11933
|
buyAmount?: string | undefined;
|
|
12301
11934
|
from?: string | undefined;
|
|
12302
11935
|
};
|
|
12303
|
-
typedData: {
|
|
12304
|
-
types: Record<string, {
|
|
12305
|
-
name: string;
|
|
12306
|
-
type: string;
|
|
12307
|
-
}[]>;
|
|
12308
|
-
primaryType: string;
|
|
12309
|
-
domain: Record<string, any>;
|
|
12310
|
-
message: Record<string, any>;
|
|
12311
|
-
};
|
|
12312
11936
|
settlementContract?: string | undefined;
|
|
11937
|
+
relayer?: string | undefined;
|
|
12313
11938
|
} | undefined;
|
|
12314
11939
|
gasSponsored?: boolean | undefined;
|
|
12315
11940
|
};
|
|
@@ -12519,16 +12144,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12519
12144
|
buyAmount?: string | undefined;
|
|
12520
12145
|
from?: string | undefined;
|
|
12521
12146
|
};
|
|
12522
|
-
typedData: {
|
|
12523
|
-
types: Record<string, {
|
|
12524
|
-
name: string;
|
|
12525
|
-
type: string;
|
|
12526
|
-
}[]>;
|
|
12527
|
-
primaryType: string;
|
|
12528
|
-
domain: Record<string, any>;
|
|
12529
|
-
message: Record<string, any>;
|
|
12530
|
-
};
|
|
12531
12147
|
settlementContract?: string | undefined;
|
|
12148
|
+
relayer?: string | undefined;
|
|
12532
12149
|
} | undefined;
|
|
12533
12150
|
gasSponsored?: boolean | undefined;
|
|
12534
12151
|
};
|
|
@@ -12665,11 +12282,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12665
12282
|
*/
|
|
12666
12283
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
12667
12284
|
adjustedReturn: {
|
|
12668
|
-
valueInCurrency: string | null;
|
|
12669
|
-
This is the amount required to submit the transactions
|
|
12670
|
-
Includes the relayer fee or other native fees
|
|
12671
|
-
Should be used for balance checks and tx submission.
|
|
12672
|
-
*/
|
|
12285
|
+
valueInCurrency: string | null;
|
|
12673
12286
|
usd: string | null;
|
|
12674
12287
|
};
|
|
12675
12288
|
cost: {
|
|
@@ -12829,16 +12442,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12829
12442
|
buyAmount?: string | undefined;
|
|
12830
12443
|
from?: string | undefined;
|
|
12831
12444
|
};
|
|
12832
|
-
typedData: {
|
|
12833
|
-
types: Record<string, {
|
|
12834
|
-
name: string;
|
|
12835
|
-
type: string;
|
|
12836
|
-
}[]>;
|
|
12837
|
-
primaryType: string;
|
|
12838
|
-
domain: Record<string, any>;
|
|
12839
|
-
message: Record<string, any>;
|
|
12840
|
-
};
|
|
12841
12445
|
settlementContract?: string | undefined;
|
|
12446
|
+
relayer?: string | undefined;
|
|
12842
12447
|
} | undefined;
|
|
12843
12448
|
gasSponsored?: boolean | undefined;
|
|
12844
12449
|
};
|
|
@@ -13044,16 +12649,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13044
12649
|
buyAmount?: string | undefined;
|
|
13045
12650
|
from?: string | undefined;
|
|
13046
12651
|
};
|
|
13047
|
-
typedData: {
|
|
13048
|
-
types: Record<string, {
|
|
13049
|
-
name: string;
|
|
13050
|
-
type: string;
|
|
13051
|
-
}[]>;
|
|
13052
|
-
primaryType: string;
|
|
13053
|
-
domain: Record<string, any>;
|
|
13054
|
-
message: Record<string, any>;
|
|
13055
|
-
};
|
|
13056
12652
|
settlementContract?: string | undefined;
|
|
12653
|
+
relayer?: string | undefined;
|
|
13057
12654
|
} | undefined;
|
|
13058
12655
|
gasSponsored?: boolean | undefined;
|
|
13059
12656
|
};
|
|
@@ -13190,11 +12787,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13190
12787
|
*/
|
|
13191
12788
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
13192
12789
|
adjustedReturn: {
|
|
13193
|
-
valueInCurrency: string | null;
|
|
13194
|
-
This is the amount required to submit the transactions
|
|
13195
|
-
Includes the relayer fee or other native fees
|
|
13196
|
-
Should be used for balance checks and tx submission.
|
|
13197
|
-
*/
|
|
12790
|
+
valueInCurrency: string | null;
|
|
13198
12791
|
usd: string | null;
|
|
13199
12792
|
};
|
|
13200
12793
|
cost: {
|
|
@@ -13354,16 +12947,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13354
12947
|
buyAmount?: string | undefined;
|
|
13355
12948
|
from?: string | undefined;
|
|
13356
12949
|
};
|
|
13357
|
-
typedData: {
|
|
13358
|
-
types: Record<string, {
|
|
13359
|
-
name: string;
|
|
13360
|
-
type: string;
|
|
13361
|
-
}[]>;
|
|
13362
|
-
primaryType: string;
|
|
13363
|
-
domain: Record<string, any>;
|
|
13364
|
-
message: Record<string, any>;
|
|
13365
|
-
};
|
|
13366
12950
|
settlementContract?: string | undefined;
|
|
12951
|
+
relayer?: string | undefined;
|
|
13367
12952
|
} | undefined;
|
|
13368
12953
|
gasSponsored?: boolean | undefined;
|
|
13369
12954
|
};
|
|
@@ -13463,11 +13048,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13463
13048
|
*/
|
|
13464
13049
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
13465
13050
|
adjustedReturn: {
|
|
13466
|
-
valueInCurrency: string | null;
|
|
13467
|
-
This is the amount required to submit the transactions
|
|
13468
|
-
Includes the relayer fee or other native fees
|
|
13469
|
-
Should be used for balance checks and tx submission.
|
|
13470
|
-
*/
|
|
13051
|
+
valueInCurrency: string | null;
|
|
13471
13052
|
usd: string | null;
|
|
13472
13053
|
};
|
|
13473
13054
|
cost: {
|
|
@@ -13627,16 +13208,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13627
13208
|
buyAmount?: string | undefined;
|
|
13628
13209
|
from?: string | undefined;
|
|
13629
13210
|
};
|
|
13630
|
-
typedData: {
|
|
13631
|
-
types: Record<string, {
|
|
13632
|
-
name: string;
|
|
13633
|
-
type: string;
|
|
13634
|
-
}[]>;
|
|
13635
|
-
primaryType: string;
|
|
13636
|
-
domain: Record<string, any>;
|
|
13637
|
-
message: Record<string, any>;
|
|
13638
|
-
};
|
|
13639
13211
|
settlementContract?: string | undefined;
|
|
13212
|
+
relayer?: string | undefined;
|
|
13640
13213
|
} | undefined;
|
|
13641
13214
|
gasSponsored?: boolean | undefined;
|
|
13642
13215
|
};
|
|
@@ -13842,16 +13415,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13842
13415
|
buyAmount?: string | undefined;
|
|
13843
13416
|
from?: string | undefined;
|
|
13844
13417
|
};
|
|
13845
|
-
typedData: {
|
|
13846
|
-
types: Record<string, {
|
|
13847
|
-
name: string;
|
|
13848
|
-
type: string;
|
|
13849
|
-
}[]>;
|
|
13850
|
-
primaryType: string;
|
|
13851
|
-
domain: Record<string, any>;
|
|
13852
|
-
message: Record<string, any>;
|
|
13853
|
-
};
|
|
13854
13418
|
settlementContract?: string | undefined;
|
|
13419
|
+
relayer?: string | undefined;
|
|
13855
13420
|
} | undefined;
|
|
13856
13421
|
gasSponsored?: boolean | undefined;
|
|
13857
13422
|
};
|
|
@@ -14234,16 +13799,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14234
13799
|
buyAmount?: string | undefined;
|
|
14235
13800
|
from?: string | undefined;
|
|
14236
13801
|
};
|
|
14237
|
-
typedData: {
|
|
14238
|
-
types: Record<string, {
|
|
14239
|
-
name: string;
|
|
14240
|
-
type: string;
|
|
14241
|
-
}[]>;
|
|
14242
|
-
primaryType: string;
|
|
14243
|
-
domain: Record<string, any>;
|
|
14244
|
-
message: Record<string, any>;
|
|
14245
|
-
};
|
|
14246
13802
|
settlementContract?: string | undefined;
|
|
13803
|
+
relayer?: string | undefined;
|
|
14247
13804
|
} | undefined;
|
|
14248
13805
|
gasSponsored?: boolean | undefined;
|
|
14249
13806
|
};
|
|
@@ -14491,16 +14048,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14491
14048
|
buyAmount?: string | undefined;
|
|
14492
14049
|
from?: string | undefined;
|
|
14493
14050
|
};
|
|
14494
|
-
typedData: {
|
|
14495
|
-
types: Record<string, {
|
|
14496
|
-
name: string;
|
|
14497
|
-
type: string;
|
|
14498
|
-
}[]>;
|
|
14499
|
-
primaryType: string;
|
|
14500
|
-
domain: Record<string, any>;
|
|
14501
|
-
message: Record<string, any>;
|
|
14502
|
-
};
|
|
14503
14051
|
settlementContract?: string | undefined;
|
|
14052
|
+
relayer?: string | undefined;
|
|
14504
14053
|
} | undefined;
|
|
14505
14054
|
gasSponsored?: boolean | undefined;
|
|
14506
14055
|
};
|
|
@@ -14743,16 +14292,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14743
14292
|
buyAmount?: string | undefined;
|
|
14744
14293
|
from?: string | undefined;
|
|
14745
14294
|
};
|
|
14746
|
-
typedData: {
|
|
14747
|
-
types: Record<string, {
|
|
14748
|
-
name: string;
|
|
14749
|
-
type: string;
|
|
14750
|
-
}[]>;
|
|
14751
|
-
primaryType: string;
|
|
14752
|
-
domain: Record<string, any>;
|
|
14753
|
-
message: Record<string, any>;
|
|
14754
|
-
};
|
|
14755
14295
|
settlementContract?: string | undefined;
|
|
14296
|
+
relayer?: string | undefined;
|
|
14756
14297
|
} | undefined;
|
|
14757
14298
|
gasSponsored?: boolean | undefined;
|
|
14758
14299
|
};
|
|
@@ -14995,16 +14536,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14995
14536
|
buyAmount?: string | undefined;
|
|
14996
14537
|
from?: string | undefined;
|
|
14997
14538
|
};
|
|
14998
|
-
typedData: {
|
|
14999
|
-
types: Record<string, {
|
|
15000
|
-
name: string;
|
|
15001
|
-
type: string;
|
|
15002
|
-
}[]>;
|
|
15003
|
-
primaryType: string;
|
|
15004
|
-
domain: Record<string, any>;
|
|
15005
|
-
message: Record<string, any>;
|
|
15006
|
-
};
|
|
15007
14539
|
settlementContract?: string | undefined;
|
|
14540
|
+
relayer?: string | undefined;
|
|
15008
14541
|
} | undefined;
|
|
15009
14542
|
gasSponsored?: boolean | undefined;
|
|
15010
14543
|
};
|
|
@@ -15248,16 +14781,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15248
14781
|
buyAmount?: string | undefined;
|
|
15249
14782
|
from?: string | undefined;
|
|
15250
14783
|
};
|
|
15251
|
-
typedData: {
|
|
15252
|
-
types: Record<string, {
|
|
15253
|
-
name: string;
|
|
15254
|
-
type: string;
|
|
15255
|
-
}[]>;
|
|
15256
|
-
primaryType: string;
|
|
15257
|
-
domain: Record<string, any>;
|
|
15258
|
-
message: Record<string, any>;
|
|
15259
|
-
};
|
|
15260
14784
|
settlementContract?: string | undefined;
|
|
14785
|
+
relayer?: string | undefined;
|
|
15261
14786
|
} | undefined;
|
|
15262
14787
|
gasSponsored?: boolean | undefined;
|
|
15263
14788
|
};
|
|
@@ -15500,16 +15025,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15500
15025
|
buyAmount?: string | undefined;
|
|
15501
15026
|
from?: string | undefined;
|
|
15502
15027
|
};
|
|
15503
|
-
typedData: {
|
|
15504
|
-
types: Record<string, {
|
|
15505
|
-
name: string;
|
|
15506
|
-
type: string;
|
|
15507
|
-
}[]>;
|
|
15508
|
-
primaryType: string;
|
|
15509
|
-
domain: Record<string, any>;
|
|
15510
|
-
message: Record<string, any>;
|
|
15511
|
-
};
|
|
15512
15028
|
settlementContract?: string | undefined;
|
|
15029
|
+
relayer?: string | undefined;
|
|
15513
15030
|
} | undefined;
|
|
15514
15031
|
gasSponsored?: boolean | undefined;
|
|
15515
15032
|
};
|
|
@@ -15752,16 +15269,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15752
15269
|
buyAmount?: string | undefined;
|
|
15753
15270
|
from?: string | undefined;
|
|
15754
15271
|
};
|
|
15755
|
-
typedData: {
|
|
15756
|
-
types: Record<string, {
|
|
15757
|
-
name: string;
|
|
15758
|
-
type: string;
|
|
15759
|
-
}[]>;
|
|
15760
|
-
primaryType: string;
|
|
15761
|
-
domain: Record<string, any>;
|
|
15762
|
-
message: Record<string, any>;
|
|
15763
|
-
};
|
|
15764
15272
|
settlementContract?: string | undefined;
|
|
15273
|
+
relayer?: string | undefined;
|
|
15765
15274
|
} | undefined;
|
|
15766
15275
|
gasSponsored?: boolean | undefined;
|
|
15767
15276
|
};
|
|
@@ -16009,16 +15518,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
16009
15518
|
buyAmount?: string | undefined;
|
|
16010
15519
|
from?: string | undefined;
|
|
16011
15520
|
};
|
|
16012
|
-
typedData: {
|
|
16013
|
-
types: Record<string, {
|
|
16014
|
-
name: string;
|
|
16015
|
-
type: string;
|
|
16016
|
-
}[]>;
|
|
16017
|
-
primaryType: string;
|
|
16018
|
-
domain: Record<string, any>;
|
|
16019
|
-
message: Record<string, any>;
|
|
16020
|
-
};
|
|
16021
15521
|
settlementContract?: string | undefined;
|
|
15522
|
+
relayer?: string | undefined;
|
|
16022
15523
|
} | undefined;
|
|
16023
15524
|
gasSponsored?: boolean | undefined;
|
|
16024
15525
|
};
|
|
@@ -16266,16 +15767,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
16266
15767
|
buyAmount?: string | undefined;
|
|
16267
15768
|
from?: string | undefined;
|
|
16268
15769
|
};
|
|
16269
|
-
typedData: {
|
|
16270
|
-
types: Record<string, {
|
|
16271
|
-
name: string;
|
|
16272
|
-
type: string;
|
|
16273
|
-
}[]>;
|
|
16274
|
-
primaryType: string;
|
|
16275
|
-
domain: Record<string, any>;
|
|
16276
|
-
message: Record<string, any>;
|
|
16277
|
-
};
|
|
16278
15770
|
settlementContract?: string | undefined;
|
|
15771
|
+
relayer?: string | undefined;
|
|
16279
15772
|
} | undefined;
|
|
16280
15773
|
gasSponsored?: boolean | undefined;
|
|
16281
15774
|
};
|
|
@@ -16523,16 +16016,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
16523
16016
|
buyAmount?: string | undefined;
|
|
16524
16017
|
from?: string | undefined;
|
|
16525
16018
|
};
|
|
16526
|
-
typedData: {
|
|
16527
|
-
types: Record<string, {
|
|
16528
|
-
name: string;
|
|
16529
|
-
type: string;
|
|
16530
|
-
}[]>;
|
|
16531
|
-
primaryType: string;
|
|
16532
|
-
domain: Record<string, any>;
|
|
16533
|
-
message: Record<string, any>;
|
|
16534
|
-
};
|
|
16535
16019
|
settlementContract?: string | undefined;
|
|
16020
|
+
relayer?: string | undefined;
|
|
16536
16021
|
} | undefined;
|
|
16537
16022
|
gasSponsored?: boolean | undefined;
|
|
16538
16023
|
};
|
|
@@ -16775,16 +16260,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
16775
16260
|
buyAmount?: string | undefined;
|
|
16776
16261
|
from?: string | undefined;
|
|
16777
16262
|
};
|
|
16778
|
-
typedData: {
|
|
16779
|
-
types: Record<string, {
|
|
16780
|
-
name: string;
|
|
16781
|
-
type: string;
|
|
16782
|
-
}[]>;
|
|
16783
|
-
primaryType: string;
|
|
16784
|
-
domain: Record<string, any>;
|
|
16785
|
-
message: Record<string, any>;
|
|
16786
|
-
};
|
|
16787
16263
|
settlementContract?: string | undefined;
|
|
16264
|
+
relayer?: string | undefined;
|
|
16788
16265
|
} | undefined;
|
|
16789
16266
|
gasSponsored?: boolean | undefined;
|
|
16790
16267
|
};
|
|
@@ -17028,16 +16505,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
17028
16505
|
buyAmount?: string | undefined;
|
|
17029
16506
|
from?: string | undefined;
|
|
17030
16507
|
};
|
|
17031
|
-
typedData: {
|
|
17032
|
-
types: Record<string, {
|
|
17033
|
-
name: string;
|
|
17034
|
-
type: string;
|
|
17035
|
-
}[]>;
|
|
17036
|
-
primaryType: string;
|
|
17037
|
-
domain: Record<string, any>;
|
|
17038
|
-
message: Record<string, any>;
|
|
17039
|
-
};
|
|
17040
16508
|
settlementContract?: string | undefined;
|
|
16509
|
+
relayer?: string | undefined;
|
|
17041
16510
|
} | undefined;
|
|
17042
16511
|
gasSponsored?: boolean | undefined;
|
|
17043
16512
|
};
|
|
@@ -17280,16 +16749,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
17280
16749
|
buyAmount?: string | undefined;
|
|
17281
16750
|
from?: string | undefined;
|
|
17282
16751
|
};
|
|
17283
|
-
typedData: {
|
|
17284
|
-
types: Record<string, {
|
|
17285
|
-
name: string;
|
|
17286
|
-
type: string;
|
|
17287
|
-
}[]>;
|
|
17288
|
-
primaryType: string;
|
|
17289
|
-
domain: Record<string, any>;
|
|
17290
|
-
message: Record<string, any>;
|
|
17291
|
-
};
|
|
17292
16752
|
settlementContract?: string | undefined;
|
|
16753
|
+
relayer?: string | undefined;
|
|
17293
16754
|
} | undefined;
|
|
17294
16755
|
gasSponsored?: boolean | undefined;
|
|
17295
16756
|
};
|
|
@@ -17537,16 +16998,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
17537
16998
|
buyAmount?: string | undefined;
|
|
17538
16999
|
from?: string | undefined;
|
|
17539
17000
|
};
|
|
17540
|
-
typedData: {
|
|
17541
|
-
types: Record<string, {
|
|
17542
|
-
name: string;
|
|
17543
|
-
type: string;
|
|
17544
|
-
}[]>;
|
|
17545
|
-
primaryType: string;
|
|
17546
|
-
domain: Record<string, any>;
|
|
17547
|
-
message: Record<string, any>;
|
|
17548
|
-
};
|
|
17549
17001
|
settlementContract?: string | undefined;
|
|
17002
|
+
relayer?: string | undefined;
|
|
17550
17003
|
} | undefined;
|
|
17551
17004
|
gasSponsored?: boolean | undefined;
|
|
17552
17005
|
};
|
|
@@ -17794,16 +17247,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
17794
17247
|
buyAmount?: string | undefined;
|
|
17795
17248
|
from?: string | undefined;
|
|
17796
17249
|
};
|
|
17797
|
-
typedData: {
|
|
17798
|
-
types: Record<string, {
|
|
17799
|
-
name: string;
|
|
17800
|
-
type: string;
|
|
17801
|
-
}[]>;
|
|
17802
|
-
primaryType: string;
|
|
17803
|
-
domain: Record<string, any>;
|
|
17804
|
-
message: Record<string, any>;
|
|
17805
|
-
};
|
|
17806
17250
|
settlementContract?: string | undefined;
|
|
17251
|
+
relayer?: string | undefined;
|
|
17807
17252
|
} | undefined;
|
|
17808
17253
|
gasSponsored?: boolean | undefined;
|
|
17809
17254
|
};
|
|
@@ -17941,11 +17386,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
17941
17386
|
*/
|
|
17942
17387
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
17943
17388
|
adjustedReturn: {
|
|
17944
|
-
valueInCurrency: string | null;
|
|
17945
|
-
This is the amount required to submit the transactions
|
|
17946
|
-
Includes the relayer fee or other native fees
|
|
17947
|
-
Should be used for balance checks and tx submission.
|
|
17948
|
-
*/
|
|
17389
|
+
valueInCurrency: string | null;
|
|
17949
17390
|
usd: string | null;
|
|
17950
17391
|
};
|
|
17951
17392
|
cost: {
|
|
@@ -18105,16 +17546,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
18105
17546
|
buyAmount?: string | undefined;
|
|
18106
17547
|
from?: string | undefined;
|
|
18107
17548
|
};
|
|
18108
|
-
typedData: {
|
|
18109
|
-
types: Record<string, {
|
|
18110
|
-
name: string;
|
|
18111
|
-
type: string;
|
|
18112
|
-
}[]>;
|
|
18113
|
-
primaryType: string;
|
|
18114
|
-
domain: Record<string, any>;
|
|
18115
|
-
message: Record<string, any>;
|
|
18116
|
-
};
|
|
18117
17549
|
settlementContract?: string | undefined;
|
|
17550
|
+
relayer?: string | undefined;
|
|
18118
17551
|
} | undefined;
|
|
18119
17552
|
gasSponsored?: boolean | undefined;
|
|
18120
17553
|
};
|
|
@@ -18319,16 +17752,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
18319
17752
|
buyAmount?: string | undefined;
|
|
18320
17753
|
from?: string | undefined;
|
|
18321
17754
|
};
|
|
18322
|
-
typedData: {
|
|
18323
|
-
types: Record<string, {
|
|
18324
|
-
name: string;
|
|
18325
|
-
type: string;
|
|
18326
|
-
}[]>;
|
|
18327
|
-
primaryType: string;
|
|
18328
|
-
domain: Record<string, any>;
|
|
18329
|
-
message: Record<string, any>;
|
|
18330
|
-
};
|
|
18331
17755
|
settlementContract?: string | undefined;
|
|
17756
|
+
relayer?: string | undefined;
|
|
18332
17757
|
} | undefined;
|
|
18333
17758
|
gasSponsored?: boolean | undefined;
|
|
18334
17759
|
};
|
|
@@ -18462,11 +17887,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
18462
17887
|
*/
|
|
18463
17888
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
18464
17889
|
adjustedReturn: {
|
|
18465
|
-
valueInCurrency: string | null;
|
|
18466
|
-
This is the amount required to submit the transactions
|
|
18467
|
-
Includes the relayer fee or other native fees
|
|
18468
|
-
Should be used for balance checks and tx submission.
|
|
18469
|
-
*/
|
|
17890
|
+
valueInCurrency: string | null;
|
|
18470
17891
|
usd: string | null;
|
|
18471
17892
|
};
|
|
18472
17893
|
cost: {
|
|
@@ -18626,16 +18047,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
18626
18047
|
buyAmount?: string | undefined;
|
|
18627
18048
|
from?: string | undefined;
|
|
18628
18049
|
};
|
|
18629
|
-
typedData: {
|
|
18630
|
-
types: Record<string, {
|
|
18631
|
-
name: string;
|
|
18632
|
-
type: string;
|
|
18633
|
-
}[]>;
|
|
18634
|
-
primaryType: string;
|
|
18635
|
-
domain: Record<string, any>;
|
|
18636
|
-
message: Record<string, any>;
|
|
18637
|
-
};
|
|
18638
18050
|
settlementContract?: string | undefined;
|
|
18051
|
+
relayer?: string | undefined;
|
|
18639
18052
|
} | undefined;
|
|
18640
18053
|
gasSponsored?: boolean | undefined;
|
|
18641
18054
|
};
|
|
@@ -18840,16 +18253,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
18840
18253
|
buyAmount?: string | undefined;
|
|
18841
18254
|
from?: string | undefined;
|
|
18842
18255
|
};
|
|
18843
|
-
typedData: {
|
|
18844
|
-
types: Record<string, {
|
|
18845
|
-
name: string;
|
|
18846
|
-
type: string;
|
|
18847
|
-
}[]>;
|
|
18848
|
-
primaryType: string;
|
|
18849
|
-
domain: Record<string, any>;
|
|
18850
|
-
message: Record<string, any>;
|
|
18851
|
-
};
|
|
18852
18256
|
settlementContract?: string | undefined;
|
|
18257
|
+
relayer?: string | undefined;
|
|
18853
18258
|
} | undefined;
|
|
18854
18259
|
gasSponsored?: boolean | undefined;
|
|
18855
18260
|
};
|
|
@@ -19097,16 +18502,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19097
18502
|
buyAmount?: string | undefined;
|
|
19098
18503
|
from?: string | undefined;
|
|
19099
18504
|
};
|
|
19100
|
-
typedData: {
|
|
19101
|
-
types: Record<string, {
|
|
19102
|
-
name: string;
|
|
19103
|
-
type: string;
|
|
19104
|
-
}[]>;
|
|
19105
|
-
primaryType: string;
|
|
19106
|
-
domain: Record<string, any>;
|
|
19107
|
-
message: Record<string, any>;
|
|
19108
|
-
};
|
|
19109
18505
|
settlementContract?: string | undefined;
|
|
18506
|
+
relayer?: string | undefined;
|
|
19110
18507
|
} | undefined;
|
|
19111
18508
|
gasSponsored?: boolean | undefined;
|
|
19112
18509
|
};
|
|
@@ -19244,11 +18641,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19244
18641
|
*/
|
|
19245
18642
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
19246
18643
|
adjustedReturn: {
|
|
19247
|
-
valueInCurrency: string | null;
|
|
19248
|
-
This is the amount required to submit the transactions
|
|
19249
|
-
Includes the relayer fee or other native fees
|
|
19250
|
-
Should be used for balance checks and tx submission.
|
|
19251
|
-
*/
|
|
18644
|
+
valueInCurrency: string | null;
|
|
19252
18645
|
usd: string | null;
|
|
19253
18646
|
};
|
|
19254
18647
|
cost: {
|
|
@@ -19408,16 +18801,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19408
18801
|
buyAmount?: string | undefined;
|
|
19409
18802
|
from?: string | undefined;
|
|
19410
18803
|
};
|
|
19411
|
-
typedData: {
|
|
19412
|
-
types: Record<string, {
|
|
19413
|
-
name: string;
|
|
19414
|
-
type: string;
|
|
19415
|
-
}[]>;
|
|
19416
|
-
primaryType: string;
|
|
19417
|
-
domain: Record<string, any>;
|
|
19418
|
-
message: Record<string, any>;
|
|
19419
|
-
};
|
|
19420
18804
|
settlementContract?: string | undefined;
|
|
18805
|
+
relayer?: string | undefined;
|
|
19421
18806
|
} | undefined;
|
|
19422
18807
|
gasSponsored?: boolean | undefined;
|
|
19423
18808
|
};
|
|
@@ -19627,16 +19012,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19627
19012
|
buyAmount?: string | undefined;
|
|
19628
19013
|
from?: string | undefined;
|
|
19629
19014
|
};
|
|
19630
|
-
typedData: {
|
|
19631
|
-
types: Record<string, {
|
|
19632
|
-
name: string;
|
|
19633
|
-
type: string;
|
|
19634
|
-
}[]>;
|
|
19635
|
-
primaryType: string;
|
|
19636
|
-
domain: Record<string, any>;
|
|
19637
|
-
message: Record<string, any>;
|
|
19638
|
-
};
|
|
19639
19015
|
settlementContract?: string | undefined;
|
|
19016
|
+
relayer?: string | undefined;
|
|
19640
19017
|
} | undefined;
|
|
19641
19018
|
gasSponsored?: boolean | undefined;
|
|
19642
19019
|
};
|
|
@@ -19773,11 +19150,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19773
19150
|
*/
|
|
19774
19151
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
19775
19152
|
adjustedReturn: {
|
|
19776
|
-
valueInCurrency: string | null;
|
|
19777
|
-
This is the amount required to submit the transactions
|
|
19778
|
-
Includes the relayer fee or other native fees
|
|
19779
|
-
Should be used for balance checks and tx submission.
|
|
19780
|
-
*/
|
|
19153
|
+
valueInCurrency: string | null;
|
|
19781
19154
|
usd: string | null;
|
|
19782
19155
|
};
|
|
19783
19156
|
cost: {
|
|
@@ -19937,16 +19310,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
19937
19310
|
buyAmount?: string | undefined;
|
|
19938
19311
|
from?: string | undefined;
|
|
19939
19312
|
};
|
|
19940
|
-
typedData: {
|
|
19941
|
-
types: Record<string, {
|
|
19942
|
-
name: string;
|
|
19943
|
-
type: string;
|
|
19944
|
-
}[]>;
|
|
19945
|
-
primaryType: string;
|
|
19946
|
-
domain: Record<string, any>;
|
|
19947
|
-
message: Record<string, any>;
|
|
19948
|
-
};
|
|
19949
19313
|
settlementContract?: string | undefined;
|
|
19314
|
+
relayer?: string | undefined;
|
|
19950
19315
|
} | undefined;
|
|
19951
19316
|
gasSponsored?: boolean | undefined;
|
|
19952
19317
|
};
|
|
@@ -20152,16 +19517,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20152
19517
|
buyAmount?: string | undefined;
|
|
20153
19518
|
from?: string | undefined;
|
|
20154
19519
|
};
|
|
20155
|
-
typedData: {
|
|
20156
|
-
types: Record<string, {
|
|
20157
|
-
name: string;
|
|
20158
|
-
type: string;
|
|
20159
|
-
}[]>;
|
|
20160
|
-
primaryType: string;
|
|
20161
|
-
domain: Record<string, any>;
|
|
20162
|
-
message: Record<string, any>;
|
|
20163
|
-
};
|
|
20164
19520
|
settlementContract?: string | undefined;
|
|
19521
|
+
relayer?: string | undefined;
|
|
20165
19522
|
} | undefined;
|
|
20166
19523
|
gasSponsored?: boolean | undefined;
|
|
20167
19524
|
};
|
|
@@ -20298,11 +19655,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20298
19655
|
*/
|
|
20299
19656
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
20300
19657
|
adjustedReturn: {
|
|
20301
|
-
valueInCurrency: string | null;
|
|
20302
|
-
This is the amount required to submit the transactions
|
|
20303
|
-
Includes the relayer fee or other native fees
|
|
20304
|
-
Should be used for balance checks and tx submission.
|
|
20305
|
-
*/
|
|
19658
|
+
valueInCurrency: string | null;
|
|
20306
19659
|
usd: string | null;
|
|
20307
19660
|
};
|
|
20308
19661
|
cost: {
|
|
@@ -20462,16 +19815,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20462
19815
|
buyAmount?: string | undefined;
|
|
20463
19816
|
from?: string | undefined;
|
|
20464
19817
|
};
|
|
20465
|
-
typedData: {
|
|
20466
|
-
types: Record<string, {
|
|
20467
|
-
name: string;
|
|
20468
|
-
type: string;
|
|
20469
|
-
}[]>;
|
|
20470
|
-
primaryType: string;
|
|
20471
|
-
domain: Record<string, any>;
|
|
20472
|
-
message: Record<string, any>;
|
|
20473
|
-
};
|
|
20474
19818
|
settlementContract?: string | undefined;
|
|
19819
|
+
relayer?: string | undefined;
|
|
20475
19820
|
} | undefined;
|
|
20476
19821
|
gasSponsored?: boolean | undefined;
|
|
20477
19822
|
};
|
|
@@ -20571,11 +19916,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20571
19916
|
*/
|
|
20572
19917
|
gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
|
|
20573
19918
|
adjustedReturn: {
|
|
20574
|
-
valueInCurrency: string | null;
|
|
20575
|
-
This is the amount required to submit the transactions
|
|
20576
|
-
Includes the relayer fee or other native fees
|
|
20577
|
-
Should be used for balance checks and tx submission.
|
|
20578
|
-
*/
|
|
19919
|
+
valueInCurrency: string | null;
|
|
20579
19920
|
usd: string | null;
|
|
20580
19921
|
};
|
|
20581
19922
|
cost: {
|
|
@@ -20735,16 +20076,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20735
20076
|
buyAmount?: string | undefined;
|
|
20736
20077
|
from?: string | undefined;
|
|
20737
20078
|
};
|
|
20738
|
-
typedData: {
|
|
20739
|
-
types: Record<string, {
|
|
20740
|
-
name: string;
|
|
20741
|
-
type: string;
|
|
20742
|
-
}[]>;
|
|
20743
|
-
primaryType: string;
|
|
20744
|
-
domain: Record<string, any>;
|
|
20745
|
-
message: Record<string, any>;
|
|
20746
|
-
};
|
|
20747
20079
|
settlementContract?: string | undefined;
|
|
20080
|
+
relayer?: string | undefined;
|
|
20748
20081
|
} | undefined;
|
|
20749
20082
|
gasSponsored?: boolean | undefined;
|
|
20750
20083
|
};
|
|
@@ -20950,16 +20283,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
20950
20283
|
buyAmount?: string | undefined;
|
|
20951
20284
|
from?: string | undefined;
|
|
20952
20285
|
};
|
|
20953
|
-
typedData: {
|
|
20954
|
-
types: Record<string, {
|
|
20955
|
-
name: string;
|
|
20956
|
-
type: string;
|
|
20957
|
-
}[]>;
|
|
20958
|
-
primaryType: string;
|
|
20959
|
-
domain: Record<string, any>;
|
|
20960
|
-
message: Record<string, any>;
|
|
20961
|
-
};
|
|
20962
20286
|
settlementContract?: string | undefined;
|
|
20287
|
+
relayer?: string | undefined;
|
|
20963
20288
|
} | undefined;
|
|
20964
20289
|
gasSponsored?: boolean | undefined;
|
|
20965
20290
|
};
|
|
@@ -21338,16 +20663,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
21338
20663
|
buyAmount?: string | undefined;
|
|
21339
20664
|
from?: string | undefined;
|
|
21340
20665
|
};
|
|
21341
|
-
typedData: {
|
|
21342
|
-
types: Record<string, {
|
|
21343
|
-
name: string;
|
|
21344
|
-
type: string;
|
|
21345
|
-
}[]>;
|
|
21346
|
-
primaryType: string;
|
|
21347
|
-
domain: Record<string, any>;
|
|
21348
|
-
message: Record<string, any>;
|
|
21349
|
-
};
|
|
21350
20666
|
settlementContract?: string | undefined;
|
|
20667
|
+
relayer?: string | undefined;
|
|
21351
20668
|
} | undefined;
|
|
21352
20669
|
gasSponsored?: boolean | undefined;
|
|
21353
20670
|
};
|