@metamask/bridge-controller 53.0.0 → 53.1.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 +19 -1
- package/dist/bridge-controller.cjs +2 -2
- package/dist/bridge-controller.cjs.map +1 -1
- package/dist/bridge-controller.mjs +2 -2
- package/dist/bridge-controller.mjs.map +1 -1
- package/dist/constants/bridge.cjs +1 -0
- package/dist/constants/bridge.cjs.map +1 -1
- package/dist/constants/bridge.d.cts +1 -1
- package/dist/constants/bridge.d.cts.map +1 -1
- package/dist/constants/bridge.d.mts +1 -1
- package/dist/constants/bridge.d.mts.map +1 -1
- package/dist/constants/bridge.mjs +1 -0
- package/dist/constants/bridge.mjs.map +1 -1
- package/dist/constants/chains.cjs +4 -1
- package/dist/constants/chains.cjs.map +1 -1
- package/dist/constants/chains.d.cts +3 -0
- package/dist/constants/chains.d.cts.map +1 -1
- package/dist/constants/chains.d.mts +3 -0
- package/dist/constants/chains.d.mts.map +1 -1
- package/dist/constants/chains.mjs +3 -0
- package/dist/constants/chains.mjs.map +1 -1
- package/dist/constants/tokens.cjs +10 -0
- package/dist/constants/tokens.cjs.map +1 -1
- package/dist/constants/tokens.d.cts +7 -0
- package/dist/constants/tokens.d.cts.map +1 -1
- package/dist/constants/tokens.d.mts +7 -0
- package/dist/constants/tokens.d.mts.map +1 -1
- package/dist/constants/tokens.mjs +10 -0
- package/dist/constants/tokens.mjs.map +1 -1
- package/dist/selectors.cjs +1 -1
- package/dist/selectors.cjs.map +1 -1
- package/dist/selectors.d.cts +258 -222
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +258 -222
- package/dist/selectors.d.mts.map +1 -1
- package/dist/selectors.mjs +2 -2
- package/dist/selectors.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +3 -2
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +3 -2
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/utils/bridge.cjs +5 -1
- package/dist/utils/bridge.cjs.map +1 -1
- package/dist/utils/bridge.d.cts +10 -1
- package/dist/utils/bridge.d.cts.map +1 -1
- package/dist/utils/bridge.d.mts +10 -1
- package/dist/utils/bridge.d.mts.map +1 -1
- package/dist/utils/bridge.mjs +3 -0
- package/dist/utils/bridge.mjs.map +1 -1
- package/dist/utils/fetch-server-events.cjs +61 -0
- package/dist/utils/fetch-server-events.cjs.map +1 -0
- package/dist/utils/fetch-server-events.d.cts +17 -0
- package/dist/utils/fetch-server-events.d.cts.map +1 -0
- package/dist/utils/fetch-server-events.d.mts +17 -0
- package/dist/utils/fetch-server-events.d.mts.map +1 -0
- package/dist/utils/fetch-server-events.mjs +57 -0
- package/dist/utils/fetch-server-events.mjs.map +1 -0
- package/dist/utils/fetch.cjs +14 -24
- 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 +15 -25
- package/dist/utils/fetch.mjs.map +1 -1
- package/dist/utils/quote-fees.cjs.map +1 -1
- package/dist/utils/quote-fees.mjs.map +1 -1
- package/dist/utils/quote.cjs +2 -1
- package/dist/utils/quote.cjs.map +1 -1
- package/dist/utils/quote.d.cts +3 -3
- package/dist/utils/quote.d.cts.map +1 -1
- package/dist/utils/quote.d.mts +3 -3
- package/dist/utils/quote.d.mts.map +1 -1
- package/dist/utils/quote.mjs +2 -1
- package/dist/utils/quote.mjs.map +1 -1
- package/dist/utils/validators.cjs +1 -12
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +0 -972
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +0 -972
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +0 -10
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +1 -2
package/dist/selectors.d.cts
CHANGED
|
@@ -971,7 +971,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
971
971
|
effectiveGas?: number | undefined;
|
|
972
972
|
} | undefined;
|
|
973
973
|
} & {
|
|
974
|
-
trade: {
|
|
974
|
+
trade: string | {
|
|
975
975
|
data: string;
|
|
976
976
|
value: string;
|
|
977
977
|
to: string;
|
|
@@ -979,6 +979,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
979
979
|
gasLimit: number | null;
|
|
980
980
|
chainId: number;
|
|
981
981
|
effectiveGas?: number | undefined;
|
|
982
|
+
} | {
|
|
983
|
+
unsignedPsbtBase64: string;
|
|
984
|
+
inputsToSign: {}[] | null;
|
|
982
985
|
};
|
|
983
986
|
approval?: {
|
|
984
987
|
data: string;
|
|
@@ -1148,7 +1151,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1148
1151
|
effectiveGas?: number | undefined;
|
|
1149
1152
|
} | undefined;
|
|
1150
1153
|
} & {
|
|
1151
|
-
trade: {
|
|
1154
|
+
trade: string | {
|
|
1152
1155
|
data: string;
|
|
1153
1156
|
value: string;
|
|
1154
1157
|
to: string;
|
|
@@ -1156,6 +1159,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1156
1159
|
gasLimit: number | null;
|
|
1157
1160
|
chainId: number;
|
|
1158
1161
|
effectiveGas?: number | undefined;
|
|
1162
|
+
} | {
|
|
1163
|
+
unsignedPsbtBase64: string;
|
|
1164
|
+
inputsToSign: {}[] | null;
|
|
1159
1165
|
};
|
|
1160
1166
|
approval?: {
|
|
1161
1167
|
data: string;
|
|
@@ -1325,7 +1331,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1325
1331
|
effectiveGas?: number | undefined;
|
|
1326
1332
|
} | undefined;
|
|
1327
1333
|
} & {
|
|
1328
|
-
trade: {
|
|
1334
|
+
trade: string | {
|
|
1329
1335
|
data: string;
|
|
1330
1336
|
value: string;
|
|
1331
1337
|
to: string;
|
|
@@ -1333,6 +1339,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1333
1339
|
gasLimit: number | null;
|
|
1334
1340
|
chainId: number;
|
|
1335
1341
|
effectiveGas?: number | undefined;
|
|
1342
|
+
} | {
|
|
1343
|
+
unsignedPsbtBase64: string;
|
|
1344
|
+
inputsToSign: {}[] | null;
|
|
1336
1345
|
};
|
|
1337
1346
|
approval?: {
|
|
1338
1347
|
data: string;
|
|
@@ -1513,7 +1522,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1513
1522
|
effectiveGas?: number | undefined;
|
|
1514
1523
|
} | undefined;
|
|
1515
1524
|
} & {
|
|
1516
|
-
trade: {
|
|
1525
|
+
trade: string | {
|
|
1517
1526
|
data: string;
|
|
1518
1527
|
value: string;
|
|
1519
1528
|
to: string;
|
|
@@ -1521,6 +1530,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1521
1530
|
gasLimit: number | null;
|
|
1522
1531
|
chainId: number;
|
|
1523
1532
|
effectiveGas?: number | undefined;
|
|
1533
|
+
} | {
|
|
1534
|
+
unsignedPsbtBase64: string;
|
|
1535
|
+
inputsToSign: {}[] | null;
|
|
1524
1536
|
};
|
|
1525
1537
|
approval?: {
|
|
1526
1538
|
data: string;
|
|
@@ -1689,7 +1701,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1689
1701
|
effectiveGas?: number | undefined;
|
|
1690
1702
|
} | undefined;
|
|
1691
1703
|
} & {
|
|
1692
|
-
trade: {
|
|
1704
|
+
trade: string | {
|
|
1693
1705
|
data: string;
|
|
1694
1706
|
value: string;
|
|
1695
1707
|
to: string;
|
|
@@ -1697,6 +1709,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1697
1709
|
gasLimit: number | null;
|
|
1698
1710
|
chainId: number;
|
|
1699
1711
|
effectiveGas?: number | undefined;
|
|
1712
|
+
} | {
|
|
1713
|
+
unsignedPsbtBase64: string;
|
|
1714
|
+
inputsToSign: {}[] | null;
|
|
1700
1715
|
};
|
|
1701
1716
|
approval?: {
|
|
1702
1717
|
data: string;
|
|
@@ -1865,7 +1880,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1865
1880
|
effectiveGas?: number | undefined;
|
|
1866
1881
|
} | undefined;
|
|
1867
1882
|
} & {
|
|
1868
|
-
trade: {
|
|
1883
|
+
trade: string | {
|
|
1869
1884
|
data: string;
|
|
1870
1885
|
value: string;
|
|
1871
1886
|
to: string;
|
|
@@ -1873,6 +1888,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1873
1888
|
gasLimit: number | null;
|
|
1874
1889
|
chainId: number;
|
|
1875
1890
|
effectiveGas?: number | undefined;
|
|
1891
|
+
} | {
|
|
1892
|
+
unsignedPsbtBase64: string;
|
|
1893
|
+
inputsToSign: {}[] | null;
|
|
1876
1894
|
};
|
|
1877
1895
|
approval?: {
|
|
1878
1896
|
data: string;
|
|
@@ -2042,7 +2060,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2042
2060
|
effectiveGas?: number | undefined;
|
|
2043
2061
|
} | undefined;
|
|
2044
2062
|
} & {
|
|
2045
|
-
trade: {
|
|
2063
|
+
trade: string | {
|
|
2046
2064
|
data: string;
|
|
2047
2065
|
value: string;
|
|
2048
2066
|
to: string;
|
|
@@ -2050,6 +2068,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2050
2068
|
gasLimit: number | null;
|
|
2051
2069
|
chainId: number;
|
|
2052
2070
|
effectiveGas?: number | undefined;
|
|
2071
|
+
} | {
|
|
2072
|
+
unsignedPsbtBase64: string;
|
|
2073
|
+
inputsToSign: {}[] | null;
|
|
2053
2074
|
};
|
|
2054
2075
|
approval?: {
|
|
2055
2076
|
data: string;
|
|
@@ -2219,7 +2240,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2219
2240
|
effectiveGas?: number | undefined;
|
|
2220
2241
|
} | undefined;
|
|
2221
2242
|
} & {
|
|
2222
|
-
trade: {
|
|
2243
|
+
trade: string | {
|
|
2223
2244
|
data: string;
|
|
2224
2245
|
value: string;
|
|
2225
2246
|
to: string;
|
|
@@ -2227,6 +2248,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2227
2248
|
gasLimit: number | null;
|
|
2228
2249
|
chainId: number;
|
|
2229
2250
|
effectiveGas?: number | undefined;
|
|
2251
|
+
} | {
|
|
2252
|
+
unsignedPsbtBase64: string;
|
|
2253
|
+
inputsToSign: {}[] | null;
|
|
2230
2254
|
};
|
|
2231
2255
|
approval?: {
|
|
2232
2256
|
data: string;
|
|
@@ -2396,7 +2420,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2396
2420
|
effectiveGas?: number | undefined;
|
|
2397
2421
|
} | undefined;
|
|
2398
2422
|
} & {
|
|
2399
|
-
trade: {
|
|
2423
|
+
trade: string | {
|
|
2400
2424
|
data: string;
|
|
2401
2425
|
value: string;
|
|
2402
2426
|
to: string;
|
|
@@ -2404,6 +2428,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2404
2428
|
gasLimit: number | null;
|
|
2405
2429
|
chainId: number;
|
|
2406
2430
|
effectiveGas?: number | undefined;
|
|
2431
|
+
} | {
|
|
2432
|
+
unsignedPsbtBase64: string;
|
|
2433
|
+
inputsToSign: {}[] | null;
|
|
2407
2434
|
};
|
|
2408
2435
|
approval?: {
|
|
2409
2436
|
data: string;
|
|
@@ -2580,7 +2607,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2580
2607
|
effectiveGas?: number | undefined;
|
|
2581
2608
|
} | undefined;
|
|
2582
2609
|
} & {
|
|
2583
|
-
trade: {
|
|
2610
|
+
trade: string | {
|
|
2584
2611
|
data: string;
|
|
2585
2612
|
value: string;
|
|
2586
2613
|
to: string;
|
|
@@ -2588,6 +2615,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2588
2615
|
gasLimit: number | null;
|
|
2589
2616
|
chainId: number;
|
|
2590
2617
|
effectiveGas?: number | undefined;
|
|
2618
|
+
} | {
|
|
2619
|
+
unsignedPsbtBase64: string;
|
|
2620
|
+
inputsToSign: {}[] | null;
|
|
2591
2621
|
};
|
|
2592
2622
|
approval?: {
|
|
2593
2623
|
data: string;
|
|
@@ -2756,7 +2786,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2756
2786
|
effectiveGas?: number | undefined;
|
|
2757
2787
|
} | undefined;
|
|
2758
2788
|
} & {
|
|
2759
|
-
trade: {
|
|
2789
|
+
trade: string | {
|
|
2760
2790
|
data: string;
|
|
2761
2791
|
value: string;
|
|
2762
2792
|
to: string;
|
|
@@ -2764,6 +2794,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2764
2794
|
gasLimit: number | null;
|
|
2765
2795
|
chainId: number;
|
|
2766
2796
|
effectiveGas?: number | undefined;
|
|
2797
|
+
} | {
|
|
2798
|
+
unsignedPsbtBase64: string;
|
|
2799
|
+
inputsToSign: {}[] | null;
|
|
2767
2800
|
};
|
|
2768
2801
|
approval?: {
|
|
2769
2802
|
data: string;
|
|
@@ -2932,7 +2965,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2932
2965
|
effectiveGas?: number | undefined;
|
|
2933
2966
|
} | undefined;
|
|
2934
2967
|
} & {
|
|
2935
|
-
trade: {
|
|
2968
|
+
trade: string | {
|
|
2936
2969
|
data: string;
|
|
2937
2970
|
value: string;
|
|
2938
2971
|
to: string;
|
|
@@ -2940,6 +2973,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2940
2973
|
gasLimit: number | null;
|
|
2941
2974
|
chainId: number;
|
|
2942
2975
|
effectiveGas?: number | undefined;
|
|
2976
|
+
} | {
|
|
2977
|
+
unsignedPsbtBase64: string;
|
|
2978
|
+
inputsToSign: {}[] | null;
|
|
2943
2979
|
};
|
|
2944
2980
|
approval?: {
|
|
2945
2981
|
data: string;
|
|
@@ -3109,7 +3145,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3109
3145
|
effectiveGas?: number | undefined;
|
|
3110
3146
|
} | undefined;
|
|
3111
3147
|
} & {
|
|
3112
|
-
trade: {
|
|
3148
|
+
trade: string | {
|
|
3113
3149
|
data: string;
|
|
3114
3150
|
value: string;
|
|
3115
3151
|
to: string;
|
|
@@ -3117,6 +3153,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3117
3153
|
gasLimit: number | null;
|
|
3118
3154
|
chainId: number;
|
|
3119
3155
|
effectiveGas?: number | undefined;
|
|
3156
|
+
} | {
|
|
3157
|
+
unsignedPsbtBase64: string;
|
|
3158
|
+
inputsToSign: {}[] | null;
|
|
3120
3159
|
};
|
|
3121
3160
|
approval?: {
|
|
3122
3161
|
data: string;
|
|
@@ -3286,7 +3325,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3286
3325
|
effectiveGas?: number | undefined;
|
|
3287
3326
|
} | undefined;
|
|
3288
3327
|
} & {
|
|
3289
|
-
trade: {
|
|
3328
|
+
trade: string | {
|
|
3290
3329
|
data: string;
|
|
3291
3330
|
value: string;
|
|
3292
3331
|
to: string;
|
|
@@ -3294,6 +3333,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3294
3333
|
gasLimit: number | null;
|
|
3295
3334
|
chainId: number;
|
|
3296
3335
|
effectiveGas?: number | undefined;
|
|
3336
|
+
} | {
|
|
3337
|
+
unsignedPsbtBase64: string;
|
|
3338
|
+
inputsToSign: {}[] | null;
|
|
3297
3339
|
};
|
|
3298
3340
|
approval?: {
|
|
3299
3341
|
data: string;
|
|
@@ -3463,7 +3505,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3463
3505
|
effectiveGas?: number | undefined;
|
|
3464
3506
|
} | undefined;
|
|
3465
3507
|
} & {
|
|
3466
|
-
trade: {
|
|
3508
|
+
trade: string | {
|
|
3467
3509
|
data: string;
|
|
3468
3510
|
value: string;
|
|
3469
3511
|
to: string;
|
|
@@ -3471,6 +3513,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3471
3513
|
gasLimit: number | null;
|
|
3472
3514
|
chainId: number;
|
|
3473
3515
|
effectiveGas?: number | undefined;
|
|
3516
|
+
} | {
|
|
3517
|
+
unsignedPsbtBase64: string;
|
|
3518
|
+
inputsToSign: {}[] | null;
|
|
3474
3519
|
};
|
|
3475
3520
|
approval?: {
|
|
3476
3521
|
data: string;
|
|
@@ -3652,7 +3697,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3652
3697
|
effectiveGas?: number | undefined;
|
|
3653
3698
|
} | undefined;
|
|
3654
3699
|
} & {
|
|
3655
|
-
trade: {
|
|
3700
|
+
trade: string | {
|
|
3656
3701
|
data: string;
|
|
3657
3702
|
value: string;
|
|
3658
3703
|
to: string;
|
|
@@ -3660,6 +3705,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3660
3705
|
gasLimit: number | null;
|
|
3661
3706
|
chainId: number;
|
|
3662
3707
|
effectiveGas?: number | undefined;
|
|
3708
|
+
} | {
|
|
3709
|
+
unsignedPsbtBase64: string;
|
|
3710
|
+
inputsToSign: {}[] | null;
|
|
3663
3711
|
};
|
|
3664
3712
|
approval?: {
|
|
3665
3713
|
data: string;
|
|
@@ -3829,7 +3877,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3829
3877
|
effectiveGas?: number | undefined;
|
|
3830
3878
|
} | undefined;
|
|
3831
3879
|
} & {
|
|
3832
|
-
trade: {
|
|
3880
|
+
trade: string | {
|
|
3833
3881
|
data: string;
|
|
3834
3882
|
value: string;
|
|
3835
3883
|
to: string;
|
|
@@ -3837,6 +3885,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3837
3885
|
gasLimit: number | null;
|
|
3838
3886
|
chainId: number;
|
|
3839
3887
|
effectiveGas?: number | undefined;
|
|
3888
|
+
} | {
|
|
3889
|
+
unsignedPsbtBase64: string;
|
|
3890
|
+
inputsToSign: {}[] | null;
|
|
3840
3891
|
};
|
|
3841
3892
|
approval?: {
|
|
3842
3893
|
data: string;
|
|
@@ -4006,7 +4057,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4006
4057
|
effectiveGas?: number | undefined;
|
|
4007
4058
|
} | undefined;
|
|
4008
4059
|
} & {
|
|
4009
|
-
trade: {
|
|
4060
|
+
trade: string | {
|
|
4010
4061
|
data: string;
|
|
4011
4062
|
value: string;
|
|
4012
4063
|
to: string;
|
|
@@ -4014,6 +4065,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4014
4065
|
gasLimit: number | null;
|
|
4015
4066
|
chainId: number;
|
|
4016
4067
|
effectiveGas?: number | undefined;
|
|
4068
|
+
} | {
|
|
4069
|
+
unsignedPsbtBase64: string;
|
|
4070
|
+
inputsToSign: {}[] | null;
|
|
4017
4071
|
};
|
|
4018
4072
|
approval?: {
|
|
4019
4073
|
data: string;
|
|
@@ -4194,7 +4248,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4194
4248
|
effectiveGas?: number | undefined;
|
|
4195
4249
|
} | undefined;
|
|
4196
4250
|
} & {
|
|
4197
|
-
trade: {
|
|
4251
|
+
trade: string | {
|
|
4198
4252
|
data: string;
|
|
4199
4253
|
value: string;
|
|
4200
4254
|
to: string;
|
|
@@ -4202,6 +4256,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4202
4256
|
gasLimit: number | null;
|
|
4203
4257
|
chainId: number;
|
|
4204
4258
|
effectiveGas?: number | undefined;
|
|
4259
|
+
} | {
|
|
4260
|
+
unsignedPsbtBase64: string;
|
|
4261
|
+
inputsToSign: {}[] | null;
|
|
4205
4262
|
};
|
|
4206
4263
|
approval?: {
|
|
4207
4264
|
data: string;
|
|
@@ -4393,7 +4450,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4393
4450
|
} | undefined;
|
|
4394
4451
|
};
|
|
4395
4452
|
estimatedProcessingTimeInSeconds: number;
|
|
4396
|
-
trade:
|
|
4453
|
+
trade: string | {
|
|
4397
4454
|
data: string;
|
|
4398
4455
|
value: string;
|
|
4399
4456
|
to: string;
|
|
@@ -4404,14 +4461,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4404
4461
|
} | {
|
|
4405
4462
|
unsignedPsbtBase64: string;
|
|
4406
4463
|
inputsToSign: {}[] | null;
|
|
4407
|
-
}) & {
|
|
4408
|
-
data: string;
|
|
4409
|
-
value: string;
|
|
4410
|
-
to: string;
|
|
4411
|
-
from: string;
|
|
4412
|
-
gasLimit: number | null;
|
|
4413
|
-
chainId: number;
|
|
4414
|
-
effectiveGas?: number | undefined;
|
|
4415
4464
|
};
|
|
4416
4465
|
approval?: {
|
|
4417
4466
|
data: string;
|
|
@@ -4582,7 +4631,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4582
4631
|
effectiveGas?: number | undefined;
|
|
4583
4632
|
} | undefined;
|
|
4584
4633
|
} & {
|
|
4585
|
-
trade: {
|
|
4634
|
+
trade: string | {
|
|
4586
4635
|
data: string;
|
|
4587
4636
|
value: string;
|
|
4588
4637
|
to: string;
|
|
@@ -4590,6 +4639,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4590
4639
|
gasLimit: number | null;
|
|
4591
4640
|
chainId: number;
|
|
4592
4641
|
effectiveGas?: number | undefined;
|
|
4642
|
+
} | {
|
|
4643
|
+
unsignedPsbtBase64: string;
|
|
4644
|
+
inputsToSign: {}[] | null;
|
|
4593
4645
|
};
|
|
4594
4646
|
approval?: {
|
|
4595
4647
|
data: string;
|
|
@@ -4777,7 +4829,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4777
4829
|
} | undefined;
|
|
4778
4830
|
};
|
|
4779
4831
|
estimatedProcessingTimeInSeconds: number;
|
|
4780
|
-
trade:
|
|
4832
|
+
trade: string | {
|
|
4781
4833
|
data: string;
|
|
4782
4834
|
value: string;
|
|
4783
4835
|
to: string;
|
|
@@ -4788,14 +4840,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4788
4840
|
} | {
|
|
4789
4841
|
unsignedPsbtBase64: string;
|
|
4790
4842
|
inputsToSign: {}[] | null;
|
|
4791
|
-
}) & {
|
|
4792
|
-
data: string;
|
|
4793
|
-
value: string;
|
|
4794
|
-
to: string;
|
|
4795
|
-
from: string;
|
|
4796
|
-
gasLimit: number | null;
|
|
4797
|
-
chainId: number;
|
|
4798
|
-
effectiveGas?: number | undefined;
|
|
4799
4843
|
};
|
|
4800
4844
|
approval?: {
|
|
4801
4845
|
data: string;
|
|
@@ -4966,7 +5010,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4966
5010
|
effectiveGas?: number | undefined;
|
|
4967
5011
|
} | undefined;
|
|
4968
5012
|
} & {
|
|
4969
|
-
trade: {
|
|
5013
|
+
trade: string | {
|
|
4970
5014
|
data: string;
|
|
4971
5015
|
value: string;
|
|
4972
5016
|
to: string;
|
|
@@ -4974,6 +5018,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4974
5018
|
gasLimit: number | null;
|
|
4975
5019
|
chainId: number;
|
|
4976
5020
|
effectiveGas?: number | undefined;
|
|
5021
|
+
} | {
|
|
5022
|
+
unsignedPsbtBase64: string;
|
|
5023
|
+
inputsToSign: {}[] | null;
|
|
4977
5024
|
};
|
|
4978
5025
|
approval?: {
|
|
4979
5026
|
data: string;
|
|
@@ -5147,7 +5194,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5147
5194
|
effectiveGas?: number | undefined;
|
|
5148
5195
|
} | undefined;
|
|
5149
5196
|
} & {
|
|
5150
|
-
trade: {
|
|
5197
|
+
trade: string | {
|
|
5151
5198
|
data: string;
|
|
5152
5199
|
value: string;
|
|
5153
5200
|
to: string;
|
|
@@ -5155,6 +5202,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5155
5202
|
gasLimit: number | null;
|
|
5156
5203
|
chainId: number;
|
|
5157
5204
|
effectiveGas?: number | undefined;
|
|
5205
|
+
} | {
|
|
5206
|
+
unsignedPsbtBase64: string;
|
|
5207
|
+
inputsToSign: {}[] | null;
|
|
5158
5208
|
};
|
|
5159
5209
|
approval?: {
|
|
5160
5210
|
data: string;
|
|
@@ -5346,7 +5396,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5346
5396
|
} | undefined;
|
|
5347
5397
|
};
|
|
5348
5398
|
estimatedProcessingTimeInSeconds: number;
|
|
5349
|
-
trade:
|
|
5399
|
+
trade: string | {
|
|
5350
5400
|
data: string;
|
|
5351
5401
|
value: string;
|
|
5352
5402
|
to: string;
|
|
@@ -5357,14 +5407,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5357
5407
|
} | {
|
|
5358
5408
|
unsignedPsbtBase64: string;
|
|
5359
5409
|
inputsToSign: {}[] | null;
|
|
5360
|
-
}) & {
|
|
5361
|
-
data: string;
|
|
5362
|
-
value: string;
|
|
5363
|
-
to: string;
|
|
5364
|
-
from: string;
|
|
5365
|
-
gasLimit: number | null;
|
|
5366
|
-
chainId: number;
|
|
5367
|
-
effectiveGas?: number | undefined;
|
|
5368
5410
|
};
|
|
5369
5411
|
approval?: {
|
|
5370
5412
|
data: string;
|
|
@@ -5540,7 +5582,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5540
5582
|
effectiveGas?: number | undefined;
|
|
5541
5583
|
} | undefined;
|
|
5542
5584
|
} & {
|
|
5543
|
-
trade: {
|
|
5585
|
+
trade: string | {
|
|
5544
5586
|
data: string;
|
|
5545
5587
|
value: string;
|
|
5546
5588
|
to: string;
|
|
@@ -5548,6 +5590,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5548
5590
|
gasLimit: number | null;
|
|
5549
5591
|
chainId: number;
|
|
5550
5592
|
effectiveGas?: number | undefined;
|
|
5593
|
+
} | {
|
|
5594
|
+
unsignedPsbtBase64: string;
|
|
5595
|
+
inputsToSign: {}[] | null;
|
|
5551
5596
|
};
|
|
5552
5597
|
approval?: {
|
|
5553
5598
|
data: string;
|
|
@@ -5738,7 +5783,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5738
5783
|
} | undefined;
|
|
5739
5784
|
};
|
|
5740
5785
|
estimatedProcessingTimeInSeconds: number;
|
|
5741
|
-
trade:
|
|
5786
|
+
trade: string | {
|
|
5742
5787
|
data: string;
|
|
5743
5788
|
value: string;
|
|
5744
5789
|
to: string;
|
|
@@ -5749,14 +5794,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5749
5794
|
} | {
|
|
5750
5795
|
unsignedPsbtBase64: string;
|
|
5751
5796
|
inputsToSign: {}[] | null;
|
|
5752
|
-
}) & {
|
|
5753
|
-
data: string;
|
|
5754
|
-
value: string;
|
|
5755
|
-
to: string;
|
|
5756
|
-
from: string;
|
|
5757
|
-
gasLimit: number | null;
|
|
5758
|
-
chainId: number;
|
|
5759
|
-
effectiveGas?: number | undefined;
|
|
5760
5797
|
};
|
|
5761
5798
|
approval?: {
|
|
5762
5799
|
data: string;
|
|
@@ -5928,7 +5965,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5928
5965
|
effectiveGas?: number | undefined;
|
|
5929
5966
|
} | undefined;
|
|
5930
5967
|
} & {
|
|
5931
|
-
trade: {
|
|
5968
|
+
trade: string | {
|
|
5932
5969
|
data: string;
|
|
5933
5970
|
value: string;
|
|
5934
5971
|
to: string;
|
|
@@ -5936,6 +5973,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5936
5973
|
gasLimit: number | null;
|
|
5937
5974
|
chainId: number;
|
|
5938
5975
|
effectiveGas?: number | undefined;
|
|
5976
|
+
} | {
|
|
5977
|
+
unsignedPsbtBase64: string;
|
|
5978
|
+
inputsToSign: {}[] | null;
|
|
5939
5979
|
};
|
|
5940
5980
|
approval?: {
|
|
5941
5981
|
data: string;
|
|
@@ -6126,7 +6166,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6126
6166
|
} | undefined;
|
|
6127
6167
|
};
|
|
6128
6168
|
estimatedProcessingTimeInSeconds: number;
|
|
6129
|
-
trade:
|
|
6169
|
+
trade: string | {
|
|
6130
6170
|
data: string;
|
|
6131
6171
|
value: string;
|
|
6132
6172
|
to: string;
|
|
@@ -6137,14 +6177,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6137
6177
|
} | {
|
|
6138
6178
|
unsignedPsbtBase64: string;
|
|
6139
6179
|
inputsToSign: {}[] | null;
|
|
6140
|
-
}) & {
|
|
6141
|
-
data: string;
|
|
6142
|
-
value: string;
|
|
6143
|
-
to: string;
|
|
6144
|
-
from: string;
|
|
6145
|
-
gasLimit: number | null;
|
|
6146
|
-
chainId: number;
|
|
6147
|
-
effectiveGas?: number | undefined;
|
|
6148
6180
|
};
|
|
6149
6181
|
approval?: {
|
|
6150
6182
|
data: string;
|
|
@@ -6338,7 +6370,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6338
6370
|
} | undefined;
|
|
6339
6371
|
};
|
|
6340
6372
|
estimatedProcessingTimeInSeconds: number;
|
|
6341
|
-
trade:
|
|
6373
|
+
trade: string | {
|
|
6342
6374
|
data: string;
|
|
6343
6375
|
value: string;
|
|
6344
6376
|
to: string;
|
|
@@ -6349,14 +6381,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6349
6381
|
} | {
|
|
6350
6382
|
unsignedPsbtBase64: string;
|
|
6351
6383
|
inputsToSign: {}[] | null;
|
|
6352
|
-
}) & {
|
|
6353
|
-
data: string;
|
|
6354
|
-
value: string;
|
|
6355
|
-
to: string;
|
|
6356
|
-
from: string;
|
|
6357
|
-
gasLimit: number | null;
|
|
6358
|
-
chainId: number;
|
|
6359
|
-
effectiveGas?: number | undefined;
|
|
6360
6384
|
};
|
|
6361
6385
|
approval?: {
|
|
6362
6386
|
data: string;
|
|
@@ -6528,7 +6552,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6528
6552
|
effectiveGas?: number | undefined;
|
|
6529
6553
|
} | undefined;
|
|
6530
6554
|
} & {
|
|
6531
|
-
trade: {
|
|
6555
|
+
trade: string | {
|
|
6532
6556
|
data: string;
|
|
6533
6557
|
value: string;
|
|
6534
6558
|
to: string;
|
|
@@ -6536,6 +6560,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6536
6560
|
gasLimit: number | null;
|
|
6537
6561
|
chainId: number;
|
|
6538
6562
|
effectiveGas?: number | undefined;
|
|
6563
|
+
} | {
|
|
6564
|
+
unsignedPsbtBase64: string;
|
|
6565
|
+
inputsToSign: {}[] | null;
|
|
6539
6566
|
};
|
|
6540
6567
|
approval?: {
|
|
6541
6568
|
data: string;
|
|
@@ -6836,7 +6863,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6836
6863
|
effectiveGas?: number | undefined;
|
|
6837
6864
|
} | undefined;
|
|
6838
6865
|
} & {
|
|
6839
|
-
trade: {
|
|
6866
|
+
trade: string | {
|
|
6840
6867
|
data: string;
|
|
6841
6868
|
value: string;
|
|
6842
6869
|
to: string;
|
|
@@ -6844,6 +6871,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6844
6871
|
gasLimit: number | null;
|
|
6845
6872
|
chainId: number;
|
|
6846
6873
|
effectiveGas?: number | undefined;
|
|
6874
|
+
} | {
|
|
6875
|
+
unsignedPsbtBase64: string;
|
|
6876
|
+
inputsToSign: {}[] | null;
|
|
6847
6877
|
};
|
|
6848
6878
|
approval?: {
|
|
6849
6879
|
data: string;
|
|
@@ -7017,7 +7047,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7017
7047
|
effectiveGas?: number | undefined;
|
|
7018
7048
|
} | undefined;
|
|
7019
7049
|
} & {
|
|
7020
|
-
trade: {
|
|
7050
|
+
trade: string | {
|
|
7021
7051
|
data: string;
|
|
7022
7052
|
value: string;
|
|
7023
7053
|
to: string;
|
|
@@ -7025,6 +7055,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7025
7055
|
gasLimit: number | null;
|
|
7026
7056
|
chainId: number;
|
|
7027
7057
|
effectiveGas?: number | undefined;
|
|
7058
|
+
} | {
|
|
7059
|
+
unsignedPsbtBase64: string;
|
|
7060
|
+
inputsToSign: {}[] | null;
|
|
7028
7061
|
};
|
|
7029
7062
|
approval?: {
|
|
7030
7063
|
data: string;
|
|
@@ -7193,7 +7226,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7193
7226
|
effectiveGas?: number | undefined;
|
|
7194
7227
|
} | undefined;
|
|
7195
7228
|
} & {
|
|
7196
|
-
trade: {
|
|
7229
|
+
trade: string | {
|
|
7197
7230
|
data: string;
|
|
7198
7231
|
value: string;
|
|
7199
7232
|
to: string;
|
|
@@ -7201,6 +7234,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7201
7234
|
gasLimit: number | null;
|
|
7202
7235
|
chainId: number;
|
|
7203
7236
|
effectiveGas?: number | undefined;
|
|
7237
|
+
} | {
|
|
7238
|
+
unsignedPsbtBase64: string;
|
|
7239
|
+
inputsToSign: {}[] | null;
|
|
7204
7240
|
};
|
|
7205
7241
|
approval?: {
|
|
7206
7242
|
data: string;
|
|
@@ -7370,7 +7406,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7370
7406
|
effectiveGas?: number | undefined;
|
|
7371
7407
|
} | undefined;
|
|
7372
7408
|
} & {
|
|
7373
|
-
trade: {
|
|
7409
|
+
trade: string | {
|
|
7374
7410
|
data: string;
|
|
7375
7411
|
value: string;
|
|
7376
7412
|
to: string;
|
|
@@ -7378,6 +7414,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7378
7414
|
gasLimit: number | null;
|
|
7379
7415
|
chainId: number;
|
|
7380
7416
|
effectiveGas?: number | undefined;
|
|
7417
|
+
} | {
|
|
7418
|
+
unsignedPsbtBase64: string;
|
|
7419
|
+
inputsToSign: {}[] | null;
|
|
7381
7420
|
};
|
|
7382
7421
|
approval?: {
|
|
7383
7422
|
data: string;
|
|
@@ -7546,7 +7585,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7546
7585
|
effectiveGas?: number | undefined;
|
|
7547
7586
|
} | undefined;
|
|
7548
7587
|
} & {
|
|
7549
|
-
trade: {
|
|
7588
|
+
trade: string | {
|
|
7550
7589
|
data: string;
|
|
7551
7590
|
value: string;
|
|
7552
7591
|
to: string;
|
|
@@ -7554,6 +7593,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7554
7593
|
gasLimit: number | null;
|
|
7555
7594
|
chainId: number;
|
|
7556
7595
|
effectiveGas?: number | undefined;
|
|
7596
|
+
} | {
|
|
7597
|
+
unsignedPsbtBase64: string;
|
|
7598
|
+
inputsToSign: {}[] | null;
|
|
7557
7599
|
};
|
|
7558
7600
|
approval?: {
|
|
7559
7601
|
data: string;
|
|
@@ -7727,7 +7769,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7727
7769
|
effectiveGas?: number | undefined;
|
|
7728
7770
|
} | undefined;
|
|
7729
7771
|
} & {
|
|
7730
|
-
trade: {
|
|
7772
|
+
trade: string | {
|
|
7731
7773
|
data: string;
|
|
7732
7774
|
value: string;
|
|
7733
7775
|
to: string;
|
|
@@ -7735,6 +7777,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7735
7777
|
gasLimit: number | null;
|
|
7736
7778
|
chainId: number;
|
|
7737
7779
|
effectiveGas?: number | undefined;
|
|
7780
|
+
} | {
|
|
7781
|
+
unsignedPsbtBase64: string;
|
|
7782
|
+
inputsToSign: {}[] | null;
|
|
7738
7783
|
};
|
|
7739
7784
|
approval?: {
|
|
7740
7785
|
data: string;
|
|
@@ -7908,7 +7953,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7908
7953
|
effectiveGas?: number | undefined;
|
|
7909
7954
|
} | undefined;
|
|
7910
7955
|
} & {
|
|
7911
|
-
trade: {
|
|
7956
|
+
trade: string | {
|
|
7912
7957
|
data: string;
|
|
7913
7958
|
value: string;
|
|
7914
7959
|
to: string;
|
|
@@ -7916,6 +7961,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7916
7961
|
gasLimit: number | null;
|
|
7917
7962
|
chainId: number;
|
|
7918
7963
|
effectiveGas?: number | undefined;
|
|
7964
|
+
} | {
|
|
7965
|
+
unsignedPsbtBase64: string;
|
|
7966
|
+
inputsToSign: {}[] | null;
|
|
7919
7967
|
};
|
|
7920
7968
|
approval?: {
|
|
7921
7969
|
data: string;
|
|
@@ -8107,7 +8155,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8107
8155
|
} | undefined;
|
|
8108
8156
|
};
|
|
8109
8157
|
estimatedProcessingTimeInSeconds: number;
|
|
8110
|
-
trade:
|
|
8158
|
+
trade: string | {
|
|
8111
8159
|
data: string;
|
|
8112
8160
|
value: string;
|
|
8113
8161
|
to: string;
|
|
@@ -8118,14 +8166,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8118
8166
|
} | {
|
|
8119
8167
|
unsignedPsbtBase64: string;
|
|
8120
8168
|
inputsToSign: {}[] | null;
|
|
8121
|
-
}) & {
|
|
8122
|
-
data: string;
|
|
8123
|
-
value: string;
|
|
8124
|
-
to: string;
|
|
8125
|
-
from: string;
|
|
8126
|
-
gasLimit: number | null;
|
|
8127
|
-
chainId: number;
|
|
8128
|
-
effectiveGas?: number | undefined;
|
|
8129
8169
|
};
|
|
8130
8170
|
approval?: {
|
|
8131
8171
|
data: string;
|
|
@@ -8296,7 +8336,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8296
8336
|
effectiveGas?: number | undefined;
|
|
8297
8337
|
} | undefined;
|
|
8298
8338
|
} & {
|
|
8299
|
-
trade: {
|
|
8339
|
+
trade: string | {
|
|
8300
8340
|
data: string;
|
|
8301
8341
|
value: string;
|
|
8302
8342
|
to: string;
|
|
@@ -8304,6 +8344,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8304
8344
|
gasLimit: number | null;
|
|
8305
8345
|
chainId: number;
|
|
8306
8346
|
effectiveGas?: number | undefined;
|
|
8347
|
+
} | {
|
|
8348
|
+
unsignedPsbtBase64: string;
|
|
8349
|
+
inputsToSign: {}[] | null;
|
|
8307
8350
|
};
|
|
8308
8351
|
approval?: {
|
|
8309
8352
|
data: string;
|
|
@@ -8491,7 +8534,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8491
8534
|
} | undefined;
|
|
8492
8535
|
};
|
|
8493
8536
|
estimatedProcessingTimeInSeconds: number;
|
|
8494
|
-
trade:
|
|
8537
|
+
trade: string | {
|
|
8495
8538
|
data: string;
|
|
8496
8539
|
value: string;
|
|
8497
8540
|
to: string;
|
|
@@ -8502,14 +8545,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8502
8545
|
} | {
|
|
8503
8546
|
unsignedPsbtBase64: string;
|
|
8504
8547
|
inputsToSign: {}[] | null;
|
|
8505
|
-
}) & {
|
|
8506
|
-
data: string;
|
|
8507
|
-
value: string;
|
|
8508
|
-
to: string;
|
|
8509
|
-
from: string;
|
|
8510
|
-
gasLimit: number | null;
|
|
8511
|
-
chainId: number;
|
|
8512
|
-
effectiveGas?: number | undefined;
|
|
8513
8548
|
};
|
|
8514
8549
|
approval?: {
|
|
8515
8550
|
data: string;
|
|
@@ -8680,7 +8715,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8680
8715
|
effectiveGas?: number | undefined;
|
|
8681
8716
|
} | undefined;
|
|
8682
8717
|
} & {
|
|
8683
|
-
trade: {
|
|
8718
|
+
trade: string | {
|
|
8684
8719
|
data: string;
|
|
8685
8720
|
value: string;
|
|
8686
8721
|
to: string;
|
|
@@ -8688,6 +8723,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8688
8723
|
gasLimit: number | null;
|
|
8689
8724
|
chainId: number;
|
|
8690
8725
|
effectiveGas?: number | undefined;
|
|
8726
|
+
} | {
|
|
8727
|
+
unsignedPsbtBase64: string;
|
|
8728
|
+
inputsToSign: {}[] | null;
|
|
8691
8729
|
};
|
|
8692
8730
|
approval?: {
|
|
8693
8731
|
data: string;
|
|
@@ -8861,7 +8899,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8861
8899
|
effectiveGas?: number | undefined;
|
|
8862
8900
|
} | undefined;
|
|
8863
8901
|
} & {
|
|
8864
|
-
trade: {
|
|
8902
|
+
trade: string | {
|
|
8865
8903
|
data: string;
|
|
8866
8904
|
value: string;
|
|
8867
8905
|
to: string;
|
|
@@ -8869,6 +8907,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8869
8907
|
gasLimit: number | null;
|
|
8870
8908
|
chainId: number;
|
|
8871
8909
|
effectiveGas?: number | undefined;
|
|
8910
|
+
} | {
|
|
8911
|
+
unsignedPsbtBase64: string;
|
|
8912
|
+
inputsToSign: {}[] | null;
|
|
8872
8913
|
};
|
|
8873
8914
|
approval?: {
|
|
8874
8915
|
data: string;
|
|
@@ -9060,7 +9101,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9060
9101
|
} | undefined;
|
|
9061
9102
|
};
|
|
9062
9103
|
estimatedProcessingTimeInSeconds: number;
|
|
9063
|
-
trade:
|
|
9104
|
+
trade: string | {
|
|
9064
9105
|
data: string;
|
|
9065
9106
|
value: string;
|
|
9066
9107
|
to: string;
|
|
@@ -9071,14 +9112,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9071
9112
|
} | {
|
|
9072
9113
|
unsignedPsbtBase64: string;
|
|
9073
9114
|
inputsToSign: {}[] | null;
|
|
9074
|
-
}) & {
|
|
9075
|
-
data: string;
|
|
9076
|
-
value: string;
|
|
9077
|
-
to: string;
|
|
9078
|
-
from: string;
|
|
9079
|
-
gasLimit: number | null;
|
|
9080
|
-
chainId: number;
|
|
9081
|
-
effectiveGas?: number | undefined;
|
|
9082
9115
|
};
|
|
9083
9116
|
approval?: {
|
|
9084
9117
|
data: string;
|
|
@@ -9254,7 +9287,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9254
9287
|
effectiveGas?: number | undefined;
|
|
9255
9288
|
} | undefined;
|
|
9256
9289
|
} & {
|
|
9257
|
-
trade: {
|
|
9290
|
+
trade: string | {
|
|
9258
9291
|
data: string;
|
|
9259
9292
|
value: string;
|
|
9260
9293
|
to: string;
|
|
@@ -9262,6 +9295,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9262
9295
|
gasLimit: number | null;
|
|
9263
9296
|
chainId: number;
|
|
9264
9297
|
effectiveGas?: number | undefined;
|
|
9298
|
+
} | {
|
|
9299
|
+
unsignedPsbtBase64: string;
|
|
9300
|
+
inputsToSign: {}[] | null;
|
|
9265
9301
|
};
|
|
9266
9302
|
approval?: {
|
|
9267
9303
|
data: string;
|
|
@@ -9452,7 +9488,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9452
9488
|
} | undefined;
|
|
9453
9489
|
};
|
|
9454
9490
|
estimatedProcessingTimeInSeconds: number;
|
|
9455
|
-
trade:
|
|
9491
|
+
trade: string | {
|
|
9456
9492
|
data: string;
|
|
9457
9493
|
value: string;
|
|
9458
9494
|
to: string;
|
|
@@ -9463,14 +9499,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9463
9499
|
} | {
|
|
9464
9500
|
unsignedPsbtBase64: string;
|
|
9465
9501
|
inputsToSign: {}[] | null;
|
|
9466
|
-
}) & {
|
|
9467
|
-
data: string;
|
|
9468
|
-
value: string;
|
|
9469
|
-
to: string;
|
|
9470
|
-
from: string;
|
|
9471
|
-
gasLimit: number | null;
|
|
9472
|
-
chainId: number;
|
|
9473
|
-
effectiveGas?: number | undefined;
|
|
9474
9502
|
};
|
|
9475
9503
|
approval?: {
|
|
9476
9504
|
data: string;
|
|
@@ -9642,7 +9670,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9642
9670
|
effectiveGas?: number | undefined;
|
|
9643
9671
|
} | undefined;
|
|
9644
9672
|
} & {
|
|
9645
|
-
trade: {
|
|
9673
|
+
trade: string | {
|
|
9646
9674
|
data: string;
|
|
9647
9675
|
value: string;
|
|
9648
9676
|
to: string;
|
|
@@ -9650,6 +9678,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9650
9678
|
gasLimit: number | null;
|
|
9651
9679
|
chainId: number;
|
|
9652
9680
|
effectiveGas?: number | undefined;
|
|
9681
|
+
} | {
|
|
9682
|
+
unsignedPsbtBase64: string;
|
|
9683
|
+
inputsToSign: {}[] | null;
|
|
9653
9684
|
};
|
|
9654
9685
|
approval?: {
|
|
9655
9686
|
data: string;
|
|
@@ -9840,7 +9871,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9840
9871
|
} | undefined;
|
|
9841
9872
|
};
|
|
9842
9873
|
estimatedProcessingTimeInSeconds: number;
|
|
9843
|
-
trade:
|
|
9874
|
+
trade: string | {
|
|
9844
9875
|
data: string;
|
|
9845
9876
|
value: string;
|
|
9846
9877
|
to: string;
|
|
@@ -9851,14 +9882,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9851
9882
|
} | {
|
|
9852
9883
|
unsignedPsbtBase64: string;
|
|
9853
9884
|
inputsToSign: {}[] | null;
|
|
9854
|
-
}) & {
|
|
9855
|
-
data: string;
|
|
9856
|
-
value: string;
|
|
9857
|
-
to: string;
|
|
9858
|
-
from: string;
|
|
9859
|
-
gasLimit: number | null;
|
|
9860
|
-
chainId: number;
|
|
9861
|
-
effectiveGas?: number | undefined;
|
|
9862
9885
|
};
|
|
9863
9886
|
approval?: {
|
|
9864
9887
|
data: string;
|
|
@@ -10052,7 +10075,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10052
10075
|
} | undefined;
|
|
10053
10076
|
};
|
|
10054
10077
|
estimatedProcessingTimeInSeconds: number;
|
|
10055
|
-
trade:
|
|
10078
|
+
trade: string | {
|
|
10056
10079
|
data: string;
|
|
10057
10080
|
value: string;
|
|
10058
10081
|
to: string;
|
|
@@ -10063,14 +10086,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10063
10086
|
} | {
|
|
10064
10087
|
unsignedPsbtBase64: string;
|
|
10065
10088
|
inputsToSign: {}[] | null;
|
|
10066
|
-
}) & {
|
|
10067
|
-
data: string;
|
|
10068
|
-
value: string;
|
|
10069
|
-
to: string;
|
|
10070
|
-
from: string;
|
|
10071
|
-
gasLimit: number | null;
|
|
10072
|
-
chainId: number;
|
|
10073
|
-
effectiveGas?: number | undefined;
|
|
10074
10089
|
};
|
|
10075
10090
|
approval?: {
|
|
10076
10091
|
data: string;
|
|
@@ -10242,7 +10257,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10242
10257
|
effectiveGas?: number | undefined;
|
|
10243
10258
|
} | undefined;
|
|
10244
10259
|
} & {
|
|
10245
|
-
trade: {
|
|
10260
|
+
trade: string | {
|
|
10246
10261
|
data: string;
|
|
10247
10262
|
value: string;
|
|
10248
10263
|
to: string;
|
|
@@ -10250,6 +10265,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10250
10265
|
gasLimit: number | null;
|
|
10251
10266
|
chainId: number;
|
|
10252
10267
|
effectiveGas?: number | undefined;
|
|
10268
|
+
} | {
|
|
10269
|
+
unsignedPsbtBase64: string;
|
|
10270
|
+
inputsToSign: {}[] | null;
|
|
10253
10271
|
};
|
|
10254
10272
|
approval?: {
|
|
10255
10273
|
data: string;
|
|
@@ -10558,7 +10576,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10558
10576
|
effectiveGas?: number | undefined;
|
|
10559
10577
|
} | undefined;
|
|
10560
10578
|
} & {
|
|
10561
|
-
trade: {
|
|
10579
|
+
trade: string | {
|
|
10562
10580
|
data: string;
|
|
10563
10581
|
value: string;
|
|
10564
10582
|
to: string;
|
|
@@ -10566,6 +10584,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10566
10584
|
gasLimit: number | null;
|
|
10567
10585
|
chainId: number;
|
|
10568
10586
|
effectiveGas?: number | undefined;
|
|
10587
|
+
} | {
|
|
10588
|
+
unsignedPsbtBase64: string;
|
|
10589
|
+
inputsToSign: {}[] | null;
|
|
10569
10590
|
};
|
|
10570
10591
|
approval?: {
|
|
10571
10592
|
data: string;
|
|
@@ -10739,7 +10760,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10739
10760
|
effectiveGas?: number | undefined;
|
|
10740
10761
|
} | undefined;
|
|
10741
10762
|
} & {
|
|
10742
|
-
trade: {
|
|
10763
|
+
trade: string | {
|
|
10743
10764
|
data: string;
|
|
10744
10765
|
value: string;
|
|
10745
10766
|
to: string;
|
|
@@ -10747,6 +10768,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10747
10768
|
gasLimit: number | null;
|
|
10748
10769
|
chainId: number;
|
|
10749
10770
|
effectiveGas?: number | undefined;
|
|
10771
|
+
} | {
|
|
10772
|
+
unsignedPsbtBase64: string;
|
|
10773
|
+
inputsToSign: {}[] | null;
|
|
10750
10774
|
};
|
|
10751
10775
|
approval?: {
|
|
10752
10776
|
data: string;
|
|
@@ -10915,7 +10939,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10915
10939
|
effectiveGas?: number | undefined;
|
|
10916
10940
|
} | undefined;
|
|
10917
10941
|
} & {
|
|
10918
|
-
trade: {
|
|
10942
|
+
trade: string | {
|
|
10919
10943
|
data: string;
|
|
10920
10944
|
value: string;
|
|
10921
10945
|
to: string;
|
|
@@ -10923,6 +10947,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10923
10947
|
gasLimit: number | null;
|
|
10924
10948
|
chainId: number;
|
|
10925
10949
|
effectiveGas?: number | undefined;
|
|
10950
|
+
} | {
|
|
10951
|
+
unsignedPsbtBase64: string;
|
|
10952
|
+
inputsToSign: {}[] | null;
|
|
10926
10953
|
};
|
|
10927
10954
|
approval?: {
|
|
10928
10955
|
data: string;
|
|
@@ -11091,7 +11118,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11091
11118
|
effectiveGas?: number | undefined;
|
|
11092
11119
|
} | undefined;
|
|
11093
11120
|
} & {
|
|
11094
|
-
trade: {
|
|
11121
|
+
trade: string | {
|
|
11095
11122
|
data: string;
|
|
11096
11123
|
value: string;
|
|
11097
11124
|
to: string;
|
|
@@ -11099,6 +11126,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11099
11126
|
gasLimit: number | null;
|
|
11100
11127
|
chainId: number;
|
|
11101
11128
|
effectiveGas?: number | undefined;
|
|
11129
|
+
} | {
|
|
11130
|
+
unsignedPsbtBase64: string;
|
|
11131
|
+
inputsToSign: {}[] | null;
|
|
11102
11132
|
};
|
|
11103
11133
|
approval?: {
|
|
11104
11134
|
data: string;
|
|
@@ -11268,7 +11298,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11268
11298
|
effectiveGas?: number | undefined;
|
|
11269
11299
|
} | undefined;
|
|
11270
11300
|
} & {
|
|
11271
|
-
trade: {
|
|
11301
|
+
trade: string | {
|
|
11272
11302
|
data: string;
|
|
11273
11303
|
value: string;
|
|
11274
11304
|
to: string;
|
|
@@ -11276,6 +11306,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11276
11306
|
gasLimit: number | null;
|
|
11277
11307
|
chainId: number;
|
|
11278
11308
|
effectiveGas?: number | undefined;
|
|
11309
|
+
} | {
|
|
11310
|
+
unsignedPsbtBase64: string;
|
|
11311
|
+
inputsToSign: {}[] | null;
|
|
11279
11312
|
};
|
|
11280
11313
|
approval?: {
|
|
11281
11314
|
data: string;
|
|
@@ -11444,7 +11477,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11444
11477
|
effectiveGas?: number | undefined;
|
|
11445
11478
|
} | undefined;
|
|
11446
11479
|
} & {
|
|
11447
|
-
trade: {
|
|
11480
|
+
trade: string | {
|
|
11448
11481
|
data: string;
|
|
11449
11482
|
value: string;
|
|
11450
11483
|
to: string;
|
|
@@ -11452,6 +11485,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11452
11485
|
gasLimit: number | null;
|
|
11453
11486
|
chainId: number;
|
|
11454
11487
|
effectiveGas?: number | undefined;
|
|
11488
|
+
} | {
|
|
11489
|
+
unsignedPsbtBase64: string;
|
|
11490
|
+
inputsToSign: {}[] | null;
|
|
11455
11491
|
};
|
|
11456
11492
|
approval?: {
|
|
11457
11493
|
data: string;
|
|
@@ -11620,7 +11656,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11620
11656
|
effectiveGas?: number | undefined;
|
|
11621
11657
|
} | undefined;
|
|
11622
11658
|
} & {
|
|
11623
|
-
trade: {
|
|
11659
|
+
trade: string | {
|
|
11624
11660
|
data: string;
|
|
11625
11661
|
value: string;
|
|
11626
11662
|
to: string;
|
|
@@ -11628,6 +11664,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11628
11664
|
gasLimit: number | null;
|
|
11629
11665
|
chainId: number;
|
|
11630
11666
|
effectiveGas?: number | undefined;
|
|
11667
|
+
} | {
|
|
11668
|
+
unsignedPsbtBase64: string;
|
|
11669
|
+
inputsToSign: {}[] | null;
|
|
11631
11670
|
};
|
|
11632
11671
|
approval?: {
|
|
11633
11672
|
data: string;
|
|
@@ -11801,7 +11840,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11801
11840
|
effectiveGas?: number | undefined;
|
|
11802
11841
|
} | undefined;
|
|
11803
11842
|
} & {
|
|
11804
|
-
trade: {
|
|
11843
|
+
trade: string | {
|
|
11805
11844
|
data: string;
|
|
11806
11845
|
value: string;
|
|
11807
11846
|
to: string;
|
|
@@ -11809,6 +11848,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11809
11848
|
gasLimit: number | null;
|
|
11810
11849
|
chainId: number;
|
|
11811
11850
|
effectiveGas?: number | undefined;
|
|
11851
|
+
} | {
|
|
11852
|
+
unsignedPsbtBase64: string;
|
|
11853
|
+
inputsToSign: {}[] | null;
|
|
11812
11854
|
};
|
|
11813
11855
|
approval?: {
|
|
11814
11856
|
data: string;
|
|
@@ -11982,7 +12024,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11982
12024
|
effectiveGas?: number | undefined;
|
|
11983
12025
|
} | undefined;
|
|
11984
12026
|
} & {
|
|
11985
|
-
trade: {
|
|
12027
|
+
trade: string | {
|
|
11986
12028
|
data: string;
|
|
11987
12029
|
value: string;
|
|
11988
12030
|
to: string;
|
|
@@ -11990,6 +12032,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11990
12032
|
gasLimit: number | null;
|
|
11991
12033
|
chainId: number;
|
|
11992
12034
|
effectiveGas?: number | undefined;
|
|
12035
|
+
} | {
|
|
12036
|
+
unsignedPsbtBase64: string;
|
|
12037
|
+
inputsToSign: {}[] | null;
|
|
11993
12038
|
};
|
|
11994
12039
|
approval?: {
|
|
11995
12040
|
data: string;
|
|
@@ -12163,7 +12208,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12163
12208
|
effectiveGas?: number | undefined;
|
|
12164
12209
|
} | undefined;
|
|
12165
12210
|
} & {
|
|
12166
|
-
trade: {
|
|
12211
|
+
trade: string | {
|
|
12167
12212
|
data: string;
|
|
12168
12213
|
value: string;
|
|
12169
12214
|
to: string;
|
|
@@ -12171,6 +12216,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12171
12216
|
gasLimit: number | null;
|
|
12172
12217
|
chainId: number;
|
|
12173
12218
|
effectiveGas?: number | undefined;
|
|
12219
|
+
} | {
|
|
12220
|
+
unsignedPsbtBase64: string;
|
|
12221
|
+
inputsToSign: {}[] | null;
|
|
12174
12222
|
};
|
|
12175
12223
|
approval?: {
|
|
12176
12224
|
data: string;
|
|
@@ -12339,7 +12387,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12339
12387
|
effectiveGas?: number | undefined;
|
|
12340
12388
|
} | undefined;
|
|
12341
12389
|
} & {
|
|
12342
|
-
trade: {
|
|
12390
|
+
trade: string | {
|
|
12343
12391
|
data: string;
|
|
12344
12392
|
value: string;
|
|
12345
12393
|
to: string;
|
|
@@ -12347,6 +12395,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12347
12395
|
gasLimit: number | null;
|
|
12348
12396
|
chainId: number;
|
|
12349
12397
|
effectiveGas?: number | undefined;
|
|
12398
|
+
} | {
|
|
12399
|
+
unsignedPsbtBase64: string;
|
|
12400
|
+
inputsToSign: {}[] | null;
|
|
12350
12401
|
};
|
|
12351
12402
|
approval?: {
|
|
12352
12403
|
data: string;
|
|
@@ -12516,7 +12567,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12516
12567
|
effectiveGas?: number | undefined;
|
|
12517
12568
|
} | undefined;
|
|
12518
12569
|
} & {
|
|
12519
|
-
trade: {
|
|
12570
|
+
trade: string | {
|
|
12520
12571
|
data: string;
|
|
12521
12572
|
value: string;
|
|
12522
12573
|
to: string;
|
|
@@ -12524,6 +12575,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12524
12575
|
gasLimit: number | null;
|
|
12525
12576
|
chainId: number;
|
|
12526
12577
|
effectiveGas?: number | undefined;
|
|
12578
|
+
} | {
|
|
12579
|
+
unsignedPsbtBase64: string;
|
|
12580
|
+
inputsToSign: {}[] | null;
|
|
12527
12581
|
};
|
|
12528
12582
|
approval?: {
|
|
12529
12583
|
data: string;
|
|
@@ -12692,7 +12746,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12692
12746
|
effectiveGas?: number | undefined;
|
|
12693
12747
|
} | undefined;
|
|
12694
12748
|
} & {
|
|
12695
|
-
trade: {
|
|
12749
|
+
trade: string | {
|
|
12696
12750
|
data: string;
|
|
12697
12751
|
value: string;
|
|
12698
12752
|
to: string;
|
|
@@ -12700,6 +12754,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12700
12754
|
gasLimit: number | null;
|
|
12701
12755
|
chainId: number;
|
|
12702
12756
|
effectiveGas?: number | undefined;
|
|
12757
|
+
} | {
|
|
12758
|
+
unsignedPsbtBase64: string;
|
|
12759
|
+
inputsToSign: {}[] | null;
|
|
12703
12760
|
};
|
|
12704
12761
|
approval?: {
|
|
12705
12762
|
data: string;
|
|
@@ -12873,7 +12930,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12873
12930
|
effectiveGas?: number | undefined;
|
|
12874
12931
|
} | undefined;
|
|
12875
12932
|
} & {
|
|
12876
|
-
trade: {
|
|
12933
|
+
trade: string | {
|
|
12877
12934
|
data: string;
|
|
12878
12935
|
value: string;
|
|
12879
12936
|
to: string;
|
|
@@ -12881,6 +12938,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12881
12938
|
gasLimit: number | null;
|
|
12882
12939
|
chainId: number;
|
|
12883
12940
|
effectiveGas?: number | undefined;
|
|
12941
|
+
} | {
|
|
12942
|
+
unsignedPsbtBase64: string;
|
|
12943
|
+
inputsToSign: {}[] | null;
|
|
12884
12944
|
};
|
|
12885
12945
|
approval?: {
|
|
12886
12946
|
data: string;
|
|
@@ -13054,7 +13114,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13054
13114
|
effectiveGas?: number | undefined;
|
|
13055
13115
|
} | undefined;
|
|
13056
13116
|
} & {
|
|
13057
|
-
trade: {
|
|
13117
|
+
trade: string | {
|
|
13058
13118
|
data: string;
|
|
13059
13119
|
value: string;
|
|
13060
13120
|
to: string;
|
|
@@ -13062,6 +13122,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13062
13122
|
gasLimit: number | null;
|
|
13063
13123
|
chainId: number;
|
|
13064
13124
|
effectiveGas?: number | undefined;
|
|
13125
|
+
} | {
|
|
13126
|
+
unsignedPsbtBase64: string;
|
|
13127
|
+
inputsToSign: {}[] | null;
|
|
13065
13128
|
};
|
|
13066
13129
|
approval?: {
|
|
13067
13130
|
data: string;
|
|
@@ -13253,7 +13316,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13253
13316
|
} | undefined;
|
|
13254
13317
|
};
|
|
13255
13318
|
estimatedProcessingTimeInSeconds: number;
|
|
13256
|
-
trade:
|
|
13319
|
+
trade: string | {
|
|
13257
13320
|
data: string;
|
|
13258
13321
|
value: string;
|
|
13259
13322
|
to: string;
|
|
@@ -13264,14 +13327,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13264
13327
|
} | {
|
|
13265
13328
|
unsignedPsbtBase64: string;
|
|
13266
13329
|
inputsToSign: {}[] | null;
|
|
13267
|
-
}) & {
|
|
13268
|
-
data: string;
|
|
13269
|
-
value: string;
|
|
13270
|
-
to: string;
|
|
13271
|
-
from: string;
|
|
13272
|
-
gasLimit: number | null;
|
|
13273
|
-
chainId: number;
|
|
13274
|
-
effectiveGas?: number | undefined;
|
|
13275
13330
|
};
|
|
13276
13331
|
approval?: {
|
|
13277
13332
|
data: string;
|
|
@@ -13442,7 +13497,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13442
13497
|
effectiveGas?: number | undefined;
|
|
13443
13498
|
} | undefined;
|
|
13444
13499
|
} & {
|
|
13445
|
-
trade: {
|
|
13500
|
+
trade: string | {
|
|
13446
13501
|
data: string;
|
|
13447
13502
|
value: string;
|
|
13448
13503
|
to: string;
|
|
@@ -13450,6 +13505,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13450
13505
|
gasLimit: number | null;
|
|
13451
13506
|
chainId: number;
|
|
13452
13507
|
effectiveGas?: number | undefined;
|
|
13508
|
+
} | {
|
|
13509
|
+
unsignedPsbtBase64: string;
|
|
13510
|
+
inputsToSign: {}[] | null;
|
|
13453
13511
|
};
|
|
13454
13512
|
approval?: {
|
|
13455
13513
|
data: string;
|
|
@@ -13637,7 +13695,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13637
13695
|
} | undefined;
|
|
13638
13696
|
};
|
|
13639
13697
|
estimatedProcessingTimeInSeconds: number;
|
|
13640
|
-
trade:
|
|
13698
|
+
trade: string | {
|
|
13641
13699
|
data: string;
|
|
13642
13700
|
value: string;
|
|
13643
13701
|
to: string;
|
|
@@ -13648,14 +13706,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13648
13706
|
} | {
|
|
13649
13707
|
unsignedPsbtBase64: string;
|
|
13650
13708
|
inputsToSign: {}[] | null;
|
|
13651
|
-
}) & {
|
|
13652
|
-
data: string;
|
|
13653
|
-
value: string;
|
|
13654
|
-
to: string;
|
|
13655
|
-
from: string;
|
|
13656
|
-
gasLimit: number | null;
|
|
13657
|
-
chainId: number;
|
|
13658
|
-
effectiveGas?: number | undefined;
|
|
13659
13709
|
};
|
|
13660
13710
|
approval?: {
|
|
13661
13711
|
data: string;
|
|
@@ -13826,7 +13876,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13826
13876
|
effectiveGas?: number | undefined;
|
|
13827
13877
|
} | undefined;
|
|
13828
13878
|
} & {
|
|
13829
|
-
trade: {
|
|
13879
|
+
trade: string | {
|
|
13830
13880
|
data: string;
|
|
13831
13881
|
value: string;
|
|
13832
13882
|
to: string;
|
|
@@ -13834,6 +13884,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13834
13884
|
gasLimit: number | null;
|
|
13835
13885
|
chainId: number;
|
|
13836
13886
|
effectiveGas?: number | undefined;
|
|
13887
|
+
} | {
|
|
13888
|
+
unsignedPsbtBase64: string;
|
|
13889
|
+
inputsToSign: {}[] | null;
|
|
13837
13890
|
};
|
|
13838
13891
|
approval?: {
|
|
13839
13892
|
data: string;
|
|
@@ -14007,7 +14060,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14007
14060
|
effectiveGas?: number | undefined;
|
|
14008
14061
|
} | undefined;
|
|
14009
14062
|
} & {
|
|
14010
|
-
trade: {
|
|
14063
|
+
trade: string | {
|
|
14011
14064
|
data: string;
|
|
14012
14065
|
value: string;
|
|
14013
14066
|
to: string;
|
|
@@ -14015,6 +14068,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14015
14068
|
gasLimit: number | null;
|
|
14016
14069
|
chainId: number;
|
|
14017
14070
|
effectiveGas?: number | undefined;
|
|
14071
|
+
} | {
|
|
14072
|
+
unsignedPsbtBase64: string;
|
|
14073
|
+
inputsToSign: {}[] | null;
|
|
14018
14074
|
};
|
|
14019
14075
|
approval?: {
|
|
14020
14076
|
data: string;
|
|
@@ -14206,7 +14262,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14206
14262
|
} | undefined;
|
|
14207
14263
|
};
|
|
14208
14264
|
estimatedProcessingTimeInSeconds: number;
|
|
14209
|
-
trade:
|
|
14265
|
+
trade: string | {
|
|
14210
14266
|
data: string;
|
|
14211
14267
|
value: string;
|
|
14212
14268
|
to: string;
|
|
@@ -14217,14 +14273,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14217
14273
|
} | {
|
|
14218
14274
|
unsignedPsbtBase64: string;
|
|
14219
14275
|
inputsToSign: {}[] | null;
|
|
14220
|
-
}) & {
|
|
14221
|
-
data: string;
|
|
14222
|
-
value: string;
|
|
14223
|
-
to: string;
|
|
14224
|
-
from: string;
|
|
14225
|
-
gasLimit: number | null;
|
|
14226
|
-
chainId: number;
|
|
14227
|
-
effectiveGas?: number | undefined;
|
|
14228
14276
|
};
|
|
14229
14277
|
approval?: {
|
|
14230
14278
|
data: string;
|
|
@@ -14400,7 +14448,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14400
14448
|
effectiveGas?: number | undefined;
|
|
14401
14449
|
} | undefined;
|
|
14402
14450
|
} & {
|
|
14403
|
-
trade: {
|
|
14451
|
+
trade: string | {
|
|
14404
14452
|
data: string;
|
|
14405
14453
|
value: string;
|
|
14406
14454
|
to: string;
|
|
@@ -14408,6 +14456,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14408
14456
|
gasLimit: number | null;
|
|
14409
14457
|
chainId: number;
|
|
14410
14458
|
effectiveGas?: number | undefined;
|
|
14459
|
+
} | {
|
|
14460
|
+
unsignedPsbtBase64: string;
|
|
14461
|
+
inputsToSign: {}[] | null;
|
|
14411
14462
|
};
|
|
14412
14463
|
approval?: {
|
|
14413
14464
|
data: string;
|
|
@@ -14598,7 +14649,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14598
14649
|
} | undefined;
|
|
14599
14650
|
};
|
|
14600
14651
|
estimatedProcessingTimeInSeconds: number;
|
|
14601
|
-
trade:
|
|
14652
|
+
trade: string | {
|
|
14602
14653
|
data: string;
|
|
14603
14654
|
value: string;
|
|
14604
14655
|
to: string;
|
|
@@ -14609,14 +14660,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14609
14660
|
} | {
|
|
14610
14661
|
unsignedPsbtBase64: string;
|
|
14611
14662
|
inputsToSign: {}[] | null;
|
|
14612
|
-
}) & {
|
|
14613
|
-
data: string;
|
|
14614
|
-
value: string;
|
|
14615
|
-
to: string;
|
|
14616
|
-
from: string;
|
|
14617
|
-
gasLimit: number | null;
|
|
14618
|
-
chainId: number;
|
|
14619
|
-
effectiveGas?: number | undefined;
|
|
14620
14663
|
};
|
|
14621
14664
|
approval?: {
|
|
14622
14665
|
data: string;
|
|
@@ -14788,7 +14831,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14788
14831
|
effectiveGas?: number | undefined;
|
|
14789
14832
|
} | undefined;
|
|
14790
14833
|
} & {
|
|
14791
|
-
trade: {
|
|
14834
|
+
trade: string | {
|
|
14792
14835
|
data: string;
|
|
14793
14836
|
value: string;
|
|
14794
14837
|
to: string;
|
|
@@ -14796,6 +14839,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14796
14839
|
gasLimit: number | null;
|
|
14797
14840
|
chainId: number;
|
|
14798
14841
|
effectiveGas?: number | undefined;
|
|
14842
|
+
} | {
|
|
14843
|
+
unsignedPsbtBase64: string;
|
|
14844
|
+
inputsToSign: {}[] | null;
|
|
14799
14845
|
};
|
|
14800
14846
|
approval?: {
|
|
14801
14847
|
data: string;
|
|
@@ -14986,7 +15032,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14986
15032
|
} | undefined;
|
|
14987
15033
|
};
|
|
14988
15034
|
estimatedProcessingTimeInSeconds: number;
|
|
14989
|
-
trade:
|
|
15035
|
+
trade: string | {
|
|
14990
15036
|
data: string;
|
|
14991
15037
|
value: string;
|
|
14992
15038
|
to: string;
|
|
@@ -14997,14 +15043,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14997
15043
|
} | {
|
|
14998
15044
|
unsignedPsbtBase64: string;
|
|
14999
15045
|
inputsToSign: {}[] | null;
|
|
15000
|
-
}) & {
|
|
15001
|
-
data: string;
|
|
15002
|
-
value: string;
|
|
15003
|
-
to: string;
|
|
15004
|
-
from: string;
|
|
15005
|
-
gasLimit: number | null;
|
|
15006
|
-
chainId: number;
|
|
15007
|
-
effectiveGas?: number | undefined;
|
|
15008
15046
|
};
|
|
15009
15047
|
approval?: {
|
|
15010
15048
|
data: string;
|
|
@@ -15198,7 +15236,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15198
15236
|
} | undefined;
|
|
15199
15237
|
};
|
|
15200
15238
|
estimatedProcessingTimeInSeconds: number;
|
|
15201
|
-
trade:
|
|
15239
|
+
trade: string | {
|
|
15202
15240
|
data: string;
|
|
15203
15241
|
value: string;
|
|
15204
15242
|
to: string;
|
|
@@ -15209,14 +15247,6 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15209
15247
|
} | {
|
|
15210
15248
|
unsignedPsbtBase64: string;
|
|
15211
15249
|
inputsToSign: {}[] | null;
|
|
15212
|
-
}) & {
|
|
15213
|
-
data: string;
|
|
15214
|
-
value: string;
|
|
15215
|
-
to: string;
|
|
15216
|
-
from: string;
|
|
15217
|
-
gasLimit: number | null;
|
|
15218
|
-
chainId: number;
|
|
15219
|
-
effectiveGas?: number | undefined;
|
|
15220
15250
|
};
|
|
15221
15251
|
approval?: {
|
|
15222
15252
|
data: string;
|
|
@@ -15388,7 +15418,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15388
15418
|
effectiveGas?: number | undefined;
|
|
15389
15419
|
} | undefined;
|
|
15390
15420
|
} & {
|
|
15391
|
-
trade: {
|
|
15421
|
+
trade: string | {
|
|
15392
15422
|
data: string;
|
|
15393
15423
|
value: string;
|
|
15394
15424
|
to: string;
|
|
@@ -15396,6 +15426,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15396
15426
|
gasLimit: number | null;
|
|
15397
15427
|
chainId: number;
|
|
15398
15428
|
effectiveGas?: number | undefined;
|
|
15429
|
+
} | {
|
|
15430
|
+
unsignedPsbtBase64: string;
|
|
15431
|
+
inputsToSign: {}[] | null;
|
|
15399
15432
|
};
|
|
15400
15433
|
approval?: {
|
|
15401
15434
|
data: string;
|
|
@@ -15700,7 +15733,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15700
15733
|
effectiveGas?: number | undefined;
|
|
15701
15734
|
} | undefined;
|
|
15702
15735
|
} & {
|
|
15703
|
-
trade: {
|
|
15736
|
+
trade: string | {
|
|
15704
15737
|
data: string;
|
|
15705
15738
|
value: string;
|
|
15706
15739
|
to: string;
|
|
@@ -15708,6 +15741,9 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15708
15741
|
gasLimit: number | null;
|
|
15709
15742
|
chainId: number;
|
|
15710
15743
|
effectiveGas?: number | undefined;
|
|
15744
|
+
} | {
|
|
15745
|
+
unsignedPsbtBase64: string;
|
|
15746
|
+
inputsToSign: {}[] | null;
|
|
15711
15747
|
};
|
|
15712
15748
|
approval?: {
|
|
15713
15749
|
data: string;
|