@metamask/bridge-controller 45.0.0 → 46.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 +21 -1
- package/dist/bridge-controller.cjs +28 -15
- package/dist/bridge-controller.cjs.map +1 -1
- package/dist/bridge-controller.d.cts.map +1 -1
- package/dist/bridge-controller.d.mts.map +1 -1
- package/dist/bridge-controller.mjs +30 -17
- package/dist/bridge-controller.mjs.map +1 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/selectors.cjs +23 -20
- package/dist/selectors.cjs.map +1 -1
- package/dist/selectors.d.cts +315 -81
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +315 -81
- package/dist/selectors.d.mts.map +1 -1
- package/dist/selectors.mjs +25 -22
- package/dist/selectors.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +3 -3
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +3 -3
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/utils/bridge.cjs +12 -1
- package/dist/utils/bridge.cjs.map +1 -1
- package/dist/utils/bridge.d.cts +8 -0
- package/dist/utils/bridge.d.cts.map +1 -1
- package/dist/utils/bridge.d.mts +8 -0
- package/dist/utils/bridge.d.mts.map +1 -1
- package/dist/utils/bridge.mjs +10 -0
- package/dist/utils/bridge.mjs.map +1 -1
- package/dist/utils/fetch.cjs +5 -0
- package/dist/utils/fetch.cjs.map +1 -1
- package/dist/utils/fetch.d.cts.map +1 -1
- package/dist/utils/fetch.d.mts.map +1 -1
- package/dist/utils/fetch.mjs +6 -1
- package/dist/utils/fetch.mjs.map +1 -1
- package/dist/utils/quote.cjs +19 -13
- package/dist/utils/quote.cjs.map +1 -1
- package/dist/utils/quote.d.cts +2 -2
- package/dist/utils/quote.d.cts.map +1 -1
- package/dist/utils/quote.d.mts +2 -2
- package/dist/utils/quote.d.mts.map +1 -1
- package/dist/utils/quote.mjs +18 -12
- package/dist/utils/quote.mjs.map +1 -1
- package/dist/utils/snaps.cjs +20 -6
- package/dist/utils/snaps.cjs.map +1 -1
- package/dist/utils/snaps.d.cts +16 -2
- package/dist/utils/snaps.d.cts.map +1 -1
- package/dist/utils/snaps.d.mts +16 -2
- package/dist/utils/snaps.d.mts.map +1 -1
- package/dist/utils/snaps.mjs +18 -4
- package/dist/utils/snaps.mjs.map +1 -1
- package/dist/utils/validators.cjs +17 -2
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +990 -2
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +990 -2
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +15 -1
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +1 -1
package/dist/selectors.d.cts
CHANGED
|
@@ -765,6 +765,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
765
765
|
gasLimit: number | null;
|
|
766
766
|
chainId: number;
|
|
767
767
|
effectiveGas?: number | undefined;
|
|
768
|
+
} | {
|
|
769
|
+
unsignedPsbtBase64: string;
|
|
770
|
+
inputsToSign: {}[] | null;
|
|
768
771
|
};
|
|
769
772
|
approval?: {
|
|
770
773
|
data: string;
|
|
@@ -938,6 +941,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
938
941
|
gasLimit: number | null;
|
|
939
942
|
chainId: number;
|
|
940
943
|
effectiveGas?: number | undefined;
|
|
944
|
+
} | {
|
|
945
|
+
unsignedPsbtBase64: string;
|
|
946
|
+
inputsToSign: {}[] | null;
|
|
941
947
|
};
|
|
942
948
|
approval?: {
|
|
943
949
|
data: string;
|
|
@@ -1111,6 +1117,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1111
1117
|
gasLimit: number | null;
|
|
1112
1118
|
chainId: number;
|
|
1113
1119
|
effectiveGas?: number | undefined;
|
|
1120
|
+
} | {
|
|
1121
|
+
unsignedPsbtBase64: string;
|
|
1122
|
+
inputsToSign: {}[] | null;
|
|
1114
1123
|
};
|
|
1115
1124
|
approval?: {
|
|
1116
1125
|
data: string;
|
|
@@ -1295,6 +1304,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1295
1304
|
gasLimit: number | null;
|
|
1296
1305
|
chainId: number;
|
|
1297
1306
|
effectiveGas?: number | undefined;
|
|
1307
|
+
} | {
|
|
1308
|
+
unsignedPsbtBase64: string;
|
|
1309
|
+
inputsToSign: {}[] | null;
|
|
1298
1310
|
};
|
|
1299
1311
|
approval?: {
|
|
1300
1312
|
data: string;
|
|
@@ -1467,6 +1479,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1467
1479
|
gasLimit: number | null;
|
|
1468
1480
|
chainId: number;
|
|
1469
1481
|
effectiveGas?: number | undefined;
|
|
1482
|
+
} | {
|
|
1483
|
+
unsignedPsbtBase64: string;
|
|
1484
|
+
inputsToSign: {}[] | null;
|
|
1470
1485
|
};
|
|
1471
1486
|
approval?: {
|
|
1472
1487
|
data: string;
|
|
@@ -1639,6 +1654,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1639
1654
|
gasLimit: number | null;
|
|
1640
1655
|
chainId: number;
|
|
1641
1656
|
effectiveGas?: number | undefined;
|
|
1657
|
+
} | {
|
|
1658
|
+
unsignedPsbtBase64: string;
|
|
1659
|
+
inputsToSign: {}[] | null;
|
|
1642
1660
|
};
|
|
1643
1661
|
approval?: {
|
|
1644
1662
|
data: string;
|
|
@@ -1812,6 +1830,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1812
1830
|
gasLimit: number | null;
|
|
1813
1831
|
chainId: number;
|
|
1814
1832
|
effectiveGas?: number | undefined;
|
|
1833
|
+
} | {
|
|
1834
|
+
unsignedPsbtBase64: string;
|
|
1835
|
+
inputsToSign: {}[] | null;
|
|
1815
1836
|
};
|
|
1816
1837
|
approval?: {
|
|
1817
1838
|
data: string;
|
|
@@ -1985,6 +2006,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1985
2006
|
gasLimit: number | null;
|
|
1986
2007
|
chainId: number;
|
|
1987
2008
|
effectiveGas?: number | undefined;
|
|
2009
|
+
} | {
|
|
2010
|
+
unsignedPsbtBase64: string;
|
|
2011
|
+
inputsToSign: {}[] | null;
|
|
1988
2012
|
};
|
|
1989
2013
|
approval?: {
|
|
1990
2014
|
data: string;
|
|
@@ -2158,6 +2182,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2158
2182
|
gasLimit: number | null;
|
|
2159
2183
|
chainId: number;
|
|
2160
2184
|
effectiveGas?: number | undefined;
|
|
2185
|
+
} | {
|
|
2186
|
+
unsignedPsbtBase64: string;
|
|
2187
|
+
inputsToSign: {}[] | null;
|
|
2161
2188
|
};
|
|
2162
2189
|
approval?: {
|
|
2163
2190
|
data: string;
|
|
@@ -2338,6 +2365,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2338
2365
|
gasLimit: number | null;
|
|
2339
2366
|
chainId: number;
|
|
2340
2367
|
effectiveGas?: number | undefined;
|
|
2368
|
+
} | {
|
|
2369
|
+
unsignedPsbtBase64: string;
|
|
2370
|
+
inputsToSign: {}[] | null;
|
|
2341
2371
|
};
|
|
2342
2372
|
approval?: {
|
|
2343
2373
|
data: string;
|
|
@@ -2510,6 +2540,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2510
2540
|
gasLimit: number | null;
|
|
2511
2541
|
chainId: number;
|
|
2512
2542
|
effectiveGas?: number | undefined;
|
|
2543
|
+
} | {
|
|
2544
|
+
unsignedPsbtBase64: string;
|
|
2545
|
+
inputsToSign: {}[] | null;
|
|
2513
2546
|
};
|
|
2514
2547
|
approval?: {
|
|
2515
2548
|
data: string;
|
|
@@ -2682,6 +2715,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2682
2715
|
gasLimit: number | null;
|
|
2683
2716
|
chainId: number;
|
|
2684
2717
|
effectiveGas?: number | undefined;
|
|
2718
|
+
} | {
|
|
2719
|
+
unsignedPsbtBase64: string;
|
|
2720
|
+
inputsToSign: {}[] | null;
|
|
2685
2721
|
};
|
|
2686
2722
|
approval?: {
|
|
2687
2723
|
data: string;
|
|
@@ -2855,6 +2891,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2855
2891
|
gasLimit: number | null;
|
|
2856
2892
|
chainId: number;
|
|
2857
2893
|
effectiveGas?: number | undefined;
|
|
2894
|
+
} | {
|
|
2895
|
+
unsignedPsbtBase64: string;
|
|
2896
|
+
inputsToSign: {}[] | null;
|
|
2858
2897
|
};
|
|
2859
2898
|
approval?: {
|
|
2860
2899
|
data: string;
|
|
@@ -3028,6 +3067,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3028
3067
|
gasLimit: number | null;
|
|
3029
3068
|
chainId: number;
|
|
3030
3069
|
effectiveGas?: number | undefined;
|
|
3070
|
+
} | {
|
|
3071
|
+
unsignedPsbtBase64: string;
|
|
3072
|
+
inputsToSign: {}[] | null;
|
|
3031
3073
|
};
|
|
3032
3074
|
approval?: {
|
|
3033
3075
|
data: string;
|
|
@@ -3201,6 +3243,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3201
3243
|
gasLimit: number | null;
|
|
3202
3244
|
chainId: number;
|
|
3203
3245
|
effectiveGas?: number | undefined;
|
|
3246
|
+
} | {
|
|
3247
|
+
unsignedPsbtBase64: string;
|
|
3248
|
+
inputsToSign: {}[] | null;
|
|
3204
3249
|
};
|
|
3205
3250
|
approval?: {
|
|
3206
3251
|
data: string;
|
|
@@ -3386,6 +3431,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3386
3431
|
gasLimit: number | null;
|
|
3387
3432
|
chainId: number;
|
|
3388
3433
|
effectiveGas?: number | undefined;
|
|
3434
|
+
} | {
|
|
3435
|
+
unsignedPsbtBase64: string;
|
|
3436
|
+
inputsToSign: {}[] | null;
|
|
3389
3437
|
};
|
|
3390
3438
|
approval?: {
|
|
3391
3439
|
data: string;
|
|
@@ -3559,6 +3607,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3559
3607
|
gasLimit: number | null;
|
|
3560
3608
|
chainId: number;
|
|
3561
3609
|
effectiveGas?: number | undefined;
|
|
3610
|
+
} | {
|
|
3611
|
+
unsignedPsbtBase64: string;
|
|
3612
|
+
inputsToSign: {}[] | null;
|
|
3562
3613
|
};
|
|
3563
3614
|
approval?: {
|
|
3564
3615
|
data: string;
|
|
@@ -3732,6 +3783,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3732
3783
|
gasLimit: number | null;
|
|
3733
3784
|
chainId: number;
|
|
3734
3785
|
effectiveGas?: number | undefined;
|
|
3786
|
+
} | {
|
|
3787
|
+
unsignedPsbtBase64: string;
|
|
3788
|
+
inputsToSign: {}[] | null;
|
|
3735
3789
|
};
|
|
3736
3790
|
approval?: {
|
|
3737
3791
|
data: string;
|
|
@@ -3916,6 +3970,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3916
3970
|
gasLimit: number | null;
|
|
3917
3971
|
chainId: number;
|
|
3918
3972
|
effectiveGas?: number | undefined;
|
|
3973
|
+
} | {
|
|
3974
|
+
unsignedPsbtBase64: string;
|
|
3975
|
+
inputsToSign: {}[] | null;
|
|
3919
3976
|
};
|
|
3920
3977
|
approval?: {
|
|
3921
3978
|
data: string;
|
|
@@ -4125,7 +4182,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4125
4182
|
} | undefined;
|
|
4126
4183
|
};
|
|
4127
4184
|
estimatedProcessingTimeInSeconds: number;
|
|
4128
|
-
trade: {
|
|
4185
|
+
trade: (string | {
|
|
4129
4186
|
data: string;
|
|
4130
4187
|
value: string;
|
|
4131
4188
|
to: string;
|
|
@@ -4133,7 +4190,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4133
4190
|
gasLimit: number | null;
|
|
4134
4191
|
chainId: number;
|
|
4135
4192
|
effectiveGas?: number | undefined;
|
|
4136
|
-
} |
|
|
4193
|
+
} | {
|
|
4194
|
+
unsignedPsbtBase64: string;
|
|
4195
|
+
inputsToSign: {}[] | null;
|
|
4196
|
+
}) & {
|
|
4137
4197
|
data: string;
|
|
4138
4198
|
value: string;
|
|
4139
4199
|
to: string;
|
|
@@ -4141,7 +4201,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4141
4201
|
gasLimit: number | null;
|
|
4142
4202
|
chainId: number;
|
|
4143
4203
|
effectiveGas?: number | undefined;
|
|
4144
|
-
}
|
|
4204
|
+
};
|
|
4145
4205
|
approval?: {
|
|
4146
4206
|
data: string;
|
|
4147
4207
|
value: string;
|
|
@@ -4152,7 +4212,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4152
4212
|
effectiveGas?: number | undefined;
|
|
4153
4213
|
} | undefined;
|
|
4154
4214
|
l1GasFeesInHexWei?: string | undefined;
|
|
4155
|
-
|
|
4215
|
+
nonEvmFeesInNative?: string | undefined;
|
|
4156
4216
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
4157
4217
|
quote: {
|
|
4158
4218
|
srcChainId: number;
|
|
@@ -4296,6 +4356,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4296
4356
|
gasLimit: number | null;
|
|
4297
4357
|
chainId: number;
|
|
4298
4358
|
effectiveGas?: number | undefined;
|
|
4359
|
+
} | {
|
|
4360
|
+
unsignedPsbtBase64: string;
|
|
4361
|
+
inputsToSign: {}[] | null;
|
|
4299
4362
|
};
|
|
4300
4363
|
approval?: {
|
|
4301
4364
|
data: string;
|
|
@@ -4501,7 +4564,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4501
4564
|
} | undefined;
|
|
4502
4565
|
};
|
|
4503
4566
|
estimatedProcessingTimeInSeconds: number;
|
|
4504
|
-
trade: {
|
|
4567
|
+
trade: (string | {
|
|
4505
4568
|
data: string;
|
|
4506
4569
|
value: string;
|
|
4507
4570
|
to: string;
|
|
@@ -4509,7 +4572,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4509
4572
|
gasLimit: number | null;
|
|
4510
4573
|
chainId: number;
|
|
4511
4574
|
effectiveGas?: number | undefined;
|
|
4512
|
-
} |
|
|
4575
|
+
} | {
|
|
4576
|
+
unsignedPsbtBase64: string;
|
|
4577
|
+
inputsToSign: {}[] | null;
|
|
4578
|
+
}) & {
|
|
4513
4579
|
data: string;
|
|
4514
4580
|
value: string;
|
|
4515
4581
|
to: string;
|
|
@@ -4517,7 +4583,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4517
4583
|
gasLimit: number | null;
|
|
4518
4584
|
chainId: number;
|
|
4519
4585
|
effectiveGas?: number | undefined;
|
|
4520
|
-
}
|
|
4586
|
+
};
|
|
4521
4587
|
approval?: {
|
|
4522
4588
|
data: string;
|
|
4523
4589
|
value: string;
|
|
@@ -4528,7 +4594,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4528
4594
|
effectiveGas?: number | undefined;
|
|
4529
4595
|
} | undefined;
|
|
4530
4596
|
l1GasFeesInHexWei?: string | undefined;
|
|
4531
|
-
|
|
4597
|
+
nonEvmFeesInNative?: string | undefined;
|
|
4532
4598
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
4533
4599
|
quote: {
|
|
4534
4600
|
srcChainId: number;
|
|
@@ -4672,6 +4738,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4672
4738
|
gasLimit: number | null;
|
|
4673
4739
|
chainId: number;
|
|
4674
4740
|
effectiveGas?: number | undefined;
|
|
4741
|
+
} | {
|
|
4742
|
+
unsignedPsbtBase64: string;
|
|
4743
|
+
inputsToSign: {}[] | null;
|
|
4675
4744
|
};
|
|
4676
4745
|
approval?: {
|
|
4677
4746
|
data: string;
|
|
@@ -4849,6 +4918,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4849
4918
|
gasLimit: number | null;
|
|
4850
4919
|
chainId: number;
|
|
4851
4920
|
effectiveGas?: number | undefined;
|
|
4921
|
+
} | {
|
|
4922
|
+
unsignedPsbtBase64: string;
|
|
4923
|
+
inputsToSign: {}[] | null;
|
|
4852
4924
|
};
|
|
4853
4925
|
approval?: {
|
|
4854
4926
|
data: string;
|
|
@@ -5058,7 +5130,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5058
5130
|
} | undefined;
|
|
5059
5131
|
};
|
|
5060
5132
|
estimatedProcessingTimeInSeconds: number;
|
|
5061
|
-
trade: {
|
|
5133
|
+
trade: (string | {
|
|
5062
5134
|
data: string;
|
|
5063
5135
|
value: string;
|
|
5064
5136
|
to: string;
|
|
@@ -5066,7 +5138,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5066
5138
|
gasLimit: number | null;
|
|
5067
5139
|
chainId: number;
|
|
5068
5140
|
effectiveGas?: number | undefined;
|
|
5069
|
-
} |
|
|
5141
|
+
} | {
|
|
5142
|
+
unsignedPsbtBase64: string;
|
|
5143
|
+
inputsToSign: {}[] | null;
|
|
5144
|
+
}) & {
|
|
5070
5145
|
data: string;
|
|
5071
5146
|
value: string;
|
|
5072
5147
|
to: string;
|
|
@@ -5074,7 +5149,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5074
5149
|
gasLimit: number | null;
|
|
5075
5150
|
chainId: number;
|
|
5076
5151
|
effectiveGas?: number | undefined;
|
|
5077
|
-
}
|
|
5152
|
+
};
|
|
5078
5153
|
approval?: {
|
|
5079
5154
|
data: string;
|
|
5080
5155
|
value: string;
|
|
@@ -5085,7 +5160,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5085
5160
|
effectiveGas?: number | undefined;
|
|
5086
5161
|
} | undefined;
|
|
5087
5162
|
l1GasFeesInHexWei?: string | undefined;
|
|
5088
|
-
|
|
5163
|
+
nonEvmFeesInNative?: string | undefined;
|
|
5089
5164
|
}[]) & {
|
|
5090
5165
|
clearCache: () => void;
|
|
5091
5166
|
resultsCount: () => number;
|
|
@@ -5234,6 +5309,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5234
5309
|
gasLimit: number | null;
|
|
5235
5310
|
chainId: number;
|
|
5236
5311
|
effectiveGas?: number | undefined;
|
|
5312
|
+
} | {
|
|
5313
|
+
unsignedPsbtBase64: string;
|
|
5314
|
+
inputsToSign: {}[] | null;
|
|
5237
5315
|
};
|
|
5238
5316
|
approval?: {
|
|
5239
5317
|
data: string;
|
|
@@ -5263,7 +5341,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5263
5341
|
chainId: number;
|
|
5264
5342
|
effectiveGas?: number | undefined;
|
|
5265
5343
|
} | undefined;
|
|
5266
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
5344
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
5267
5345
|
estimatedBaseFeeInDecGwei: string;
|
|
5268
5346
|
maxPriorityFeePerGasInDecGwei: string;
|
|
5269
5347
|
maxFeePerGasInDecGwei: string;
|
|
@@ -5442,7 +5520,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5442
5520
|
} | undefined;
|
|
5443
5521
|
};
|
|
5444
5522
|
estimatedProcessingTimeInSeconds: number;
|
|
5445
|
-
trade: {
|
|
5523
|
+
trade: (string | {
|
|
5446
5524
|
data: string;
|
|
5447
5525
|
value: string;
|
|
5448
5526
|
to: string;
|
|
@@ -5450,7 +5528,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5450
5528
|
gasLimit: number | null;
|
|
5451
5529
|
chainId: number;
|
|
5452
5530
|
effectiveGas?: number | undefined;
|
|
5453
|
-
} |
|
|
5531
|
+
} | {
|
|
5532
|
+
unsignedPsbtBase64: string;
|
|
5533
|
+
inputsToSign: {}[] | null;
|
|
5534
|
+
}) & {
|
|
5454
5535
|
data: string;
|
|
5455
5536
|
value: string;
|
|
5456
5537
|
to: string;
|
|
@@ -5458,7 +5539,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5458
5539
|
gasLimit: number | null;
|
|
5459
5540
|
chainId: number;
|
|
5460
5541
|
effectiveGas?: number | undefined;
|
|
5461
|
-
}
|
|
5542
|
+
};
|
|
5462
5543
|
approval?: {
|
|
5463
5544
|
data: string;
|
|
5464
5545
|
value: string;
|
|
@@ -5469,7 +5550,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5469
5550
|
effectiveGas?: number | undefined;
|
|
5470
5551
|
} | undefined;
|
|
5471
5552
|
l1GasFeesInHexWei?: string | undefined;
|
|
5472
|
-
|
|
5553
|
+
nonEvmFeesInNative?: string | undefined;
|
|
5473
5554
|
}[];
|
|
5474
5555
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
5475
5556
|
quote: {
|
|
@@ -5614,6 +5695,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5614
5695
|
gasLimit: number | null;
|
|
5615
5696
|
chainId: number;
|
|
5616
5697
|
effectiveGas?: number | undefined;
|
|
5698
|
+
} | {
|
|
5699
|
+
unsignedPsbtBase64: string;
|
|
5700
|
+
inputsToSign: {}[] | null;
|
|
5617
5701
|
};
|
|
5618
5702
|
approval?: {
|
|
5619
5703
|
data: string;
|
|
@@ -5643,7 +5727,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5643
5727
|
chainId: number;
|
|
5644
5728
|
effectiveGas?: number | undefined;
|
|
5645
5729
|
} | undefined;
|
|
5646
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
5730
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
5647
5731
|
estimatedBaseFeeInDecGwei: string;
|
|
5648
5732
|
maxPriorityFeePerGasInDecGwei: string;
|
|
5649
5733
|
maxFeePerGasInDecGwei: string;
|
|
@@ -5822,7 +5906,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5822
5906
|
} | undefined;
|
|
5823
5907
|
};
|
|
5824
5908
|
estimatedProcessingTimeInSeconds: number;
|
|
5825
|
-
trade: {
|
|
5909
|
+
trade: (string | {
|
|
5826
5910
|
data: string;
|
|
5827
5911
|
value: string;
|
|
5828
5912
|
to: string;
|
|
@@ -5830,7 +5914,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5830
5914
|
gasLimit: number | null;
|
|
5831
5915
|
chainId: number;
|
|
5832
5916
|
effectiveGas?: number | undefined;
|
|
5833
|
-
} |
|
|
5917
|
+
} | {
|
|
5918
|
+
unsignedPsbtBase64: string;
|
|
5919
|
+
inputsToSign: {}[] | null;
|
|
5920
|
+
}) & {
|
|
5834
5921
|
data: string;
|
|
5835
5922
|
value: string;
|
|
5836
5923
|
to: string;
|
|
@@ -5838,7 +5925,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5838
5925
|
gasLimit: number | null;
|
|
5839
5926
|
chainId: number;
|
|
5840
5927
|
effectiveGas?: number | undefined;
|
|
5841
|
-
}
|
|
5928
|
+
};
|
|
5842
5929
|
approval?: {
|
|
5843
5930
|
data: string;
|
|
5844
5931
|
value: string;
|
|
@@ -5849,7 +5936,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5849
5936
|
effectiveGas?: number | undefined;
|
|
5850
5937
|
} | undefined;
|
|
5851
5938
|
l1GasFeesInHexWei?: string | undefined;
|
|
5852
|
-
|
|
5939
|
+
nonEvmFeesInNative?: string | undefined;
|
|
5853
5940
|
}[]) & {
|
|
5854
5941
|
clearCache: () => void;
|
|
5855
5942
|
resultsCount: () => number;
|
|
@@ -6030,7 +6117,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6030
6117
|
} | undefined;
|
|
6031
6118
|
};
|
|
6032
6119
|
estimatedProcessingTimeInSeconds: number;
|
|
6033
|
-
trade: {
|
|
6120
|
+
trade: (string | {
|
|
6034
6121
|
data: string;
|
|
6035
6122
|
value: string;
|
|
6036
6123
|
to: string;
|
|
@@ -6038,7 +6125,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6038
6125
|
gasLimit: number | null;
|
|
6039
6126
|
chainId: number;
|
|
6040
6127
|
effectiveGas?: number | undefined;
|
|
6041
|
-
} |
|
|
6128
|
+
} | {
|
|
6129
|
+
unsignedPsbtBase64: string;
|
|
6130
|
+
inputsToSign: {}[] | null;
|
|
6131
|
+
}) & {
|
|
6042
6132
|
data: string;
|
|
6043
6133
|
value: string;
|
|
6044
6134
|
to: string;
|
|
@@ -6046,7 +6136,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6046
6136
|
gasLimit: number | null;
|
|
6047
6137
|
chainId: number;
|
|
6048
6138
|
effectiveGas?: number | undefined;
|
|
6049
|
-
}
|
|
6139
|
+
};
|
|
6050
6140
|
approval?: {
|
|
6051
6141
|
data: string;
|
|
6052
6142
|
value: string;
|
|
@@ -6057,7 +6147,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6057
6147
|
effectiveGas?: number | undefined;
|
|
6058
6148
|
} | undefined;
|
|
6059
6149
|
l1GasFeesInHexWei?: string | undefined;
|
|
6060
|
-
|
|
6150
|
+
nonEvmFeesInNative?: string | undefined;
|
|
6061
6151
|
}[];
|
|
6062
6152
|
dependencies: [({ quotes }: BridgeAppState) => ({
|
|
6063
6153
|
quote: {
|
|
@@ -6202,6 +6292,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6202
6292
|
gasLimit: number | null;
|
|
6203
6293
|
chainId: number;
|
|
6204
6294
|
effectiveGas?: number | undefined;
|
|
6295
|
+
} | {
|
|
6296
|
+
unsignedPsbtBase64: string;
|
|
6297
|
+
inputsToSign: {}[] | null;
|
|
6205
6298
|
};
|
|
6206
6299
|
approval?: {
|
|
6207
6300
|
data: string;
|
|
@@ -6231,7 +6324,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6231
6324
|
chainId: number;
|
|
6232
6325
|
effectiveGas?: number | undefined;
|
|
6233
6326
|
} | undefined;
|
|
6234
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
6327
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
|
|
6235
6328
|
gasFeeEstimates: GasFeeEstimates;
|
|
6236
6329
|
} & MultichainAssetsRatesControllerState & TokenRatesControllerState & CurrencyRateState & Pick<BridgeControllerState, "assetExchangeRates"> & {
|
|
6237
6330
|
participateInMetaMetrics: boolean;
|
|
@@ -6506,6 +6599,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6506
6599
|
gasLimit: number | null;
|
|
6507
6600
|
chainId: number;
|
|
6508
6601
|
effectiveGas?: number | undefined;
|
|
6602
|
+
} | {
|
|
6603
|
+
unsignedPsbtBase64: string;
|
|
6604
|
+
inputsToSign: {}[] | null;
|
|
6509
6605
|
};
|
|
6510
6606
|
approval?: {
|
|
6511
6607
|
data: string;
|
|
@@ -6683,6 +6779,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6683
6779
|
gasLimit: number | null;
|
|
6684
6780
|
chainId: number;
|
|
6685
6781
|
effectiveGas?: number | undefined;
|
|
6782
|
+
} | {
|
|
6783
|
+
unsignedPsbtBase64: string;
|
|
6784
|
+
inputsToSign: {}[] | null;
|
|
6686
6785
|
};
|
|
6687
6786
|
approval?: {
|
|
6688
6787
|
data: string;
|
|
@@ -6855,6 +6954,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6855
6954
|
gasLimit: number | null;
|
|
6856
6955
|
chainId: number;
|
|
6857
6956
|
effectiveGas?: number | undefined;
|
|
6957
|
+
} | {
|
|
6958
|
+
unsignedPsbtBase64: string;
|
|
6959
|
+
inputsToSign: {}[] | null;
|
|
6858
6960
|
};
|
|
6859
6961
|
approval?: {
|
|
6860
6962
|
data: string;
|
|
@@ -7028,6 +7130,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7028
7130
|
gasLimit: number | null;
|
|
7029
7131
|
chainId: number;
|
|
7030
7132
|
effectiveGas?: number | undefined;
|
|
7133
|
+
} | {
|
|
7134
|
+
unsignedPsbtBase64: string;
|
|
7135
|
+
inputsToSign: {}[] | null;
|
|
7031
7136
|
};
|
|
7032
7137
|
approval?: {
|
|
7033
7138
|
data: string;
|
|
@@ -7200,6 +7305,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7200
7305
|
gasLimit: number | null;
|
|
7201
7306
|
chainId: number;
|
|
7202
7307
|
effectiveGas?: number | undefined;
|
|
7308
|
+
} | {
|
|
7309
|
+
unsignedPsbtBase64: string;
|
|
7310
|
+
inputsToSign: {}[] | null;
|
|
7203
7311
|
};
|
|
7204
7312
|
approval?: {
|
|
7205
7313
|
data: string;
|
|
@@ -7377,6 +7485,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7377
7485
|
gasLimit: number | null;
|
|
7378
7486
|
chainId: number;
|
|
7379
7487
|
effectiveGas?: number | undefined;
|
|
7488
|
+
} | {
|
|
7489
|
+
unsignedPsbtBase64: string;
|
|
7490
|
+
inputsToSign: {}[] | null;
|
|
7380
7491
|
};
|
|
7381
7492
|
approval?: {
|
|
7382
7493
|
data: string;
|
|
@@ -7554,6 +7665,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7554
7665
|
gasLimit: number | null;
|
|
7555
7666
|
chainId: number;
|
|
7556
7667
|
effectiveGas?: number | undefined;
|
|
7668
|
+
} | {
|
|
7669
|
+
unsignedPsbtBase64: string;
|
|
7670
|
+
inputsToSign: {}[] | null;
|
|
7557
7671
|
};
|
|
7558
7672
|
approval?: {
|
|
7559
7673
|
data: string;
|
|
@@ -7763,7 +7877,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7763
7877
|
} | undefined;
|
|
7764
7878
|
};
|
|
7765
7879
|
estimatedProcessingTimeInSeconds: number;
|
|
7766
|
-
trade: {
|
|
7880
|
+
trade: (string | {
|
|
7767
7881
|
data: string;
|
|
7768
7882
|
value: string;
|
|
7769
7883
|
to: string;
|
|
@@ -7771,7 +7885,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7771
7885
|
gasLimit: number | null;
|
|
7772
7886
|
chainId: number;
|
|
7773
7887
|
effectiveGas?: number | undefined;
|
|
7774
|
-
} |
|
|
7888
|
+
} | {
|
|
7889
|
+
unsignedPsbtBase64: string;
|
|
7890
|
+
inputsToSign: {}[] | null;
|
|
7891
|
+
}) & {
|
|
7775
7892
|
data: string;
|
|
7776
7893
|
value: string;
|
|
7777
7894
|
to: string;
|
|
@@ -7779,7 +7896,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7779
7896
|
gasLimit: number | null;
|
|
7780
7897
|
chainId: number;
|
|
7781
7898
|
effectiveGas?: number | undefined;
|
|
7782
|
-
}
|
|
7899
|
+
};
|
|
7783
7900
|
approval?: {
|
|
7784
7901
|
data: string;
|
|
7785
7902
|
value: string;
|
|
@@ -7790,7 +7907,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7790
7907
|
effectiveGas?: number | undefined;
|
|
7791
7908
|
} | undefined;
|
|
7792
7909
|
l1GasFeesInHexWei?: string | undefined;
|
|
7793
|
-
|
|
7910
|
+
nonEvmFeesInNative?: string | undefined;
|
|
7794
7911
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
7795
7912
|
quote: {
|
|
7796
7913
|
srcChainId: number;
|
|
@@ -7934,6 +8051,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7934
8051
|
gasLimit: number | null;
|
|
7935
8052
|
chainId: number;
|
|
7936
8053
|
effectiveGas?: number | undefined;
|
|
8054
|
+
} | {
|
|
8055
|
+
unsignedPsbtBase64: string;
|
|
8056
|
+
inputsToSign: {}[] | null;
|
|
7937
8057
|
};
|
|
7938
8058
|
approval?: {
|
|
7939
8059
|
data: string;
|
|
@@ -8139,7 +8259,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8139
8259
|
} | undefined;
|
|
8140
8260
|
};
|
|
8141
8261
|
estimatedProcessingTimeInSeconds: number;
|
|
8142
|
-
trade: {
|
|
8262
|
+
trade: (string | {
|
|
8143
8263
|
data: string;
|
|
8144
8264
|
value: string;
|
|
8145
8265
|
to: string;
|
|
@@ -8147,7 +8267,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8147
8267
|
gasLimit: number | null;
|
|
8148
8268
|
chainId: number;
|
|
8149
8269
|
effectiveGas?: number | undefined;
|
|
8150
|
-
} |
|
|
8270
|
+
} | {
|
|
8271
|
+
unsignedPsbtBase64: string;
|
|
8272
|
+
inputsToSign: {}[] | null;
|
|
8273
|
+
}) & {
|
|
8151
8274
|
data: string;
|
|
8152
8275
|
value: string;
|
|
8153
8276
|
to: string;
|
|
@@ -8155,7 +8278,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8155
8278
|
gasLimit: number | null;
|
|
8156
8279
|
chainId: number;
|
|
8157
8280
|
effectiveGas?: number | undefined;
|
|
8158
|
-
}
|
|
8281
|
+
};
|
|
8159
8282
|
approval?: {
|
|
8160
8283
|
data: string;
|
|
8161
8284
|
value: string;
|
|
@@ -8166,7 +8289,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8166
8289
|
effectiveGas?: number | undefined;
|
|
8167
8290
|
} | undefined;
|
|
8168
8291
|
l1GasFeesInHexWei?: string | undefined;
|
|
8169
|
-
|
|
8292
|
+
nonEvmFeesInNative?: string | undefined;
|
|
8170
8293
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
8171
8294
|
quote: {
|
|
8172
8295
|
srcChainId: number;
|
|
@@ -8310,6 +8433,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8310
8433
|
gasLimit: number | null;
|
|
8311
8434
|
chainId: number;
|
|
8312
8435
|
effectiveGas?: number | undefined;
|
|
8436
|
+
} | {
|
|
8437
|
+
unsignedPsbtBase64: string;
|
|
8438
|
+
inputsToSign: {}[] | null;
|
|
8313
8439
|
};
|
|
8314
8440
|
approval?: {
|
|
8315
8441
|
data: string;
|
|
@@ -8487,6 +8613,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8487
8613
|
gasLimit: number | null;
|
|
8488
8614
|
chainId: number;
|
|
8489
8615
|
effectiveGas?: number | undefined;
|
|
8616
|
+
} | {
|
|
8617
|
+
unsignedPsbtBase64: string;
|
|
8618
|
+
inputsToSign: {}[] | null;
|
|
8490
8619
|
};
|
|
8491
8620
|
approval?: {
|
|
8492
8621
|
data: string;
|
|
@@ -8696,7 +8825,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8696
8825
|
} | undefined;
|
|
8697
8826
|
};
|
|
8698
8827
|
estimatedProcessingTimeInSeconds: number;
|
|
8699
|
-
trade: {
|
|
8828
|
+
trade: (string | {
|
|
8700
8829
|
data: string;
|
|
8701
8830
|
value: string;
|
|
8702
8831
|
to: string;
|
|
@@ -8704,7 +8833,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8704
8833
|
gasLimit: number | null;
|
|
8705
8834
|
chainId: number;
|
|
8706
8835
|
effectiveGas?: number | undefined;
|
|
8707
|
-
} |
|
|
8836
|
+
} | {
|
|
8837
|
+
unsignedPsbtBase64: string;
|
|
8838
|
+
inputsToSign: {}[] | null;
|
|
8839
|
+
}) & {
|
|
8708
8840
|
data: string;
|
|
8709
8841
|
value: string;
|
|
8710
8842
|
to: string;
|
|
@@ -8712,7 +8844,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8712
8844
|
gasLimit: number | null;
|
|
8713
8845
|
chainId: number;
|
|
8714
8846
|
effectiveGas?: number | undefined;
|
|
8715
|
-
}
|
|
8847
|
+
};
|
|
8716
8848
|
approval?: {
|
|
8717
8849
|
data: string;
|
|
8718
8850
|
value: string;
|
|
@@ -8723,7 +8855,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8723
8855
|
effectiveGas?: number | undefined;
|
|
8724
8856
|
} | undefined;
|
|
8725
8857
|
l1GasFeesInHexWei?: string | undefined;
|
|
8726
|
-
|
|
8858
|
+
nonEvmFeesInNative?: string | undefined;
|
|
8727
8859
|
}[]) & {
|
|
8728
8860
|
clearCache: () => void;
|
|
8729
8861
|
resultsCount: () => number;
|
|
@@ -8872,6 +9004,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8872
9004
|
gasLimit: number | null;
|
|
8873
9005
|
chainId: number;
|
|
8874
9006
|
effectiveGas?: number | undefined;
|
|
9007
|
+
} | {
|
|
9008
|
+
unsignedPsbtBase64: string;
|
|
9009
|
+
inputsToSign: {}[] | null;
|
|
8875
9010
|
};
|
|
8876
9011
|
approval?: {
|
|
8877
9012
|
data: string;
|
|
@@ -8901,7 +9036,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8901
9036
|
chainId: number;
|
|
8902
9037
|
effectiveGas?: number | undefined;
|
|
8903
9038
|
} | undefined;
|
|
8904
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
9039
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
8905
9040
|
estimatedBaseFeeInDecGwei: string;
|
|
8906
9041
|
maxPriorityFeePerGasInDecGwei: string;
|
|
8907
9042
|
maxFeePerGasInDecGwei: string;
|
|
@@ -9080,7 +9215,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9080
9215
|
} | undefined;
|
|
9081
9216
|
};
|
|
9082
9217
|
estimatedProcessingTimeInSeconds: number;
|
|
9083
|
-
trade: {
|
|
9218
|
+
trade: (string | {
|
|
9084
9219
|
data: string;
|
|
9085
9220
|
value: string;
|
|
9086
9221
|
to: string;
|
|
@@ -9088,7 +9223,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9088
9223
|
gasLimit: number | null;
|
|
9089
9224
|
chainId: number;
|
|
9090
9225
|
effectiveGas?: number | undefined;
|
|
9091
|
-
} |
|
|
9226
|
+
} | {
|
|
9227
|
+
unsignedPsbtBase64: string;
|
|
9228
|
+
inputsToSign: {}[] | null;
|
|
9229
|
+
}) & {
|
|
9092
9230
|
data: string;
|
|
9093
9231
|
value: string;
|
|
9094
9232
|
to: string;
|
|
@@ -9096,7 +9234,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9096
9234
|
gasLimit: number | null;
|
|
9097
9235
|
chainId: number;
|
|
9098
9236
|
effectiveGas?: number | undefined;
|
|
9099
|
-
}
|
|
9237
|
+
};
|
|
9100
9238
|
approval?: {
|
|
9101
9239
|
data: string;
|
|
9102
9240
|
value: string;
|
|
@@ -9107,7 +9245,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9107
9245
|
effectiveGas?: number | undefined;
|
|
9108
9246
|
} | undefined;
|
|
9109
9247
|
l1GasFeesInHexWei?: string | undefined;
|
|
9110
|
-
|
|
9248
|
+
nonEvmFeesInNative?: string | undefined;
|
|
9111
9249
|
}[];
|
|
9112
9250
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
9113
9251
|
quote: {
|
|
@@ -9252,6 +9390,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9252
9390
|
gasLimit: number | null;
|
|
9253
9391
|
chainId: number;
|
|
9254
9392
|
effectiveGas?: number | undefined;
|
|
9393
|
+
} | {
|
|
9394
|
+
unsignedPsbtBase64: string;
|
|
9395
|
+
inputsToSign: {}[] | null;
|
|
9255
9396
|
};
|
|
9256
9397
|
approval?: {
|
|
9257
9398
|
data: string;
|
|
@@ -9281,7 +9422,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9281
9422
|
chainId: number;
|
|
9282
9423
|
effectiveGas?: number | undefined;
|
|
9283
9424
|
} | undefined;
|
|
9284
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
9425
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
9285
9426
|
estimatedBaseFeeInDecGwei: string;
|
|
9286
9427
|
maxPriorityFeePerGasInDecGwei: string;
|
|
9287
9428
|
maxFeePerGasInDecGwei: string;
|
|
@@ -9460,7 +9601,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9460
9601
|
} | undefined;
|
|
9461
9602
|
};
|
|
9462
9603
|
estimatedProcessingTimeInSeconds: number;
|
|
9463
|
-
trade: {
|
|
9604
|
+
trade: (string | {
|
|
9464
9605
|
data: string;
|
|
9465
9606
|
value: string;
|
|
9466
9607
|
to: string;
|
|
@@ -9468,7 +9609,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9468
9609
|
gasLimit: number | null;
|
|
9469
9610
|
chainId: number;
|
|
9470
9611
|
effectiveGas?: number | undefined;
|
|
9471
|
-
} |
|
|
9612
|
+
} | {
|
|
9613
|
+
unsignedPsbtBase64: string;
|
|
9614
|
+
inputsToSign: {}[] | null;
|
|
9615
|
+
}) & {
|
|
9472
9616
|
data: string;
|
|
9473
9617
|
value: string;
|
|
9474
9618
|
to: string;
|
|
@@ -9476,7 +9620,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9476
9620
|
gasLimit: number | null;
|
|
9477
9621
|
chainId: number;
|
|
9478
9622
|
effectiveGas?: number | undefined;
|
|
9479
|
-
}
|
|
9623
|
+
};
|
|
9480
9624
|
approval?: {
|
|
9481
9625
|
data: string;
|
|
9482
9626
|
value: string;
|
|
@@ -9487,7 +9631,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9487
9631
|
effectiveGas?: number | undefined;
|
|
9488
9632
|
} | undefined;
|
|
9489
9633
|
l1GasFeesInHexWei?: string | undefined;
|
|
9490
|
-
|
|
9634
|
+
nonEvmFeesInNative?: string | undefined;
|
|
9491
9635
|
}[]) & {
|
|
9492
9636
|
clearCache: () => void;
|
|
9493
9637
|
resultsCount: () => number;
|
|
@@ -9668,7 +9812,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9668
9812
|
} | undefined;
|
|
9669
9813
|
};
|
|
9670
9814
|
estimatedProcessingTimeInSeconds: number;
|
|
9671
|
-
trade: {
|
|
9815
|
+
trade: (string | {
|
|
9672
9816
|
data: string;
|
|
9673
9817
|
value: string;
|
|
9674
9818
|
to: string;
|
|
@@ -9676,7 +9820,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9676
9820
|
gasLimit: number | null;
|
|
9677
9821
|
chainId: number;
|
|
9678
9822
|
effectiveGas?: number | undefined;
|
|
9679
|
-
} |
|
|
9823
|
+
} | {
|
|
9824
|
+
unsignedPsbtBase64: string;
|
|
9825
|
+
inputsToSign: {}[] | null;
|
|
9826
|
+
}) & {
|
|
9680
9827
|
data: string;
|
|
9681
9828
|
value: string;
|
|
9682
9829
|
to: string;
|
|
@@ -9684,7 +9831,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9684
9831
|
gasLimit: number | null;
|
|
9685
9832
|
chainId: number;
|
|
9686
9833
|
effectiveGas?: number | undefined;
|
|
9687
|
-
}
|
|
9834
|
+
};
|
|
9688
9835
|
approval?: {
|
|
9689
9836
|
data: string;
|
|
9690
9837
|
value: string;
|
|
@@ -9695,7 +9842,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9695
9842
|
effectiveGas?: number | undefined;
|
|
9696
9843
|
} | undefined;
|
|
9697
9844
|
l1GasFeesInHexWei?: string | undefined;
|
|
9698
|
-
|
|
9845
|
+
nonEvmFeesInNative?: string | undefined;
|
|
9699
9846
|
}[];
|
|
9700
9847
|
dependencies: [({ quotes }: BridgeAppState) => ({
|
|
9701
9848
|
quote: {
|
|
@@ -9840,6 +9987,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9840
9987
|
gasLimit: number | null;
|
|
9841
9988
|
chainId: number;
|
|
9842
9989
|
effectiveGas?: number | undefined;
|
|
9990
|
+
} | {
|
|
9991
|
+
unsignedPsbtBase64: string;
|
|
9992
|
+
inputsToSign: {}[] | null;
|
|
9843
9993
|
};
|
|
9844
9994
|
approval?: {
|
|
9845
9995
|
data: string;
|
|
@@ -9869,7 +10019,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9869
10019
|
chainId: number;
|
|
9870
10020
|
effectiveGas?: number | undefined;
|
|
9871
10021
|
} | undefined;
|
|
9872
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
10022
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
|
|
9873
10023
|
gasFeeEstimates: GasFeeEstimates;
|
|
9874
10024
|
} & MultichainAssetsRatesControllerState & TokenRatesControllerState & CurrencyRateState & Pick<BridgeControllerState, "assetExchangeRates"> & {
|
|
9875
10025
|
participateInMetaMetrics: boolean;
|
|
@@ -10152,6 +10302,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10152
10302
|
gasLimit: number | null;
|
|
10153
10303
|
chainId: number;
|
|
10154
10304
|
effectiveGas?: number | undefined;
|
|
10305
|
+
} | {
|
|
10306
|
+
unsignedPsbtBase64: string;
|
|
10307
|
+
inputsToSign: {}[] | null;
|
|
10155
10308
|
};
|
|
10156
10309
|
approval?: {
|
|
10157
10310
|
data: string;
|
|
@@ -10329,6 +10482,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10329
10482
|
gasLimit: number | null;
|
|
10330
10483
|
chainId: number;
|
|
10331
10484
|
effectiveGas?: number | undefined;
|
|
10485
|
+
} | {
|
|
10486
|
+
unsignedPsbtBase64: string;
|
|
10487
|
+
inputsToSign: {}[] | null;
|
|
10332
10488
|
};
|
|
10333
10489
|
approval?: {
|
|
10334
10490
|
data: string;
|
|
@@ -10501,6 +10657,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10501
10657
|
gasLimit: number | null;
|
|
10502
10658
|
chainId: number;
|
|
10503
10659
|
effectiveGas?: number | undefined;
|
|
10660
|
+
} | {
|
|
10661
|
+
unsignedPsbtBase64: string;
|
|
10662
|
+
inputsToSign: {}[] | null;
|
|
10504
10663
|
};
|
|
10505
10664
|
approval?: {
|
|
10506
10665
|
data: string;
|
|
@@ -10673,6 +10832,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10673
10832
|
gasLimit: number | null;
|
|
10674
10833
|
chainId: number;
|
|
10675
10834
|
effectiveGas?: number | undefined;
|
|
10835
|
+
} | {
|
|
10836
|
+
unsignedPsbtBase64: string;
|
|
10837
|
+
inputsToSign: {}[] | null;
|
|
10676
10838
|
};
|
|
10677
10839
|
approval?: {
|
|
10678
10840
|
data: string;
|
|
@@ -10846,6 +11008,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10846
11008
|
gasLimit: number | null;
|
|
10847
11009
|
chainId: number;
|
|
10848
11010
|
effectiveGas?: number | undefined;
|
|
11011
|
+
} | {
|
|
11012
|
+
unsignedPsbtBase64: string;
|
|
11013
|
+
inputsToSign: {}[] | null;
|
|
10849
11014
|
};
|
|
10850
11015
|
approval?: {
|
|
10851
11016
|
data: string;
|
|
@@ -11018,6 +11183,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11018
11183
|
gasLimit: number | null;
|
|
11019
11184
|
chainId: number;
|
|
11020
11185
|
effectiveGas?: number | undefined;
|
|
11186
|
+
} | {
|
|
11187
|
+
unsignedPsbtBase64: string;
|
|
11188
|
+
inputsToSign: {}[] | null;
|
|
11021
11189
|
};
|
|
11022
11190
|
approval?: {
|
|
11023
11191
|
data: string;
|
|
@@ -11190,6 +11358,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11190
11358
|
gasLimit: number | null;
|
|
11191
11359
|
chainId: number;
|
|
11192
11360
|
effectiveGas?: number | undefined;
|
|
11361
|
+
} | {
|
|
11362
|
+
unsignedPsbtBase64: string;
|
|
11363
|
+
inputsToSign: {}[] | null;
|
|
11193
11364
|
};
|
|
11194
11365
|
approval?: {
|
|
11195
11366
|
data: string;
|
|
@@ -11367,6 +11538,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11367
11538
|
gasLimit: number | null;
|
|
11368
11539
|
chainId: number;
|
|
11369
11540
|
effectiveGas?: number | undefined;
|
|
11541
|
+
} | {
|
|
11542
|
+
unsignedPsbtBase64: string;
|
|
11543
|
+
inputsToSign: {}[] | null;
|
|
11370
11544
|
};
|
|
11371
11545
|
approval?: {
|
|
11372
11546
|
data: string;
|
|
@@ -11544,6 +11718,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11544
11718
|
gasLimit: number | null;
|
|
11545
11719
|
chainId: number;
|
|
11546
11720
|
effectiveGas?: number | undefined;
|
|
11721
|
+
} | {
|
|
11722
|
+
unsignedPsbtBase64: string;
|
|
11723
|
+
inputsToSign: {}[] | null;
|
|
11547
11724
|
};
|
|
11548
11725
|
approval?: {
|
|
11549
11726
|
data: string;
|
|
@@ -11721,6 +11898,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11721
11898
|
gasLimit: number | null;
|
|
11722
11899
|
chainId: number;
|
|
11723
11900
|
effectiveGas?: number | undefined;
|
|
11901
|
+
} | {
|
|
11902
|
+
unsignedPsbtBase64: string;
|
|
11903
|
+
inputsToSign: {}[] | null;
|
|
11724
11904
|
};
|
|
11725
11905
|
approval?: {
|
|
11726
11906
|
data: string;
|
|
@@ -11893,6 +12073,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11893
12073
|
gasLimit: number | null;
|
|
11894
12074
|
chainId: number;
|
|
11895
12075
|
effectiveGas?: number | undefined;
|
|
12076
|
+
} | {
|
|
12077
|
+
unsignedPsbtBase64: string;
|
|
12078
|
+
inputsToSign: {}[] | null;
|
|
11896
12079
|
};
|
|
11897
12080
|
approval?: {
|
|
11898
12081
|
data: string;
|
|
@@ -12066,6 +12249,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12066
12249
|
gasLimit: number | null;
|
|
12067
12250
|
chainId: number;
|
|
12068
12251
|
effectiveGas?: number | undefined;
|
|
12252
|
+
} | {
|
|
12253
|
+
unsignedPsbtBase64: string;
|
|
12254
|
+
inputsToSign: {}[] | null;
|
|
12069
12255
|
};
|
|
12070
12256
|
approval?: {
|
|
12071
12257
|
data: string;
|
|
@@ -12238,6 +12424,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12238
12424
|
gasLimit: number | null;
|
|
12239
12425
|
chainId: number;
|
|
12240
12426
|
effectiveGas?: number | undefined;
|
|
12427
|
+
} | {
|
|
12428
|
+
unsignedPsbtBase64: string;
|
|
12429
|
+
inputsToSign: {}[] | null;
|
|
12241
12430
|
};
|
|
12242
12431
|
approval?: {
|
|
12243
12432
|
data: string;
|
|
@@ -12415,6 +12604,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12415
12604
|
gasLimit: number | null;
|
|
12416
12605
|
chainId: number;
|
|
12417
12606
|
effectiveGas?: number | undefined;
|
|
12607
|
+
} | {
|
|
12608
|
+
unsignedPsbtBase64: string;
|
|
12609
|
+
inputsToSign: {}[] | null;
|
|
12418
12610
|
};
|
|
12419
12611
|
approval?: {
|
|
12420
12612
|
data: string;
|
|
@@ -12592,6 +12784,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12592
12784
|
gasLimit: number | null;
|
|
12593
12785
|
chainId: number;
|
|
12594
12786
|
effectiveGas?: number | undefined;
|
|
12787
|
+
} | {
|
|
12788
|
+
unsignedPsbtBase64: string;
|
|
12789
|
+
inputsToSign: {}[] | null;
|
|
12595
12790
|
};
|
|
12596
12791
|
approval?: {
|
|
12597
12792
|
data: string;
|
|
@@ -12801,7 +12996,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12801
12996
|
} | undefined;
|
|
12802
12997
|
};
|
|
12803
12998
|
estimatedProcessingTimeInSeconds: number;
|
|
12804
|
-
trade: {
|
|
12999
|
+
trade: (string | {
|
|
12805
13000
|
data: string;
|
|
12806
13001
|
value: string;
|
|
12807
13002
|
to: string;
|
|
@@ -12809,7 +13004,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12809
13004
|
gasLimit: number | null;
|
|
12810
13005
|
chainId: number;
|
|
12811
13006
|
effectiveGas?: number | undefined;
|
|
12812
|
-
} |
|
|
13007
|
+
} | {
|
|
13008
|
+
unsignedPsbtBase64: string;
|
|
13009
|
+
inputsToSign: {}[] | null;
|
|
13010
|
+
}) & {
|
|
12813
13011
|
data: string;
|
|
12814
13012
|
value: string;
|
|
12815
13013
|
to: string;
|
|
@@ -12817,7 +13015,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12817
13015
|
gasLimit: number | null;
|
|
12818
13016
|
chainId: number;
|
|
12819
13017
|
effectiveGas?: number | undefined;
|
|
12820
|
-
}
|
|
13018
|
+
};
|
|
12821
13019
|
approval?: {
|
|
12822
13020
|
data: string;
|
|
12823
13021
|
value: string;
|
|
@@ -12828,7 +13026,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12828
13026
|
effectiveGas?: number | undefined;
|
|
12829
13027
|
} | undefined;
|
|
12830
13028
|
l1GasFeesInHexWei?: string | undefined;
|
|
12831
|
-
|
|
13029
|
+
nonEvmFeesInNative?: string | undefined;
|
|
12832
13030
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
12833
13031
|
quote: {
|
|
12834
13032
|
srcChainId: number;
|
|
@@ -12972,6 +13170,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12972
13170
|
gasLimit: number | null;
|
|
12973
13171
|
chainId: number;
|
|
12974
13172
|
effectiveGas?: number | undefined;
|
|
13173
|
+
} | {
|
|
13174
|
+
unsignedPsbtBase64: string;
|
|
13175
|
+
inputsToSign: {}[] | null;
|
|
12975
13176
|
};
|
|
12976
13177
|
approval?: {
|
|
12977
13178
|
data: string;
|
|
@@ -13177,7 +13378,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13177
13378
|
} | undefined;
|
|
13178
13379
|
};
|
|
13179
13380
|
estimatedProcessingTimeInSeconds: number;
|
|
13180
|
-
trade: {
|
|
13381
|
+
trade: (string | {
|
|
13181
13382
|
data: string;
|
|
13182
13383
|
value: string;
|
|
13183
13384
|
to: string;
|
|
@@ -13185,7 +13386,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13185
13386
|
gasLimit: number | null;
|
|
13186
13387
|
chainId: number;
|
|
13187
13388
|
effectiveGas?: number | undefined;
|
|
13188
|
-
} |
|
|
13389
|
+
} | {
|
|
13390
|
+
unsignedPsbtBase64: string;
|
|
13391
|
+
inputsToSign: {}[] | null;
|
|
13392
|
+
}) & {
|
|
13189
13393
|
data: string;
|
|
13190
13394
|
value: string;
|
|
13191
13395
|
to: string;
|
|
@@ -13193,7 +13397,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13193
13397
|
gasLimit: number | null;
|
|
13194
13398
|
chainId: number;
|
|
13195
13399
|
effectiveGas?: number | undefined;
|
|
13196
|
-
}
|
|
13400
|
+
};
|
|
13197
13401
|
approval?: {
|
|
13198
13402
|
data: string;
|
|
13199
13403
|
value: string;
|
|
@@ -13204,7 +13408,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13204
13408
|
effectiveGas?: number | undefined;
|
|
13205
13409
|
} | undefined;
|
|
13206
13410
|
l1GasFeesInHexWei?: string | undefined;
|
|
13207
|
-
|
|
13411
|
+
nonEvmFeesInNative?: string | undefined;
|
|
13208
13412
|
}[], resultFuncArgs_1: SortOrder) => ({
|
|
13209
13413
|
quote: {
|
|
13210
13414
|
srcChainId: number;
|
|
@@ -13348,6 +13552,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13348
13552
|
gasLimit: number | null;
|
|
13349
13553
|
chainId: number;
|
|
13350
13554
|
effectiveGas?: number | undefined;
|
|
13555
|
+
} | {
|
|
13556
|
+
unsignedPsbtBase64: string;
|
|
13557
|
+
inputsToSign: {}[] | null;
|
|
13351
13558
|
};
|
|
13352
13559
|
approval?: {
|
|
13353
13560
|
data: string;
|
|
@@ -13525,6 +13732,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13525
13732
|
gasLimit: number | null;
|
|
13526
13733
|
chainId: number;
|
|
13527
13734
|
effectiveGas?: number | undefined;
|
|
13735
|
+
} | {
|
|
13736
|
+
unsignedPsbtBase64: string;
|
|
13737
|
+
inputsToSign: {}[] | null;
|
|
13528
13738
|
};
|
|
13529
13739
|
approval?: {
|
|
13530
13740
|
data: string;
|
|
@@ -13734,7 +13944,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13734
13944
|
} | undefined;
|
|
13735
13945
|
};
|
|
13736
13946
|
estimatedProcessingTimeInSeconds: number;
|
|
13737
|
-
trade: {
|
|
13947
|
+
trade: (string | {
|
|
13738
13948
|
data: string;
|
|
13739
13949
|
value: string;
|
|
13740
13950
|
to: string;
|
|
@@ -13742,7 +13952,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13742
13952
|
gasLimit: number | null;
|
|
13743
13953
|
chainId: number;
|
|
13744
13954
|
effectiveGas?: number | undefined;
|
|
13745
|
-
} |
|
|
13955
|
+
} | {
|
|
13956
|
+
unsignedPsbtBase64: string;
|
|
13957
|
+
inputsToSign: {}[] | null;
|
|
13958
|
+
}) & {
|
|
13746
13959
|
data: string;
|
|
13747
13960
|
value: string;
|
|
13748
13961
|
to: string;
|
|
@@ -13750,7 +13963,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13750
13963
|
gasLimit: number | null;
|
|
13751
13964
|
chainId: number;
|
|
13752
13965
|
effectiveGas?: number | undefined;
|
|
13753
|
-
}
|
|
13966
|
+
};
|
|
13754
13967
|
approval?: {
|
|
13755
13968
|
data: string;
|
|
13756
13969
|
value: string;
|
|
@@ -13761,7 +13974,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13761
13974
|
effectiveGas?: number | undefined;
|
|
13762
13975
|
} | undefined;
|
|
13763
13976
|
l1GasFeesInHexWei?: string | undefined;
|
|
13764
|
-
|
|
13977
|
+
nonEvmFeesInNative?: string | undefined;
|
|
13765
13978
|
}[]) & {
|
|
13766
13979
|
clearCache: () => void;
|
|
13767
13980
|
resultsCount: () => number;
|
|
@@ -13910,6 +14123,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13910
14123
|
gasLimit: number | null;
|
|
13911
14124
|
chainId: number;
|
|
13912
14125
|
effectiveGas?: number | undefined;
|
|
14126
|
+
} | {
|
|
14127
|
+
unsignedPsbtBase64: string;
|
|
14128
|
+
inputsToSign: {}[] | null;
|
|
13913
14129
|
};
|
|
13914
14130
|
approval?: {
|
|
13915
14131
|
data: string;
|
|
@@ -13939,7 +14155,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13939
14155
|
chainId: number;
|
|
13940
14156
|
effectiveGas?: number | undefined;
|
|
13941
14157
|
} | undefined;
|
|
13942
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
14158
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
13943
14159
|
estimatedBaseFeeInDecGwei: string;
|
|
13944
14160
|
maxPriorityFeePerGasInDecGwei: string;
|
|
13945
14161
|
maxFeePerGasInDecGwei: string;
|
|
@@ -14118,7 +14334,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14118
14334
|
} | undefined;
|
|
14119
14335
|
};
|
|
14120
14336
|
estimatedProcessingTimeInSeconds: number;
|
|
14121
|
-
trade: {
|
|
14337
|
+
trade: (string | {
|
|
14122
14338
|
data: string;
|
|
14123
14339
|
value: string;
|
|
14124
14340
|
to: string;
|
|
@@ -14126,7 +14342,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14126
14342
|
gasLimit: number | null;
|
|
14127
14343
|
chainId: number;
|
|
14128
14344
|
effectiveGas?: number | undefined;
|
|
14129
|
-
} |
|
|
14345
|
+
} | {
|
|
14346
|
+
unsignedPsbtBase64: string;
|
|
14347
|
+
inputsToSign: {}[] | null;
|
|
14348
|
+
}) & {
|
|
14130
14349
|
data: string;
|
|
14131
14350
|
value: string;
|
|
14132
14351
|
to: string;
|
|
@@ -14134,7 +14353,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14134
14353
|
gasLimit: number | null;
|
|
14135
14354
|
chainId: number;
|
|
14136
14355
|
effectiveGas?: number | undefined;
|
|
14137
|
-
}
|
|
14356
|
+
};
|
|
14138
14357
|
approval?: {
|
|
14139
14358
|
data: string;
|
|
14140
14359
|
value: string;
|
|
@@ -14145,7 +14364,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14145
14364
|
effectiveGas?: number | undefined;
|
|
14146
14365
|
} | undefined;
|
|
14147
14366
|
l1GasFeesInHexWei?: string | undefined;
|
|
14148
|
-
|
|
14367
|
+
nonEvmFeesInNative?: string | undefined;
|
|
14149
14368
|
}[];
|
|
14150
14369
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
14151
14370
|
quote: {
|
|
@@ -14290,6 +14509,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14290
14509
|
gasLimit: number | null;
|
|
14291
14510
|
chainId: number;
|
|
14292
14511
|
effectiveGas?: number | undefined;
|
|
14512
|
+
} | {
|
|
14513
|
+
unsignedPsbtBase64: string;
|
|
14514
|
+
inputsToSign: {}[] | null;
|
|
14293
14515
|
};
|
|
14294
14516
|
approval?: {
|
|
14295
14517
|
data: string;
|
|
@@ -14319,7 +14541,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14319
14541
|
chainId: number;
|
|
14320
14542
|
effectiveGas?: number | undefined;
|
|
14321
14543
|
} | undefined;
|
|
14322
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
14544
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
|
|
14323
14545
|
estimatedBaseFeeInDecGwei: string;
|
|
14324
14546
|
maxPriorityFeePerGasInDecGwei: string;
|
|
14325
14547
|
maxFeePerGasInDecGwei: string;
|
|
@@ -14498,7 +14720,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14498
14720
|
} | undefined;
|
|
14499
14721
|
};
|
|
14500
14722
|
estimatedProcessingTimeInSeconds: number;
|
|
14501
|
-
trade: {
|
|
14723
|
+
trade: (string | {
|
|
14502
14724
|
data: string;
|
|
14503
14725
|
value: string;
|
|
14504
14726
|
to: string;
|
|
@@ -14506,7 +14728,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14506
14728
|
gasLimit: number | null;
|
|
14507
14729
|
chainId: number;
|
|
14508
14730
|
effectiveGas?: number | undefined;
|
|
14509
|
-
} |
|
|
14731
|
+
} | {
|
|
14732
|
+
unsignedPsbtBase64: string;
|
|
14733
|
+
inputsToSign: {}[] | null;
|
|
14734
|
+
}) & {
|
|
14510
14735
|
data: string;
|
|
14511
14736
|
value: string;
|
|
14512
14737
|
to: string;
|
|
@@ -14514,7 +14739,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14514
14739
|
gasLimit: number | null;
|
|
14515
14740
|
chainId: number;
|
|
14516
14741
|
effectiveGas?: number | undefined;
|
|
14517
|
-
}
|
|
14742
|
+
};
|
|
14518
14743
|
approval?: {
|
|
14519
14744
|
data: string;
|
|
14520
14745
|
value: string;
|
|
@@ -14525,7 +14750,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14525
14750
|
effectiveGas?: number | undefined;
|
|
14526
14751
|
} | undefined;
|
|
14527
14752
|
l1GasFeesInHexWei?: string | undefined;
|
|
14528
|
-
|
|
14753
|
+
nonEvmFeesInNative?: string | undefined;
|
|
14529
14754
|
}[]) & {
|
|
14530
14755
|
clearCache: () => void;
|
|
14531
14756
|
resultsCount: () => number;
|
|
@@ -14706,7 +14931,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14706
14931
|
} | undefined;
|
|
14707
14932
|
};
|
|
14708
14933
|
estimatedProcessingTimeInSeconds: number;
|
|
14709
|
-
trade: {
|
|
14934
|
+
trade: (string | {
|
|
14710
14935
|
data: string;
|
|
14711
14936
|
value: string;
|
|
14712
14937
|
to: string;
|
|
@@ -14714,7 +14939,10 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14714
14939
|
gasLimit: number | null;
|
|
14715
14940
|
chainId: number;
|
|
14716
14941
|
effectiveGas?: number | undefined;
|
|
14717
|
-
} |
|
|
14942
|
+
} | {
|
|
14943
|
+
unsignedPsbtBase64: string;
|
|
14944
|
+
inputsToSign: {}[] | null;
|
|
14945
|
+
}) & {
|
|
14718
14946
|
data: string;
|
|
14719
14947
|
value: string;
|
|
14720
14948
|
to: string;
|
|
@@ -14722,7 +14950,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14722
14950
|
gasLimit: number | null;
|
|
14723
14951
|
chainId: number;
|
|
14724
14952
|
effectiveGas?: number | undefined;
|
|
14725
|
-
}
|
|
14953
|
+
};
|
|
14726
14954
|
approval?: {
|
|
14727
14955
|
data: string;
|
|
14728
14956
|
value: string;
|
|
@@ -14733,7 +14961,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14733
14961
|
effectiveGas?: number | undefined;
|
|
14734
14962
|
} | undefined;
|
|
14735
14963
|
l1GasFeesInHexWei?: string | undefined;
|
|
14736
|
-
|
|
14964
|
+
nonEvmFeesInNative?: string | undefined;
|
|
14737
14965
|
}[];
|
|
14738
14966
|
dependencies: [({ quotes }: BridgeAppState) => ({
|
|
14739
14967
|
quote: {
|
|
@@ -14878,6 +15106,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14878
15106
|
gasLimit: number | null;
|
|
14879
15107
|
chainId: number;
|
|
14880
15108
|
effectiveGas?: number | undefined;
|
|
15109
|
+
} | {
|
|
15110
|
+
unsignedPsbtBase64: string;
|
|
15111
|
+
inputsToSign: {}[] | null;
|
|
14881
15112
|
};
|
|
14882
15113
|
approval?: {
|
|
14883
15114
|
data: string;
|
|
@@ -14907,7 +15138,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14907
15138
|
chainId: number;
|
|
14908
15139
|
effectiveGas?: number | undefined;
|
|
14909
15140
|
} | undefined;
|
|
14910
|
-
} & import("./types.cjs").L1GasFees & import("./types.cjs").
|
|
15141
|
+
} & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
|
|
14911
15142
|
gasFeeEstimates: GasFeeEstimates;
|
|
14912
15143
|
} & MultichainAssetsRatesControllerState & TokenRatesControllerState & CurrencyRateState & Pick<BridgeControllerState, "assetExchangeRates"> & {
|
|
14913
15144
|
participateInMetaMetrics: boolean;
|
|
@@ -15186,6 +15417,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15186
15417
|
gasLimit: number | null;
|
|
15187
15418
|
chainId: number;
|
|
15188
15419
|
effectiveGas?: number | undefined;
|
|
15420
|
+
} | {
|
|
15421
|
+
unsignedPsbtBase64: string;
|
|
15422
|
+
inputsToSign: {}[] | null;
|
|
15189
15423
|
};
|
|
15190
15424
|
approval?: {
|
|
15191
15425
|
data: string;
|