@metamask/bridge-controller 67.4.0 → 69.0.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/dist/bridge-controller.cjs +23 -4
  3. package/dist/bridge-controller.cjs.map +1 -1
  4. package/dist/bridge-controller.d.cts +7 -1
  5. package/dist/bridge-controller.d.cts.map +1 -1
  6. package/dist/bridge-controller.d.mts +7 -1
  7. package/dist/bridge-controller.d.mts.map +1 -1
  8. package/dist/bridge-controller.mjs +23 -4
  9. package/dist/bridge-controller.mjs.map +1 -1
  10. package/dist/constants/tokens.cjs +1 -1
  11. package/dist/constants/tokens.cjs.map +1 -1
  12. package/dist/constants/tokens.mjs +1 -1
  13. package/dist/constants/tokens.mjs.map +1 -1
  14. package/dist/selectors.cjs +24 -16
  15. package/dist/selectors.cjs.map +1 -1
  16. package/dist/selectors.d.cts +778 -169
  17. package/dist/selectors.d.cts.map +1 -1
  18. package/dist/selectors.d.mts +778 -169
  19. package/dist/selectors.d.mts.map +1 -1
  20. package/dist/selectors.mjs +24 -16
  21. package/dist/selectors.mjs.map +1 -1
  22. package/dist/types.cjs.map +1 -1
  23. package/dist/types.d.cts +2 -1
  24. package/dist/types.d.cts.map +1 -1
  25. package/dist/types.d.mts +2 -1
  26. package/dist/types.d.mts.map +1 -1
  27. package/dist/types.mjs.map +1 -1
  28. package/dist/utils/feature-flags.d.cts +2 -0
  29. package/dist/utils/feature-flags.d.cts.map +1 -1
  30. package/dist/utils/feature-flags.d.mts +2 -0
  31. package/dist/utils/feature-flags.d.mts.map +1 -1
  32. package/dist/utils/metrics/constants.cjs +1 -0
  33. package/dist/utils/metrics/constants.cjs.map +1 -1
  34. package/dist/utils/metrics/constants.d.cts +1 -0
  35. package/dist/utils/metrics/constants.d.cts.map +1 -1
  36. package/dist/utils/metrics/constants.d.mts +1 -0
  37. package/dist/utils/metrics/constants.d.mts.map +1 -1
  38. package/dist/utils/metrics/constants.mjs +1 -0
  39. package/dist/utils/metrics/constants.mjs.map +1 -1
  40. package/dist/utils/metrics/types.cjs.map +1 -1
  41. package/dist/utils/metrics/types.d.cts +4 -0
  42. package/dist/utils/metrics/types.d.cts.map +1 -1
  43. package/dist/utils/metrics/types.d.mts +4 -0
  44. package/dist/utils/metrics/types.d.mts.map +1 -1
  45. package/dist/utils/metrics/types.mjs.map +1 -1
  46. package/dist/utils/validators.cjs +28 -4
  47. package/dist/utils/validators.cjs.map +1 -1
  48. package/dist/utils/validators.d.cts +132 -13
  49. package/dist/utils/validators.d.cts.map +1 -1
  50. package/dist/utils/validators.d.mts +132 -13
  51. package/dist/utils/validators.d.mts.map +1 -1
  52. package/dist/utils/validators.mjs +29 -5
  53. package/dist/utils/validators.mjs.map +1 -1
  54. package/package.json +6 -5
@@ -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 & {
@@ -71,6 +84,8 @@ export declare const selectBridgeFeatureFlags: ((state: RemoteFeatureFlagControl
71
84
  priceImpactThreshold?: {
72
85
  gasless: number;
73
86
  normal: number;
87
+ warning?: number | undefined;
88
+ error?: number | undefined;
74
89
  } | undefined;
75
90
  quoteRequestOverrides?: Record<import(".").FeatureId, {
76
91
  aggIds?: string[] | undefined;
@@ -117,6 +132,8 @@ export declare const selectBridgeFeatureFlags: ((state: RemoteFeatureFlagControl
117
132
  priceImpactThreshold?: {
118
133
  gasless: number;
119
134
  normal: number;
135
+ warning?: number | undefined;
136
+ error?: number | undefined;
120
137
  } | undefined;
121
138
  quoteRequestOverrides?: Record<import(".").FeatureId, {
122
139
  aggIds?: string[] | undefined;
@@ -159,6 +176,8 @@ export declare const selectBridgeFeatureFlags: ((state: RemoteFeatureFlagControl
159
176
  priceImpactThreshold?: {
160
177
  gasless: number;
161
178
  normal: number;
179
+ warning?: number | undefined;
180
+ error?: number | undefined;
162
181
  } | undefined;
163
182
  quoteRequestOverrides?: Record<import(".").FeatureId, {
164
183
  aggIds?: string[] | undefined;
@@ -205,6 +224,8 @@ export declare const selectBridgeFeatureFlags: ((state: RemoteFeatureFlagControl
205
224
  priceImpactThreshold?: {
206
225
  gasless: number;
207
226
  normal: number;
227
+ warning?: number | undefined;
228
+ error?: number | undefined;
208
229
  } | undefined;
209
230
  quoteRequestOverrides?: Record<import(".").FeatureId, {
210
231
  aggIds?: string[] | undefined;
@@ -248,7 +269,7 @@ export declare const selectExchangeRateByChainIdAndAddress: (state: BridgeAppSta
248
269
  * @param params The parameters to pass to {@link getExchangeRateByChainIdAndAddress}
249
270
  * @returns Whether an exchange rate is available for the given chain and address
250
271
  */
251
- export declare const selectIsAssetExchangeRateInState: (exchangeRateSources: ExchangeRateControllerState, chainId?: string | number | undefined, rawAddress?: string | undefined) => boolean;
272
+ export declare const selectIsAssetExchangeRateInState: (exchangeRateSources: ExchangeRateSourcesForLookup, chainId?: string | number | undefined, rawAddress?: string | undefined) => boolean;
252
273
  export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerState & BridgeControllerState & {
253
274
  gasFeeEstimatesByChainId: GasFeeEstimatesByChainId;
254
275
  } & MultichainAssetsRatesControllerState & TokenRatesControllerState & CurrencyRateState & Pick<BridgeControllerState, "assetExchangeRates"> & {
@@ -297,6 +318,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
297
318
  priceImpactThreshold?: {
298
319
  gasless: number;
299
320
  normal: number;
321
+ warning?: number | undefined;
322
+ error?: number | undefined;
300
323
  } | undefined;
301
324
  quoteRequestOverrides?: Record<import(".").FeatureId, {
302
325
  aggIds?: string[] | undefined;
@@ -339,6 +362,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
339
362
  priceImpactThreshold?: {
340
363
  gasless: number;
341
364
  normal: number;
365
+ warning?: number | undefined;
366
+ error?: number | undefined;
342
367
  } | undefined;
343
368
  quoteRequestOverrides?: Record<import(".").FeatureId, {
344
369
  aggIds?: string[] | undefined;
@@ -386,6 +411,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
386
411
  priceImpactThreshold?: {
387
412
  gasless: number;
388
413
  normal: number;
414
+ warning?: number | undefined;
415
+ error?: number | undefined;
389
416
  } | undefined;
390
417
  quoteRequestOverrides?: Record<import(".").FeatureId, {
391
418
  aggIds?: string[] | undefined;
@@ -432,6 +459,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
432
459
  priceImpactThreshold?: {
433
460
  gasless: number;
434
461
  normal: number;
462
+ warning?: number | undefined;
463
+ error?: number | undefined;
435
464
  } | undefined;
436
465
  quoteRequestOverrides?: Record<import(".").FeatureId, {
437
466
  aggIds?: string[] | undefined;
@@ -474,6 +503,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
474
503
  priceImpactThreshold?: {
475
504
  gasless: number;
476
505
  normal: number;
506
+ warning?: number | undefined;
507
+ error?: number | undefined;
477
508
  } | undefined;
478
509
  quoteRequestOverrides?: Record<import(".").FeatureId, {
479
510
  aggIds?: string[] | undefined;
@@ -520,6 +551,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
520
551
  priceImpactThreshold?: {
521
552
  gasless: number;
522
553
  normal: number;
554
+ warning?: number | undefined;
555
+ error?: number | undefined;
523
556
  } | undefined;
524
557
  quoteRequestOverrides?: Record<import(".").FeatureId, {
525
558
  aggIds?: string[] | undefined;
@@ -587,6 +620,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
587
620
  priceImpactThreshold?: {
588
621
  gasless: number;
589
622
  normal: number;
623
+ warning?: number | undefined;
624
+ error?: number | undefined;
590
625
  } | undefined;
591
626
  quoteRequestOverrides?: Record<import(".").FeatureId, {
592
627
  aggIds?: string[] | undefined;
@@ -629,6 +664,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
629
664
  priceImpactThreshold?: {
630
665
  gasless: number;
631
666
  normal: number;
667
+ warning?: number | undefined;
668
+ error?: number | undefined;
632
669
  } | undefined;
633
670
  quoteRequestOverrides?: Record<import(".").FeatureId, {
634
671
  aggIds?: string[] | undefined;
@@ -676,6 +713,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
676
713
  priceImpactThreshold?: {
677
714
  gasless: number;
678
715
  normal: number;
716
+ warning?: number | undefined;
717
+ error?: number | undefined;
679
718
  } | undefined;
680
719
  quoteRequestOverrides?: Record<import(".").FeatureId, {
681
720
  aggIds?: string[] | undefined;
@@ -722,6 +761,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
722
761
  priceImpactThreshold?: {
723
762
  gasless: number;
724
763
  normal: number;
764
+ warning?: number | undefined;
765
+ error?: number | undefined;
725
766
  } | undefined;
726
767
  quoteRequestOverrides?: Record<import(".").FeatureId, {
727
768
  aggIds?: string[] | undefined;
@@ -764,6 +805,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
764
805
  priceImpactThreshold?: {
765
806
  gasless: number;
766
807
  normal: number;
808
+ warning?: number | undefined;
809
+ error?: number | undefined;
767
810
  } | undefined;
768
811
  quoteRequestOverrides?: Record<import(".").FeatureId, {
769
812
  aggIds?: string[] | undefined;
@@ -810,6 +853,8 @@ export declare const selectIsQuoteExpired: ((state: RemoteFeatureFlagControllerS
810
853
  priceImpactThreshold?: {
811
854
  gasless: number;
812
855
  normal: number;
856
+ warning?: number | undefined;
857
+ error?: number | undefined;
813
858
  } | undefined;
814
859
  quoteRequestOverrides?: Record<import(".").FeatureId, {
815
860
  aggIds?: string[] | undefined;
@@ -1027,8 +1072,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1027
1072
  buyAmount?: string | undefined;
1028
1073
  from?: string | undefined;
1029
1074
  };
1075
+ typedData: {
1076
+ types: Record<string, {
1077
+ name: string;
1078
+ type: string;
1079
+ }[]>;
1080
+ primaryType: string;
1081
+ domain: Record<string, any>;
1082
+ message: Record<string, any>;
1083
+ };
1030
1084
  settlementContract?: string | undefined;
1031
- relayer?: string | undefined;
1032
1085
  } | undefined;
1033
1086
  gasSponsored?: boolean | undefined;
1034
1087
  };
@@ -1272,8 +1325,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1272
1325
  buyAmount?: string | undefined;
1273
1326
  from?: string | undefined;
1274
1327
  };
1328
+ typedData: {
1329
+ types: Record<string, {
1330
+ name: string;
1331
+ type: string;
1332
+ }[]>;
1333
+ primaryType: string;
1334
+ domain: Record<string, any>;
1335
+ message: Record<string, any>;
1336
+ };
1275
1337
  settlementContract?: string | undefined;
1276
- relayer?: string | undefined;
1277
1338
  } | undefined;
1278
1339
  gasSponsored?: boolean | undefined;
1279
1340
  };
@@ -1517,8 +1578,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1517
1578
  buyAmount?: string | undefined;
1518
1579
  from?: string | undefined;
1519
1580
  };
1581
+ typedData: {
1582
+ types: Record<string, {
1583
+ name: string;
1584
+ type: string;
1585
+ }[]>;
1586
+ primaryType: string;
1587
+ domain: Record<string, any>;
1588
+ message: Record<string, any>;
1589
+ };
1520
1590
  settlementContract?: string | undefined;
1521
- relayer?: string | undefined;
1522
1591
  } | undefined;
1523
1592
  gasSponsored?: boolean | undefined;
1524
1593
  };
@@ -1773,8 +1842,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1773
1842
  buyAmount?: string | undefined;
1774
1843
  from?: string | undefined;
1775
1844
  };
1845
+ typedData: {
1846
+ types: Record<string, {
1847
+ name: string;
1848
+ type: string;
1849
+ }[]>;
1850
+ primaryType: string;
1851
+ domain: Record<string, any>;
1852
+ message: Record<string, any>;
1853
+ };
1776
1854
  settlementContract?: string | undefined;
1777
- relayer?: string | undefined;
1778
1855
  } | undefined;
1779
1856
  gasSponsored?: boolean | undefined;
1780
1857
  };
@@ -2017,8 +2094,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2017
2094
  buyAmount?: string | undefined;
2018
2095
  from?: string | undefined;
2019
2096
  };
2097
+ typedData: {
2098
+ types: Record<string, {
2099
+ name: string;
2100
+ type: string;
2101
+ }[]>;
2102
+ primaryType: string;
2103
+ domain: Record<string, any>;
2104
+ message: Record<string, any>;
2105
+ };
2020
2106
  settlementContract?: string | undefined;
2021
- relayer?: string | undefined;
2022
2107
  } | undefined;
2023
2108
  gasSponsored?: boolean | undefined;
2024
2109
  };
@@ -2261,8 +2346,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2261
2346
  buyAmount?: string | undefined;
2262
2347
  from?: string | undefined;
2263
2348
  };
2349
+ typedData: {
2350
+ types: Record<string, {
2351
+ name: string;
2352
+ type: string;
2353
+ }[]>;
2354
+ primaryType: string;
2355
+ domain: Record<string, any>;
2356
+ message: Record<string, any>;
2357
+ };
2264
2358
  settlementContract?: string | undefined;
2265
- relayer?: string | undefined;
2266
2359
  } | undefined;
2267
2360
  gasSponsored?: boolean | undefined;
2268
2361
  };
@@ -2506,8 +2599,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2506
2599
  buyAmount?: string | undefined;
2507
2600
  from?: string | undefined;
2508
2601
  };
2602
+ typedData: {
2603
+ types: Record<string, {
2604
+ name: string;
2605
+ type: string;
2606
+ }[]>;
2607
+ primaryType: string;
2608
+ domain: Record<string, any>;
2609
+ message: Record<string, any>;
2610
+ };
2509
2611
  settlementContract?: string | undefined;
2510
- relayer?: string | undefined;
2511
2612
  } | undefined;
2512
2613
  gasSponsored?: boolean | undefined;
2513
2614
  };
@@ -2751,8 +2852,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2751
2852
  buyAmount?: string | undefined;
2752
2853
  from?: string | undefined;
2753
2854
  };
2855
+ typedData: {
2856
+ types: Record<string, {
2857
+ name: string;
2858
+ type: string;
2859
+ }[]>;
2860
+ primaryType: string;
2861
+ domain: Record<string, any>;
2862
+ message: Record<string, any>;
2863
+ };
2754
2864
  settlementContract?: string | undefined;
2755
- relayer?: string | undefined;
2756
2865
  } | undefined;
2757
2866
  gasSponsored?: boolean | undefined;
2758
2867
  };
@@ -2996,8 +3105,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2996
3105
  buyAmount?: string | undefined;
2997
3106
  from?: string | undefined;
2998
3107
  };
3108
+ typedData: {
3109
+ types: Record<string, {
3110
+ name: string;
3111
+ type: string;
3112
+ }[]>;
3113
+ primaryType: string;
3114
+ domain: Record<string, any>;
3115
+ message: Record<string, any>;
3116
+ };
2999
3117
  settlementContract?: string | undefined;
3000
- relayer?: string | undefined;
3001
3118
  } | undefined;
3002
3119
  gasSponsored?: boolean | undefined;
3003
3120
  };
@@ -3248,8 +3365,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3248
3365
  buyAmount?: string | undefined;
3249
3366
  from?: string | undefined;
3250
3367
  };
3368
+ typedData: {
3369
+ types: Record<string, {
3370
+ name: string;
3371
+ type: string;
3372
+ }[]>;
3373
+ primaryType: string;
3374
+ domain: Record<string, any>;
3375
+ message: Record<string, any>;
3376
+ };
3251
3377
  settlementContract?: string | undefined;
3252
- relayer?: string | undefined;
3253
3378
  } | undefined;
3254
3379
  gasSponsored?: boolean | undefined;
3255
3380
  };
@@ -3492,8 +3617,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3492
3617
  buyAmount?: string | undefined;
3493
3618
  from?: string | undefined;
3494
3619
  };
3620
+ typedData: {
3621
+ types: Record<string, {
3622
+ name: string;
3623
+ type: string;
3624
+ }[]>;
3625
+ primaryType: string;
3626
+ domain: Record<string, any>;
3627
+ message: Record<string, any>;
3628
+ };
3495
3629
  settlementContract?: string | undefined;
3496
- relayer?: string | undefined;
3497
3630
  } | undefined;
3498
3631
  gasSponsored?: boolean | undefined;
3499
3632
  };
@@ -3736,8 +3869,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3736
3869
  buyAmount?: string | undefined;
3737
3870
  from?: string | undefined;
3738
3871
  };
3872
+ typedData: {
3873
+ types: Record<string, {
3874
+ name: string;
3875
+ type: string;
3876
+ }[]>;
3877
+ primaryType: string;
3878
+ domain: Record<string, any>;
3879
+ message: Record<string, any>;
3880
+ };
3739
3881
  settlementContract?: string | undefined;
3740
- relayer?: string | undefined;
3741
3882
  } | undefined;
3742
3883
  gasSponsored?: boolean | undefined;
3743
3884
  };
@@ -3981,8 +4122,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3981
4122
  buyAmount?: string | undefined;
3982
4123
  from?: string | undefined;
3983
4124
  };
4125
+ typedData: {
4126
+ types: Record<string, {
4127
+ name: string;
4128
+ type: string;
4129
+ }[]>;
4130
+ primaryType: string;
4131
+ domain: Record<string, any>;
4132
+ message: Record<string, any>;
4133
+ };
3984
4134
  settlementContract?: string | undefined;
3985
- relayer?: string | undefined;
3986
4135
  } | undefined;
3987
4136
  gasSponsored?: boolean | undefined;
3988
4137
  };
@@ -4226,8 +4375,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4226
4375
  buyAmount?: string | undefined;
4227
4376
  from?: string | undefined;
4228
4377
  };
4378
+ typedData: {
4379
+ types: Record<string, {
4380
+ name: string;
4381
+ type: string;
4382
+ }[]>;
4383
+ primaryType: string;
4384
+ domain: Record<string, any>;
4385
+ message: Record<string, any>;
4386
+ };
4229
4387
  settlementContract?: string | undefined;
4230
- relayer?: string | undefined;
4231
4388
  } | undefined;
4232
4389
  gasSponsored?: boolean | undefined;
4233
4390
  };
@@ -4471,8 +4628,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4471
4628
  buyAmount?: string | undefined;
4472
4629
  from?: string | undefined;
4473
4630
  };
4631
+ typedData: {
4632
+ types: Record<string, {
4633
+ name: string;
4634
+ type: string;
4635
+ }[]>;
4636
+ primaryType: string;
4637
+ domain: Record<string, any>;
4638
+ message: Record<string, any>;
4639
+ };
4474
4640
  settlementContract?: string | undefined;
4475
- relayer?: string | undefined;
4476
4641
  } | undefined;
4477
4642
  gasSponsored?: boolean | undefined;
4478
4643
  };
@@ -4728,8 +4893,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4728
4893
  buyAmount?: string | undefined;
4729
4894
  from?: string | undefined;
4730
4895
  };
4896
+ typedData: {
4897
+ types: Record<string, {
4898
+ name: string;
4899
+ type: string;
4900
+ }[]>;
4901
+ primaryType: string;
4902
+ domain: Record<string, any>;
4903
+ message: Record<string, any>;
4904
+ };
4731
4905
  settlementContract?: string | undefined;
4732
- relayer?: string | undefined;
4733
4906
  } | undefined;
4734
4907
  gasSponsored?: boolean | undefined;
4735
4908
  };
@@ -4973,8 +5146,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4973
5146
  buyAmount?: string | undefined;
4974
5147
  from?: string | undefined;
4975
5148
  };
5149
+ typedData: {
5150
+ types: Record<string, {
5151
+ name: string;
5152
+ type: string;
5153
+ }[]>;
5154
+ primaryType: string;
5155
+ domain: Record<string, any>;
5156
+ message: Record<string, any>;
5157
+ };
4976
5158
  settlementContract?: string | undefined;
4977
- relayer?: string | undefined;
4978
5159
  } | undefined;
4979
5160
  gasSponsored?: boolean | undefined;
4980
5161
  };
@@ -5218,8 +5399,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5218
5399
  buyAmount?: string | undefined;
5219
5400
  from?: string | undefined;
5220
5401
  };
5402
+ typedData: {
5403
+ types: Record<string, {
5404
+ name: string;
5405
+ type: string;
5406
+ }[]>;
5407
+ primaryType: string;
5408
+ domain: Record<string, any>;
5409
+ message: Record<string, any>;
5410
+ };
5221
5411
  settlementContract?: string | undefined;
5222
- relayer?: string | undefined;
5223
5412
  } | undefined;
5224
5413
  gasSponsored?: boolean | undefined;
5225
5414
  };
@@ -5474,8 +5663,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5474
5663
  buyAmount?: string | undefined;
5475
5664
  from?: string | undefined;
5476
5665
  };
5666
+ typedData: {
5667
+ types: Record<string, {
5668
+ name: string;
5669
+ type: string;
5670
+ }[]>;
5671
+ primaryType: string;
5672
+ domain: Record<string, any>;
5673
+ message: Record<string, any>;
5674
+ };
5477
5675
  settlementContract?: string | undefined;
5478
- relayer?: string | undefined;
5479
5676
  } | undefined;
5480
5677
  gasSponsored?: boolean | undefined;
5481
5678
  };
@@ -5613,11 +5810,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5613
5810
  */
5614
5811
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
5615
5812
  adjustedReturn: {
5616
- valueInCurrency: string | null; /**
5617
- This is the amount required to submit the transactions
5618
- Includes the relayer fee or other native fees
5619
- Should be used for balance checks and tx submission.
5620
- */
5813
+ valueInCurrency: string | null;
5621
5814
  usd: string | null;
5622
5815
  };
5623
5816
  cost: {
@@ -5777,8 +5970,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5777
5970
  buyAmount?: string | undefined;
5778
5971
  from?: string | undefined;
5779
5972
  };
5973
+ typedData: {
5974
+ types: Record<string, {
5975
+ name: string;
5976
+ type: string;
5977
+ }[]>;
5978
+ primaryType: string;
5979
+ domain: Record<string, any>;
5980
+ message: Record<string, any>;
5981
+ };
5780
5982
  settlementContract?: string | undefined;
5781
- relayer?: string | undefined;
5782
5983
  } | undefined;
5783
5984
  gasSponsored?: boolean | undefined;
5784
5985
  };
@@ -5983,8 +6184,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5983
6184
  buyAmount?: string | undefined;
5984
6185
  from?: string | undefined;
5985
6186
  };
6187
+ typedData: {
6188
+ types: Record<string, {
6189
+ name: string;
6190
+ type: string;
6191
+ }[]>;
6192
+ primaryType: string;
6193
+ domain: Record<string, any>;
6194
+ message: Record<string, any>;
6195
+ };
5986
6196
  settlementContract?: string | undefined;
5987
- relayer?: string | undefined;
5988
6197
  } | undefined;
5989
6198
  gasSponsored?: boolean | undefined;
5990
6199
  };
@@ -6118,11 +6327,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6118
6327
  */
6119
6328
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
6120
6329
  adjustedReturn: {
6121
- valueInCurrency: string | null; /**
6122
- This is the amount required to submit the transactions
6123
- Includes the relayer fee or other native fees
6124
- Should be used for balance checks and tx submission.
6125
- */
6330
+ valueInCurrency: string | null;
6126
6331
  usd: string | null;
6127
6332
  };
6128
6333
  cost: {
@@ -6282,8 +6487,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6282
6487
  buyAmount?: string | undefined;
6283
6488
  from?: string | undefined;
6284
6489
  };
6490
+ typedData: {
6491
+ types: Record<string, {
6492
+ name: string;
6493
+ type: string;
6494
+ }[]>;
6495
+ primaryType: string;
6496
+ domain: Record<string, any>;
6497
+ message: Record<string, any>;
6498
+ };
6285
6499
  settlementContract?: string | undefined;
6286
- relayer?: string | undefined;
6287
6500
  } | undefined;
6288
6501
  gasSponsored?: boolean | undefined;
6289
6502
  };
@@ -6488,8 +6701,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6488
6701
  buyAmount?: string | undefined;
6489
6702
  from?: string | undefined;
6490
6703
  };
6704
+ typedData: {
6705
+ types: Record<string, {
6706
+ name: string;
6707
+ type: string;
6708
+ }[]>;
6709
+ primaryType: string;
6710
+ domain: Record<string, any>;
6711
+ message: Record<string, any>;
6712
+ };
6491
6713
  settlementContract?: string | undefined;
6492
- relayer?: string | undefined;
6493
6714
  } | undefined;
6494
6715
  gasSponsored?: boolean | undefined;
6495
6716
  };
@@ -6737,8 +6958,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6737
6958
  buyAmount?: string | undefined;
6738
6959
  from?: string | undefined;
6739
6960
  };
6961
+ typedData: {
6962
+ types: Record<string, {
6963
+ name: string;
6964
+ type: string;
6965
+ }[]>;
6966
+ primaryType: string;
6967
+ domain: Record<string, any>;
6968
+ message: Record<string, any>;
6969
+ };
6740
6970
  settlementContract?: string | undefined;
6741
- relayer?: string | undefined;
6742
6971
  } | undefined;
6743
6972
  gasSponsored?: boolean | undefined;
6744
6973
  };
@@ -6876,11 +7105,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6876
7105
  */
6877
7106
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
6878
7107
  adjustedReturn: {
6879
- valueInCurrency: string | null; /**
6880
- This is the amount required to submit the transactions
6881
- Includes the relayer fee or other native fees
6882
- Should be used for balance checks and tx submission.
6883
- */
7108
+ valueInCurrency: string | null;
6884
7109
  usd: string | null;
6885
7110
  };
6886
7111
  cost: {
@@ -7040,8 +7265,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7040
7265
  buyAmount?: string | undefined;
7041
7266
  from?: string | undefined;
7042
7267
  };
7268
+ typedData: {
7269
+ types: Record<string, {
7270
+ name: string;
7271
+ type: string;
7272
+ }[]>;
7273
+ primaryType: string;
7274
+ domain: Record<string, any>;
7275
+ message: Record<string, any>;
7276
+ };
7043
7277
  settlementContract?: string | undefined;
7044
- relayer?: string | undefined;
7045
7278
  } | undefined;
7046
7279
  gasSponsored?: boolean | undefined;
7047
7280
  };
@@ -7251,8 +7484,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7251
7484
  buyAmount?: string | undefined;
7252
7485
  from?: string | undefined;
7253
7486
  };
7487
+ typedData: {
7488
+ types: Record<string, {
7489
+ name: string;
7490
+ type: string;
7491
+ }[]>;
7492
+ primaryType: string;
7493
+ domain: Record<string, any>;
7494
+ message: Record<string, any>;
7495
+ };
7254
7496
  settlementContract?: string | undefined;
7255
- relayer?: string | undefined;
7256
7497
  } | undefined;
7257
7498
  gasSponsored?: boolean | undefined;
7258
7499
  };
@@ -7389,11 +7630,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7389
7630
  */
7390
7631
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
7391
7632
  adjustedReturn: {
7392
- valueInCurrency: string | null; /**
7393
- This is the amount required to submit the transactions
7394
- Includes the relayer fee or other native fees
7395
- Should be used for balance checks and tx submission.
7396
- */
7633
+ valueInCurrency: string | null;
7397
7634
  usd: string | null;
7398
7635
  };
7399
7636
  cost: {
@@ -7553,8 +7790,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7553
7790
  buyAmount?: string | undefined;
7554
7791
  from?: string | undefined;
7555
7792
  };
7793
+ typedData: {
7794
+ types: Record<string, {
7795
+ name: string;
7796
+ type: string;
7797
+ }[]>;
7798
+ primaryType: string;
7799
+ domain: Record<string, any>;
7800
+ message: Record<string, any>;
7801
+ };
7556
7802
  settlementContract?: string | undefined;
7557
- relayer?: string | undefined;
7558
7803
  } | undefined;
7559
7804
  gasSponsored?: boolean | undefined;
7560
7805
  };
@@ -7760,8 +8005,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7760
8005
  buyAmount?: string | undefined;
7761
8006
  from?: string | undefined;
7762
8007
  };
8008
+ typedData: {
8009
+ types: Record<string, {
8010
+ name: string;
8011
+ type: string;
8012
+ }[]>;
8013
+ primaryType: string;
8014
+ domain: Record<string, any>;
8015
+ message: Record<string, any>;
8016
+ };
7763
8017
  settlementContract?: string | undefined;
7764
- relayer?: string | undefined;
7765
8018
  } | undefined;
7766
8019
  gasSponsored?: boolean | undefined;
7767
8020
  };
@@ -7898,11 +8151,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7898
8151
  */
7899
8152
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
7900
8153
  adjustedReturn: {
7901
- valueInCurrency: string | null; /**
7902
- This is the amount required to submit the transactions
7903
- Includes the relayer fee or other native fees
7904
- Should be used for balance checks and tx submission.
7905
- */
8154
+ valueInCurrency: string | null;
7906
8155
  usd: string | null;
7907
8156
  };
7908
8157
  cost: {
@@ -8062,8 +8311,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8062
8311
  buyAmount?: string | undefined;
8063
8312
  from?: string | undefined;
8064
8313
  };
8314
+ typedData: {
8315
+ types: Record<string, {
8316
+ name: string;
8317
+ type: string;
8318
+ }[]>;
8319
+ primaryType: string;
8320
+ domain: Record<string, any>;
8321
+ message: Record<string, any>;
8322
+ };
8065
8323
  settlementContract?: string | undefined;
8066
- relayer?: string | undefined;
8067
8324
  } | undefined;
8068
8325
  gasSponsored?: boolean | undefined;
8069
8326
  };
@@ -8163,11 +8420,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8163
8420
  */
8164
8421
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
8165
8422
  adjustedReturn: {
8166
- valueInCurrency: string | null; /**
8167
- This is the amount required to submit the transactions
8168
- Includes the relayer fee or other native fees
8169
- Should be used for balance checks and tx submission.
8170
- */
8423
+ valueInCurrency: string | null;
8171
8424
  usd: string | null;
8172
8425
  };
8173
8426
  cost: {
@@ -8327,8 +8580,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8327
8580
  buyAmount?: string | undefined;
8328
8581
  from?: string | undefined;
8329
8582
  };
8583
+ typedData: {
8584
+ types: Record<string, {
8585
+ name: string;
8586
+ type: string;
8587
+ }[]>;
8588
+ primaryType: string;
8589
+ domain: Record<string, any>;
8590
+ message: Record<string, any>;
8591
+ };
8330
8592
  settlementContract?: string | undefined;
8331
- relayer?: string | undefined;
8332
8593
  } | undefined;
8333
8594
  gasSponsored?: boolean | undefined;
8334
8595
  };
@@ -8534,8 +8795,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8534
8795
  buyAmount?: string | undefined;
8535
8796
  from?: string | undefined;
8536
8797
  };
8798
+ typedData: {
8799
+ types: Record<string, {
8800
+ name: string;
8801
+ type: string;
8802
+ }[]>;
8803
+ primaryType: string;
8804
+ domain: Record<string, any>;
8805
+ message: Record<string, any>;
8806
+ };
8537
8807
  settlementContract?: string | undefined;
8538
- relayer?: string | undefined;
8539
8808
  } | undefined;
8540
8809
  gasSponsored?: boolean | undefined;
8541
8810
  };
@@ -8910,8 +9179,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8910
9179
  buyAmount?: string | undefined;
8911
9180
  from?: string | undefined;
8912
9181
  };
9182
+ typedData: {
9183
+ types: Record<string, {
9184
+ name: string;
9185
+ type: string;
9186
+ }[]>;
9187
+ primaryType: string;
9188
+ domain: Record<string, any>;
9189
+ message: Record<string, any>;
9190
+ };
8913
9191
  settlementContract?: string | undefined;
8914
- relayer?: string | undefined;
8915
9192
  } | undefined;
8916
9193
  gasSponsored?: boolean | undefined;
8917
9194
  };
@@ -9159,8 +9436,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9159
9436
  buyAmount?: string | undefined;
9160
9437
  from?: string | undefined;
9161
9438
  };
9439
+ typedData: {
9440
+ types: Record<string, {
9441
+ name: string;
9442
+ type: string;
9443
+ }[]>;
9444
+ primaryType: string;
9445
+ domain: Record<string, any>;
9446
+ message: Record<string, any>;
9447
+ };
9162
9448
  settlementContract?: string | undefined;
9163
- relayer?: string | undefined;
9164
9449
  } | undefined;
9165
9450
  gasSponsored?: boolean | undefined;
9166
9451
  };
@@ -9403,8 +9688,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9403
9688
  buyAmount?: string | undefined;
9404
9689
  from?: string | undefined;
9405
9690
  };
9691
+ typedData: {
9692
+ types: Record<string, {
9693
+ name: string;
9694
+ type: string;
9695
+ }[]>;
9696
+ primaryType: string;
9697
+ domain: Record<string, any>;
9698
+ message: Record<string, any>;
9699
+ };
9406
9700
  settlementContract?: string | undefined;
9407
- relayer?: string | undefined;
9408
9701
  } | undefined;
9409
9702
  gasSponsored?: boolean | undefined;
9410
9703
  };
@@ -9648,8 +9941,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9648
9941
  buyAmount?: string | undefined;
9649
9942
  from?: string | undefined;
9650
9943
  };
9944
+ typedData: {
9945
+ types: Record<string, {
9946
+ name: string;
9947
+ type: string;
9948
+ }[]>;
9949
+ primaryType: string;
9950
+ domain: Record<string, any>;
9951
+ message: Record<string, any>;
9952
+ };
9651
9953
  settlementContract?: string | undefined;
9652
- relayer?: string | undefined;
9653
9954
  } | undefined;
9654
9955
  gasSponsored?: boolean | undefined;
9655
9956
  };
@@ -9892,8 +10193,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9892
10193
  buyAmount?: string | undefined;
9893
10194
  from?: string | undefined;
9894
10195
  };
10196
+ typedData: {
10197
+ types: Record<string, {
10198
+ name: string;
10199
+ type: string;
10200
+ }[]>;
10201
+ primaryType: string;
10202
+ domain: Record<string, any>;
10203
+ message: Record<string, any>;
10204
+ };
9895
10205
  settlementContract?: string | undefined;
9896
- relayer?: string | undefined;
9897
10206
  } | undefined;
9898
10207
  gasSponsored?: boolean | undefined;
9899
10208
  };
@@ -10141,8 +10450,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10141
10450
  buyAmount?: string | undefined;
10142
10451
  from?: string | undefined;
10143
10452
  };
10453
+ typedData: {
10454
+ types: Record<string, {
10455
+ name: string;
10456
+ type: string;
10457
+ }[]>;
10458
+ primaryType: string;
10459
+ domain: Record<string, any>;
10460
+ message: Record<string, any>;
10461
+ };
10144
10462
  settlementContract?: string | undefined;
10145
- relayer?: string | undefined;
10146
10463
  } | undefined;
10147
10464
  gasSponsored?: boolean | undefined;
10148
10465
  };
@@ -10390,8 +10707,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10390
10707
  buyAmount?: string | undefined;
10391
10708
  from?: string | undefined;
10392
10709
  };
10710
+ typedData: {
10711
+ types: Record<string, {
10712
+ name: string;
10713
+ type: string;
10714
+ }[]>;
10715
+ primaryType: string;
10716
+ domain: Record<string, any>;
10717
+ message: Record<string, any>;
10718
+ };
10393
10719
  settlementContract?: string | undefined;
10394
- relayer?: string | undefined;
10395
10720
  } | undefined;
10396
10721
  gasSponsored?: boolean | undefined;
10397
10722
  };
@@ -10529,11 +10854,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10529
10854
  */
10530
10855
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
10531
10856
  adjustedReturn: {
10532
- valueInCurrency: string | null; /**
10533
- This is the amount required to submit the transactions
10534
- Includes the relayer fee or other native fees
10535
- Should be used for balance checks and tx submission.
10536
- */
10857
+ valueInCurrency: string | null;
10537
10858
  usd: string | null;
10538
10859
  };
10539
10860
  cost: {
@@ -10693,8 +11014,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10693
11014
  buyAmount?: string | undefined;
10694
11015
  from?: string | undefined;
10695
11016
  };
11017
+ typedData: {
11018
+ types: Record<string, {
11019
+ name: string;
11020
+ type: string;
11021
+ }[]>;
11022
+ primaryType: string;
11023
+ domain: Record<string, any>;
11024
+ message: Record<string, any>;
11025
+ };
10696
11026
  settlementContract?: string | undefined;
10697
- relayer?: string | undefined;
10698
11027
  } | undefined;
10699
11028
  gasSponsored?: boolean | undefined;
10700
11029
  };
@@ -10899,8 +11228,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10899
11228
  buyAmount?: string | undefined;
10900
11229
  from?: string | undefined;
10901
11230
  };
11231
+ typedData: {
11232
+ types: Record<string, {
11233
+ name: string;
11234
+ type: string;
11235
+ }[]>;
11236
+ primaryType: string;
11237
+ domain: Record<string, any>;
11238
+ message: Record<string, any>;
11239
+ };
10902
11240
  settlementContract?: string | undefined;
10903
- relayer?: string | undefined;
10904
11241
  } | undefined;
10905
11242
  gasSponsored?: boolean | undefined;
10906
11243
  };
@@ -11034,11 +11371,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11034
11371
  */
11035
11372
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
11036
11373
  adjustedReturn: {
11037
- valueInCurrency: string | null; /**
11038
- This is the amount required to submit the transactions
11039
- Includes the relayer fee or other native fees
11040
- Should be used for balance checks and tx submission.
11041
- */
11374
+ valueInCurrency: string | null;
11042
11375
  usd: string | null;
11043
11376
  };
11044
11377
  cost: {
@@ -11198,8 +11531,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11198
11531
  buyAmount?: string | undefined;
11199
11532
  from?: string | undefined;
11200
11533
  };
11534
+ typedData: {
11535
+ types: Record<string, {
11536
+ name: string;
11537
+ type: string;
11538
+ }[]>;
11539
+ primaryType: string;
11540
+ domain: Record<string, any>;
11541
+ message: Record<string, any>;
11542
+ };
11201
11543
  settlementContract?: string | undefined;
11202
- relayer?: string | undefined;
11203
11544
  } | undefined;
11204
11545
  gasSponsored?: boolean | undefined;
11205
11546
  };
@@ -11404,8 +11745,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11404
11745
  buyAmount?: string | undefined;
11405
11746
  from?: string | undefined;
11406
11747
  };
11748
+ typedData: {
11749
+ types: Record<string, {
11750
+ name: string;
11751
+ type: string;
11752
+ }[]>;
11753
+ primaryType: string;
11754
+ domain: Record<string, any>;
11755
+ message: Record<string, any>;
11756
+ };
11407
11757
  settlementContract?: string | undefined;
11408
- relayer?: string | undefined;
11409
11758
  } | undefined;
11410
11759
  gasSponsored?: boolean | undefined;
11411
11760
  };
@@ -11653,8 +12002,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11653
12002
  buyAmount?: string | undefined;
11654
12003
  from?: string | undefined;
11655
12004
  };
12005
+ typedData: {
12006
+ types: Record<string, {
12007
+ name: string;
12008
+ type: string;
12009
+ }[]>;
12010
+ primaryType: string;
12011
+ domain: Record<string, any>;
12012
+ message: Record<string, any>;
12013
+ };
11656
12014
  settlementContract?: string | undefined;
11657
- relayer?: string | undefined;
11658
12015
  } | undefined;
11659
12016
  gasSponsored?: boolean | undefined;
11660
12017
  };
@@ -11792,11 +12149,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11792
12149
  */
11793
12150
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
11794
12151
  adjustedReturn: {
11795
- valueInCurrency: string | null; /**
11796
- This is the amount required to submit the transactions
11797
- Includes the relayer fee or other native fees
11798
- Should be used for balance checks and tx submission.
11799
- */
12152
+ valueInCurrency: string | null;
11800
12153
  usd: string | null;
11801
12154
  };
11802
12155
  cost: {
@@ -11956,8 +12309,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11956
12309
  buyAmount?: string | undefined;
11957
12310
  from?: string | undefined;
11958
12311
  };
12312
+ typedData: {
12313
+ types: Record<string, {
12314
+ name: string;
12315
+ type: string;
12316
+ }[]>;
12317
+ primaryType: string;
12318
+ domain: Record<string, any>;
12319
+ message: Record<string, any>;
12320
+ };
11959
12321
  settlementContract?: string | undefined;
11960
- relayer?: string | undefined;
11961
12322
  } | undefined;
11962
12323
  gasSponsored?: boolean | undefined;
11963
12324
  };
@@ -12167,8 +12528,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12167
12528
  buyAmount?: string | undefined;
12168
12529
  from?: string | undefined;
12169
12530
  };
12531
+ typedData: {
12532
+ types: Record<string, {
12533
+ name: string;
12534
+ type: string;
12535
+ }[]>;
12536
+ primaryType: string;
12537
+ domain: Record<string, any>;
12538
+ message: Record<string, any>;
12539
+ };
12170
12540
  settlementContract?: string | undefined;
12171
- relayer?: string | undefined;
12172
12541
  } | undefined;
12173
12542
  gasSponsored?: boolean | undefined;
12174
12543
  };
@@ -12305,11 +12674,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12305
12674
  */
12306
12675
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
12307
12676
  adjustedReturn: {
12308
- valueInCurrency: string | null; /**
12309
- This is the amount required to submit the transactions
12310
- Includes the relayer fee or other native fees
12311
- Should be used for balance checks and tx submission.
12312
- */
12677
+ valueInCurrency: string | null;
12313
12678
  usd: string | null;
12314
12679
  };
12315
12680
  cost: {
@@ -12469,8 +12834,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12469
12834
  buyAmount?: string | undefined;
12470
12835
  from?: string | undefined;
12471
12836
  };
12837
+ typedData: {
12838
+ types: Record<string, {
12839
+ name: string;
12840
+ type: string;
12841
+ }[]>;
12842
+ primaryType: string;
12843
+ domain: Record<string, any>;
12844
+ message: Record<string, any>;
12845
+ };
12472
12846
  settlementContract?: string | undefined;
12473
- relayer?: string | undefined;
12474
12847
  } | undefined;
12475
12848
  gasSponsored?: boolean | undefined;
12476
12849
  };
@@ -12676,8 +13049,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12676
13049
  buyAmount?: string | undefined;
12677
13050
  from?: string | undefined;
12678
13051
  };
13052
+ typedData: {
13053
+ types: Record<string, {
13054
+ name: string;
13055
+ type: string;
13056
+ }[]>;
13057
+ primaryType: string;
13058
+ domain: Record<string, any>;
13059
+ message: Record<string, any>;
13060
+ };
12679
13061
  settlementContract?: string | undefined;
12680
- relayer?: string | undefined;
12681
13062
  } | undefined;
12682
13063
  gasSponsored?: boolean | undefined;
12683
13064
  };
@@ -12814,11 +13195,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12814
13195
  */
12815
13196
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
12816
13197
  adjustedReturn: {
12817
- valueInCurrency: string | null; /**
12818
- This is the amount required to submit the transactions
12819
- Includes the relayer fee or other native fees
12820
- Should be used for balance checks and tx submission.
12821
- */
13198
+ valueInCurrency: string | null;
12822
13199
  usd: string | null;
12823
13200
  };
12824
13201
  cost: {
@@ -12978,8 +13355,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12978
13355
  buyAmount?: string | undefined;
12979
13356
  from?: string | undefined;
12980
13357
  };
13358
+ typedData: {
13359
+ types: Record<string, {
13360
+ name: string;
13361
+ type: string;
13362
+ }[]>;
13363
+ primaryType: string;
13364
+ domain: Record<string, any>;
13365
+ message: Record<string, any>;
13366
+ };
12981
13367
  settlementContract?: string | undefined;
12982
- relayer?: string | undefined;
12983
13368
  } | undefined;
12984
13369
  gasSponsored?: boolean | undefined;
12985
13370
  };
@@ -13079,11 +13464,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13079
13464
  */
13080
13465
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
13081
13466
  adjustedReturn: {
13082
- valueInCurrency: string | null; /**
13083
- This is the amount required to submit the transactions
13084
- Includes the relayer fee or other native fees
13085
- Should be used for balance checks and tx submission.
13086
- */
13467
+ valueInCurrency: string | null;
13087
13468
  usd: string | null;
13088
13469
  };
13089
13470
  cost: {
@@ -13243,8 +13624,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13243
13624
  buyAmount?: string | undefined;
13244
13625
  from?: string | undefined;
13245
13626
  };
13627
+ typedData: {
13628
+ types: Record<string, {
13629
+ name: string;
13630
+ type: string;
13631
+ }[]>;
13632
+ primaryType: string;
13633
+ domain: Record<string, any>;
13634
+ message: Record<string, any>;
13635
+ };
13246
13636
  settlementContract?: string | undefined;
13247
- relayer?: string | undefined;
13248
13637
  } | undefined;
13249
13638
  gasSponsored?: boolean | undefined;
13250
13639
  };
@@ -13450,8 +13839,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13450
13839
  buyAmount?: string | undefined;
13451
13840
  from?: string | undefined;
13452
13841
  };
13842
+ typedData: {
13843
+ types: Record<string, {
13844
+ name: string;
13845
+ type: string;
13846
+ }[]>;
13847
+ primaryType: string;
13848
+ domain: Record<string, any>;
13849
+ message: Record<string, any>;
13850
+ };
13453
13851
  settlementContract?: string | undefined;
13454
- relayer?: string | undefined;
13455
13852
  } | undefined;
13456
13853
  gasSponsored?: boolean | undefined;
13457
13854
  };
@@ -13834,8 +14231,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13834
14231
  buyAmount?: string | undefined;
13835
14232
  from?: string | undefined;
13836
14233
  };
14234
+ typedData: {
14235
+ types: Record<string, {
14236
+ name: string;
14237
+ type: string;
14238
+ }[]>;
14239
+ primaryType: string;
14240
+ domain: Record<string, any>;
14241
+ message: Record<string, any>;
14242
+ };
13837
14243
  settlementContract?: string | undefined;
13838
- relayer?: string | undefined;
13839
14244
  } | undefined;
13840
14245
  gasSponsored?: boolean | undefined;
13841
14246
  };
@@ -14083,8 +14488,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14083
14488
  buyAmount?: string | undefined;
14084
14489
  from?: string | undefined;
14085
14490
  };
14491
+ typedData: {
14492
+ types: Record<string, {
14493
+ name: string;
14494
+ type: string;
14495
+ }[]>;
14496
+ primaryType: string;
14497
+ domain: Record<string, any>;
14498
+ message: Record<string, any>;
14499
+ };
14086
14500
  settlementContract?: string | undefined;
14087
- relayer?: string | undefined;
14088
14501
  } | undefined;
14089
14502
  gasSponsored?: boolean | undefined;
14090
14503
  };
@@ -14327,8 +14740,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14327
14740
  buyAmount?: string | undefined;
14328
14741
  from?: string | undefined;
14329
14742
  };
14743
+ typedData: {
14744
+ types: Record<string, {
14745
+ name: string;
14746
+ type: string;
14747
+ }[]>;
14748
+ primaryType: string;
14749
+ domain: Record<string, any>;
14750
+ message: Record<string, any>;
14751
+ };
14330
14752
  settlementContract?: string | undefined;
14331
- relayer?: string | undefined;
14332
14753
  } | undefined;
14333
14754
  gasSponsored?: boolean | undefined;
14334
14755
  };
@@ -14571,8 +14992,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14571
14992
  buyAmount?: string | undefined;
14572
14993
  from?: string | undefined;
14573
14994
  };
14995
+ typedData: {
14996
+ types: Record<string, {
14997
+ name: string;
14998
+ type: string;
14999
+ }[]>;
15000
+ primaryType: string;
15001
+ domain: Record<string, any>;
15002
+ message: Record<string, any>;
15003
+ };
14574
15004
  settlementContract?: string | undefined;
14575
- relayer?: string | undefined;
14576
15005
  } | undefined;
14577
15006
  gasSponsored?: boolean | undefined;
14578
15007
  };
@@ -14816,8 +15245,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14816
15245
  buyAmount?: string | undefined;
14817
15246
  from?: string | undefined;
14818
15247
  };
15248
+ typedData: {
15249
+ types: Record<string, {
15250
+ name: string;
15251
+ type: string;
15252
+ }[]>;
15253
+ primaryType: string;
15254
+ domain: Record<string, any>;
15255
+ message: Record<string, any>;
15256
+ };
14819
15257
  settlementContract?: string | undefined;
14820
- relayer?: string | undefined;
14821
15258
  } | undefined;
14822
15259
  gasSponsored?: boolean | undefined;
14823
15260
  };
@@ -15060,8 +15497,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15060
15497
  buyAmount?: string | undefined;
15061
15498
  from?: string | undefined;
15062
15499
  };
15500
+ typedData: {
15501
+ types: Record<string, {
15502
+ name: string;
15503
+ type: string;
15504
+ }[]>;
15505
+ primaryType: string;
15506
+ domain: Record<string, any>;
15507
+ message: Record<string, any>;
15508
+ };
15063
15509
  settlementContract?: string | undefined;
15064
- relayer?: string | undefined;
15065
15510
  } | undefined;
15066
15511
  gasSponsored?: boolean | undefined;
15067
15512
  };
@@ -15304,8 +15749,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15304
15749
  buyAmount?: string | undefined;
15305
15750
  from?: string | undefined;
15306
15751
  };
15752
+ typedData: {
15753
+ types: Record<string, {
15754
+ name: string;
15755
+ type: string;
15756
+ }[]>;
15757
+ primaryType: string;
15758
+ domain: Record<string, any>;
15759
+ message: Record<string, any>;
15760
+ };
15307
15761
  settlementContract?: string | undefined;
15308
- relayer?: string | undefined;
15309
15762
  } | undefined;
15310
15763
  gasSponsored?: boolean | undefined;
15311
15764
  };
@@ -15553,8 +16006,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15553
16006
  buyAmount?: string | undefined;
15554
16007
  from?: string | undefined;
15555
16008
  };
16009
+ typedData: {
16010
+ types: Record<string, {
16011
+ name: string;
16012
+ type: string;
16013
+ }[]>;
16014
+ primaryType: string;
16015
+ domain: Record<string, any>;
16016
+ message: Record<string, any>;
16017
+ };
15556
16018
  settlementContract?: string | undefined;
15557
- relayer?: string | undefined;
15558
16019
  } | undefined;
15559
16020
  gasSponsored?: boolean | undefined;
15560
16021
  };
@@ -15802,8 +16263,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15802
16263
  buyAmount?: string | undefined;
15803
16264
  from?: string | undefined;
15804
16265
  };
16266
+ typedData: {
16267
+ types: Record<string, {
16268
+ name: string;
16269
+ type: string;
16270
+ }[]>;
16271
+ primaryType: string;
16272
+ domain: Record<string, any>;
16273
+ message: Record<string, any>;
16274
+ };
15805
16275
  settlementContract?: string | undefined;
15806
- relayer?: string | undefined;
15807
16276
  } | undefined;
15808
16277
  gasSponsored?: boolean | undefined;
15809
16278
  };
@@ -16051,8 +16520,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
16051
16520
  buyAmount?: string | undefined;
16052
16521
  from?: string | undefined;
16053
16522
  };
16523
+ typedData: {
16524
+ types: Record<string, {
16525
+ name: string;
16526
+ type: string;
16527
+ }[]>;
16528
+ primaryType: string;
16529
+ domain: Record<string, any>;
16530
+ message: Record<string, any>;
16531
+ };
16054
16532
  settlementContract?: string | undefined;
16055
- relayer?: string | undefined;
16056
16533
  } | undefined;
16057
16534
  gasSponsored?: boolean | undefined;
16058
16535
  };
@@ -16295,8 +16772,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
16295
16772
  buyAmount?: string | undefined;
16296
16773
  from?: string | undefined;
16297
16774
  };
16775
+ typedData: {
16776
+ types: Record<string, {
16777
+ name: string;
16778
+ type: string;
16779
+ }[]>;
16780
+ primaryType: string;
16781
+ domain: Record<string, any>;
16782
+ message: Record<string, any>;
16783
+ };
16298
16784
  settlementContract?: string | undefined;
16299
- relayer?: string | undefined;
16300
16785
  } | undefined;
16301
16786
  gasSponsored?: boolean | undefined;
16302
16787
  };
@@ -16540,8 +17025,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
16540
17025
  buyAmount?: string | undefined;
16541
17026
  from?: string | undefined;
16542
17027
  };
17028
+ typedData: {
17029
+ types: Record<string, {
17030
+ name: string;
17031
+ type: string;
17032
+ }[]>;
17033
+ primaryType: string;
17034
+ domain: Record<string, any>;
17035
+ message: Record<string, any>;
17036
+ };
16543
17037
  settlementContract?: string | undefined;
16544
- relayer?: string | undefined;
16545
17038
  } | undefined;
16546
17039
  gasSponsored?: boolean | undefined;
16547
17040
  };
@@ -16784,8 +17277,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
16784
17277
  buyAmount?: string | undefined;
16785
17278
  from?: string | undefined;
16786
17279
  };
17280
+ typedData: {
17281
+ types: Record<string, {
17282
+ name: string;
17283
+ type: string;
17284
+ }[]>;
17285
+ primaryType: string;
17286
+ domain: Record<string, any>;
17287
+ message: Record<string, any>;
17288
+ };
16787
17289
  settlementContract?: string | undefined;
16788
- relayer?: string | undefined;
16789
17290
  } | undefined;
16790
17291
  gasSponsored?: boolean | undefined;
16791
17292
  };
@@ -17033,8 +17534,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17033
17534
  buyAmount?: string | undefined;
17034
17535
  from?: string | undefined;
17035
17536
  };
17537
+ typedData: {
17538
+ types: Record<string, {
17539
+ name: string;
17540
+ type: string;
17541
+ }[]>;
17542
+ primaryType: string;
17543
+ domain: Record<string, any>;
17544
+ message: Record<string, any>;
17545
+ };
17036
17546
  settlementContract?: string | undefined;
17037
- relayer?: string | undefined;
17038
17547
  } | undefined;
17039
17548
  gasSponsored?: boolean | undefined;
17040
17549
  };
@@ -17282,8 +17791,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17282
17791
  buyAmount?: string | undefined;
17283
17792
  from?: string | undefined;
17284
17793
  };
17794
+ typedData: {
17795
+ types: Record<string, {
17796
+ name: string;
17797
+ type: string;
17798
+ }[]>;
17799
+ primaryType: string;
17800
+ domain: Record<string, any>;
17801
+ message: Record<string, any>;
17802
+ };
17285
17803
  settlementContract?: string | undefined;
17286
- relayer?: string | undefined;
17287
17804
  } | undefined;
17288
17805
  gasSponsored?: boolean | undefined;
17289
17806
  };
@@ -17421,11 +17938,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17421
17938
  */
17422
17939
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
17423
17940
  adjustedReturn: {
17424
- valueInCurrency: string | null; /**
17425
- This is the amount required to submit the transactions
17426
- Includes the relayer fee or other native fees
17427
- Should be used for balance checks and tx submission.
17428
- */
17941
+ valueInCurrency: string | null;
17429
17942
  usd: string | null;
17430
17943
  };
17431
17944
  cost: {
@@ -17585,8 +18098,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17585
18098
  buyAmount?: string | undefined;
17586
18099
  from?: string | undefined;
17587
18100
  };
18101
+ typedData: {
18102
+ types: Record<string, {
18103
+ name: string;
18104
+ type: string;
18105
+ }[]>;
18106
+ primaryType: string;
18107
+ domain: Record<string, any>;
18108
+ message: Record<string, any>;
18109
+ };
17588
18110
  settlementContract?: string | undefined;
17589
- relayer?: string | undefined;
17590
18111
  } | undefined;
17591
18112
  gasSponsored?: boolean | undefined;
17592
18113
  };
@@ -17791,8 +18312,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17791
18312
  buyAmount?: string | undefined;
17792
18313
  from?: string | undefined;
17793
18314
  };
18315
+ typedData: {
18316
+ types: Record<string, {
18317
+ name: string;
18318
+ type: string;
18319
+ }[]>;
18320
+ primaryType: string;
18321
+ domain: Record<string, any>;
18322
+ message: Record<string, any>;
18323
+ };
17794
18324
  settlementContract?: string | undefined;
17795
- relayer?: string | undefined;
17796
18325
  } | undefined;
17797
18326
  gasSponsored?: boolean | undefined;
17798
18327
  };
@@ -17926,11 +18455,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
17926
18455
  */
17927
18456
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
17928
18457
  adjustedReturn: {
17929
- valueInCurrency: string | null; /**
17930
- This is the amount required to submit the transactions
17931
- Includes the relayer fee or other native fees
17932
- Should be used for balance checks and tx submission.
17933
- */
18458
+ valueInCurrency: string | null;
17934
18459
  usd: string | null;
17935
18460
  };
17936
18461
  cost: {
@@ -18090,8 +18615,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
18090
18615
  buyAmount?: string | undefined;
18091
18616
  from?: string | undefined;
18092
18617
  };
18618
+ typedData: {
18619
+ types: Record<string, {
18620
+ name: string;
18621
+ type: string;
18622
+ }[]>;
18623
+ primaryType: string;
18624
+ domain: Record<string, any>;
18625
+ message: Record<string, any>;
18626
+ };
18093
18627
  settlementContract?: string | undefined;
18094
- relayer?: string | undefined;
18095
18628
  } | undefined;
18096
18629
  gasSponsored?: boolean | undefined;
18097
18630
  };
@@ -18296,8 +18829,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
18296
18829
  buyAmount?: string | undefined;
18297
18830
  from?: string | undefined;
18298
18831
  };
18832
+ typedData: {
18833
+ types: Record<string, {
18834
+ name: string;
18835
+ type: string;
18836
+ }[]>;
18837
+ primaryType: string;
18838
+ domain: Record<string, any>;
18839
+ message: Record<string, any>;
18840
+ };
18299
18841
  settlementContract?: string | undefined;
18300
- relayer?: string | undefined;
18301
18842
  } | undefined;
18302
18843
  gasSponsored?: boolean | undefined;
18303
18844
  };
@@ -18545,8 +19086,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
18545
19086
  buyAmount?: string | undefined;
18546
19087
  from?: string | undefined;
18547
19088
  };
19089
+ typedData: {
19090
+ types: Record<string, {
19091
+ name: string;
19092
+ type: string;
19093
+ }[]>;
19094
+ primaryType: string;
19095
+ domain: Record<string, any>;
19096
+ message: Record<string, any>;
19097
+ };
18548
19098
  settlementContract?: string | undefined;
18549
- relayer?: string | undefined;
18550
19099
  } | undefined;
18551
19100
  gasSponsored?: boolean | undefined;
18552
19101
  };
@@ -18684,11 +19233,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
18684
19233
  */
18685
19234
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
18686
19235
  adjustedReturn: {
18687
- valueInCurrency: string | null; /**
18688
- This is the amount required to submit the transactions
18689
- Includes the relayer fee or other native fees
18690
- Should be used for balance checks and tx submission.
18691
- */
19236
+ valueInCurrency: string | null;
18692
19237
  usd: string | null;
18693
19238
  };
18694
19239
  cost: {
@@ -18848,8 +19393,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
18848
19393
  buyAmount?: string | undefined;
18849
19394
  from?: string | undefined;
18850
19395
  };
19396
+ typedData: {
19397
+ types: Record<string, {
19398
+ name: string;
19399
+ type: string;
19400
+ }[]>;
19401
+ primaryType: string;
19402
+ domain: Record<string, any>;
19403
+ message: Record<string, any>;
19404
+ };
18851
19405
  settlementContract?: string | undefined;
18852
- relayer?: string | undefined;
18853
19406
  } | undefined;
18854
19407
  gasSponsored?: boolean | undefined;
18855
19408
  };
@@ -19059,8 +19612,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19059
19612
  buyAmount?: string | undefined;
19060
19613
  from?: string | undefined;
19061
19614
  };
19615
+ typedData: {
19616
+ types: Record<string, {
19617
+ name: string;
19618
+ type: string;
19619
+ }[]>;
19620
+ primaryType: string;
19621
+ domain: Record<string, any>;
19622
+ message: Record<string, any>;
19623
+ };
19062
19624
  settlementContract?: string | undefined;
19063
- relayer?: string | undefined;
19064
19625
  } | undefined;
19065
19626
  gasSponsored?: boolean | undefined;
19066
19627
  };
@@ -19197,11 +19758,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19197
19758
  */
19198
19759
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
19199
19760
  adjustedReturn: {
19200
- valueInCurrency: string | null; /**
19201
- This is the amount required to submit the transactions
19202
- Includes the relayer fee or other native fees
19203
- Should be used for balance checks and tx submission.
19204
- */
19761
+ valueInCurrency: string | null;
19205
19762
  usd: string | null;
19206
19763
  };
19207
19764
  cost: {
@@ -19361,8 +19918,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19361
19918
  buyAmount?: string | undefined;
19362
19919
  from?: string | undefined;
19363
19920
  };
19921
+ typedData: {
19922
+ types: Record<string, {
19923
+ name: string;
19924
+ type: string;
19925
+ }[]>;
19926
+ primaryType: string;
19927
+ domain: Record<string, any>;
19928
+ message: Record<string, any>;
19929
+ };
19364
19930
  settlementContract?: string | undefined;
19365
- relayer?: string | undefined;
19366
19931
  } | undefined;
19367
19932
  gasSponsored?: boolean | undefined;
19368
19933
  };
@@ -19568,8 +20133,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19568
20133
  buyAmount?: string | undefined;
19569
20134
  from?: string | undefined;
19570
20135
  };
20136
+ typedData: {
20137
+ types: Record<string, {
20138
+ name: string;
20139
+ type: string;
20140
+ }[]>;
20141
+ primaryType: string;
20142
+ domain: Record<string, any>;
20143
+ message: Record<string, any>;
20144
+ };
19571
20145
  settlementContract?: string | undefined;
19572
- relayer?: string | undefined;
19573
20146
  } | undefined;
19574
20147
  gasSponsored?: boolean | undefined;
19575
20148
  };
@@ -19706,11 +20279,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19706
20279
  */
19707
20280
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
19708
20281
  adjustedReturn: {
19709
- valueInCurrency: string | null; /**
19710
- This is the amount required to submit the transactions
19711
- Includes the relayer fee or other native fees
19712
- Should be used for balance checks and tx submission.
19713
- */
20282
+ valueInCurrency: string | null;
19714
20283
  usd: string | null;
19715
20284
  };
19716
20285
  cost: {
@@ -19870,8 +20439,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19870
20439
  buyAmount?: string | undefined;
19871
20440
  from?: string | undefined;
19872
20441
  };
20442
+ typedData: {
20443
+ types: Record<string, {
20444
+ name: string;
20445
+ type: string;
20446
+ }[]>;
20447
+ primaryType: string;
20448
+ domain: Record<string, any>;
20449
+ message: Record<string, any>;
20450
+ };
19873
20451
  settlementContract?: string | undefined;
19874
- relayer?: string | undefined;
19875
20452
  } | undefined;
19876
20453
  gasSponsored?: boolean | undefined;
19877
20454
  };
@@ -19971,11 +20548,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
19971
20548
  */
19972
20549
  gasFee: Record<"effective" | "total" | "max", import("./types.cjs").TokenAmountValues>;
19973
20550
  adjustedReturn: {
19974
- valueInCurrency: string | null; /**
19975
- This is the amount required to submit the transactions
19976
- Includes the relayer fee or other native fees
19977
- Should be used for balance checks and tx submission.
19978
- */
20551
+ valueInCurrency: string | null;
19979
20552
  usd: string | null;
19980
20553
  };
19981
20554
  cost: {
@@ -20135,8 +20708,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20135
20708
  buyAmount?: string | undefined;
20136
20709
  from?: string | undefined;
20137
20710
  };
20711
+ typedData: {
20712
+ types: Record<string, {
20713
+ name: string;
20714
+ type: string;
20715
+ }[]>;
20716
+ primaryType: string;
20717
+ domain: Record<string, any>;
20718
+ message: Record<string, any>;
20719
+ };
20138
20720
  settlementContract?: string | undefined;
20139
- relayer?: string | undefined;
20140
20721
  } | undefined;
20141
20722
  gasSponsored?: boolean | undefined;
20142
20723
  };
@@ -20342,8 +20923,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20342
20923
  buyAmount?: string | undefined;
20343
20924
  from?: string | undefined;
20344
20925
  };
20926
+ typedData: {
20927
+ types: Record<string, {
20928
+ name: string;
20929
+ type: string;
20930
+ }[]>;
20931
+ primaryType: string;
20932
+ domain: Record<string, any>;
20933
+ message: Record<string, any>;
20934
+ };
20345
20935
  settlementContract?: string | undefined;
20346
- relayer?: string | undefined;
20347
20936
  } | undefined;
20348
20937
  gasSponsored?: boolean | undefined;
20349
20938
  };
@@ -20722,8 +21311,16 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20722
21311
  buyAmount?: string | undefined;
20723
21312
  from?: string | undefined;
20724
21313
  };
21314
+ typedData: {
21315
+ types: Record<string, {
21316
+ name: string;
21317
+ type: string;
21318
+ }[]>;
21319
+ primaryType: string;
21320
+ domain: Record<string, any>;
21321
+ message: Record<string, any>;
21322
+ };
20725
21323
  settlementContract?: string | undefined;
20726
- relayer?: string | undefined;
20727
21324
  } | undefined;
20728
21325
  gasSponsored?: boolean | undefined;
20729
21326
  };
@@ -20857,6 +21454,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20857
21454
  priceImpactThreshold?: {
20858
21455
  gasless: number;
20859
21456
  normal: number;
21457
+ warning?: number | undefined;
21458
+ error?: number | undefined;
20860
21459
  } | undefined;
20861
21460
  quoteRequestOverrides?: Record<import(".").FeatureId, {
20862
21461
  aggIds?: string[] | undefined;
@@ -20899,6 +21498,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20899
21498
  priceImpactThreshold?: {
20900
21499
  gasless: number;
20901
21500
  normal: number;
21501
+ warning?: number | undefined;
21502
+ error?: number | undefined;
20902
21503
  } | undefined;
20903
21504
  quoteRequestOverrides?: Record<import(".").FeatureId, {
20904
21505
  aggIds?: string[] | undefined;
@@ -20946,6 +21547,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20946
21547
  priceImpactThreshold?: {
20947
21548
  gasless: number;
20948
21549
  normal: number;
21550
+ warning?: number | undefined;
21551
+ error?: number | undefined;
20949
21552
  } | undefined;
20950
21553
  quoteRequestOverrides?: Record<import(".").FeatureId, {
20951
21554
  aggIds?: string[] | undefined;
@@ -20992,6 +21595,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
20992
21595
  priceImpactThreshold?: {
20993
21596
  gasless: number;
20994
21597
  normal: number;
21598
+ warning?: number | undefined;
21599
+ error?: number | undefined;
20995
21600
  } | undefined;
20996
21601
  quoteRequestOverrides?: Record<import(".").FeatureId, {
20997
21602
  aggIds?: string[] | undefined;
@@ -21034,6 +21639,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
21034
21639
  priceImpactThreshold?: {
21035
21640
  gasless: number;
21036
21641
  normal: number;
21642
+ warning?: number | undefined;
21643
+ error?: number | undefined;
21037
21644
  } | undefined;
21038
21645
  quoteRequestOverrides?: Record<import(".").FeatureId, {
21039
21646
  aggIds?: string[] | undefined;
@@ -21080,6 +21687,8 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
21080
21687
  priceImpactThreshold?: {
21081
21688
  gasless: number;
21082
21689
  normal: number;
21690
+ warning?: number | undefined;
21691
+ error?: number | undefined;
21083
21692
  } | undefined;
21084
21693
  quoteRequestOverrides?: Record<import(".").FeatureId, {
21085
21694
  aggIds?: string[] | undefined;