@metamask-previews/bridge-controller 42.0.0-preview-e85a6854 → 43.0.0-preview-c896a02b
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 +12 -1
- package/dist/selectors.d.cts +78 -0
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +78 -0
- package/dist/selectors.d.mts.map +1 -1
- package/dist/utils/validators.cjs +1 -0
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +8 -0
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +8 -0
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +1 -0
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
+
- Bump `@metamask/controller-utils` from `^11.12.0` to `^11.13.0` ([#6620](https://github.com/MetaMask/core/pull/6620))
|
|
13
|
+
|
|
14
|
+
## [43.0.0]
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Add `totalFeeAmountUsd` to `quote` to support rewards estimation ([#6592](https://github.com/MetaMask/core/pull/6592))
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
12
22
|
- **BREAKING:** Bump peer dependency `@metamask/assets-controller` from `^74.0.0` to `^75.0.0` ([#6570](https://github.com/MetaMask/core/pull/6570))
|
|
13
23
|
- Bump `@metamask/keyring-api` from `^20.1.0` to `^21.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
|
|
14
24
|
- Add optional `isGaslessSwapEnabled` LaunchDarkly config to feature flags schema ([#6573](https://github.com/MetaMask/core/pull/6573))
|
|
@@ -563,7 +573,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
563
573
|
|
|
564
574
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
565
575
|
|
|
566
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@
|
|
576
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@43.0.0...HEAD
|
|
577
|
+
[43.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@42.0.0...@metamask/bridge-controller@43.0.0
|
|
567
578
|
[42.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@41.4.0...@metamask/bridge-controller@42.0.0
|
|
568
579
|
[41.4.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@41.3.0...@metamask/bridge-controller@41.4.0
|
|
569
580
|
[41.3.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@41.2.0...@metamask/bridge-controller@41.3.0
|
package/dist/selectors.d.cts
CHANGED
|
@@ -720,6 +720,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
720
720
|
totalFromAmountUsd?: string | undefined;
|
|
721
721
|
totalToAmountUsd?: string | undefined;
|
|
722
722
|
priceImpact?: string | undefined;
|
|
723
|
+
totalFeeAmountUsd?: string | undefined;
|
|
723
724
|
} | undefined;
|
|
724
725
|
};
|
|
725
726
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -892,6 +893,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
892
893
|
totalFromAmountUsd?: string | undefined;
|
|
893
894
|
totalToAmountUsd?: string | undefined;
|
|
894
895
|
priceImpact?: string | undefined;
|
|
896
|
+
totalFeeAmountUsd?: string | undefined;
|
|
895
897
|
} | undefined;
|
|
896
898
|
};
|
|
897
899
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1064,6 +1066,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1064
1066
|
totalFromAmountUsd?: string | undefined;
|
|
1065
1067
|
totalToAmountUsd?: string | undefined;
|
|
1066
1068
|
priceImpact?: string | undefined;
|
|
1069
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1067
1070
|
} | undefined;
|
|
1068
1071
|
};
|
|
1069
1072
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1247,6 +1250,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1247
1250
|
totalFromAmountUsd?: string | undefined;
|
|
1248
1251
|
totalToAmountUsd?: string | undefined;
|
|
1249
1252
|
priceImpact?: string | undefined;
|
|
1253
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1250
1254
|
} | undefined;
|
|
1251
1255
|
};
|
|
1252
1256
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1418,6 +1422,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1418
1422
|
totalFromAmountUsd?: string | undefined;
|
|
1419
1423
|
totalToAmountUsd?: string | undefined;
|
|
1420
1424
|
priceImpact?: string | undefined;
|
|
1425
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1421
1426
|
} | undefined;
|
|
1422
1427
|
};
|
|
1423
1428
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1589,6 +1594,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1589
1594
|
totalFromAmountUsd?: string | undefined;
|
|
1590
1595
|
totalToAmountUsd?: string | undefined;
|
|
1591
1596
|
priceImpact?: string | undefined;
|
|
1597
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1592
1598
|
} | undefined;
|
|
1593
1599
|
};
|
|
1594
1600
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1761,6 +1767,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1761
1767
|
totalFromAmountUsd?: string | undefined;
|
|
1762
1768
|
totalToAmountUsd?: string | undefined;
|
|
1763
1769
|
priceImpact?: string | undefined;
|
|
1770
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1764
1771
|
} | undefined;
|
|
1765
1772
|
};
|
|
1766
1773
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -1933,6 +1940,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1933
1940
|
totalFromAmountUsd?: string | undefined;
|
|
1934
1941
|
totalToAmountUsd?: string | undefined;
|
|
1935
1942
|
priceImpact?: string | undefined;
|
|
1943
|
+
totalFeeAmountUsd?: string | undefined;
|
|
1936
1944
|
} | undefined;
|
|
1937
1945
|
};
|
|
1938
1946
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2105,6 +2113,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2105
2113
|
totalFromAmountUsd?: string | undefined;
|
|
2106
2114
|
totalToAmountUsd?: string | undefined;
|
|
2107
2115
|
priceImpact?: string | undefined;
|
|
2116
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2108
2117
|
} | undefined;
|
|
2109
2118
|
};
|
|
2110
2119
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2284,6 +2293,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2284
2293
|
totalFromAmountUsd?: string | undefined;
|
|
2285
2294
|
totalToAmountUsd?: string | undefined;
|
|
2286
2295
|
priceImpact?: string | undefined;
|
|
2296
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2287
2297
|
} | undefined;
|
|
2288
2298
|
};
|
|
2289
2299
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2455,6 +2465,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2455
2465
|
totalFromAmountUsd?: string | undefined;
|
|
2456
2466
|
totalToAmountUsd?: string | undefined;
|
|
2457
2467
|
priceImpact?: string | undefined;
|
|
2468
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2458
2469
|
} | undefined;
|
|
2459
2470
|
};
|
|
2460
2471
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2626,6 +2637,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2626
2637
|
totalFromAmountUsd?: string | undefined;
|
|
2627
2638
|
totalToAmountUsd?: string | undefined;
|
|
2628
2639
|
priceImpact?: string | undefined;
|
|
2640
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2629
2641
|
} | undefined;
|
|
2630
2642
|
};
|
|
2631
2643
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2798,6 +2810,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2798
2810
|
totalFromAmountUsd?: string | undefined;
|
|
2799
2811
|
totalToAmountUsd?: string | undefined;
|
|
2800
2812
|
priceImpact?: string | undefined;
|
|
2813
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2801
2814
|
} | undefined;
|
|
2802
2815
|
};
|
|
2803
2816
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -2970,6 +2983,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2970
2983
|
totalFromAmountUsd?: string | undefined;
|
|
2971
2984
|
totalToAmountUsd?: string | undefined;
|
|
2972
2985
|
priceImpact?: string | undefined;
|
|
2986
|
+
totalFeeAmountUsd?: string | undefined;
|
|
2973
2987
|
} | undefined;
|
|
2974
2988
|
};
|
|
2975
2989
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -3142,6 +3156,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3142
3156
|
totalFromAmountUsd?: string | undefined;
|
|
3143
3157
|
totalToAmountUsd?: string | undefined;
|
|
3144
3158
|
priceImpact?: string | undefined;
|
|
3159
|
+
totalFeeAmountUsd?: string | undefined;
|
|
3145
3160
|
} | undefined;
|
|
3146
3161
|
};
|
|
3147
3162
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -3326,6 +3341,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3326
3341
|
totalFromAmountUsd?: string | undefined;
|
|
3327
3342
|
totalToAmountUsd?: string | undefined;
|
|
3328
3343
|
priceImpact?: string | undefined;
|
|
3344
|
+
totalFeeAmountUsd?: string | undefined;
|
|
3329
3345
|
} | undefined;
|
|
3330
3346
|
};
|
|
3331
3347
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -3498,6 +3514,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3498
3514
|
totalFromAmountUsd?: string | undefined;
|
|
3499
3515
|
totalToAmountUsd?: string | undefined;
|
|
3500
3516
|
priceImpact?: string | undefined;
|
|
3517
|
+
totalFeeAmountUsd?: string | undefined;
|
|
3501
3518
|
} | undefined;
|
|
3502
3519
|
};
|
|
3503
3520
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -3670,6 +3687,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3670
3687
|
totalFromAmountUsd?: string | undefined;
|
|
3671
3688
|
totalToAmountUsd?: string | undefined;
|
|
3672
3689
|
priceImpact?: string | undefined;
|
|
3690
|
+
totalFeeAmountUsd?: string | undefined;
|
|
3673
3691
|
} | undefined;
|
|
3674
3692
|
};
|
|
3675
3693
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -3853,6 +3871,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3853
3871
|
totalFromAmountUsd?: string | undefined;
|
|
3854
3872
|
totalToAmountUsd?: string | undefined;
|
|
3855
3873
|
priceImpact?: string | undefined;
|
|
3874
|
+
totalFeeAmountUsd?: string | undefined;
|
|
3856
3875
|
} | undefined;
|
|
3857
3876
|
};
|
|
3858
3877
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4069,6 +4088,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4069
4088
|
totalFromAmountUsd?: string | undefined;
|
|
4070
4089
|
totalToAmountUsd?: string | undefined;
|
|
4071
4090
|
priceImpact?: string | undefined;
|
|
4091
|
+
totalFeeAmountUsd?: string | undefined;
|
|
4072
4092
|
} | undefined;
|
|
4073
4093
|
};
|
|
4074
4094
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4231,6 +4251,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4231
4251
|
totalFromAmountUsd?: string | undefined;
|
|
4232
4252
|
totalToAmountUsd?: string | undefined;
|
|
4233
4253
|
priceImpact?: string | undefined;
|
|
4254
|
+
totalFeeAmountUsd?: string | undefined;
|
|
4234
4255
|
} | undefined;
|
|
4235
4256
|
};
|
|
4236
4257
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4443,6 +4464,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4443
4464
|
totalFromAmountUsd?: string | undefined;
|
|
4444
4465
|
totalToAmountUsd?: string | undefined;
|
|
4445
4466
|
priceImpact?: string | undefined;
|
|
4467
|
+
totalFeeAmountUsd?: string | undefined;
|
|
4446
4468
|
} | undefined;
|
|
4447
4469
|
};
|
|
4448
4470
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4605,6 +4627,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4605
4627
|
totalFromAmountUsd?: string | undefined;
|
|
4606
4628
|
totalToAmountUsd?: string | undefined;
|
|
4607
4629
|
priceImpact?: string | undefined;
|
|
4630
|
+
totalFeeAmountUsd?: string | undefined;
|
|
4608
4631
|
} | undefined;
|
|
4609
4632
|
};
|
|
4610
4633
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4781,6 +4804,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4781
4804
|
totalFromAmountUsd?: string | undefined;
|
|
4782
4805
|
totalToAmountUsd?: string | undefined;
|
|
4783
4806
|
priceImpact?: string | undefined;
|
|
4807
|
+
totalFeeAmountUsd?: string | undefined;
|
|
4784
4808
|
} | undefined;
|
|
4785
4809
|
};
|
|
4786
4810
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -4997,6 +5021,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4997
5021
|
totalFromAmountUsd?: string | undefined;
|
|
4998
5022
|
totalToAmountUsd?: string | undefined;
|
|
4999
5023
|
priceImpact?: string | undefined;
|
|
5024
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5000
5025
|
} | undefined;
|
|
5001
5026
|
};
|
|
5002
5027
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -5164,6 +5189,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5164
5189
|
totalFromAmountUsd?: string | undefined;
|
|
5165
5190
|
totalToAmountUsd?: string | undefined;
|
|
5166
5191
|
priceImpact?: string | undefined;
|
|
5192
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5167
5193
|
} | undefined;
|
|
5168
5194
|
};
|
|
5169
5195
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -5379,6 +5405,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5379
5405
|
totalFromAmountUsd?: string | undefined;
|
|
5380
5406
|
totalToAmountUsd?: string | undefined;
|
|
5381
5407
|
priceImpact?: string | undefined;
|
|
5408
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5382
5409
|
} | undefined;
|
|
5383
5410
|
};
|
|
5384
5411
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -5542,6 +5569,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5542
5569
|
totalFromAmountUsd?: string | undefined;
|
|
5543
5570
|
totalToAmountUsd?: string | undefined;
|
|
5544
5571
|
priceImpact?: string | undefined;
|
|
5572
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5545
5573
|
} | undefined;
|
|
5546
5574
|
};
|
|
5547
5575
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -5757,6 +5785,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5757
5785
|
totalFromAmountUsd?: string | undefined;
|
|
5758
5786
|
totalToAmountUsd?: string | undefined;
|
|
5759
5787
|
priceImpact?: string | undefined;
|
|
5788
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5760
5789
|
} | undefined;
|
|
5761
5790
|
};
|
|
5762
5791
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -5964,6 +5993,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5964
5993
|
totalFromAmountUsd?: string | undefined;
|
|
5965
5994
|
totalToAmountUsd?: string | undefined;
|
|
5966
5995
|
priceImpact?: string | undefined;
|
|
5996
|
+
totalFeeAmountUsd?: string | undefined;
|
|
5967
5997
|
} | undefined;
|
|
5968
5998
|
};
|
|
5969
5999
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -6127,6 +6157,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6127
6157
|
totalFromAmountUsd?: string | undefined;
|
|
6128
6158
|
totalToAmountUsd?: string | undefined;
|
|
6129
6159
|
priceImpact?: string | undefined;
|
|
6160
|
+
totalFeeAmountUsd?: string | undefined;
|
|
6130
6161
|
} | undefined;
|
|
6131
6162
|
};
|
|
6132
6163
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -6430,6 +6461,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6430
6461
|
totalFromAmountUsd?: string | undefined;
|
|
6431
6462
|
totalToAmountUsd?: string | undefined;
|
|
6432
6463
|
priceImpact?: string | undefined;
|
|
6464
|
+
totalFeeAmountUsd?: string | undefined;
|
|
6433
6465
|
} | undefined;
|
|
6434
6466
|
};
|
|
6435
6467
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -6606,6 +6638,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6606
6638
|
totalFromAmountUsd?: string | undefined;
|
|
6607
6639
|
totalToAmountUsd?: string | undefined;
|
|
6608
6640
|
priceImpact?: string | undefined;
|
|
6641
|
+
totalFeeAmountUsd?: string | undefined;
|
|
6609
6642
|
} | undefined;
|
|
6610
6643
|
};
|
|
6611
6644
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -6777,6 +6810,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6777
6810
|
totalFromAmountUsd?: string | undefined;
|
|
6778
6811
|
totalToAmountUsd?: string | undefined;
|
|
6779
6812
|
priceImpact?: string | undefined;
|
|
6813
|
+
totalFeeAmountUsd?: string | undefined;
|
|
6780
6814
|
} | undefined;
|
|
6781
6815
|
};
|
|
6782
6816
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -6949,6 +6983,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6949
6983
|
totalFromAmountUsd?: string | undefined;
|
|
6950
6984
|
totalToAmountUsd?: string | undefined;
|
|
6951
6985
|
priceImpact?: string | undefined;
|
|
6986
|
+
totalFeeAmountUsd?: string | undefined;
|
|
6952
6987
|
} | undefined;
|
|
6953
6988
|
};
|
|
6954
6989
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -7120,6 +7155,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7120
7155
|
totalFromAmountUsd?: string | undefined;
|
|
7121
7156
|
totalToAmountUsd?: string | undefined;
|
|
7122
7157
|
priceImpact?: string | undefined;
|
|
7158
|
+
totalFeeAmountUsd?: string | undefined;
|
|
7123
7159
|
} | undefined;
|
|
7124
7160
|
};
|
|
7125
7161
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -7296,6 +7332,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7296
7332
|
totalFromAmountUsd?: string | undefined;
|
|
7297
7333
|
totalToAmountUsd?: string | undefined;
|
|
7298
7334
|
priceImpact?: string | undefined;
|
|
7335
|
+
totalFeeAmountUsd?: string | undefined;
|
|
7299
7336
|
} | undefined;
|
|
7300
7337
|
};
|
|
7301
7338
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -7472,6 +7509,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7472
7509
|
totalFromAmountUsd?: string | undefined;
|
|
7473
7510
|
totalToAmountUsd?: string | undefined;
|
|
7474
7511
|
priceImpact?: string | undefined;
|
|
7512
|
+
totalFeeAmountUsd?: string | undefined;
|
|
7475
7513
|
} | undefined;
|
|
7476
7514
|
};
|
|
7477
7515
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -7688,6 +7726,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7688
7726
|
totalFromAmountUsd?: string | undefined;
|
|
7689
7727
|
totalToAmountUsd?: string | undefined;
|
|
7690
7728
|
priceImpact?: string | undefined;
|
|
7729
|
+
totalFeeAmountUsd?: string | undefined;
|
|
7691
7730
|
} | undefined;
|
|
7692
7731
|
};
|
|
7693
7732
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -7850,6 +7889,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7850
7889
|
totalFromAmountUsd?: string | undefined;
|
|
7851
7890
|
totalToAmountUsd?: string | undefined;
|
|
7852
7891
|
priceImpact?: string | undefined;
|
|
7892
|
+
totalFeeAmountUsd?: string | undefined;
|
|
7853
7893
|
} | undefined;
|
|
7854
7894
|
};
|
|
7855
7895
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8062,6 +8102,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8062
8102
|
totalFromAmountUsd?: string | undefined;
|
|
8063
8103
|
totalToAmountUsd?: string | undefined;
|
|
8064
8104
|
priceImpact?: string | undefined;
|
|
8105
|
+
totalFeeAmountUsd?: string | undefined;
|
|
8065
8106
|
} | undefined;
|
|
8066
8107
|
};
|
|
8067
8108
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8224,6 +8265,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8224
8265
|
totalFromAmountUsd?: string | undefined;
|
|
8225
8266
|
totalToAmountUsd?: string | undefined;
|
|
8226
8267
|
priceImpact?: string | undefined;
|
|
8268
|
+
totalFeeAmountUsd?: string | undefined;
|
|
8227
8269
|
} | undefined;
|
|
8228
8270
|
};
|
|
8229
8271
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8400,6 +8442,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8400
8442
|
totalFromAmountUsd?: string | undefined;
|
|
8401
8443
|
totalToAmountUsd?: string | undefined;
|
|
8402
8444
|
priceImpact?: string | undefined;
|
|
8445
|
+
totalFeeAmountUsd?: string | undefined;
|
|
8403
8446
|
} | undefined;
|
|
8404
8447
|
};
|
|
8405
8448
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8616,6 +8659,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8616
8659
|
totalFromAmountUsd?: string | undefined;
|
|
8617
8660
|
totalToAmountUsd?: string | undefined;
|
|
8618
8661
|
priceImpact?: string | undefined;
|
|
8662
|
+
totalFeeAmountUsd?: string | undefined;
|
|
8619
8663
|
} | undefined;
|
|
8620
8664
|
};
|
|
8621
8665
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8783,6 +8827,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8783
8827
|
totalFromAmountUsd?: string | undefined;
|
|
8784
8828
|
totalToAmountUsd?: string | undefined;
|
|
8785
8829
|
priceImpact?: string | undefined;
|
|
8830
|
+
totalFeeAmountUsd?: string | undefined;
|
|
8786
8831
|
} | undefined;
|
|
8787
8832
|
};
|
|
8788
8833
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -8998,6 +9043,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8998
9043
|
totalFromAmountUsd?: string | undefined;
|
|
8999
9044
|
totalToAmountUsd?: string | undefined;
|
|
9000
9045
|
priceImpact?: string | undefined;
|
|
9046
|
+
totalFeeAmountUsd?: string | undefined;
|
|
9001
9047
|
} | undefined;
|
|
9002
9048
|
};
|
|
9003
9049
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -9161,6 +9207,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9161
9207
|
totalFromAmountUsd?: string | undefined;
|
|
9162
9208
|
totalToAmountUsd?: string | undefined;
|
|
9163
9209
|
priceImpact?: string | undefined;
|
|
9210
|
+
totalFeeAmountUsd?: string | undefined;
|
|
9164
9211
|
} | undefined;
|
|
9165
9212
|
};
|
|
9166
9213
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -9376,6 +9423,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9376
9423
|
totalFromAmountUsd?: string | undefined;
|
|
9377
9424
|
totalToAmountUsd?: string | undefined;
|
|
9378
9425
|
priceImpact?: string | undefined;
|
|
9426
|
+
totalFeeAmountUsd?: string | undefined;
|
|
9379
9427
|
} | undefined;
|
|
9380
9428
|
};
|
|
9381
9429
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -9583,6 +9631,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9583
9631
|
totalFromAmountUsd?: string | undefined;
|
|
9584
9632
|
totalToAmountUsd?: string | undefined;
|
|
9585
9633
|
priceImpact?: string | undefined;
|
|
9634
|
+
totalFeeAmountUsd?: string | undefined;
|
|
9586
9635
|
} | undefined;
|
|
9587
9636
|
};
|
|
9588
9637
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -9746,6 +9795,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9746
9795
|
totalFromAmountUsd?: string | undefined;
|
|
9747
9796
|
totalToAmountUsd?: string | undefined;
|
|
9748
9797
|
priceImpact?: string | undefined;
|
|
9798
|
+
totalFeeAmountUsd?: string | undefined;
|
|
9749
9799
|
} | undefined;
|
|
9750
9800
|
};
|
|
9751
9801
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10057,6 +10107,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10057
10107
|
totalFromAmountUsd?: string | undefined;
|
|
10058
10108
|
totalToAmountUsd?: string | undefined;
|
|
10059
10109
|
priceImpact?: string | undefined;
|
|
10110
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10060
10111
|
} | undefined;
|
|
10061
10112
|
};
|
|
10062
10113
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10233,6 +10284,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10233
10284
|
totalFromAmountUsd?: string | undefined;
|
|
10234
10285
|
totalToAmountUsd?: string | undefined;
|
|
10235
10286
|
priceImpact?: string | undefined;
|
|
10287
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10236
10288
|
} | undefined;
|
|
10237
10289
|
};
|
|
10238
10290
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10404,6 +10456,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10404
10456
|
totalFromAmountUsd?: string | undefined;
|
|
10405
10457
|
totalToAmountUsd?: string | undefined;
|
|
10406
10458
|
priceImpact?: string | undefined;
|
|
10459
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10407
10460
|
} | undefined;
|
|
10408
10461
|
};
|
|
10409
10462
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10575,6 +10628,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10575
10628
|
totalFromAmountUsd?: string | undefined;
|
|
10576
10629
|
totalToAmountUsd?: string | undefined;
|
|
10577
10630
|
priceImpact?: string | undefined;
|
|
10631
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10578
10632
|
} | undefined;
|
|
10579
10633
|
};
|
|
10580
10634
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10747,6 +10801,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10747
10801
|
totalFromAmountUsd?: string | undefined;
|
|
10748
10802
|
totalToAmountUsd?: string | undefined;
|
|
10749
10803
|
priceImpact?: string | undefined;
|
|
10804
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10750
10805
|
} | undefined;
|
|
10751
10806
|
};
|
|
10752
10807
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -10918,6 +10973,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10918
10973
|
totalFromAmountUsd?: string | undefined;
|
|
10919
10974
|
totalToAmountUsd?: string | undefined;
|
|
10920
10975
|
priceImpact?: string | undefined;
|
|
10976
|
+
totalFeeAmountUsd?: string | undefined;
|
|
10921
10977
|
} | undefined;
|
|
10922
10978
|
};
|
|
10923
10979
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11089,6 +11145,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11089
11145
|
totalFromAmountUsd?: string | undefined;
|
|
11090
11146
|
totalToAmountUsd?: string | undefined;
|
|
11091
11147
|
priceImpact?: string | undefined;
|
|
11148
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11092
11149
|
} | undefined;
|
|
11093
11150
|
};
|
|
11094
11151
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11265,6 +11322,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11265
11322
|
totalFromAmountUsd?: string | undefined;
|
|
11266
11323
|
totalToAmountUsd?: string | undefined;
|
|
11267
11324
|
priceImpact?: string | undefined;
|
|
11325
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11268
11326
|
} | undefined;
|
|
11269
11327
|
};
|
|
11270
11328
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11441,6 +11499,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11441
11499
|
totalFromAmountUsd?: string | undefined;
|
|
11442
11500
|
totalToAmountUsd?: string | undefined;
|
|
11443
11501
|
priceImpact?: string | undefined;
|
|
11502
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11444
11503
|
} | undefined;
|
|
11445
11504
|
};
|
|
11446
11505
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11617,6 +11676,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11617
11676
|
totalFromAmountUsd?: string | undefined;
|
|
11618
11677
|
totalToAmountUsd?: string | undefined;
|
|
11619
11678
|
priceImpact?: string | undefined;
|
|
11679
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11620
11680
|
} | undefined;
|
|
11621
11681
|
};
|
|
11622
11682
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11788,6 +11848,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11788
11848
|
totalFromAmountUsd?: string | undefined;
|
|
11789
11849
|
totalToAmountUsd?: string | undefined;
|
|
11790
11850
|
priceImpact?: string | undefined;
|
|
11851
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11791
11852
|
} | undefined;
|
|
11792
11853
|
};
|
|
11793
11854
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -11960,6 +12021,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11960
12021
|
totalFromAmountUsd?: string | undefined;
|
|
11961
12022
|
totalToAmountUsd?: string | undefined;
|
|
11962
12023
|
priceImpact?: string | undefined;
|
|
12024
|
+
totalFeeAmountUsd?: string | undefined;
|
|
11963
12025
|
} | undefined;
|
|
11964
12026
|
};
|
|
11965
12027
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -12131,6 +12193,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12131
12193
|
totalFromAmountUsd?: string | undefined;
|
|
12132
12194
|
totalToAmountUsd?: string | undefined;
|
|
12133
12195
|
priceImpact?: string | undefined;
|
|
12196
|
+
totalFeeAmountUsd?: string | undefined;
|
|
12134
12197
|
} | undefined;
|
|
12135
12198
|
};
|
|
12136
12199
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -12307,6 +12370,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12307
12370
|
totalFromAmountUsd?: string | undefined;
|
|
12308
12371
|
totalToAmountUsd?: string | undefined;
|
|
12309
12372
|
priceImpact?: string | undefined;
|
|
12373
|
+
totalFeeAmountUsd?: string | undefined;
|
|
12310
12374
|
} | undefined;
|
|
12311
12375
|
};
|
|
12312
12376
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -12483,6 +12547,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12483
12547
|
totalFromAmountUsd?: string | undefined;
|
|
12484
12548
|
totalToAmountUsd?: string | undefined;
|
|
12485
12549
|
priceImpact?: string | undefined;
|
|
12550
|
+
totalFeeAmountUsd?: string | undefined;
|
|
12486
12551
|
} | undefined;
|
|
12487
12552
|
};
|
|
12488
12553
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -12699,6 +12764,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12699
12764
|
totalFromAmountUsd?: string | undefined;
|
|
12700
12765
|
totalToAmountUsd?: string | undefined;
|
|
12701
12766
|
priceImpact?: string | undefined;
|
|
12767
|
+
totalFeeAmountUsd?: string | undefined;
|
|
12702
12768
|
} | undefined;
|
|
12703
12769
|
};
|
|
12704
12770
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -12861,6 +12927,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12861
12927
|
totalFromAmountUsd?: string | undefined;
|
|
12862
12928
|
totalToAmountUsd?: string | undefined;
|
|
12863
12929
|
priceImpact?: string | undefined;
|
|
12930
|
+
totalFeeAmountUsd?: string | undefined;
|
|
12864
12931
|
} | undefined;
|
|
12865
12932
|
};
|
|
12866
12933
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -13073,6 +13140,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13073
13140
|
totalFromAmountUsd?: string | undefined;
|
|
13074
13141
|
totalToAmountUsd?: string | undefined;
|
|
13075
13142
|
priceImpact?: string | undefined;
|
|
13143
|
+
totalFeeAmountUsd?: string | undefined;
|
|
13076
13144
|
} | undefined;
|
|
13077
13145
|
};
|
|
13078
13146
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -13235,6 +13303,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13235
13303
|
totalFromAmountUsd?: string | undefined;
|
|
13236
13304
|
totalToAmountUsd?: string | undefined;
|
|
13237
13305
|
priceImpact?: string | undefined;
|
|
13306
|
+
totalFeeAmountUsd?: string | undefined;
|
|
13238
13307
|
} | undefined;
|
|
13239
13308
|
};
|
|
13240
13309
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -13411,6 +13480,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13411
13480
|
totalFromAmountUsd?: string | undefined;
|
|
13412
13481
|
totalToAmountUsd?: string | undefined;
|
|
13413
13482
|
priceImpact?: string | undefined;
|
|
13483
|
+
totalFeeAmountUsd?: string | undefined;
|
|
13414
13484
|
} | undefined;
|
|
13415
13485
|
};
|
|
13416
13486
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -13627,6 +13697,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13627
13697
|
totalFromAmountUsd?: string | undefined;
|
|
13628
13698
|
totalToAmountUsd?: string | undefined;
|
|
13629
13699
|
priceImpact?: string | undefined;
|
|
13700
|
+
totalFeeAmountUsd?: string | undefined;
|
|
13630
13701
|
} | undefined;
|
|
13631
13702
|
};
|
|
13632
13703
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -13794,6 +13865,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13794
13865
|
totalFromAmountUsd?: string | undefined;
|
|
13795
13866
|
totalToAmountUsd?: string | undefined;
|
|
13796
13867
|
priceImpact?: string | undefined;
|
|
13868
|
+
totalFeeAmountUsd?: string | undefined;
|
|
13797
13869
|
} | undefined;
|
|
13798
13870
|
};
|
|
13799
13871
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -14009,6 +14081,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14009
14081
|
totalFromAmountUsd?: string | undefined;
|
|
14010
14082
|
totalToAmountUsd?: string | undefined;
|
|
14011
14083
|
priceImpact?: string | undefined;
|
|
14084
|
+
totalFeeAmountUsd?: string | undefined;
|
|
14012
14085
|
} | undefined;
|
|
14013
14086
|
};
|
|
14014
14087
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -14172,6 +14245,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14172
14245
|
totalFromAmountUsd?: string | undefined;
|
|
14173
14246
|
totalToAmountUsd?: string | undefined;
|
|
14174
14247
|
priceImpact?: string | undefined;
|
|
14248
|
+
totalFeeAmountUsd?: string | undefined;
|
|
14175
14249
|
} | undefined;
|
|
14176
14250
|
};
|
|
14177
14251
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -14387,6 +14461,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14387
14461
|
totalFromAmountUsd?: string | undefined;
|
|
14388
14462
|
totalToAmountUsd?: string | undefined;
|
|
14389
14463
|
priceImpact?: string | undefined;
|
|
14464
|
+
totalFeeAmountUsd?: string | undefined;
|
|
14390
14465
|
} | undefined;
|
|
14391
14466
|
};
|
|
14392
14467
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -14594,6 +14669,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14594
14669
|
totalFromAmountUsd?: string | undefined;
|
|
14595
14670
|
totalToAmountUsd?: string | undefined;
|
|
14596
14671
|
priceImpact?: string | undefined;
|
|
14672
|
+
totalFeeAmountUsd?: string | undefined;
|
|
14597
14673
|
} | undefined;
|
|
14598
14674
|
};
|
|
14599
14675
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -14757,6 +14833,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14757
14833
|
totalFromAmountUsd?: string | undefined;
|
|
14758
14834
|
totalToAmountUsd?: string | undefined;
|
|
14759
14835
|
priceImpact?: string | undefined;
|
|
14836
|
+
totalFeeAmountUsd?: string | undefined;
|
|
14760
14837
|
} | undefined;
|
|
14761
14838
|
};
|
|
14762
14839
|
estimatedProcessingTimeInSeconds: number;
|
|
@@ -15064,6 +15141,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15064
15141
|
totalFromAmountUsd?: string | undefined;
|
|
15065
15142
|
totalToAmountUsd?: string | undefined;
|
|
15066
15143
|
priceImpact?: string | undefined;
|
|
15144
|
+
totalFeeAmountUsd?: string | undefined;
|
|
15067
15145
|
} | undefined;
|
|
15068
15146
|
};
|
|
15069
15147
|
estimatedProcessingTimeInSeconds: number;
|