@metamask/bridge-controller 58.0.0 → 59.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.
- 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 +4 -0
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +12 -0
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +12 -0
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +4 -0
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [59.0.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Quotes as returned by `fetchQuotes` now include a `gasSponsored` property ([#6687](https://github.com/MetaMask/core/pull/6687))
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **BREAKING:** Bump `@metamask/assets-controller` from `^86.0.0` to `^87.0.0` ([#7043](https://github.com/MetaMask/core/pull/7043))
|
|
19
|
+
|
|
10
20
|
## [58.0.0]
|
|
11
21
|
|
|
12
22
|
### Changed
|
|
@@ -819,7 +829,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
819
829
|
|
|
820
830
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
821
831
|
|
|
822
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@
|
|
832
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@59.0.0...HEAD
|
|
833
|
+
[59.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@58.0.0...@metamask/bridge-controller@59.0.0
|
|
823
834
|
[58.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@57.0.0...@metamask/bridge-controller@58.0.0
|
|
824
835
|
[57.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@56.0.3...@metamask/bridge-controller@57.0.0
|
|
825
836
|
[56.0.3]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@56.0.2...@metamask/bridge-controller@56.0.3
|
package/dist/selectors.d.cts
CHANGED
|
@@ -947,6 +947,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
947
947
|
priceImpact?: string | undefined;
|
|
948
948
|
totalFeeAmountUsd?: string | undefined;
|
|
949
949
|
} | undefined;
|
|
950
|
+
gasSponsored?: boolean | undefined;
|
|
950
951
|
};
|
|
951
952
|
estimatedProcessingTimeInSeconds: number;
|
|
952
953
|
trade: string | {
|
|
@@ -1127,6 +1128,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1127
1128
|
priceImpact?: string | undefined;
|
|
1128
1129
|
totalFeeAmountUsd?: string | undefined;
|
|
1129
1130
|
} | undefined;
|
|
1131
|
+
gasSponsored?: boolean | undefined;
|
|
1130
1132
|
};
|
|
1131
1133
|
estimatedProcessingTimeInSeconds: number;
|
|
1132
1134
|
trade: string | {
|
|
@@ -1307,6 +1309,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1307
1309
|
priceImpact?: string | undefined;
|
|
1308
1310
|
totalFeeAmountUsd?: string | undefined;
|
|
1309
1311
|
} | undefined;
|
|
1312
|
+
gasSponsored?: boolean | undefined;
|
|
1310
1313
|
};
|
|
1311
1314
|
estimatedProcessingTimeInSeconds: number;
|
|
1312
1315
|
trade: string | {
|
|
@@ -1498,6 +1501,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1498
1501
|
priceImpact?: string | undefined;
|
|
1499
1502
|
totalFeeAmountUsd?: string | undefined;
|
|
1500
1503
|
} | undefined;
|
|
1504
|
+
gasSponsored?: boolean | undefined;
|
|
1501
1505
|
};
|
|
1502
1506
|
estimatedProcessingTimeInSeconds: number;
|
|
1503
1507
|
trade: string | {
|
|
@@ -1677,6 +1681,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1677
1681
|
priceImpact?: string | undefined;
|
|
1678
1682
|
totalFeeAmountUsd?: string | undefined;
|
|
1679
1683
|
} | undefined;
|
|
1684
|
+
gasSponsored?: boolean | undefined;
|
|
1680
1685
|
};
|
|
1681
1686
|
estimatedProcessingTimeInSeconds: number;
|
|
1682
1687
|
trade: string | {
|
|
@@ -1856,6 +1861,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1856
1861
|
priceImpact?: string | undefined;
|
|
1857
1862
|
totalFeeAmountUsd?: string | undefined;
|
|
1858
1863
|
} | undefined;
|
|
1864
|
+
gasSponsored?: boolean | undefined;
|
|
1859
1865
|
};
|
|
1860
1866
|
estimatedProcessingTimeInSeconds: number;
|
|
1861
1867
|
trade: string | {
|
|
@@ -2036,6 +2042,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2036
2042
|
priceImpact?: string | undefined;
|
|
2037
2043
|
totalFeeAmountUsd?: string | undefined;
|
|
2038
2044
|
} | undefined;
|
|
2045
|
+
gasSponsored?: boolean | undefined;
|
|
2039
2046
|
};
|
|
2040
2047
|
estimatedProcessingTimeInSeconds: number;
|
|
2041
2048
|
trade: string | {
|
|
@@ -2216,6 +2223,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2216
2223
|
priceImpact?: string | undefined;
|
|
2217
2224
|
totalFeeAmountUsd?: string | undefined;
|
|
2218
2225
|
} | undefined;
|
|
2226
|
+
gasSponsored?: boolean | undefined;
|
|
2219
2227
|
};
|
|
2220
2228
|
estimatedProcessingTimeInSeconds: number;
|
|
2221
2229
|
trade: string | {
|
|
@@ -2396,6 +2404,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2396
2404
|
priceImpact?: string | undefined;
|
|
2397
2405
|
totalFeeAmountUsd?: string | undefined;
|
|
2398
2406
|
} | undefined;
|
|
2407
|
+
gasSponsored?: boolean | undefined;
|
|
2399
2408
|
};
|
|
2400
2409
|
estimatedProcessingTimeInSeconds: number;
|
|
2401
2410
|
trade: string | {
|
|
@@ -2583,6 +2592,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2583
2592
|
priceImpact?: string | undefined;
|
|
2584
2593
|
totalFeeAmountUsd?: string | undefined;
|
|
2585
2594
|
} | undefined;
|
|
2595
|
+
gasSponsored?: boolean | undefined;
|
|
2586
2596
|
};
|
|
2587
2597
|
estimatedProcessingTimeInSeconds: number;
|
|
2588
2598
|
trade: string | {
|
|
@@ -2762,6 +2772,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2762
2772
|
priceImpact?: string | undefined;
|
|
2763
2773
|
totalFeeAmountUsd?: string | undefined;
|
|
2764
2774
|
} | undefined;
|
|
2775
|
+
gasSponsored?: boolean | undefined;
|
|
2765
2776
|
};
|
|
2766
2777
|
estimatedProcessingTimeInSeconds: number;
|
|
2767
2778
|
trade: string | {
|
|
@@ -2941,6 +2952,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2941
2952
|
priceImpact?: string | undefined;
|
|
2942
2953
|
totalFeeAmountUsd?: string | undefined;
|
|
2943
2954
|
} | undefined;
|
|
2955
|
+
gasSponsored?: boolean | undefined;
|
|
2944
2956
|
};
|
|
2945
2957
|
estimatedProcessingTimeInSeconds: number;
|
|
2946
2958
|
trade: string | {
|
|
@@ -3121,6 +3133,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3121
3133
|
priceImpact?: string | undefined;
|
|
3122
3134
|
totalFeeAmountUsd?: string | undefined;
|
|
3123
3135
|
} | undefined;
|
|
3136
|
+
gasSponsored?: boolean | undefined;
|
|
3124
3137
|
};
|
|
3125
3138
|
estimatedProcessingTimeInSeconds: number;
|
|
3126
3139
|
trade: string | {
|
|
@@ -3301,6 +3314,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3301
3314
|
priceImpact?: string | undefined;
|
|
3302
3315
|
totalFeeAmountUsd?: string | undefined;
|
|
3303
3316
|
} | undefined;
|
|
3317
|
+
gasSponsored?: boolean | undefined;
|
|
3304
3318
|
};
|
|
3305
3319
|
estimatedProcessingTimeInSeconds: number;
|
|
3306
3320
|
trade: string | {
|
|
@@ -3481,6 +3495,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3481
3495
|
priceImpact?: string | undefined;
|
|
3482
3496
|
totalFeeAmountUsd?: string | undefined;
|
|
3483
3497
|
} | undefined;
|
|
3498
|
+
gasSponsored?: boolean | undefined;
|
|
3484
3499
|
};
|
|
3485
3500
|
estimatedProcessingTimeInSeconds: number;
|
|
3486
3501
|
trade: string | {
|
|
@@ -3673,6 +3688,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3673
3688
|
priceImpact?: string | undefined;
|
|
3674
3689
|
totalFeeAmountUsd?: string | undefined;
|
|
3675
3690
|
} | undefined;
|
|
3691
|
+
gasSponsored?: boolean | undefined;
|
|
3676
3692
|
};
|
|
3677
3693
|
estimatedProcessingTimeInSeconds: number;
|
|
3678
3694
|
trade: string | {
|
|
@@ -3853,6 +3869,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3853
3869
|
priceImpact?: string | undefined;
|
|
3854
3870
|
totalFeeAmountUsd?: string | undefined;
|
|
3855
3871
|
} | undefined;
|
|
3872
|
+
gasSponsored?: boolean | undefined;
|
|
3856
3873
|
};
|
|
3857
3874
|
estimatedProcessingTimeInSeconds: number;
|
|
3858
3875
|
trade: string | {
|
|
@@ -4033,6 +4050,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4033
4050
|
priceImpact?: string | undefined;
|
|
4034
4051
|
totalFeeAmountUsd?: string | undefined;
|
|
4035
4052
|
} | undefined;
|
|
4053
|
+
gasSponsored?: boolean | undefined;
|
|
4036
4054
|
};
|
|
4037
4055
|
estimatedProcessingTimeInSeconds: number;
|
|
4038
4056
|
trade: string | {
|
|
@@ -4224,6 +4242,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4224
4242
|
priceImpact?: string | undefined;
|
|
4225
4243
|
totalFeeAmountUsd?: string | undefined;
|
|
4226
4244
|
} | undefined;
|
|
4245
|
+
gasSponsored?: boolean | undefined;
|
|
4227
4246
|
};
|
|
4228
4247
|
estimatedProcessingTimeInSeconds: number;
|
|
4229
4248
|
trade: string | {
|
|
@@ -4448,6 +4467,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4448
4467
|
priceImpact?: string | undefined;
|
|
4449
4468
|
totalFeeAmountUsd?: string | undefined;
|
|
4450
4469
|
} | undefined;
|
|
4470
|
+
gasSponsored?: boolean | undefined;
|
|
4451
4471
|
};
|
|
4452
4472
|
estimatedProcessingTimeInSeconds: number;
|
|
4453
4473
|
trade: string | {
|
|
@@ -4607,6 +4627,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4607
4627
|
priceImpact?: string | undefined;
|
|
4608
4628
|
totalFeeAmountUsd?: string | undefined;
|
|
4609
4629
|
} | undefined;
|
|
4630
|
+
gasSponsored?: boolean | undefined;
|
|
4610
4631
|
};
|
|
4611
4632
|
estimatedProcessingTimeInSeconds: number;
|
|
4612
4633
|
trade: string | {
|
|
@@ -4827,6 +4848,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4827
4848
|
priceImpact?: string | undefined;
|
|
4828
4849
|
totalFeeAmountUsd?: string | undefined;
|
|
4829
4850
|
} | undefined;
|
|
4851
|
+
gasSponsored?: boolean | undefined;
|
|
4830
4852
|
};
|
|
4831
4853
|
estimatedProcessingTimeInSeconds: number;
|
|
4832
4854
|
trade: string | {
|
|
@@ -4986,6 +5008,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4986
5008
|
priceImpact?: string | undefined;
|
|
4987
5009
|
totalFeeAmountUsd?: string | undefined;
|
|
4988
5010
|
} | undefined;
|
|
5011
|
+
gasSponsored?: boolean | undefined;
|
|
4989
5012
|
};
|
|
4990
5013
|
estimatedProcessingTimeInSeconds: number;
|
|
4991
5014
|
trade: string | {
|
|
@@ -5170,6 +5193,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5170
5193
|
priceImpact?: string | undefined;
|
|
5171
5194
|
totalFeeAmountUsd?: string | undefined;
|
|
5172
5195
|
} | undefined;
|
|
5196
|
+
gasSponsored?: boolean | undefined;
|
|
5173
5197
|
};
|
|
5174
5198
|
estimatedProcessingTimeInSeconds: number;
|
|
5175
5199
|
trade: string | {
|
|
@@ -5394,6 +5418,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5394
5418
|
priceImpact?: string | undefined;
|
|
5395
5419
|
totalFeeAmountUsd?: string | undefined;
|
|
5396
5420
|
} | undefined;
|
|
5421
|
+
gasSponsored?: boolean | undefined;
|
|
5397
5422
|
};
|
|
5398
5423
|
estimatedProcessingTimeInSeconds: number;
|
|
5399
5424
|
trade: string | {
|
|
@@ -5558,6 +5583,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5558
5583
|
priceImpact?: string | undefined;
|
|
5559
5584
|
totalFeeAmountUsd?: string | undefined;
|
|
5560
5585
|
} | undefined;
|
|
5586
|
+
gasSponsored?: boolean | undefined;
|
|
5561
5587
|
};
|
|
5562
5588
|
estimatedProcessingTimeInSeconds: number;
|
|
5563
5589
|
trade: string | {
|
|
@@ -5781,6 +5807,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5781
5807
|
priceImpact?: string | undefined;
|
|
5782
5808
|
totalFeeAmountUsd?: string | undefined;
|
|
5783
5809
|
} | undefined;
|
|
5810
|
+
gasSponsored?: boolean | undefined;
|
|
5784
5811
|
};
|
|
5785
5812
|
estimatedProcessingTimeInSeconds: number;
|
|
5786
5813
|
trade: string | {
|
|
@@ -5941,6 +5968,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5941
5968
|
priceImpact?: string | undefined;
|
|
5942
5969
|
totalFeeAmountUsd?: string | undefined;
|
|
5943
5970
|
} | undefined;
|
|
5971
|
+
gasSponsored?: boolean | undefined;
|
|
5944
5972
|
};
|
|
5945
5973
|
estimatedProcessingTimeInSeconds: number;
|
|
5946
5974
|
trade: string | {
|
|
@@ -6164,6 +6192,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6164
6192
|
priceImpact?: string | undefined;
|
|
6165
6193
|
totalFeeAmountUsd?: string | undefined;
|
|
6166
6194
|
} | undefined;
|
|
6195
|
+
gasSponsored?: boolean | undefined;
|
|
6167
6196
|
};
|
|
6168
6197
|
estimatedProcessingTimeInSeconds: number;
|
|
6169
6198
|
trade: string | {
|
|
@@ -6368,6 +6397,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6368
6397
|
priceImpact?: string | undefined;
|
|
6369
6398
|
totalFeeAmountUsd?: string | undefined;
|
|
6370
6399
|
} | undefined;
|
|
6400
|
+
gasSponsored?: boolean | undefined;
|
|
6371
6401
|
};
|
|
6372
6402
|
estimatedProcessingTimeInSeconds: number;
|
|
6373
6403
|
trade: string | {
|
|
@@ -6528,6 +6558,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6528
6558
|
priceImpact?: string | undefined;
|
|
6529
6559
|
totalFeeAmountUsd?: string | undefined;
|
|
6530
6560
|
} | undefined;
|
|
6561
|
+
gasSponsored?: boolean | undefined;
|
|
6531
6562
|
};
|
|
6532
6563
|
estimatedProcessingTimeInSeconds: number;
|
|
6533
6564
|
trade: string | {
|
|
@@ -6839,6 +6870,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6839
6870
|
priceImpact?: string | undefined;
|
|
6840
6871
|
totalFeeAmountUsd?: string | undefined;
|
|
6841
6872
|
} | undefined;
|
|
6873
|
+
gasSponsored?: boolean | undefined;
|
|
6842
6874
|
};
|
|
6843
6875
|
estimatedProcessingTimeInSeconds: number;
|
|
6844
6876
|
trade: string | {
|
|
@@ -7023,6 +7055,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7023
7055
|
priceImpact?: string | undefined;
|
|
7024
7056
|
totalFeeAmountUsd?: string | undefined;
|
|
7025
7057
|
} | undefined;
|
|
7058
|
+
gasSponsored?: boolean | undefined;
|
|
7026
7059
|
};
|
|
7027
7060
|
estimatedProcessingTimeInSeconds: number;
|
|
7028
7061
|
trade: string | {
|
|
@@ -7202,6 +7235,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7202
7235
|
priceImpact?: string | undefined;
|
|
7203
7236
|
totalFeeAmountUsd?: string | undefined;
|
|
7204
7237
|
} | undefined;
|
|
7238
|
+
gasSponsored?: boolean | undefined;
|
|
7205
7239
|
};
|
|
7206
7240
|
estimatedProcessingTimeInSeconds: number;
|
|
7207
7241
|
trade: string | {
|
|
@@ -7382,6 +7416,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7382
7416
|
priceImpact?: string | undefined;
|
|
7383
7417
|
totalFeeAmountUsd?: string | undefined;
|
|
7384
7418
|
} | undefined;
|
|
7419
|
+
gasSponsored?: boolean | undefined;
|
|
7385
7420
|
};
|
|
7386
7421
|
estimatedProcessingTimeInSeconds: number;
|
|
7387
7422
|
trade: string | {
|
|
@@ -7561,6 +7596,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7561
7596
|
priceImpact?: string | undefined;
|
|
7562
7597
|
totalFeeAmountUsd?: string | undefined;
|
|
7563
7598
|
} | undefined;
|
|
7599
|
+
gasSponsored?: boolean | undefined;
|
|
7564
7600
|
};
|
|
7565
7601
|
estimatedProcessingTimeInSeconds: number;
|
|
7566
7602
|
trade: string | {
|
|
@@ -7745,6 +7781,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7745
7781
|
priceImpact?: string | undefined;
|
|
7746
7782
|
totalFeeAmountUsd?: string | undefined;
|
|
7747
7783
|
} | undefined;
|
|
7784
|
+
gasSponsored?: boolean | undefined;
|
|
7748
7785
|
};
|
|
7749
7786
|
estimatedProcessingTimeInSeconds: number;
|
|
7750
7787
|
trade: string | {
|
|
@@ -7929,6 +7966,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7929
7966
|
priceImpact?: string | undefined;
|
|
7930
7967
|
totalFeeAmountUsd?: string | undefined;
|
|
7931
7968
|
} | undefined;
|
|
7969
|
+
gasSponsored?: boolean | undefined;
|
|
7932
7970
|
};
|
|
7933
7971
|
estimatedProcessingTimeInSeconds: number;
|
|
7934
7972
|
trade: string | {
|
|
@@ -8153,6 +8191,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8153
8191
|
priceImpact?: string | undefined;
|
|
8154
8192
|
totalFeeAmountUsd?: string | undefined;
|
|
8155
8193
|
} | undefined;
|
|
8194
|
+
gasSponsored?: boolean | undefined;
|
|
8156
8195
|
};
|
|
8157
8196
|
estimatedProcessingTimeInSeconds: number;
|
|
8158
8197
|
trade: string | {
|
|
@@ -8312,6 +8351,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8312
8351
|
priceImpact?: string | undefined;
|
|
8313
8352
|
totalFeeAmountUsd?: string | undefined;
|
|
8314
8353
|
} | undefined;
|
|
8354
|
+
gasSponsored?: boolean | undefined;
|
|
8315
8355
|
};
|
|
8316
8356
|
estimatedProcessingTimeInSeconds: number;
|
|
8317
8357
|
trade: string | {
|
|
@@ -8532,6 +8572,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8532
8572
|
priceImpact?: string | undefined;
|
|
8533
8573
|
totalFeeAmountUsd?: string | undefined;
|
|
8534
8574
|
} | undefined;
|
|
8575
|
+
gasSponsored?: boolean | undefined;
|
|
8535
8576
|
};
|
|
8536
8577
|
estimatedProcessingTimeInSeconds: number;
|
|
8537
8578
|
trade: string | {
|
|
@@ -8691,6 +8732,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8691
8732
|
priceImpact?: string | undefined;
|
|
8692
8733
|
totalFeeAmountUsd?: string | undefined;
|
|
8693
8734
|
} | undefined;
|
|
8735
|
+
gasSponsored?: boolean | undefined;
|
|
8694
8736
|
};
|
|
8695
8737
|
estimatedProcessingTimeInSeconds: number;
|
|
8696
8738
|
trade: string | {
|
|
@@ -8875,6 +8917,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8875
8917
|
priceImpact?: string | undefined;
|
|
8876
8918
|
totalFeeAmountUsd?: string | undefined;
|
|
8877
8919
|
} | undefined;
|
|
8920
|
+
gasSponsored?: boolean | undefined;
|
|
8878
8921
|
};
|
|
8879
8922
|
estimatedProcessingTimeInSeconds: number;
|
|
8880
8923
|
trade: string | {
|
|
@@ -9099,6 +9142,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9099
9142
|
priceImpact?: string | undefined;
|
|
9100
9143
|
totalFeeAmountUsd?: string | undefined;
|
|
9101
9144
|
} | undefined;
|
|
9145
|
+
gasSponsored?: boolean | undefined;
|
|
9102
9146
|
};
|
|
9103
9147
|
estimatedProcessingTimeInSeconds: number;
|
|
9104
9148
|
trade: string | {
|
|
@@ -9263,6 +9307,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9263
9307
|
priceImpact?: string | undefined;
|
|
9264
9308
|
totalFeeAmountUsd?: string | undefined;
|
|
9265
9309
|
} | undefined;
|
|
9310
|
+
gasSponsored?: boolean | undefined;
|
|
9266
9311
|
};
|
|
9267
9312
|
estimatedProcessingTimeInSeconds: number;
|
|
9268
9313
|
trade: string | {
|
|
@@ -9486,6 +9531,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9486
9531
|
priceImpact?: string | undefined;
|
|
9487
9532
|
totalFeeAmountUsd?: string | undefined;
|
|
9488
9533
|
} | undefined;
|
|
9534
|
+
gasSponsored?: boolean | undefined;
|
|
9489
9535
|
};
|
|
9490
9536
|
estimatedProcessingTimeInSeconds: number;
|
|
9491
9537
|
trade: string | {
|
|
@@ -9646,6 +9692,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9646
9692
|
priceImpact?: string | undefined;
|
|
9647
9693
|
totalFeeAmountUsd?: string | undefined;
|
|
9648
9694
|
} | undefined;
|
|
9695
|
+
gasSponsored?: boolean | undefined;
|
|
9649
9696
|
};
|
|
9650
9697
|
estimatedProcessingTimeInSeconds: number;
|
|
9651
9698
|
trade: string | {
|
|
@@ -9869,6 +9916,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9869
9916
|
priceImpact?: string | undefined;
|
|
9870
9917
|
totalFeeAmountUsd?: string | undefined;
|
|
9871
9918
|
} | undefined;
|
|
9919
|
+
gasSponsored?: boolean | undefined;
|
|
9872
9920
|
};
|
|
9873
9921
|
estimatedProcessingTimeInSeconds: number;
|
|
9874
9922
|
trade: string | {
|
|
@@ -10073,6 +10121,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10073
10121
|
priceImpact?: string | undefined;
|
|
10074
10122
|
totalFeeAmountUsd?: string | undefined;
|
|
10075
10123
|
} | undefined;
|
|
10124
|
+
gasSponsored?: boolean | undefined;
|
|
10076
10125
|
};
|
|
10077
10126
|
estimatedProcessingTimeInSeconds: number;
|
|
10078
10127
|
trade: string | {
|
|
@@ -10233,6 +10282,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10233
10282
|
priceImpact?: string | undefined;
|
|
10234
10283
|
totalFeeAmountUsd?: string | undefined;
|
|
10235
10284
|
} | undefined;
|
|
10285
|
+
gasSponsored?: boolean | undefined;
|
|
10236
10286
|
};
|
|
10237
10287
|
estimatedProcessingTimeInSeconds: number;
|
|
10238
10288
|
trade: string | {
|
|
@@ -10552,6 +10602,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10552
10602
|
priceImpact?: string | undefined;
|
|
10553
10603
|
totalFeeAmountUsd?: string | undefined;
|
|
10554
10604
|
} | undefined;
|
|
10605
|
+
gasSponsored?: boolean | undefined;
|
|
10555
10606
|
};
|
|
10556
10607
|
estimatedProcessingTimeInSeconds: number;
|
|
10557
10608
|
trade: string | {
|
|
@@ -10736,6 +10787,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10736
10787
|
priceImpact?: string | undefined;
|
|
10737
10788
|
totalFeeAmountUsd?: string | undefined;
|
|
10738
10789
|
} | undefined;
|
|
10790
|
+
gasSponsored?: boolean | undefined;
|
|
10739
10791
|
};
|
|
10740
10792
|
estimatedProcessingTimeInSeconds: number;
|
|
10741
10793
|
trade: string | {
|
|
@@ -10915,6 +10967,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10915
10967
|
priceImpact?: string | undefined;
|
|
10916
10968
|
totalFeeAmountUsd?: string | undefined;
|
|
10917
10969
|
} | undefined;
|
|
10970
|
+
gasSponsored?: boolean | undefined;
|
|
10918
10971
|
};
|
|
10919
10972
|
estimatedProcessingTimeInSeconds: number;
|
|
10920
10973
|
trade: string | {
|
|
@@ -11094,6 +11147,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11094
11147
|
priceImpact?: string | undefined;
|
|
11095
11148
|
totalFeeAmountUsd?: string | undefined;
|
|
11096
11149
|
} | undefined;
|
|
11150
|
+
gasSponsored?: boolean | undefined;
|
|
11097
11151
|
};
|
|
11098
11152
|
estimatedProcessingTimeInSeconds: number;
|
|
11099
11153
|
trade: string | {
|
|
@@ -11274,6 +11328,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11274
11328
|
priceImpact?: string | undefined;
|
|
11275
11329
|
totalFeeAmountUsd?: string | undefined;
|
|
11276
11330
|
} | undefined;
|
|
11331
|
+
gasSponsored?: boolean | undefined;
|
|
11277
11332
|
};
|
|
11278
11333
|
estimatedProcessingTimeInSeconds: number;
|
|
11279
11334
|
trade: string | {
|
|
@@ -11453,6 +11508,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11453
11508
|
priceImpact?: string | undefined;
|
|
11454
11509
|
totalFeeAmountUsd?: string | undefined;
|
|
11455
11510
|
} | undefined;
|
|
11511
|
+
gasSponsored?: boolean | undefined;
|
|
11456
11512
|
};
|
|
11457
11513
|
estimatedProcessingTimeInSeconds: number;
|
|
11458
11514
|
trade: string | {
|
|
@@ -11632,6 +11688,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11632
11688
|
priceImpact?: string | undefined;
|
|
11633
11689
|
totalFeeAmountUsd?: string | undefined;
|
|
11634
11690
|
} | undefined;
|
|
11691
|
+
gasSponsored?: boolean | undefined;
|
|
11635
11692
|
};
|
|
11636
11693
|
estimatedProcessingTimeInSeconds: number;
|
|
11637
11694
|
trade: string | {
|
|
@@ -11816,6 +11873,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11816
11873
|
priceImpact?: string | undefined;
|
|
11817
11874
|
totalFeeAmountUsd?: string | undefined;
|
|
11818
11875
|
} | undefined;
|
|
11876
|
+
gasSponsored?: boolean | undefined;
|
|
11819
11877
|
};
|
|
11820
11878
|
estimatedProcessingTimeInSeconds: number;
|
|
11821
11879
|
trade: string | {
|
|
@@ -12000,6 +12058,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12000
12058
|
priceImpact?: string | undefined;
|
|
12001
12059
|
totalFeeAmountUsd?: string | undefined;
|
|
12002
12060
|
} | undefined;
|
|
12061
|
+
gasSponsored?: boolean | undefined;
|
|
12003
12062
|
};
|
|
12004
12063
|
estimatedProcessingTimeInSeconds: number;
|
|
12005
12064
|
trade: string | {
|
|
@@ -12184,6 +12243,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12184
12243
|
priceImpact?: string | undefined;
|
|
12185
12244
|
totalFeeAmountUsd?: string | undefined;
|
|
12186
12245
|
} | undefined;
|
|
12246
|
+
gasSponsored?: boolean | undefined;
|
|
12187
12247
|
};
|
|
12188
12248
|
estimatedProcessingTimeInSeconds: number;
|
|
12189
12249
|
trade: string | {
|
|
@@ -12363,6 +12423,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12363
12423
|
priceImpact?: string | undefined;
|
|
12364
12424
|
totalFeeAmountUsd?: string | undefined;
|
|
12365
12425
|
} | undefined;
|
|
12426
|
+
gasSponsored?: boolean | undefined;
|
|
12366
12427
|
};
|
|
12367
12428
|
estimatedProcessingTimeInSeconds: number;
|
|
12368
12429
|
trade: string | {
|
|
@@ -12543,6 +12604,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12543
12604
|
priceImpact?: string | undefined;
|
|
12544
12605
|
totalFeeAmountUsd?: string | undefined;
|
|
12545
12606
|
} | undefined;
|
|
12607
|
+
gasSponsored?: boolean | undefined;
|
|
12546
12608
|
};
|
|
12547
12609
|
estimatedProcessingTimeInSeconds: number;
|
|
12548
12610
|
trade: string | {
|
|
@@ -12722,6 +12784,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12722
12784
|
priceImpact?: string | undefined;
|
|
12723
12785
|
totalFeeAmountUsd?: string | undefined;
|
|
12724
12786
|
} | undefined;
|
|
12787
|
+
gasSponsored?: boolean | undefined;
|
|
12725
12788
|
};
|
|
12726
12789
|
estimatedProcessingTimeInSeconds: number;
|
|
12727
12790
|
trade: string | {
|
|
@@ -12906,6 +12969,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12906
12969
|
priceImpact?: string | undefined;
|
|
12907
12970
|
totalFeeAmountUsd?: string | undefined;
|
|
12908
12971
|
} | undefined;
|
|
12972
|
+
gasSponsored?: boolean | undefined;
|
|
12909
12973
|
};
|
|
12910
12974
|
estimatedProcessingTimeInSeconds: number;
|
|
12911
12975
|
trade: string | {
|
|
@@ -13090,6 +13154,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13090
13154
|
priceImpact?: string | undefined;
|
|
13091
13155
|
totalFeeAmountUsd?: string | undefined;
|
|
13092
13156
|
} | undefined;
|
|
13157
|
+
gasSponsored?: boolean | undefined;
|
|
13093
13158
|
};
|
|
13094
13159
|
estimatedProcessingTimeInSeconds: number;
|
|
13095
13160
|
trade: string | {
|
|
@@ -13314,6 +13379,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13314
13379
|
priceImpact?: string | undefined;
|
|
13315
13380
|
totalFeeAmountUsd?: string | undefined;
|
|
13316
13381
|
} | undefined;
|
|
13382
|
+
gasSponsored?: boolean | undefined;
|
|
13317
13383
|
};
|
|
13318
13384
|
estimatedProcessingTimeInSeconds: number;
|
|
13319
13385
|
trade: string | {
|
|
@@ -13473,6 +13539,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13473
13539
|
priceImpact?: string | undefined;
|
|
13474
13540
|
totalFeeAmountUsd?: string | undefined;
|
|
13475
13541
|
} | undefined;
|
|
13542
|
+
gasSponsored?: boolean | undefined;
|
|
13476
13543
|
};
|
|
13477
13544
|
estimatedProcessingTimeInSeconds: number;
|
|
13478
13545
|
trade: string | {
|
|
@@ -13693,6 +13760,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13693
13760
|
priceImpact?: string | undefined;
|
|
13694
13761
|
totalFeeAmountUsd?: string | undefined;
|
|
13695
13762
|
} | undefined;
|
|
13763
|
+
gasSponsored?: boolean | undefined;
|
|
13696
13764
|
};
|
|
13697
13765
|
estimatedProcessingTimeInSeconds: number;
|
|
13698
13766
|
trade: string | {
|
|
@@ -13852,6 +13920,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13852
13920
|
priceImpact?: string | undefined;
|
|
13853
13921
|
totalFeeAmountUsd?: string | undefined;
|
|
13854
13922
|
} | undefined;
|
|
13923
|
+
gasSponsored?: boolean | undefined;
|
|
13855
13924
|
};
|
|
13856
13925
|
estimatedProcessingTimeInSeconds: number;
|
|
13857
13926
|
trade: string | {
|
|
@@ -14036,6 +14105,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14036
14105
|
priceImpact?: string | undefined;
|
|
14037
14106
|
totalFeeAmountUsd?: string | undefined;
|
|
14038
14107
|
} | undefined;
|
|
14108
|
+
gasSponsored?: boolean | undefined;
|
|
14039
14109
|
};
|
|
14040
14110
|
estimatedProcessingTimeInSeconds: number;
|
|
14041
14111
|
trade: string | {
|
|
@@ -14260,6 +14330,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14260
14330
|
priceImpact?: string | undefined;
|
|
14261
14331
|
totalFeeAmountUsd?: string | undefined;
|
|
14262
14332
|
} | undefined;
|
|
14333
|
+
gasSponsored?: boolean | undefined;
|
|
14263
14334
|
};
|
|
14264
14335
|
estimatedProcessingTimeInSeconds: number;
|
|
14265
14336
|
trade: string | {
|
|
@@ -14424,6 +14495,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14424
14495
|
priceImpact?: string | undefined;
|
|
14425
14496
|
totalFeeAmountUsd?: string | undefined;
|
|
14426
14497
|
} | undefined;
|
|
14498
|
+
gasSponsored?: boolean | undefined;
|
|
14427
14499
|
};
|
|
14428
14500
|
estimatedProcessingTimeInSeconds: number;
|
|
14429
14501
|
trade: string | {
|
|
@@ -14647,6 +14719,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14647
14719
|
priceImpact?: string | undefined;
|
|
14648
14720
|
totalFeeAmountUsd?: string | undefined;
|
|
14649
14721
|
} | undefined;
|
|
14722
|
+
gasSponsored?: boolean | undefined;
|
|
14650
14723
|
};
|
|
14651
14724
|
estimatedProcessingTimeInSeconds: number;
|
|
14652
14725
|
trade: string | {
|
|
@@ -14807,6 +14880,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14807
14880
|
priceImpact?: string | undefined;
|
|
14808
14881
|
totalFeeAmountUsd?: string | undefined;
|
|
14809
14882
|
} | undefined;
|
|
14883
|
+
gasSponsored?: boolean | undefined;
|
|
14810
14884
|
};
|
|
14811
14885
|
estimatedProcessingTimeInSeconds: number;
|
|
14812
14886
|
trade: string | {
|
|
@@ -15030,6 +15104,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15030
15104
|
priceImpact?: string | undefined;
|
|
15031
15105
|
totalFeeAmountUsd?: string | undefined;
|
|
15032
15106
|
} | undefined;
|
|
15107
|
+
gasSponsored?: boolean | undefined;
|
|
15033
15108
|
};
|
|
15034
15109
|
estimatedProcessingTimeInSeconds: number;
|
|
15035
15110
|
trade: string | {
|
|
@@ -15234,6 +15309,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15234
15309
|
priceImpact?: string | undefined;
|
|
15235
15310
|
totalFeeAmountUsd?: string | undefined;
|
|
15236
15311
|
} | undefined;
|
|
15312
|
+
gasSponsored?: boolean | undefined;
|
|
15237
15313
|
};
|
|
15238
15314
|
estimatedProcessingTimeInSeconds: number;
|
|
15239
15315
|
trade: string | {
|
|
@@ -15394,6 +15470,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15394
15470
|
priceImpact?: string | undefined;
|
|
15395
15471
|
totalFeeAmountUsd?: string | undefined;
|
|
15396
15472
|
} | undefined;
|
|
15473
|
+
gasSponsored?: boolean | undefined;
|
|
15397
15474
|
};
|
|
15398
15475
|
estimatedProcessingTimeInSeconds: number;
|
|
15399
15476
|
trade: string | {
|
|
@@ -15709,6 +15786,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15709
15786
|
priceImpact?: string | undefined;
|
|
15710
15787
|
totalFeeAmountUsd?: string | undefined;
|
|
15711
15788
|
} | undefined;
|
|
15789
|
+
gasSponsored?: boolean | undefined;
|
|
15712
15790
|
};
|
|
15713
15791
|
estimatedProcessingTimeInSeconds: number;
|
|
15714
15792
|
trade: string | {
|