@metamask/bridge-controller 37.2.0 → 39.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 +27 -1
- package/dist/bridge-controller.cjs +2 -3
- 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 +4 -5
- package/dist/bridge-controller.mjs.map +1 -1
- package/dist/constants/bridge.cjs +1 -2
- 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 -2
- package/dist/constants/bridge.mjs.map +1 -1
- package/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- 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 +7 -2
- package/dist/selectors.cjs.map +1 -1
- package/dist/selectors.d.cts +312 -90
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +312 -90
- package/dist/selectors.d.mts.map +1 -1
- package/dist/selectors.mjs +7 -2
- package/dist/selectors.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +8 -1
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +8 -1
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/utils/metrics/constants.cjs +3 -0
- package/dist/utils/metrics/constants.cjs.map +1 -1
- package/dist/utils/metrics/constants.d.cts +3 -0
- package/dist/utils/metrics/constants.d.cts.map +1 -1
- package/dist/utils/metrics/constants.d.mts +3 -0
- package/dist/utils/metrics/constants.d.mts.map +1 -1
- package/dist/utils/metrics/constants.mjs +3 -0
- package/dist/utils/metrics/constants.mjs.map +1 -1
- package/dist/utils/metrics/properties.cjs +1 -12
- package/dist/utils/metrics/properties.cjs.map +1 -1
- package/dist/utils/metrics/properties.d.cts +2 -4
- package/dist/utils/metrics/properties.d.cts.map +1 -1
- package/dist/utils/metrics/properties.d.mts +2 -4
- package/dist/utils/metrics/properties.d.mts.map +1 -1
- package/dist/utils/metrics/properties.mjs +1 -10
- package/dist/utils/metrics/properties.mjs.map +1 -1
- package/dist/utils/metrics/types.cjs.map +1 -1
- package/dist/utils/metrics/types.d.cts +8 -11
- package/dist/utils/metrics/types.d.cts.map +1 -1
- package/dist/utils/metrics/types.d.mts +8 -11
- package/dist/utils/metrics/types.d.mts.map +1 -1
- package/dist/utils/metrics/types.mjs.map +1 -1
- package/dist/utils/quote.cjs +60 -23
- package/dist/utils/quote.cjs.map +1 -1
- package/dist/utils/quote.d.cts +12 -11
- package/dist/utils/quote.d.cts.map +1 -1
- package/dist/utils/quote.d.mts +12 -11
- package/dist/utils/quote.d.mts.map +1 -1
- package/dist/utils/quote.mjs +60 -23
- package/dist/utils/quote.mjs.map +1 -1
- package/dist/utils/validators.cjs +1 -0
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +9 -0
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +9 -0
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +1 -0
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +6 -6
package/dist/selectors.d.cts
CHANGED
|
@@ -712,6 +712,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
712
712
|
from: string;
|
|
713
713
|
gasLimit: number | null;
|
|
714
714
|
chainId: number;
|
|
715
|
+
effectiveGas?: number | undefined;
|
|
715
716
|
};
|
|
716
717
|
approval?: {
|
|
717
718
|
data: string;
|
|
@@ -720,6 +721,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
720
721
|
from: string;
|
|
721
722
|
gasLimit: number | null;
|
|
722
723
|
chainId: number;
|
|
724
|
+
effectiveGas?: number | undefined;
|
|
723
725
|
} | undefined;
|
|
724
726
|
} & {
|
|
725
727
|
trade: {
|
|
@@ -729,6 +731,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
729
731
|
from: string;
|
|
730
732
|
gasLimit: number | null;
|
|
731
733
|
chainId: number;
|
|
734
|
+
effectiveGas?: number | undefined;
|
|
732
735
|
};
|
|
733
736
|
approval?: {
|
|
734
737
|
data: string;
|
|
@@ -737,6 +740,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
737
740
|
from: string;
|
|
738
741
|
gasLimit: number | null;
|
|
739
742
|
chainId: number;
|
|
743
|
+
effectiveGas?: number | undefined;
|
|
740
744
|
} | undefined;
|
|
741
745
|
} & QuoteMetadata)[];
|
|
742
746
|
recommendedQuote: ({
|
|
@@ -878,6 +882,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
878
882
|
from: string;
|
|
879
883
|
gasLimit: number | null;
|
|
880
884
|
chainId: number;
|
|
885
|
+
effectiveGas?: number | undefined;
|
|
881
886
|
};
|
|
882
887
|
approval?: {
|
|
883
888
|
data: string;
|
|
@@ -886,6 +891,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
886
891
|
from: string;
|
|
887
892
|
gasLimit: number | null;
|
|
888
893
|
chainId: number;
|
|
894
|
+
effectiveGas?: number | undefined;
|
|
889
895
|
} | undefined;
|
|
890
896
|
} & {
|
|
891
897
|
trade: {
|
|
@@ -895,6 +901,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
895
901
|
from: string;
|
|
896
902
|
gasLimit: number | null;
|
|
897
903
|
chainId: number;
|
|
904
|
+
effectiveGas?: number | undefined;
|
|
898
905
|
};
|
|
899
906
|
approval?: {
|
|
900
907
|
data: string;
|
|
@@ -903,6 +910,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
903
910
|
from: string;
|
|
904
911
|
gasLimit: number | null;
|
|
905
912
|
chainId: number;
|
|
913
|
+
effectiveGas?: number | undefined;
|
|
906
914
|
} | undefined;
|
|
907
915
|
} & QuoteMetadata) | null;
|
|
908
916
|
activeQuote: ({
|
|
@@ -1044,6 +1052,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1044
1052
|
from: string;
|
|
1045
1053
|
gasLimit: number | null;
|
|
1046
1054
|
chainId: number;
|
|
1055
|
+
effectiveGas?: number | undefined;
|
|
1047
1056
|
};
|
|
1048
1057
|
approval?: {
|
|
1049
1058
|
data: string;
|
|
@@ -1052,6 +1061,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1052
1061
|
from: string;
|
|
1053
1062
|
gasLimit: number | null;
|
|
1054
1063
|
chainId: number;
|
|
1064
|
+
effectiveGas?: number | undefined;
|
|
1055
1065
|
} | undefined;
|
|
1056
1066
|
} & {
|
|
1057
1067
|
trade: {
|
|
@@ -1061,6 +1071,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1061
1071
|
from: string;
|
|
1062
1072
|
gasLimit: number | null;
|
|
1063
1073
|
chainId: number;
|
|
1074
|
+
effectiveGas?: number | undefined;
|
|
1064
1075
|
};
|
|
1065
1076
|
approval?: {
|
|
1066
1077
|
data: string;
|
|
@@ -1069,6 +1080,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1069
1080
|
from: string;
|
|
1070
1081
|
gasLimit: number | null;
|
|
1071
1082
|
chainId: number;
|
|
1083
|
+
effectiveGas?: number | undefined;
|
|
1072
1084
|
} | undefined;
|
|
1073
1085
|
} & QuoteMetadata) | null;
|
|
1074
1086
|
quotesLastFetchedMs: number | null;
|
|
@@ -1221,6 +1233,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1221
1233
|
from: string;
|
|
1222
1234
|
gasLimit: number | null;
|
|
1223
1235
|
chainId: number;
|
|
1236
|
+
effectiveGas?: number | undefined;
|
|
1224
1237
|
};
|
|
1225
1238
|
approval?: {
|
|
1226
1239
|
data: string;
|
|
@@ -1229,6 +1242,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1229
1242
|
from: string;
|
|
1230
1243
|
gasLimit: number | null;
|
|
1231
1244
|
chainId: number;
|
|
1245
|
+
effectiveGas?: number | undefined;
|
|
1232
1246
|
} | undefined;
|
|
1233
1247
|
} & {
|
|
1234
1248
|
trade: {
|
|
@@ -1238,6 +1252,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1238
1252
|
from: string;
|
|
1239
1253
|
gasLimit: number | null;
|
|
1240
1254
|
chainId: number;
|
|
1255
|
+
effectiveGas?: number | undefined;
|
|
1241
1256
|
};
|
|
1242
1257
|
approval?: {
|
|
1243
1258
|
data: string;
|
|
@@ -1246,6 +1261,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1246
1261
|
from: string;
|
|
1247
1262
|
gasLimit: number | null;
|
|
1248
1263
|
chainId: number;
|
|
1264
|
+
effectiveGas?: number | undefined;
|
|
1249
1265
|
} | undefined;
|
|
1250
1266
|
} & QuoteMetadata)[], resultFuncArgs_3: ({
|
|
1251
1267
|
quote: {
|
|
@@ -1386,6 +1402,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1386
1402
|
from: string;
|
|
1387
1403
|
gasLimit: number | null;
|
|
1388
1404
|
chainId: number;
|
|
1405
|
+
effectiveGas?: number | undefined;
|
|
1389
1406
|
};
|
|
1390
1407
|
approval?: {
|
|
1391
1408
|
data: string;
|
|
@@ -1394,6 +1411,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1394
1411
|
from: string;
|
|
1395
1412
|
gasLimit: number | null;
|
|
1396
1413
|
chainId: number;
|
|
1414
|
+
effectiveGas?: number | undefined;
|
|
1397
1415
|
} | undefined;
|
|
1398
1416
|
} & {
|
|
1399
1417
|
trade: {
|
|
@@ -1403,6 +1421,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1403
1421
|
from: string;
|
|
1404
1422
|
gasLimit: number | null;
|
|
1405
1423
|
chainId: number;
|
|
1424
|
+
effectiveGas?: number | undefined;
|
|
1406
1425
|
};
|
|
1407
1426
|
approval?: {
|
|
1408
1427
|
data: string;
|
|
@@ -1411,6 +1430,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1411
1430
|
from: string;
|
|
1412
1431
|
gasLimit: number | null;
|
|
1413
1432
|
chainId: number;
|
|
1433
|
+
effectiveGas?: number | undefined;
|
|
1414
1434
|
} | undefined;
|
|
1415
1435
|
} & QuoteMetadata) | null, resultFuncArgs_4: ({
|
|
1416
1436
|
quote: {
|
|
@@ -1551,6 +1571,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1551
1571
|
from: string;
|
|
1552
1572
|
gasLimit: number | null;
|
|
1553
1573
|
chainId: number;
|
|
1574
|
+
effectiveGas?: number | undefined;
|
|
1554
1575
|
};
|
|
1555
1576
|
approval?: {
|
|
1556
1577
|
data: string;
|
|
@@ -1559,6 +1580,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1559
1580
|
from: string;
|
|
1560
1581
|
gasLimit: number | null;
|
|
1561
1582
|
chainId: number;
|
|
1583
|
+
effectiveGas?: number | undefined;
|
|
1562
1584
|
} | undefined;
|
|
1563
1585
|
} & {
|
|
1564
1586
|
trade: {
|
|
@@ -1568,6 +1590,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1568
1590
|
from: string;
|
|
1569
1591
|
gasLimit: number | null;
|
|
1570
1592
|
chainId: number;
|
|
1593
|
+
effectiveGas?: number | undefined;
|
|
1571
1594
|
};
|
|
1572
1595
|
approval?: {
|
|
1573
1596
|
data: string;
|
|
@@ -1576,6 +1599,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1576
1599
|
from: string;
|
|
1577
1600
|
gasLimit: number | null;
|
|
1578
1601
|
chainId: number;
|
|
1602
|
+
effectiveGas?: number | undefined;
|
|
1579
1603
|
} | undefined;
|
|
1580
1604
|
} & QuoteMetadata) | null, resultFuncArgs_5: number | null, resultFuncArgs_6: boolean, resultFuncArgs_7: number | null, resultFuncArgs_8: boolean) => {
|
|
1581
1605
|
sortedQuotes: ({
|
|
@@ -1717,6 +1741,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1717
1741
|
from: string;
|
|
1718
1742
|
gasLimit: number | null;
|
|
1719
1743
|
chainId: number;
|
|
1744
|
+
effectiveGas?: number | undefined;
|
|
1720
1745
|
};
|
|
1721
1746
|
approval?: {
|
|
1722
1747
|
data: string;
|
|
@@ -1725,6 +1750,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1725
1750
|
from: string;
|
|
1726
1751
|
gasLimit: number | null;
|
|
1727
1752
|
chainId: number;
|
|
1753
|
+
effectiveGas?: number | undefined;
|
|
1728
1754
|
} | undefined;
|
|
1729
1755
|
} & {
|
|
1730
1756
|
trade: {
|
|
@@ -1734,6 +1760,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1734
1760
|
from: string;
|
|
1735
1761
|
gasLimit: number | null;
|
|
1736
1762
|
chainId: number;
|
|
1763
|
+
effectiveGas?: number | undefined;
|
|
1737
1764
|
};
|
|
1738
1765
|
approval?: {
|
|
1739
1766
|
data: string;
|
|
@@ -1742,6 +1769,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1742
1769
|
from: string;
|
|
1743
1770
|
gasLimit: number | null;
|
|
1744
1771
|
chainId: number;
|
|
1772
|
+
effectiveGas?: number | undefined;
|
|
1745
1773
|
} | undefined;
|
|
1746
1774
|
} & QuoteMetadata)[];
|
|
1747
1775
|
recommendedQuote: ({
|
|
@@ -1883,6 +1911,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1883
1911
|
from: string;
|
|
1884
1912
|
gasLimit: number | null;
|
|
1885
1913
|
chainId: number;
|
|
1914
|
+
effectiveGas?: number | undefined;
|
|
1886
1915
|
};
|
|
1887
1916
|
approval?: {
|
|
1888
1917
|
data: string;
|
|
@@ -1891,6 +1920,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1891
1920
|
from: string;
|
|
1892
1921
|
gasLimit: number | null;
|
|
1893
1922
|
chainId: number;
|
|
1923
|
+
effectiveGas?: number | undefined;
|
|
1894
1924
|
} | undefined;
|
|
1895
1925
|
} & {
|
|
1896
1926
|
trade: {
|
|
@@ -1900,6 +1930,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1900
1930
|
from: string;
|
|
1901
1931
|
gasLimit: number | null;
|
|
1902
1932
|
chainId: number;
|
|
1933
|
+
effectiveGas?: number | undefined;
|
|
1903
1934
|
};
|
|
1904
1935
|
approval?: {
|
|
1905
1936
|
data: string;
|
|
@@ -1908,6 +1939,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1908
1939
|
from: string;
|
|
1909
1940
|
gasLimit: number | null;
|
|
1910
1941
|
chainId: number;
|
|
1942
|
+
effectiveGas?: number | undefined;
|
|
1911
1943
|
} | undefined;
|
|
1912
1944
|
} & QuoteMetadata) | null;
|
|
1913
1945
|
activeQuote: ({
|
|
@@ -2049,6 +2081,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2049
2081
|
from: string;
|
|
2050
2082
|
gasLimit: number | null;
|
|
2051
2083
|
chainId: number;
|
|
2084
|
+
effectiveGas?: number | undefined;
|
|
2052
2085
|
};
|
|
2053
2086
|
approval?: {
|
|
2054
2087
|
data: string;
|
|
@@ -2057,6 +2090,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2057
2090
|
from: string;
|
|
2058
2091
|
gasLimit: number | null;
|
|
2059
2092
|
chainId: number;
|
|
2093
|
+
effectiveGas?: number | undefined;
|
|
2060
2094
|
} | undefined;
|
|
2061
2095
|
} & {
|
|
2062
2096
|
trade: {
|
|
@@ -2066,6 +2100,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2066
2100
|
from: string;
|
|
2067
2101
|
gasLimit: number | null;
|
|
2068
2102
|
chainId: number;
|
|
2103
|
+
effectiveGas?: number | undefined;
|
|
2069
2104
|
};
|
|
2070
2105
|
approval?: {
|
|
2071
2106
|
data: string;
|
|
@@ -2074,6 +2109,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2074
2109
|
from: string;
|
|
2075
2110
|
gasLimit: number | null;
|
|
2076
2111
|
chainId: number;
|
|
2112
|
+
effectiveGas?: number | undefined;
|
|
2077
2113
|
} | undefined;
|
|
2078
2114
|
} & QuoteMetadata) | null;
|
|
2079
2115
|
quotesLastFetchedMs: number | null;
|
|
@@ -2222,6 +2258,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2222
2258
|
from: string;
|
|
2223
2259
|
gasLimit: number | null;
|
|
2224
2260
|
chainId: number;
|
|
2261
|
+
effectiveGas?: number | undefined;
|
|
2225
2262
|
};
|
|
2226
2263
|
approval?: {
|
|
2227
2264
|
data: string;
|
|
@@ -2230,6 +2267,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2230
2267
|
from: string;
|
|
2231
2268
|
gasLimit: number | null;
|
|
2232
2269
|
chainId: number;
|
|
2270
|
+
effectiveGas?: number | undefined;
|
|
2233
2271
|
} | undefined;
|
|
2234
2272
|
} & {
|
|
2235
2273
|
trade: {
|
|
@@ -2239,6 +2277,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2239
2277
|
from: string;
|
|
2240
2278
|
gasLimit: number | null;
|
|
2241
2279
|
chainId: number;
|
|
2280
|
+
effectiveGas?: number | undefined;
|
|
2242
2281
|
};
|
|
2243
2282
|
approval?: {
|
|
2244
2283
|
data: string;
|
|
@@ -2247,6 +2286,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2247
2286
|
from: string;
|
|
2248
2287
|
gasLimit: number | null;
|
|
2249
2288
|
chainId: number;
|
|
2289
|
+
effectiveGas?: number | undefined;
|
|
2250
2290
|
} | undefined;
|
|
2251
2291
|
} & QuoteMetadata)[], resultFuncArgs_3: ({
|
|
2252
2292
|
quote: {
|
|
@@ -2387,6 +2427,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2387
2427
|
from: string;
|
|
2388
2428
|
gasLimit: number | null;
|
|
2389
2429
|
chainId: number;
|
|
2430
|
+
effectiveGas?: number | undefined;
|
|
2390
2431
|
};
|
|
2391
2432
|
approval?: {
|
|
2392
2433
|
data: string;
|
|
@@ -2395,6 +2436,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2395
2436
|
from: string;
|
|
2396
2437
|
gasLimit: number | null;
|
|
2397
2438
|
chainId: number;
|
|
2439
|
+
effectiveGas?: number | undefined;
|
|
2398
2440
|
} | undefined;
|
|
2399
2441
|
} & {
|
|
2400
2442
|
trade: {
|
|
@@ -2404,6 +2446,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2404
2446
|
from: string;
|
|
2405
2447
|
gasLimit: number | null;
|
|
2406
2448
|
chainId: number;
|
|
2449
|
+
effectiveGas?: number | undefined;
|
|
2407
2450
|
};
|
|
2408
2451
|
approval?: {
|
|
2409
2452
|
data: string;
|
|
@@ -2412,6 +2455,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2412
2455
|
from: string;
|
|
2413
2456
|
gasLimit: number | null;
|
|
2414
2457
|
chainId: number;
|
|
2458
|
+
effectiveGas?: number | undefined;
|
|
2415
2459
|
} | undefined;
|
|
2416
2460
|
} & QuoteMetadata) | null, resultFuncArgs_4: ({
|
|
2417
2461
|
quote: {
|
|
@@ -2552,6 +2596,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2552
2596
|
from: string;
|
|
2553
2597
|
gasLimit: number | null;
|
|
2554
2598
|
chainId: number;
|
|
2599
|
+
effectiveGas?: number | undefined;
|
|
2555
2600
|
};
|
|
2556
2601
|
approval?: {
|
|
2557
2602
|
data: string;
|
|
@@ -2560,6 +2605,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2560
2605
|
from: string;
|
|
2561
2606
|
gasLimit: number | null;
|
|
2562
2607
|
chainId: number;
|
|
2608
|
+
effectiveGas?: number | undefined;
|
|
2563
2609
|
} | undefined;
|
|
2564
2610
|
} & {
|
|
2565
2611
|
trade: {
|
|
@@ -2569,6 +2615,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2569
2615
|
from: string;
|
|
2570
2616
|
gasLimit: number | null;
|
|
2571
2617
|
chainId: number;
|
|
2618
|
+
effectiveGas?: number | undefined;
|
|
2572
2619
|
};
|
|
2573
2620
|
approval?: {
|
|
2574
2621
|
data: string;
|
|
@@ -2577,6 +2624,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2577
2624
|
from: string;
|
|
2578
2625
|
gasLimit: number | null;
|
|
2579
2626
|
chainId: number;
|
|
2627
|
+
effectiveGas?: number | undefined;
|
|
2580
2628
|
} | undefined;
|
|
2581
2629
|
} & QuoteMetadata) | null, resultFuncArgs_5: number | null, resultFuncArgs_6: boolean, resultFuncArgs_7: number | null, resultFuncArgs_8: boolean) => {
|
|
2582
2630
|
sortedQuotes: ({
|
|
@@ -2718,6 +2766,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2718
2766
|
from: string;
|
|
2719
2767
|
gasLimit: number | null;
|
|
2720
2768
|
chainId: number;
|
|
2769
|
+
effectiveGas?: number | undefined;
|
|
2721
2770
|
};
|
|
2722
2771
|
approval?: {
|
|
2723
2772
|
data: string;
|
|
@@ -2726,6 +2775,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2726
2775
|
from: string;
|
|
2727
2776
|
gasLimit: number | null;
|
|
2728
2777
|
chainId: number;
|
|
2778
|
+
effectiveGas?: number | undefined;
|
|
2729
2779
|
} | undefined;
|
|
2730
2780
|
} & {
|
|
2731
2781
|
trade: {
|
|
@@ -2735,6 +2785,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2735
2785
|
from: string;
|
|
2736
2786
|
gasLimit: number | null;
|
|
2737
2787
|
chainId: number;
|
|
2788
|
+
effectiveGas?: number | undefined;
|
|
2738
2789
|
};
|
|
2739
2790
|
approval?: {
|
|
2740
2791
|
data: string;
|
|
@@ -2743,6 +2794,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2743
2794
|
from: string;
|
|
2744
2795
|
gasLimit: number | null;
|
|
2745
2796
|
chainId: number;
|
|
2797
|
+
effectiveGas?: number | undefined;
|
|
2746
2798
|
} | undefined;
|
|
2747
2799
|
} & QuoteMetadata)[];
|
|
2748
2800
|
recommendedQuote: ({
|
|
@@ -2884,6 +2936,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2884
2936
|
from: string;
|
|
2885
2937
|
gasLimit: number | null;
|
|
2886
2938
|
chainId: number;
|
|
2939
|
+
effectiveGas?: number | undefined;
|
|
2887
2940
|
};
|
|
2888
2941
|
approval?: {
|
|
2889
2942
|
data: string;
|
|
@@ -2892,6 +2945,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2892
2945
|
from: string;
|
|
2893
2946
|
gasLimit: number | null;
|
|
2894
2947
|
chainId: number;
|
|
2948
|
+
effectiveGas?: number | undefined;
|
|
2895
2949
|
} | undefined;
|
|
2896
2950
|
} & {
|
|
2897
2951
|
trade: {
|
|
@@ -2901,6 +2955,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2901
2955
|
from: string;
|
|
2902
2956
|
gasLimit: number | null;
|
|
2903
2957
|
chainId: number;
|
|
2958
|
+
effectiveGas?: number | undefined;
|
|
2904
2959
|
};
|
|
2905
2960
|
approval?: {
|
|
2906
2961
|
data: string;
|
|
@@ -2909,6 +2964,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2909
2964
|
from: string;
|
|
2910
2965
|
gasLimit: number | null;
|
|
2911
2966
|
chainId: number;
|
|
2967
|
+
effectiveGas?: number | undefined;
|
|
2912
2968
|
} | undefined;
|
|
2913
2969
|
} & QuoteMetadata) | null;
|
|
2914
2970
|
activeQuote: ({
|
|
@@ -3050,6 +3106,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3050
3106
|
from: string;
|
|
3051
3107
|
gasLimit: number | null;
|
|
3052
3108
|
chainId: number;
|
|
3109
|
+
effectiveGas?: number | undefined;
|
|
3053
3110
|
};
|
|
3054
3111
|
approval?: {
|
|
3055
3112
|
data: string;
|
|
@@ -3058,6 +3115,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3058
3115
|
from: string;
|
|
3059
3116
|
gasLimit: number | null;
|
|
3060
3117
|
chainId: number;
|
|
3118
|
+
effectiveGas?: number | undefined;
|
|
3061
3119
|
} | undefined;
|
|
3062
3120
|
} & {
|
|
3063
3121
|
trade: {
|
|
@@ -3067,6 +3125,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3067
3125
|
from: string;
|
|
3068
3126
|
gasLimit: number | null;
|
|
3069
3127
|
chainId: number;
|
|
3128
|
+
effectiveGas?: number | undefined;
|
|
3070
3129
|
};
|
|
3071
3130
|
approval?: {
|
|
3072
3131
|
data: string;
|
|
@@ -3075,6 +3134,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3075
3134
|
from: string;
|
|
3076
3135
|
gasLimit: number | null;
|
|
3077
3136
|
chainId: number;
|
|
3137
|
+
effectiveGas?: number | undefined;
|
|
3078
3138
|
} | undefined;
|
|
3079
3139
|
} & QuoteMetadata) | null;
|
|
3080
3140
|
quotesLastFetchedMs: number | null;
|
|
@@ -3228,6 +3288,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3228
3288
|
from: string;
|
|
3229
3289
|
gasLimit: number | null;
|
|
3230
3290
|
chainId: number;
|
|
3291
|
+
effectiveGas?: number | undefined;
|
|
3231
3292
|
};
|
|
3232
3293
|
approval?: {
|
|
3233
3294
|
data: string;
|
|
@@ -3236,6 +3297,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3236
3297
|
from: string;
|
|
3237
3298
|
gasLimit: number | null;
|
|
3238
3299
|
chainId: number;
|
|
3300
|
+
effectiveGas?: number | undefined;
|
|
3239
3301
|
} | undefined;
|
|
3240
3302
|
} & {
|
|
3241
3303
|
trade: {
|
|
@@ -3245,6 +3307,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3245
3307
|
from: string;
|
|
3246
3308
|
gasLimit: number | null;
|
|
3247
3309
|
chainId: number;
|
|
3310
|
+
effectiveGas?: number | undefined;
|
|
3248
3311
|
};
|
|
3249
3312
|
approval?: {
|
|
3250
3313
|
data: string;
|
|
@@ -3253,6 +3316,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3253
3316
|
from: string;
|
|
3254
3317
|
gasLimit: number | null;
|
|
3255
3318
|
chainId: number;
|
|
3319
|
+
effectiveGas?: number | undefined;
|
|
3256
3320
|
} | undefined;
|
|
3257
3321
|
} & QuoteMetadata)[];
|
|
3258
3322
|
recommendedQuote: ({
|
|
@@ -3394,6 +3458,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3394
3458
|
from: string;
|
|
3395
3459
|
gasLimit: number | null;
|
|
3396
3460
|
chainId: number;
|
|
3461
|
+
effectiveGas?: number | undefined;
|
|
3397
3462
|
};
|
|
3398
3463
|
approval?: {
|
|
3399
3464
|
data: string;
|
|
@@ -3402,6 +3467,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3402
3467
|
from: string;
|
|
3403
3468
|
gasLimit: number | null;
|
|
3404
3469
|
chainId: number;
|
|
3470
|
+
effectiveGas?: number | undefined;
|
|
3405
3471
|
} | undefined;
|
|
3406
3472
|
} & {
|
|
3407
3473
|
trade: {
|
|
@@ -3411,6 +3477,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3411
3477
|
from: string;
|
|
3412
3478
|
gasLimit: number | null;
|
|
3413
3479
|
chainId: number;
|
|
3480
|
+
effectiveGas?: number | undefined;
|
|
3414
3481
|
};
|
|
3415
3482
|
approval?: {
|
|
3416
3483
|
data: string;
|
|
@@ -3419,6 +3486,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3419
3486
|
from: string;
|
|
3420
3487
|
gasLimit: number | null;
|
|
3421
3488
|
chainId: number;
|
|
3489
|
+
effectiveGas?: number | undefined;
|
|
3422
3490
|
} | undefined;
|
|
3423
3491
|
} & QuoteMetadata) | null;
|
|
3424
3492
|
activeQuote: ({
|
|
@@ -3560,6 +3628,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3560
3628
|
from: string;
|
|
3561
3629
|
gasLimit: number | null;
|
|
3562
3630
|
chainId: number;
|
|
3631
|
+
effectiveGas?: number | undefined;
|
|
3563
3632
|
};
|
|
3564
3633
|
approval?: {
|
|
3565
3634
|
data: string;
|
|
@@ -3568,6 +3637,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3568
3637
|
from: string;
|
|
3569
3638
|
gasLimit: number | null;
|
|
3570
3639
|
chainId: number;
|
|
3640
|
+
effectiveGas?: number | undefined;
|
|
3571
3641
|
} | undefined;
|
|
3572
3642
|
} & {
|
|
3573
3643
|
trade: {
|
|
@@ -3577,6 +3647,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3577
3647
|
from: string;
|
|
3578
3648
|
gasLimit: number | null;
|
|
3579
3649
|
chainId: number;
|
|
3650
|
+
effectiveGas?: number | undefined;
|
|
3580
3651
|
};
|
|
3581
3652
|
approval?: {
|
|
3582
3653
|
data: string;
|
|
@@ -3585,6 +3656,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3585
3656
|
from: string;
|
|
3586
3657
|
gasLimit: number | null;
|
|
3587
3658
|
chainId: number;
|
|
3659
|
+
effectiveGas?: number | undefined;
|
|
3588
3660
|
} | undefined;
|
|
3589
3661
|
} & QuoteMetadata) | null;
|
|
3590
3662
|
quotesLastFetchedMs: number | null;
|
|
@@ -3737,6 +3809,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3737
3809
|
from: string;
|
|
3738
3810
|
gasLimit: number | null;
|
|
3739
3811
|
chainId: number;
|
|
3812
|
+
effectiveGas?: number | undefined;
|
|
3740
3813
|
};
|
|
3741
3814
|
approval?: {
|
|
3742
3815
|
data: string;
|
|
@@ -3745,6 +3818,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3745
3818
|
from: string;
|
|
3746
3819
|
gasLimit: number | null;
|
|
3747
3820
|
chainId: number;
|
|
3821
|
+
effectiveGas?: number | undefined;
|
|
3748
3822
|
} | undefined;
|
|
3749
3823
|
} & {
|
|
3750
3824
|
trade: {
|
|
@@ -3754,6 +3828,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3754
3828
|
from: string;
|
|
3755
3829
|
gasLimit: number | null;
|
|
3756
3830
|
chainId: number;
|
|
3831
|
+
effectiveGas?: number | undefined;
|
|
3757
3832
|
};
|
|
3758
3833
|
approval?: {
|
|
3759
3834
|
data: string;
|
|
@@ -3762,6 +3837,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3762
3837
|
from: string;
|
|
3763
3838
|
gasLimit: number | null;
|
|
3764
3839
|
chainId: number;
|
|
3840
|
+
effectiveGas?: number | undefined;
|
|
3765
3841
|
} | undefined;
|
|
3766
3842
|
} & QuoteMetadata)[]) & {
|
|
3767
3843
|
clearCache: () => void;
|
|
@@ -3790,11 +3866,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3790
3866
|
valueInCurrency: string | null;
|
|
3791
3867
|
usd: string | null;
|
|
3792
3868
|
};
|
|
3793
|
-
gasFee:
|
|
3794
|
-
amount: string;
|
|
3795
|
-
valueInCurrency: string | null;
|
|
3796
|
-
usd: string | null;
|
|
3797
|
-
};
|
|
3869
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
3798
3870
|
adjustedReturn: {
|
|
3799
3871
|
valueInCurrency: string | null;
|
|
3800
3872
|
usd: string | null;
|
|
@@ -3946,6 +4018,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3946
4018
|
from: string;
|
|
3947
4019
|
gasLimit: number | null;
|
|
3948
4020
|
chainId: number;
|
|
4021
|
+
effectiveGas?: number | undefined;
|
|
3949
4022
|
} | (string & {
|
|
3950
4023
|
data: string;
|
|
3951
4024
|
value: string;
|
|
@@ -3953,6 +4026,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3953
4026
|
from: string;
|
|
3954
4027
|
gasLimit: number | null;
|
|
3955
4028
|
chainId: number;
|
|
4029
|
+
effectiveGas?: number | undefined;
|
|
3956
4030
|
});
|
|
3957
4031
|
approval?: {
|
|
3958
4032
|
data: string;
|
|
@@ -3961,6 +4035,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3961
4035
|
from: string;
|
|
3962
4036
|
gasLimit: number | null;
|
|
3963
4037
|
chainId: number;
|
|
4038
|
+
effectiveGas?: number | undefined;
|
|
3964
4039
|
} | undefined;
|
|
3965
4040
|
l1GasFeesInHexWei?: string | undefined;
|
|
3966
4041
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -4103,6 +4178,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4103
4178
|
from: string;
|
|
4104
4179
|
gasLimit: number | null;
|
|
4105
4180
|
chainId: number;
|
|
4181
|
+
effectiveGas?: number | undefined;
|
|
4106
4182
|
};
|
|
4107
4183
|
approval?: {
|
|
4108
4184
|
data: string;
|
|
@@ -4111,6 +4187,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4111
4187
|
from: string;
|
|
4112
4188
|
gasLimit: number | null;
|
|
4113
4189
|
chainId: number;
|
|
4190
|
+
effectiveGas?: number | undefined;
|
|
4114
4191
|
} | undefined;
|
|
4115
4192
|
} & {
|
|
4116
4193
|
trade: {
|
|
@@ -4120,6 +4197,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4120
4197
|
from: string;
|
|
4121
4198
|
gasLimit: number | null;
|
|
4122
4199
|
chainId: number;
|
|
4200
|
+
effectiveGas?: number | undefined;
|
|
4123
4201
|
};
|
|
4124
4202
|
approval?: {
|
|
4125
4203
|
data: string;
|
|
@@ -4128,6 +4206,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4128
4206
|
from: string;
|
|
4129
4207
|
gasLimit: number | null;
|
|
4130
4208
|
chainId: number;
|
|
4209
|
+
effectiveGas?: number | undefined;
|
|
4131
4210
|
} | undefined;
|
|
4132
4211
|
} & QuoteMetadata)[];
|
|
4133
4212
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
@@ -4152,11 +4231,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4152
4231
|
valueInCurrency: string | null;
|
|
4153
4232
|
usd: string | null;
|
|
4154
4233
|
};
|
|
4155
|
-
gasFee:
|
|
4156
|
-
amount: string;
|
|
4157
|
-
valueInCurrency: string | null;
|
|
4158
|
-
usd: string | null;
|
|
4159
|
-
};
|
|
4234
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
4160
4235
|
adjustedReturn: {
|
|
4161
4236
|
valueInCurrency: string | null;
|
|
4162
4237
|
usd: string | null;
|
|
@@ -4308,6 +4383,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4308
4383
|
from: string;
|
|
4309
4384
|
gasLimit: number | null;
|
|
4310
4385
|
chainId: number;
|
|
4386
|
+
effectiveGas?: number | undefined;
|
|
4311
4387
|
} | (string & {
|
|
4312
4388
|
data: string;
|
|
4313
4389
|
value: string;
|
|
@@ -4315,6 +4391,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4315
4391
|
from: string;
|
|
4316
4392
|
gasLimit: number | null;
|
|
4317
4393
|
chainId: number;
|
|
4394
|
+
effectiveGas?: number | undefined;
|
|
4318
4395
|
});
|
|
4319
4396
|
approval?: {
|
|
4320
4397
|
data: string;
|
|
@@ -4323,6 +4400,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4323
4400
|
from: string;
|
|
4324
4401
|
gasLimit: number | null;
|
|
4325
4402
|
chainId: number;
|
|
4403
|
+
effectiveGas?: number | undefined;
|
|
4326
4404
|
} | undefined;
|
|
4327
4405
|
l1GasFeesInHexWei?: string | undefined;
|
|
4328
4406
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -4465,6 +4543,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4465
4543
|
from: string;
|
|
4466
4544
|
gasLimit: number | null;
|
|
4467
4545
|
chainId: number;
|
|
4546
|
+
effectiveGas?: number | undefined;
|
|
4468
4547
|
};
|
|
4469
4548
|
approval?: {
|
|
4470
4549
|
data: string;
|
|
@@ -4473,6 +4552,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4473
4552
|
from: string;
|
|
4474
4553
|
gasLimit: number | null;
|
|
4475
4554
|
chainId: number;
|
|
4555
|
+
effectiveGas?: number | undefined;
|
|
4476
4556
|
} | undefined;
|
|
4477
4557
|
} & {
|
|
4478
4558
|
trade: {
|
|
@@ -4482,6 +4562,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4482
4562
|
from: string;
|
|
4483
4563
|
gasLimit: number | null;
|
|
4484
4564
|
chainId: number;
|
|
4565
|
+
effectiveGas?: number | undefined;
|
|
4485
4566
|
};
|
|
4486
4567
|
approval?: {
|
|
4487
4568
|
data: string;
|
|
@@ -4490,6 +4571,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4490
4571
|
from: string;
|
|
4491
4572
|
gasLimit: number | null;
|
|
4492
4573
|
chainId: number;
|
|
4574
|
+
effectiveGas?: number | undefined;
|
|
4493
4575
|
} | undefined;
|
|
4494
4576
|
} & QuoteMetadata)[]) & {
|
|
4495
4577
|
clearCache: () => void;
|
|
@@ -4635,6 +4717,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4635
4717
|
from: string;
|
|
4636
4718
|
gasLimit: number | null;
|
|
4637
4719
|
chainId: number;
|
|
4720
|
+
effectiveGas?: number | undefined;
|
|
4638
4721
|
};
|
|
4639
4722
|
approval?: {
|
|
4640
4723
|
data: string;
|
|
@@ -4643,6 +4726,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4643
4726
|
from: string;
|
|
4644
4727
|
gasLimit: number | null;
|
|
4645
4728
|
chainId: number;
|
|
4729
|
+
effectiveGas?: number | undefined;
|
|
4646
4730
|
} | undefined;
|
|
4647
4731
|
} & {
|
|
4648
4732
|
trade: {
|
|
@@ -4652,6 +4736,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4652
4736
|
from: string;
|
|
4653
4737
|
gasLimit: number | null;
|
|
4654
4738
|
chainId: number;
|
|
4739
|
+
effectiveGas?: number | undefined;
|
|
4655
4740
|
};
|
|
4656
4741
|
approval?: {
|
|
4657
4742
|
data: string;
|
|
@@ -4660,6 +4745,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4660
4745
|
from: string;
|
|
4661
4746
|
gasLimit: number | null;
|
|
4662
4747
|
chainId: number;
|
|
4748
|
+
effectiveGas?: number | undefined;
|
|
4663
4749
|
} | undefined;
|
|
4664
4750
|
} & QuoteMetadata)[];
|
|
4665
4751
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -4688,11 +4774,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4688
4774
|
valueInCurrency: string | null;
|
|
4689
4775
|
usd: string | null;
|
|
4690
4776
|
};
|
|
4691
|
-
gasFee:
|
|
4692
|
-
amount: string;
|
|
4693
|
-
valueInCurrency: string | null;
|
|
4694
|
-
usd: string | null;
|
|
4695
|
-
};
|
|
4777
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
4696
4778
|
adjustedReturn: {
|
|
4697
4779
|
valueInCurrency: string | null;
|
|
4698
4780
|
usd: string | null;
|
|
@@ -4844,6 +4926,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4844
4926
|
from: string;
|
|
4845
4927
|
gasLimit: number | null;
|
|
4846
4928
|
chainId: number;
|
|
4929
|
+
effectiveGas?: number | undefined;
|
|
4847
4930
|
} | (string & {
|
|
4848
4931
|
data: string;
|
|
4849
4932
|
value: string;
|
|
@@ -4851,6 +4934,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4851
4934
|
from: string;
|
|
4852
4935
|
gasLimit: number | null;
|
|
4853
4936
|
chainId: number;
|
|
4937
|
+
effectiveGas?: number | undefined;
|
|
4854
4938
|
});
|
|
4855
4939
|
approval?: {
|
|
4856
4940
|
data: string;
|
|
@@ -4859,6 +4943,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4859
4943
|
from: string;
|
|
4860
4944
|
gasLimit: number | null;
|
|
4861
4945
|
chainId: number;
|
|
4946
|
+
effectiveGas?: number | undefined;
|
|
4862
4947
|
} | undefined;
|
|
4863
4948
|
l1GasFeesInHexWei?: string | undefined;
|
|
4864
4949
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -5006,6 +5091,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5006
5091
|
from: string;
|
|
5007
5092
|
gasLimit: number | null;
|
|
5008
5093
|
chainId: number;
|
|
5094
|
+
effectiveGas?: number | undefined;
|
|
5009
5095
|
};
|
|
5010
5096
|
approval?: {
|
|
5011
5097
|
data: string;
|
|
@@ -5014,6 +5100,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5014
5100
|
from: string;
|
|
5015
5101
|
gasLimit: number | null;
|
|
5016
5102
|
chainId: number;
|
|
5103
|
+
effectiveGas?: number | undefined;
|
|
5017
5104
|
} | undefined;
|
|
5018
5105
|
} & {
|
|
5019
5106
|
trade: {
|
|
@@ -5023,6 +5110,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5023
5110
|
from: string;
|
|
5024
5111
|
gasLimit: number | null;
|
|
5025
5112
|
chainId: number;
|
|
5113
|
+
effectiveGas?: number | undefined;
|
|
5026
5114
|
};
|
|
5027
5115
|
approval?: {
|
|
5028
5116
|
data: string;
|
|
@@ -5031,6 +5119,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5031
5119
|
from: string;
|
|
5032
5120
|
gasLimit: number | null;
|
|
5033
5121
|
chainId: number;
|
|
5122
|
+
effectiveGas?: number | undefined;
|
|
5034
5123
|
} | undefined;
|
|
5035
5124
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
5036
5125
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -5058,11 +5147,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5058
5147
|
valueInCurrency: string | null;
|
|
5059
5148
|
usd: string | null;
|
|
5060
5149
|
};
|
|
5061
|
-
gasFee:
|
|
5062
|
-
amount: string;
|
|
5063
|
-
valueInCurrency: string | null;
|
|
5064
|
-
usd: string | null;
|
|
5065
|
-
};
|
|
5150
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
5066
5151
|
adjustedReturn: {
|
|
5067
5152
|
valueInCurrency: string | null;
|
|
5068
5153
|
usd: string | null;
|
|
@@ -5214,6 +5299,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5214
5299
|
from: string;
|
|
5215
5300
|
gasLimit: number | null;
|
|
5216
5301
|
chainId: number;
|
|
5302
|
+
effectiveGas?: number | undefined;
|
|
5217
5303
|
} | (string & {
|
|
5218
5304
|
data: string;
|
|
5219
5305
|
value: string;
|
|
@@ -5221,6 +5307,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5221
5307
|
from: string;
|
|
5222
5308
|
gasLimit: number | null;
|
|
5223
5309
|
chainId: number;
|
|
5310
|
+
effectiveGas?: number | undefined;
|
|
5224
5311
|
});
|
|
5225
5312
|
approval?: {
|
|
5226
5313
|
data: string;
|
|
@@ -5229,6 +5316,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5229
5316
|
from: string;
|
|
5230
5317
|
gasLimit: number | null;
|
|
5231
5318
|
chainId: number;
|
|
5319
|
+
effectiveGas?: number | undefined;
|
|
5232
5320
|
} | undefined;
|
|
5233
5321
|
l1GasFeesInHexWei?: string | undefined;
|
|
5234
5322
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -5372,6 +5460,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5372
5460
|
from: string;
|
|
5373
5461
|
gasLimit: number | null;
|
|
5374
5462
|
chainId: number;
|
|
5463
|
+
effectiveGas?: number | undefined;
|
|
5375
5464
|
};
|
|
5376
5465
|
approval?: {
|
|
5377
5466
|
data: string;
|
|
@@ -5380,6 +5469,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5380
5469
|
from: string;
|
|
5381
5470
|
gasLimit: number | null;
|
|
5382
5471
|
chainId: number;
|
|
5472
|
+
effectiveGas?: number | undefined;
|
|
5383
5473
|
} | undefined;
|
|
5384
5474
|
} & {
|
|
5385
5475
|
trade: {
|
|
@@ -5389,6 +5479,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5389
5479
|
from: string;
|
|
5390
5480
|
gasLimit: number | null;
|
|
5391
5481
|
chainId: number;
|
|
5482
|
+
effectiveGas?: number | undefined;
|
|
5392
5483
|
};
|
|
5393
5484
|
approval?: {
|
|
5394
5485
|
data: string;
|
|
@@ -5397,6 +5488,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5397
5488
|
from: string;
|
|
5398
5489
|
gasLimit: number | null;
|
|
5399
5490
|
chainId: number;
|
|
5491
|
+
effectiveGas?: number | undefined;
|
|
5400
5492
|
} | undefined;
|
|
5401
5493
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
5402
5494
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -5424,11 +5516,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5424
5516
|
valueInCurrency: string | null;
|
|
5425
5517
|
usd: string | null;
|
|
5426
5518
|
};
|
|
5427
|
-
gasFee:
|
|
5428
|
-
amount: string;
|
|
5429
|
-
valueInCurrency: string | null;
|
|
5430
|
-
usd: string | null;
|
|
5431
|
-
};
|
|
5519
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
5432
5520
|
adjustedReturn: {
|
|
5433
5521
|
valueInCurrency: string | null;
|
|
5434
5522
|
usd: string | null;
|
|
@@ -5580,6 +5668,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5580
5668
|
from: string;
|
|
5581
5669
|
gasLimit: number | null;
|
|
5582
5670
|
chainId: number;
|
|
5671
|
+
effectiveGas?: number | undefined;
|
|
5583
5672
|
} | (string & {
|
|
5584
5673
|
data: string;
|
|
5585
5674
|
value: string;
|
|
@@ -5587,6 +5676,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5587
5676
|
from: string;
|
|
5588
5677
|
gasLimit: number | null;
|
|
5589
5678
|
chainId: number;
|
|
5679
|
+
effectiveGas?: number | undefined;
|
|
5590
5680
|
});
|
|
5591
5681
|
approval?: {
|
|
5592
5682
|
data: string;
|
|
@@ -5595,6 +5685,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5595
5685
|
from: string;
|
|
5596
5686
|
gasLimit: number | null;
|
|
5597
5687
|
chainId: number;
|
|
5688
|
+
effectiveGas?: number | undefined;
|
|
5598
5689
|
} | undefined;
|
|
5599
5690
|
l1GasFeesInHexWei?: string | undefined;
|
|
5600
5691
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -5625,11 +5716,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5625
5716
|
valueInCurrency: string | null;
|
|
5626
5717
|
usd: string | null;
|
|
5627
5718
|
};
|
|
5628
|
-
gasFee:
|
|
5629
|
-
amount: string;
|
|
5630
|
-
valueInCurrency: string | null;
|
|
5631
|
-
usd: string | null;
|
|
5632
|
-
};
|
|
5719
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
5633
5720
|
adjustedReturn: {
|
|
5634
5721
|
valueInCurrency: string | null;
|
|
5635
5722
|
usd: string | null;
|
|
@@ -5781,6 +5868,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5781
5868
|
from: string;
|
|
5782
5869
|
gasLimit: number | null;
|
|
5783
5870
|
chainId: number;
|
|
5871
|
+
effectiveGas?: number | undefined;
|
|
5784
5872
|
} | (string & {
|
|
5785
5873
|
data: string;
|
|
5786
5874
|
value: string;
|
|
@@ -5788,6 +5876,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5788
5876
|
from: string;
|
|
5789
5877
|
gasLimit: number | null;
|
|
5790
5878
|
chainId: number;
|
|
5879
|
+
effectiveGas?: number | undefined;
|
|
5791
5880
|
});
|
|
5792
5881
|
approval?: {
|
|
5793
5882
|
data: string;
|
|
@@ -5796,6 +5885,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5796
5885
|
from: string;
|
|
5797
5886
|
gasLimit: number | null;
|
|
5798
5887
|
chainId: number;
|
|
5888
|
+
effectiveGas?: number | undefined;
|
|
5799
5889
|
} | undefined;
|
|
5800
5890
|
l1GasFeesInHexWei?: string | undefined;
|
|
5801
5891
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -5939,6 +6029,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5939
6029
|
from: string;
|
|
5940
6030
|
gasLimit: number | null;
|
|
5941
6031
|
chainId: number;
|
|
6032
|
+
effectiveGas?: number | undefined;
|
|
5942
6033
|
};
|
|
5943
6034
|
approval?: {
|
|
5944
6035
|
data: string;
|
|
@@ -5947,6 +6038,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5947
6038
|
from: string;
|
|
5948
6039
|
gasLimit: number | null;
|
|
5949
6040
|
chainId: number;
|
|
6041
|
+
effectiveGas?: number | undefined;
|
|
5950
6042
|
} | undefined;
|
|
5951
6043
|
} & {
|
|
5952
6044
|
trade: {
|
|
@@ -5956,6 +6048,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5956
6048
|
from: string;
|
|
5957
6049
|
gasLimit: number | null;
|
|
5958
6050
|
chainId: number;
|
|
6051
|
+
effectiveGas?: number | undefined;
|
|
5959
6052
|
};
|
|
5960
6053
|
approval?: {
|
|
5961
6054
|
data: string;
|
|
@@ -5964,6 +6057,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5964
6057
|
from: string;
|
|
5965
6058
|
gasLimit: number | null;
|
|
5966
6059
|
chainId: number;
|
|
6060
|
+
effectiveGas?: number | undefined;
|
|
5967
6061
|
} | undefined;
|
|
5968
6062
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], ((state: BridgeControllerState & {
|
|
5969
6063
|
gasFeeEstimates: GasFeeEstimates;
|
|
@@ -6236,6 +6330,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6236
6330
|
from: string;
|
|
6237
6331
|
gasLimit: number | null;
|
|
6238
6332
|
chainId: number;
|
|
6333
|
+
effectiveGas?: number | undefined;
|
|
6239
6334
|
};
|
|
6240
6335
|
approval?: {
|
|
6241
6336
|
data: string;
|
|
@@ -6244,6 +6339,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6244
6339
|
from: string;
|
|
6245
6340
|
gasLimit: number | null;
|
|
6246
6341
|
chainId: number;
|
|
6342
|
+
effectiveGas?: number | undefined;
|
|
6247
6343
|
} | undefined;
|
|
6248
6344
|
} & {
|
|
6249
6345
|
trade: {
|
|
@@ -6253,6 +6349,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6253
6349
|
from: string;
|
|
6254
6350
|
gasLimit: number | null;
|
|
6255
6351
|
chainId: number;
|
|
6352
|
+
effectiveGas?: number | undefined;
|
|
6256
6353
|
};
|
|
6257
6354
|
approval?: {
|
|
6258
6355
|
data: string;
|
|
@@ -6261,6 +6358,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6261
6358
|
from: string;
|
|
6262
6359
|
gasLimit: number | null;
|
|
6263
6360
|
chainId: number;
|
|
6361
|
+
effectiveGas?: number | undefined;
|
|
6264
6362
|
} | undefined;
|
|
6265
6363
|
} & QuoteMetadata) | null) & {
|
|
6266
6364
|
clearCache: () => void;
|
|
@@ -6406,6 +6504,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6406
6504
|
from: string;
|
|
6407
6505
|
gasLimit: number | null;
|
|
6408
6506
|
chainId: number;
|
|
6507
|
+
effectiveGas?: number | undefined;
|
|
6409
6508
|
};
|
|
6410
6509
|
approval?: {
|
|
6411
6510
|
data: string;
|
|
@@ -6414,6 +6513,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6414
6513
|
from: string;
|
|
6415
6514
|
gasLimit: number | null;
|
|
6416
6515
|
chainId: number;
|
|
6516
|
+
effectiveGas?: number | undefined;
|
|
6417
6517
|
} | undefined;
|
|
6418
6518
|
} & {
|
|
6419
6519
|
trade: {
|
|
@@ -6423,6 +6523,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6423
6523
|
from: string;
|
|
6424
6524
|
gasLimit: number | null;
|
|
6425
6525
|
chainId: number;
|
|
6526
|
+
effectiveGas?: number | undefined;
|
|
6426
6527
|
};
|
|
6427
6528
|
approval?: {
|
|
6428
6529
|
data: string;
|
|
@@ -6431,6 +6532,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6431
6532
|
from: string;
|
|
6432
6533
|
gasLimit: number | null;
|
|
6433
6534
|
chainId: number;
|
|
6535
|
+
effectiveGas?: number | undefined;
|
|
6434
6536
|
} | undefined;
|
|
6435
6537
|
} & QuoteMetadata)[]) => ({
|
|
6436
6538
|
quote: {
|
|
@@ -6571,6 +6673,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6571
6673
|
from: string;
|
|
6572
6674
|
gasLimit: number | null;
|
|
6573
6675
|
chainId: number;
|
|
6676
|
+
effectiveGas?: number | undefined;
|
|
6574
6677
|
};
|
|
6575
6678
|
approval?: {
|
|
6576
6679
|
data: string;
|
|
@@ -6579,6 +6682,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6579
6682
|
from: string;
|
|
6580
6683
|
gasLimit: number | null;
|
|
6581
6684
|
chainId: number;
|
|
6685
|
+
effectiveGas?: number | undefined;
|
|
6582
6686
|
} | undefined;
|
|
6583
6687
|
} & {
|
|
6584
6688
|
trade: {
|
|
@@ -6588,6 +6692,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6588
6692
|
from: string;
|
|
6589
6693
|
gasLimit: number | null;
|
|
6590
6694
|
chainId: number;
|
|
6695
|
+
effectiveGas?: number | undefined;
|
|
6591
6696
|
};
|
|
6592
6697
|
approval?: {
|
|
6593
6698
|
data: string;
|
|
@@ -6596,6 +6701,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6596
6701
|
from: string;
|
|
6597
6702
|
gasLimit: number | null;
|
|
6598
6703
|
chainId: number;
|
|
6704
|
+
effectiveGas?: number | undefined;
|
|
6599
6705
|
} | undefined;
|
|
6600
6706
|
} & QuoteMetadata) | null;
|
|
6601
6707
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
@@ -6737,6 +6843,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6737
6843
|
from: string;
|
|
6738
6844
|
gasLimit: number | null;
|
|
6739
6845
|
chainId: number;
|
|
6846
|
+
effectiveGas?: number | undefined;
|
|
6740
6847
|
};
|
|
6741
6848
|
approval?: {
|
|
6742
6849
|
data: string;
|
|
@@ -6745,6 +6852,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6745
6852
|
from: string;
|
|
6746
6853
|
gasLimit: number | null;
|
|
6747
6854
|
chainId: number;
|
|
6855
|
+
effectiveGas?: number | undefined;
|
|
6748
6856
|
} | undefined;
|
|
6749
6857
|
} & {
|
|
6750
6858
|
trade: {
|
|
@@ -6754,6 +6862,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6754
6862
|
from: string;
|
|
6755
6863
|
gasLimit: number | null;
|
|
6756
6864
|
chainId: number;
|
|
6865
|
+
effectiveGas?: number | undefined;
|
|
6757
6866
|
};
|
|
6758
6867
|
approval?: {
|
|
6759
6868
|
data: string;
|
|
@@ -6762,6 +6871,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6762
6871
|
from: string;
|
|
6763
6872
|
gasLimit: number | null;
|
|
6764
6873
|
chainId: number;
|
|
6874
|
+
effectiveGas?: number | undefined;
|
|
6765
6875
|
} | undefined;
|
|
6766
6876
|
} & QuoteMetadata)[]) => ({
|
|
6767
6877
|
quote: {
|
|
@@ -6902,6 +7012,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6902
7012
|
from: string;
|
|
6903
7013
|
gasLimit: number | null;
|
|
6904
7014
|
chainId: number;
|
|
7015
|
+
effectiveGas?: number | undefined;
|
|
6905
7016
|
};
|
|
6906
7017
|
approval?: {
|
|
6907
7018
|
data: string;
|
|
@@ -6910,6 +7021,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6910
7021
|
from: string;
|
|
6911
7022
|
gasLimit: number | null;
|
|
6912
7023
|
chainId: number;
|
|
7024
|
+
effectiveGas?: number | undefined;
|
|
6913
7025
|
} | undefined;
|
|
6914
7026
|
} & {
|
|
6915
7027
|
trade: {
|
|
@@ -6919,6 +7031,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6919
7031
|
from: string;
|
|
6920
7032
|
gasLimit: number | null;
|
|
6921
7033
|
chainId: number;
|
|
7034
|
+
effectiveGas?: number | undefined;
|
|
6922
7035
|
};
|
|
6923
7036
|
approval?: {
|
|
6924
7037
|
data: string;
|
|
@@ -6927,6 +7040,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6927
7040
|
from: string;
|
|
6928
7041
|
gasLimit: number | null;
|
|
6929
7042
|
chainId: number;
|
|
7043
|
+
effectiveGas?: number | undefined;
|
|
6930
7044
|
} | undefined;
|
|
6931
7045
|
} & QuoteMetadata) | null) & {
|
|
6932
7046
|
clearCache: () => void;
|
|
@@ -7072,6 +7186,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7072
7186
|
from: string;
|
|
7073
7187
|
gasLimit: number | null;
|
|
7074
7188
|
chainId: number;
|
|
7189
|
+
effectiveGas?: number | undefined;
|
|
7075
7190
|
};
|
|
7076
7191
|
approval?: {
|
|
7077
7192
|
data: string;
|
|
@@ -7080,6 +7195,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7080
7195
|
from: string;
|
|
7081
7196
|
gasLimit: number | null;
|
|
7082
7197
|
chainId: number;
|
|
7198
|
+
effectiveGas?: number | undefined;
|
|
7083
7199
|
} | undefined;
|
|
7084
7200
|
} & {
|
|
7085
7201
|
trade: {
|
|
@@ -7089,6 +7205,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7089
7205
|
from: string;
|
|
7090
7206
|
gasLimit: number | null;
|
|
7091
7207
|
chainId: number;
|
|
7208
|
+
effectiveGas?: number | undefined;
|
|
7092
7209
|
};
|
|
7093
7210
|
approval?: {
|
|
7094
7211
|
data: string;
|
|
@@ -7097,6 +7214,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7097
7214
|
from: string;
|
|
7098
7215
|
gasLimit: number | null;
|
|
7099
7216
|
chainId: number;
|
|
7217
|
+
effectiveGas?: number | undefined;
|
|
7100
7218
|
} | undefined;
|
|
7101
7219
|
} & QuoteMetadata) | null;
|
|
7102
7220
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -7242,6 +7360,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7242
7360
|
from: string;
|
|
7243
7361
|
gasLimit: number | null;
|
|
7244
7362
|
chainId: number;
|
|
7363
|
+
effectiveGas?: number | undefined;
|
|
7245
7364
|
};
|
|
7246
7365
|
approval?: {
|
|
7247
7366
|
data: string;
|
|
@@ -7250,6 +7369,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7250
7369
|
from: string;
|
|
7251
7370
|
gasLimit: number | null;
|
|
7252
7371
|
chainId: number;
|
|
7372
|
+
effectiveGas?: number | undefined;
|
|
7253
7373
|
} | undefined;
|
|
7254
7374
|
} & {
|
|
7255
7375
|
trade: {
|
|
@@ -7259,6 +7379,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7259
7379
|
from: string;
|
|
7260
7380
|
gasLimit: number | null;
|
|
7261
7381
|
chainId: number;
|
|
7382
|
+
effectiveGas?: number | undefined;
|
|
7262
7383
|
};
|
|
7263
7384
|
approval?: {
|
|
7264
7385
|
data: string;
|
|
@@ -7267,6 +7388,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7267
7388
|
from: string;
|
|
7268
7389
|
gasLimit: number | null;
|
|
7269
7390
|
chainId: number;
|
|
7391
|
+
effectiveGas?: number | undefined;
|
|
7270
7392
|
} | undefined;
|
|
7271
7393
|
} & QuoteMetadata)[]) & {
|
|
7272
7394
|
clearCache: () => void;
|
|
@@ -7295,11 +7417,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7295
7417
|
valueInCurrency: string | null;
|
|
7296
7418
|
usd: string | null;
|
|
7297
7419
|
};
|
|
7298
|
-
gasFee:
|
|
7299
|
-
amount: string;
|
|
7300
|
-
valueInCurrency: string | null;
|
|
7301
|
-
usd: string | null;
|
|
7302
|
-
};
|
|
7420
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
7303
7421
|
adjustedReturn: {
|
|
7304
7422
|
valueInCurrency: string | null;
|
|
7305
7423
|
usd: string | null;
|
|
@@ -7451,6 +7569,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7451
7569
|
from: string;
|
|
7452
7570
|
gasLimit: number | null;
|
|
7453
7571
|
chainId: number;
|
|
7572
|
+
effectiveGas?: number | undefined;
|
|
7454
7573
|
} | (string & {
|
|
7455
7574
|
data: string;
|
|
7456
7575
|
value: string;
|
|
@@ -7458,6 +7577,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7458
7577
|
from: string;
|
|
7459
7578
|
gasLimit: number | null;
|
|
7460
7579
|
chainId: number;
|
|
7580
|
+
effectiveGas?: number | undefined;
|
|
7461
7581
|
});
|
|
7462
7582
|
approval?: {
|
|
7463
7583
|
data: string;
|
|
@@ -7466,6 +7586,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7466
7586
|
from: string;
|
|
7467
7587
|
gasLimit: number | null;
|
|
7468
7588
|
chainId: number;
|
|
7589
|
+
effectiveGas?: number | undefined;
|
|
7469
7590
|
} | undefined;
|
|
7470
7591
|
l1GasFeesInHexWei?: string | undefined;
|
|
7471
7592
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -7608,6 +7729,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7608
7729
|
from: string;
|
|
7609
7730
|
gasLimit: number | null;
|
|
7610
7731
|
chainId: number;
|
|
7732
|
+
effectiveGas?: number | undefined;
|
|
7611
7733
|
};
|
|
7612
7734
|
approval?: {
|
|
7613
7735
|
data: string;
|
|
@@ -7616,6 +7738,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7616
7738
|
from: string;
|
|
7617
7739
|
gasLimit: number | null;
|
|
7618
7740
|
chainId: number;
|
|
7741
|
+
effectiveGas?: number | undefined;
|
|
7619
7742
|
} | undefined;
|
|
7620
7743
|
} & {
|
|
7621
7744
|
trade: {
|
|
@@ -7625,6 +7748,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7625
7748
|
from: string;
|
|
7626
7749
|
gasLimit: number | null;
|
|
7627
7750
|
chainId: number;
|
|
7751
|
+
effectiveGas?: number | undefined;
|
|
7628
7752
|
};
|
|
7629
7753
|
approval?: {
|
|
7630
7754
|
data: string;
|
|
@@ -7633,6 +7757,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7633
7757
|
from: string;
|
|
7634
7758
|
gasLimit: number | null;
|
|
7635
7759
|
chainId: number;
|
|
7760
|
+
effectiveGas?: number | undefined;
|
|
7636
7761
|
} | undefined;
|
|
7637
7762
|
} & QuoteMetadata)[];
|
|
7638
7763
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
@@ -7657,11 +7782,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7657
7782
|
valueInCurrency: string | null;
|
|
7658
7783
|
usd: string | null;
|
|
7659
7784
|
};
|
|
7660
|
-
gasFee:
|
|
7661
|
-
amount: string;
|
|
7662
|
-
valueInCurrency: string | null;
|
|
7663
|
-
usd: string | null;
|
|
7664
|
-
};
|
|
7785
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
7665
7786
|
adjustedReturn: {
|
|
7666
7787
|
valueInCurrency: string | null;
|
|
7667
7788
|
usd: string | null;
|
|
@@ -7813,6 +7934,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7813
7934
|
from: string;
|
|
7814
7935
|
gasLimit: number | null;
|
|
7815
7936
|
chainId: number;
|
|
7937
|
+
effectiveGas?: number | undefined;
|
|
7816
7938
|
} | (string & {
|
|
7817
7939
|
data: string;
|
|
7818
7940
|
value: string;
|
|
@@ -7820,6 +7942,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7820
7942
|
from: string;
|
|
7821
7943
|
gasLimit: number | null;
|
|
7822
7944
|
chainId: number;
|
|
7945
|
+
effectiveGas?: number | undefined;
|
|
7823
7946
|
});
|
|
7824
7947
|
approval?: {
|
|
7825
7948
|
data: string;
|
|
@@ -7828,6 +7951,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7828
7951
|
from: string;
|
|
7829
7952
|
gasLimit: number | null;
|
|
7830
7953
|
chainId: number;
|
|
7954
|
+
effectiveGas?: number | undefined;
|
|
7831
7955
|
} | undefined;
|
|
7832
7956
|
l1GasFeesInHexWei?: string | undefined;
|
|
7833
7957
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -7970,6 +8094,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7970
8094
|
from: string;
|
|
7971
8095
|
gasLimit: number | null;
|
|
7972
8096
|
chainId: number;
|
|
8097
|
+
effectiveGas?: number | undefined;
|
|
7973
8098
|
};
|
|
7974
8099
|
approval?: {
|
|
7975
8100
|
data: string;
|
|
@@ -7978,6 +8103,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7978
8103
|
from: string;
|
|
7979
8104
|
gasLimit: number | null;
|
|
7980
8105
|
chainId: number;
|
|
8106
|
+
effectiveGas?: number | undefined;
|
|
7981
8107
|
} | undefined;
|
|
7982
8108
|
} & {
|
|
7983
8109
|
trade: {
|
|
@@ -7987,6 +8113,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7987
8113
|
from: string;
|
|
7988
8114
|
gasLimit: number | null;
|
|
7989
8115
|
chainId: number;
|
|
8116
|
+
effectiveGas?: number | undefined;
|
|
7990
8117
|
};
|
|
7991
8118
|
approval?: {
|
|
7992
8119
|
data: string;
|
|
@@ -7995,6 +8122,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7995
8122
|
from: string;
|
|
7996
8123
|
gasLimit: number | null;
|
|
7997
8124
|
chainId: number;
|
|
8125
|
+
effectiveGas?: number | undefined;
|
|
7998
8126
|
} | undefined;
|
|
7999
8127
|
} & QuoteMetadata)[]) & {
|
|
8000
8128
|
clearCache: () => void;
|
|
@@ -8140,6 +8268,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8140
8268
|
from: string;
|
|
8141
8269
|
gasLimit: number | null;
|
|
8142
8270
|
chainId: number;
|
|
8271
|
+
effectiveGas?: number | undefined;
|
|
8143
8272
|
};
|
|
8144
8273
|
approval?: {
|
|
8145
8274
|
data: string;
|
|
@@ -8148,6 +8277,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8148
8277
|
from: string;
|
|
8149
8278
|
gasLimit: number | null;
|
|
8150
8279
|
chainId: number;
|
|
8280
|
+
effectiveGas?: number | undefined;
|
|
8151
8281
|
} | undefined;
|
|
8152
8282
|
} & {
|
|
8153
8283
|
trade: {
|
|
@@ -8157,6 +8287,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8157
8287
|
from: string;
|
|
8158
8288
|
gasLimit: number | null;
|
|
8159
8289
|
chainId: number;
|
|
8290
|
+
effectiveGas?: number | undefined;
|
|
8160
8291
|
};
|
|
8161
8292
|
approval?: {
|
|
8162
8293
|
data: string;
|
|
@@ -8165,6 +8296,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8165
8296
|
from: string;
|
|
8166
8297
|
gasLimit: number | null;
|
|
8167
8298
|
chainId: number;
|
|
8299
|
+
effectiveGas?: number | undefined;
|
|
8168
8300
|
} | undefined;
|
|
8169
8301
|
} & QuoteMetadata)[];
|
|
8170
8302
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -8193,11 +8325,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8193
8325
|
valueInCurrency: string | null;
|
|
8194
8326
|
usd: string | null;
|
|
8195
8327
|
};
|
|
8196
|
-
gasFee:
|
|
8197
|
-
amount: string;
|
|
8198
|
-
valueInCurrency: string | null;
|
|
8199
|
-
usd: string | null;
|
|
8200
|
-
};
|
|
8328
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
8201
8329
|
adjustedReturn: {
|
|
8202
8330
|
valueInCurrency: string | null;
|
|
8203
8331
|
usd: string | null;
|
|
@@ -8349,6 +8477,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8349
8477
|
from: string;
|
|
8350
8478
|
gasLimit: number | null;
|
|
8351
8479
|
chainId: number;
|
|
8480
|
+
effectiveGas?: number | undefined;
|
|
8352
8481
|
} | (string & {
|
|
8353
8482
|
data: string;
|
|
8354
8483
|
value: string;
|
|
@@ -8356,6 +8485,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8356
8485
|
from: string;
|
|
8357
8486
|
gasLimit: number | null;
|
|
8358
8487
|
chainId: number;
|
|
8488
|
+
effectiveGas?: number | undefined;
|
|
8359
8489
|
});
|
|
8360
8490
|
approval?: {
|
|
8361
8491
|
data: string;
|
|
@@ -8364,6 +8494,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8364
8494
|
from: string;
|
|
8365
8495
|
gasLimit: number | null;
|
|
8366
8496
|
chainId: number;
|
|
8497
|
+
effectiveGas?: number | undefined;
|
|
8367
8498
|
} | undefined;
|
|
8368
8499
|
l1GasFeesInHexWei?: string | undefined;
|
|
8369
8500
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -8511,6 +8642,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8511
8642
|
from: string;
|
|
8512
8643
|
gasLimit: number | null;
|
|
8513
8644
|
chainId: number;
|
|
8645
|
+
effectiveGas?: number | undefined;
|
|
8514
8646
|
};
|
|
8515
8647
|
approval?: {
|
|
8516
8648
|
data: string;
|
|
@@ -8519,6 +8651,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8519
8651
|
from: string;
|
|
8520
8652
|
gasLimit: number | null;
|
|
8521
8653
|
chainId: number;
|
|
8654
|
+
effectiveGas?: number | undefined;
|
|
8522
8655
|
} | undefined;
|
|
8523
8656
|
} & {
|
|
8524
8657
|
trade: {
|
|
@@ -8528,6 +8661,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8528
8661
|
from: string;
|
|
8529
8662
|
gasLimit: number | null;
|
|
8530
8663
|
chainId: number;
|
|
8664
|
+
effectiveGas?: number | undefined;
|
|
8531
8665
|
};
|
|
8532
8666
|
approval?: {
|
|
8533
8667
|
data: string;
|
|
@@ -8536,6 +8670,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8536
8670
|
from: string;
|
|
8537
8671
|
gasLimit: number | null;
|
|
8538
8672
|
chainId: number;
|
|
8673
|
+
effectiveGas?: number | undefined;
|
|
8539
8674
|
} | undefined;
|
|
8540
8675
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
8541
8676
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -8563,11 +8698,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8563
8698
|
valueInCurrency: string | null;
|
|
8564
8699
|
usd: string | null;
|
|
8565
8700
|
};
|
|
8566
|
-
gasFee:
|
|
8567
|
-
amount: string;
|
|
8568
|
-
valueInCurrency: string | null;
|
|
8569
|
-
usd: string | null;
|
|
8570
|
-
};
|
|
8701
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
8571
8702
|
adjustedReturn: {
|
|
8572
8703
|
valueInCurrency: string | null;
|
|
8573
8704
|
usd: string | null;
|
|
@@ -8719,6 +8850,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8719
8850
|
from: string;
|
|
8720
8851
|
gasLimit: number | null;
|
|
8721
8852
|
chainId: number;
|
|
8853
|
+
effectiveGas?: number | undefined;
|
|
8722
8854
|
} | (string & {
|
|
8723
8855
|
data: string;
|
|
8724
8856
|
value: string;
|
|
@@ -8726,6 +8858,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8726
8858
|
from: string;
|
|
8727
8859
|
gasLimit: number | null;
|
|
8728
8860
|
chainId: number;
|
|
8861
|
+
effectiveGas?: number | undefined;
|
|
8729
8862
|
});
|
|
8730
8863
|
approval?: {
|
|
8731
8864
|
data: string;
|
|
@@ -8734,6 +8867,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8734
8867
|
from: string;
|
|
8735
8868
|
gasLimit: number | null;
|
|
8736
8869
|
chainId: number;
|
|
8870
|
+
effectiveGas?: number | undefined;
|
|
8737
8871
|
} | undefined;
|
|
8738
8872
|
l1GasFeesInHexWei?: string | undefined;
|
|
8739
8873
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -8877,6 +9011,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8877
9011
|
from: string;
|
|
8878
9012
|
gasLimit: number | null;
|
|
8879
9013
|
chainId: number;
|
|
9014
|
+
effectiveGas?: number | undefined;
|
|
8880
9015
|
};
|
|
8881
9016
|
approval?: {
|
|
8882
9017
|
data: string;
|
|
@@ -8885,6 +9020,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8885
9020
|
from: string;
|
|
8886
9021
|
gasLimit: number | null;
|
|
8887
9022
|
chainId: number;
|
|
9023
|
+
effectiveGas?: number | undefined;
|
|
8888
9024
|
} | undefined;
|
|
8889
9025
|
} & {
|
|
8890
9026
|
trade: {
|
|
@@ -8894,6 +9030,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8894
9030
|
from: string;
|
|
8895
9031
|
gasLimit: number | null;
|
|
8896
9032
|
chainId: number;
|
|
9033
|
+
effectiveGas?: number | undefined;
|
|
8897
9034
|
};
|
|
8898
9035
|
approval?: {
|
|
8899
9036
|
data: string;
|
|
@@ -8902,6 +9039,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8902
9039
|
from: string;
|
|
8903
9040
|
gasLimit: number | null;
|
|
8904
9041
|
chainId: number;
|
|
9042
|
+
effectiveGas?: number | undefined;
|
|
8905
9043
|
} | undefined;
|
|
8906
9044
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
8907
9045
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -8929,11 +9067,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8929
9067
|
valueInCurrency: string | null;
|
|
8930
9068
|
usd: string | null;
|
|
8931
9069
|
};
|
|
8932
|
-
gasFee:
|
|
8933
|
-
amount: string;
|
|
8934
|
-
valueInCurrency: string | null;
|
|
8935
|
-
usd: string | null;
|
|
8936
|
-
};
|
|
9070
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
8937
9071
|
adjustedReturn: {
|
|
8938
9072
|
valueInCurrency: string | null;
|
|
8939
9073
|
usd: string | null;
|
|
@@ -9085,6 +9219,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9085
9219
|
from: string;
|
|
9086
9220
|
gasLimit: number | null;
|
|
9087
9221
|
chainId: number;
|
|
9222
|
+
effectiveGas?: number | undefined;
|
|
9088
9223
|
} | (string & {
|
|
9089
9224
|
data: string;
|
|
9090
9225
|
value: string;
|
|
@@ -9092,6 +9227,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9092
9227
|
from: string;
|
|
9093
9228
|
gasLimit: number | null;
|
|
9094
9229
|
chainId: number;
|
|
9230
|
+
effectiveGas?: number | undefined;
|
|
9095
9231
|
});
|
|
9096
9232
|
approval?: {
|
|
9097
9233
|
data: string;
|
|
@@ -9100,6 +9236,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9100
9236
|
from: string;
|
|
9101
9237
|
gasLimit: number | null;
|
|
9102
9238
|
chainId: number;
|
|
9239
|
+
effectiveGas?: number | undefined;
|
|
9103
9240
|
} | undefined;
|
|
9104
9241
|
l1GasFeesInHexWei?: string | undefined;
|
|
9105
9242
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -9130,11 +9267,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9130
9267
|
valueInCurrency: string | null;
|
|
9131
9268
|
usd: string | null;
|
|
9132
9269
|
};
|
|
9133
|
-
gasFee:
|
|
9134
|
-
amount: string;
|
|
9135
|
-
valueInCurrency: string | null;
|
|
9136
|
-
usd: string | null;
|
|
9137
|
-
};
|
|
9270
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
9138
9271
|
adjustedReturn: {
|
|
9139
9272
|
valueInCurrency: string | null;
|
|
9140
9273
|
usd: string | null;
|
|
@@ -9286,6 +9419,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9286
9419
|
from: string;
|
|
9287
9420
|
gasLimit: number | null;
|
|
9288
9421
|
chainId: number;
|
|
9422
|
+
effectiveGas?: number | undefined;
|
|
9289
9423
|
} | (string & {
|
|
9290
9424
|
data: string;
|
|
9291
9425
|
value: string;
|
|
@@ -9293,6 +9427,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9293
9427
|
from: string;
|
|
9294
9428
|
gasLimit: number | null;
|
|
9295
9429
|
chainId: number;
|
|
9430
|
+
effectiveGas?: number | undefined;
|
|
9296
9431
|
});
|
|
9297
9432
|
approval?: {
|
|
9298
9433
|
data: string;
|
|
@@ -9301,6 +9436,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9301
9436
|
from: string;
|
|
9302
9437
|
gasLimit: number | null;
|
|
9303
9438
|
chainId: number;
|
|
9439
|
+
effectiveGas?: number | undefined;
|
|
9304
9440
|
} | undefined;
|
|
9305
9441
|
l1GasFeesInHexWei?: string | undefined;
|
|
9306
9442
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -9444,6 +9580,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9444
9580
|
from: string;
|
|
9445
9581
|
gasLimit: number | null;
|
|
9446
9582
|
chainId: number;
|
|
9583
|
+
effectiveGas?: number | undefined;
|
|
9447
9584
|
};
|
|
9448
9585
|
approval?: {
|
|
9449
9586
|
data: string;
|
|
@@ -9452,6 +9589,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9452
9589
|
from: string;
|
|
9453
9590
|
gasLimit: number | null;
|
|
9454
9591
|
chainId: number;
|
|
9592
|
+
effectiveGas?: number | undefined;
|
|
9455
9593
|
} | undefined;
|
|
9456
9594
|
} & {
|
|
9457
9595
|
trade: {
|
|
@@ -9461,6 +9599,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9461
9599
|
from: string;
|
|
9462
9600
|
gasLimit: number | null;
|
|
9463
9601
|
chainId: number;
|
|
9602
|
+
effectiveGas?: number | undefined;
|
|
9464
9603
|
};
|
|
9465
9604
|
approval?: {
|
|
9466
9605
|
data: string;
|
|
@@ -9469,6 +9608,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9469
9608
|
from: string;
|
|
9470
9609
|
gasLimit: number | null;
|
|
9471
9610
|
chainId: number;
|
|
9611
|
+
effectiveGas?: number | undefined;
|
|
9472
9612
|
} | undefined;
|
|
9473
9613
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], ((state: BridgeControllerState & {
|
|
9474
9614
|
gasFeeEstimates: GasFeeEstimates;
|
|
@@ -9749,6 +9889,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9749
9889
|
from: string;
|
|
9750
9890
|
gasLimit: number | null;
|
|
9751
9891
|
chainId: number;
|
|
9892
|
+
effectiveGas?: number | undefined;
|
|
9752
9893
|
};
|
|
9753
9894
|
approval?: {
|
|
9754
9895
|
data: string;
|
|
@@ -9757,6 +9898,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9757
9898
|
from: string;
|
|
9758
9899
|
gasLimit: number | null;
|
|
9759
9900
|
chainId: number;
|
|
9901
|
+
effectiveGas?: number | undefined;
|
|
9760
9902
|
} | undefined;
|
|
9761
9903
|
} & {
|
|
9762
9904
|
trade: {
|
|
@@ -9766,6 +9908,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9766
9908
|
from: string;
|
|
9767
9909
|
gasLimit: number | null;
|
|
9768
9910
|
chainId: number;
|
|
9911
|
+
effectiveGas?: number | undefined;
|
|
9769
9912
|
};
|
|
9770
9913
|
approval?: {
|
|
9771
9914
|
data: string;
|
|
@@ -9774,6 +9917,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9774
9917
|
from: string;
|
|
9775
9918
|
gasLimit: number | null;
|
|
9776
9919
|
chainId: number;
|
|
9920
|
+
effectiveGas?: number | undefined;
|
|
9777
9921
|
} | undefined;
|
|
9778
9922
|
} & QuoteMetadata) | null) & {
|
|
9779
9923
|
clearCache: () => void;
|
|
@@ -9919,6 +10063,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9919
10063
|
from: string;
|
|
9920
10064
|
gasLimit: number | null;
|
|
9921
10065
|
chainId: number;
|
|
10066
|
+
effectiveGas?: number | undefined;
|
|
9922
10067
|
};
|
|
9923
10068
|
approval?: {
|
|
9924
10069
|
data: string;
|
|
@@ -9927,6 +10072,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9927
10072
|
from: string;
|
|
9928
10073
|
gasLimit: number | null;
|
|
9929
10074
|
chainId: number;
|
|
10075
|
+
effectiveGas?: number | undefined;
|
|
9930
10076
|
} | undefined;
|
|
9931
10077
|
} & {
|
|
9932
10078
|
trade: {
|
|
@@ -9936,6 +10082,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9936
10082
|
from: string;
|
|
9937
10083
|
gasLimit: number | null;
|
|
9938
10084
|
chainId: number;
|
|
10085
|
+
effectiveGas?: number | undefined;
|
|
9939
10086
|
};
|
|
9940
10087
|
approval?: {
|
|
9941
10088
|
data: string;
|
|
@@ -9944,6 +10091,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9944
10091
|
from: string;
|
|
9945
10092
|
gasLimit: number | null;
|
|
9946
10093
|
chainId: number;
|
|
10094
|
+
effectiveGas?: number | undefined;
|
|
9947
10095
|
} | undefined;
|
|
9948
10096
|
} & QuoteMetadata) | null, resultFuncArgs_1: ({
|
|
9949
10097
|
quote: {
|
|
@@ -10084,6 +10232,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10084
10232
|
from: string;
|
|
10085
10233
|
gasLimit: number | null;
|
|
10086
10234
|
chainId: number;
|
|
10235
|
+
effectiveGas?: number | undefined;
|
|
10087
10236
|
};
|
|
10088
10237
|
approval?: {
|
|
10089
10238
|
data: string;
|
|
@@ -10092,6 +10241,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10092
10241
|
from: string;
|
|
10093
10242
|
gasLimit: number | null;
|
|
10094
10243
|
chainId: number;
|
|
10244
|
+
effectiveGas?: number | undefined;
|
|
10095
10245
|
} | undefined;
|
|
10096
10246
|
} & {
|
|
10097
10247
|
trade: {
|
|
@@ -10101,6 +10251,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10101
10251
|
from: string;
|
|
10102
10252
|
gasLimit: number | null;
|
|
10103
10253
|
chainId: number;
|
|
10254
|
+
effectiveGas?: number | undefined;
|
|
10104
10255
|
};
|
|
10105
10256
|
approval?: {
|
|
10106
10257
|
data: string;
|
|
@@ -10109,6 +10260,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10109
10260
|
from: string;
|
|
10110
10261
|
gasLimit: number | null;
|
|
10111
10262
|
chainId: number;
|
|
10263
|
+
effectiveGas?: number | undefined;
|
|
10112
10264
|
} | undefined;
|
|
10113
10265
|
} & QuoteMetadata) | null) => ({
|
|
10114
10266
|
quote: {
|
|
@@ -10249,6 +10401,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10249
10401
|
from: string;
|
|
10250
10402
|
gasLimit: number | null;
|
|
10251
10403
|
chainId: number;
|
|
10404
|
+
effectiveGas?: number | undefined;
|
|
10252
10405
|
};
|
|
10253
10406
|
approval?: {
|
|
10254
10407
|
data: string;
|
|
@@ -10257,6 +10410,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10257
10410
|
from: string;
|
|
10258
10411
|
gasLimit: number | null;
|
|
10259
10412
|
chainId: number;
|
|
10413
|
+
effectiveGas?: number | undefined;
|
|
10260
10414
|
} | undefined;
|
|
10261
10415
|
} & {
|
|
10262
10416
|
trade: {
|
|
@@ -10266,6 +10420,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10266
10420
|
from: string;
|
|
10267
10421
|
gasLimit: number | null;
|
|
10268
10422
|
chainId: number;
|
|
10423
|
+
effectiveGas?: number | undefined;
|
|
10269
10424
|
};
|
|
10270
10425
|
approval?: {
|
|
10271
10426
|
data: string;
|
|
@@ -10274,6 +10429,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10274
10429
|
from: string;
|
|
10275
10430
|
gasLimit: number | null;
|
|
10276
10431
|
chainId: number;
|
|
10432
|
+
effectiveGas?: number | undefined;
|
|
10277
10433
|
} | undefined;
|
|
10278
10434
|
} & QuoteMetadata) | null;
|
|
10279
10435
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
@@ -10415,6 +10571,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10415
10571
|
from: string;
|
|
10416
10572
|
gasLimit: number | null;
|
|
10417
10573
|
chainId: number;
|
|
10574
|
+
effectiveGas?: number | undefined;
|
|
10418
10575
|
};
|
|
10419
10576
|
approval?: {
|
|
10420
10577
|
data: string;
|
|
@@ -10423,6 +10580,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10423
10580
|
from: string;
|
|
10424
10581
|
gasLimit: number | null;
|
|
10425
10582
|
chainId: number;
|
|
10583
|
+
effectiveGas?: number | undefined;
|
|
10426
10584
|
} | undefined;
|
|
10427
10585
|
} & {
|
|
10428
10586
|
trade: {
|
|
@@ -10432,6 +10590,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10432
10590
|
from: string;
|
|
10433
10591
|
gasLimit: number | null;
|
|
10434
10592
|
chainId: number;
|
|
10593
|
+
effectiveGas?: number | undefined;
|
|
10435
10594
|
};
|
|
10436
10595
|
approval?: {
|
|
10437
10596
|
data: string;
|
|
@@ -10440,6 +10599,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10440
10599
|
from: string;
|
|
10441
10600
|
gasLimit: number | null;
|
|
10442
10601
|
chainId: number;
|
|
10602
|
+
effectiveGas?: number | undefined;
|
|
10443
10603
|
} | undefined;
|
|
10444
10604
|
} & QuoteMetadata) | null, resultFuncArgs_1: ({
|
|
10445
10605
|
quote: {
|
|
@@ -10580,6 +10740,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10580
10740
|
from: string;
|
|
10581
10741
|
gasLimit: number | null;
|
|
10582
10742
|
chainId: number;
|
|
10743
|
+
effectiveGas?: number | undefined;
|
|
10583
10744
|
};
|
|
10584
10745
|
approval?: {
|
|
10585
10746
|
data: string;
|
|
@@ -10588,6 +10749,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10588
10749
|
from: string;
|
|
10589
10750
|
gasLimit: number | null;
|
|
10590
10751
|
chainId: number;
|
|
10752
|
+
effectiveGas?: number | undefined;
|
|
10591
10753
|
} | undefined;
|
|
10592
10754
|
} & {
|
|
10593
10755
|
trade: {
|
|
@@ -10597,6 +10759,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10597
10759
|
from: string;
|
|
10598
10760
|
gasLimit: number | null;
|
|
10599
10761
|
chainId: number;
|
|
10762
|
+
effectiveGas?: number | undefined;
|
|
10600
10763
|
};
|
|
10601
10764
|
approval?: {
|
|
10602
10765
|
data: string;
|
|
@@ -10605,6 +10768,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10605
10768
|
from: string;
|
|
10606
10769
|
gasLimit: number | null;
|
|
10607
10770
|
chainId: number;
|
|
10771
|
+
effectiveGas?: number | undefined;
|
|
10608
10772
|
} | undefined;
|
|
10609
10773
|
} & QuoteMetadata) | null) => ({
|
|
10610
10774
|
quote: {
|
|
@@ -10745,6 +10909,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10745
10909
|
from: string;
|
|
10746
10910
|
gasLimit: number | null;
|
|
10747
10911
|
chainId: number;
|
|
10912
|
+
effectiveGas?: number | undefined;
|
|
10748
10913
|
};
|
|
10749
10914
|
approval?: {
|
|
10750
10915
|
data: string;
|
|
@@ -10753,6 +10918,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10753
10918
|
from: string;
|
|
10754
10919
|
gasLimit: number | null;
|
|
10755
10920
|
chainId: number;
|
|
10921
|
+
effectiveGas?: number | undefined;
|
|
10756
10922
|
} | undefined;
|
|
10757
10923
|
} & {
|
|
10758
10924
|
trade: {
|
|
@@ -10762,6 +10928,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10762
10928
|
from: string;
|
|
10763
10929
|
gasLimit: number | null;
|
|
10764
10930
|
chainId: number;
|
|
10931
|
+
effectiveGas?: number | undefined;
|
|
10765
10932
|
};
|
|
10766
10933
|
approval?: {
|
|
10767
10934
|
data: string;
|
|
@@ -10770,6 +10937,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10770
10937
|
from: string;
|
|
10771
10938
|
gasLimit: number | null;
|
|
10772
10939
|
chainId: number;
|
|
10940
|
+
effectiveGas?: number | undefined;
|
|
10773
10941
|
} | undefined;
|
|
10774
10942
|
} & QuoteMetadata) | null) & {
|
|
10775
10943
|
clearCache: () => void;
|
|
@@ -10915,6 +11083,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10915
11083
|
from: string;
|
|
10916
11084
|
gasLimit: number | null;
|
|
10917
11085
|
chainId: number;
|
|
11086
|
+
effectiveGas?: number | undefined;
|
|
10918
11087
|
};
|
|
10919
11088
|
approval?: {
|
|
10920
11089
|
data: string;
|
|
@@ -10923,6 +11092,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10923
11092
|
from: string;
|
|
10924
11093
|
gasLimit: number | null;
|
|
10925
11094
|
chainId: number;
|
|
11095
|
+
effectiveGas?: number | undefined;
|
|
10926
11096
|
} | undefined;
|
|
10927
11097
|
} & {
|
|
10928
11098
|
trade: {
|
|
@@ -10932,6 +11102,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10932
11102
|
from: string;
|
|
10933
11103
|
gasLimit: number | null;
|
|
10934
11104
|
chainId: number;
|
|
11105
|
+
effectiveGas?: number | undefined;
|
|
10935
11106
|
};
|
|
10936
11107
|
approval?: {
|
|
10937
11108
|
data: string;
|
|
@@ -10940,6 +11111,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10940
11111
|
from: string;
|
|
10941
11112
|
gasLimit: number | null;
|
|
10942
11113
|
chainId: number;
|
|
11114
|
+
effectiveGas?: number | undefined;
|
|
10943
11115
|
} | undefined;
|
|
10944
11116
|
} & QuoteMetadata) | null;
|
|
10945
11117
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -11085,6 +11257,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11085
11257
|
from: string;
|
|
11086
11258
|
gasLimit: number | null;
|
|
11087
11259
|
chainId: number;
|
|
11260
|
+
effectiveGas?: number | undefined;
|
|
11088
11261
|
};
|
|
11089
11262
|
approval?: {
|
|
11090
11263
|
data: string;
|
|
@@ -11093,6 +11266,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11093
11266
|
from: string;
|
|
11094
11267
|
gasLimit: number | null;
|
|
11095
11268
|
chainId: number;
|
|
11269
|
+
effectiveGas?: number | undefined;
|
|
11096
11270
|
} | undefined;
|
|
11097
11271
|
} & {
|
|
11098
11272
|
trade: {
|
|
@@ -11102,6 +11276,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11102
11276
|
from: string;
|
|
11103
11277
|
gasLimit: number | null;
|
|
11104
11278
|
chainId: number;
|
|
11279
|
+
effectiveGas?: number | undefined;
|
|
11105
11280
|
};
|
|
11106
11281
|
approval?: {
|
|
11107
11282
|
data: string;
|
|
@@ -11110,6 +11285,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11110
11285
|
from: string;
|
|
11111
11286
|
gasLimit: number | null;
|
|
11112
11287
|
chainId: number;
|
|
11288
|
+
effectiveGas?: number | undefined;
|
|
11113
11289
|
} | undefined;
|
|
11114
11290
|
} & QuoteMetadata) | null) & {
|
|
11115
11291
|
clearCache: () => void;
|
|
@@ -11255,6 +11431,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11255
11431
|
from: string;
|
|
11256
11432
|
gasLimit: number | null;
|
|
11257
11433
|
chainId: number;
|
|
11434
|
+
effectiveGas?: number | undefined;
|
|
11258
11435
|
};
|
|
11259
11436
|
approval?: {
|
|
11260
11437
|
data: string;
|
|
@@ -11263,6 +11440,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11263
11440
|
from: string;
|
|
11264
11441
|
gasLimit: number | null;
|
|
11265
11442
|
chainId: number;
|
|
11443
|
+
effectiveGas?: number | undefined;
|
|
11266
11444
|
} | undefined;
|
|
11267
11445
|
} & {
|
|
11268
11446
|
trade: {
|
|
@@ -11272,6 +11450,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11272
11450
|
from: string;
|
|
11273
11451
|
gasLimit: number | null;
|
|
11274
11452
|
chainId: number;
|
|
11453
|
+
effectiveGas?: number | undefined;
|
|
11275
11454
|
};
|
|
11276
11455
|
approval?: {
|
|
11277
11456
|
data: string;
|
|
@@ -11280,6 +11459,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11280
11459
|
from: string;
|
|
11281
11460
|
gasLimit: number | null;
|
|
11282
11461
|
chainId: number;
|
|
11462
|
+
effectiveGas?: number | undefined;
|
|
11283
11463
|
} | undefined;
|
|
11284
11464
|
} & QuoteMetadata)[]) => ({
|
|
11285
11465
|
quote: {
|
|
@@ -11420,6 +11600,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11420
11600
|
from: string;
|
|
11421
11601
|
gasLimit: number | null;
|
|
11422
11602
|
chainId: number;
|
|
11603
|
+
effectiveGas?: number | undefined;
|
|
11423
11604
|
};
|
|
11424
11605
|
approval?: {
|
|
11425
11606
|
data: string;
|
|
@@ -11428,6 +11609,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11428
11609
|
from: string;
|
|
11429
11610
|
gasLimit: number | null;
|
|
11430
11611
|
chainId: number;
|
|
11612
|
+
effectiveGas?: number | undefined;
|
|
11431
11613
|
} | undefined;
|
|
11432
11614
|
} & {
|
|
11433
11615
|
trade: {
|
|
@@ -11437,6 +11619,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11437
11619
|
from: string;
|
|
11438
11620
|
gasLimit: number | null;
|
|
11439
11621
|
chainId: number;
|
|
11622
|
+
effectiveGas?: number | undefined;
|
|
11440
11623
|
};
|
|
11441
11624
|
approval?: {
|
|
11442
11625
|
data: string;
|
|
@@ -11445,6 +11628,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11445
11628
|
from: string;
|
|
11446
11629
|
gasLimit: number | null;
|
|
11447
11630
|
chainId: number;
|
|
11631
|
+
effectiveGas?: number | undefined;
|
|
11448
11632
|
} | undefined;
|
|
11449
11633
|
} & QuoteMetadata) | null;
|
|
11450
11634
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
@@ -11586,6 +11770,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11586
11770
|
from: string;
|
|
11587
11771
|
gasLimit: number | null;
|
|
11588
11772
|
chainId: number;
|
|
11773
|
+
effectiveGas?: number | undefined;
|
|
11589
11774
|
};
|
|
11590
11775
|
approval?: {
|
|
11591
11776
|
data: string;
|
|
@@ -11594,6 +11779,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11594
11779
|
from: string;
|
|
11595
11780
|
gasLimit: number | null;
|
|
11596
11781
|
chainId: number;
|
|
11782
|
+
effectiveGas?: number | undefined;
|
|
11597
11783
|
} | undefined;
|
|
11598
11784
|
} & {
|
|
11599
11785
|
trade: {
|
|
@@ -11603,6 +11789,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11603
11789
|
from: string;
|
|
11604
11790
|
gasLimit: number | null;
|
|
11605
11791
|
chainId: number;
|
|
11792
|
+
effectiveGas?: number | undefined;
|
|
11606
11793
|
};
|
|
11607
11794
|
approval?: {
|
|
11608
11795
|
data: string;
|
|
@@ -11611,6 +11798,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11611
11798
|
from: string;
|
|
11612
11799
|
gasLimit: number | null;
|
|
11613
11800
|
chainId: number;
|
|
11801
|
+
effectiveGas?: number | undefined;
|
|
11614
11802
|
} | undefined;
|
|
11615
11803
|
} & QuoteMetadata)[]) => ({
|
|
11616
11804
|
quote: {
|
|
@@ -11751,6 +11939,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11751
11939
|
from: string;
|
|
11752
11940
|
gasLimit: number | null;
|
|
11753
11941
|
chainId: number;
|
|
11942
|
+
effectiveGas?: number | undefined;
|
|
11754
11943
|
};
|
|
11755
11944
|
approval?: {
|
|
11756
11945
|
data: string;
|
|
@@ -11759,6 +11948,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11759
11948
|
from: string;
|
|
11760
11949
|
gasLimit: number | null;
|
|
11761
11950
|
chainId: number;
|
|
11951
|
+
effectiveGas?: number | undefined;
|
|
11762
11952
|
} | undefined;
|
|
11763
11953
|
} & {
|
|
11764
11954
|
trade: {
|
|
@@ -11768,6 +11958,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11768
11958
|
from: string;
|
|
11769
11959
|
gasLimit: number | null;
|
|
11770
11960
|
chainId: number;
|
|
11961
|
+
effectiveGas?: number | undefined;
|
|
11771
11962
|
};
|
|
11772
11963
|
approval?: {
|
|
11773
11964
|
data: string;
|
|
@@ -11776,6 +11967,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11776
11967
|
from: string;
|
|
11777
11968
|
gasLimit: number | null;
|
|
11778
11969
|
chainId: number;
|
|
11970
|
+
effectiveGas?: number | undefined;
|
|
11779
11971
|
} | undefined;
|
|
11780
11972
|
} & QuoteMetadata) | null) & {
|
|
11781
11973
|
clearCache: () => void;
|
|
@@ -11921,6 +12113,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11921
12113
|
from: string;
|
|
11922
12114
|
gasLimit: number | null;
|
|
11923
12115
|
chainId: number;
|
|
12116
|
+
effectiveGas?: number | undefined;
|
|
11924
12117
|
};
|
|
11925
12118
|
approval?: {
|
|
11926
12119
|
data: string;
|
|
@@ -11929,6 +12122,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11929
12122
|
from: string;
|
|
11930
12123
|
gasLimit: number | null;
|
|
11931
12124
|
chainId: number;
|
|
12125
|
+
effectiveGas?: number | undefined;
|
|
11932
12126
|
} | undefined;
|
|
11933
12127
|
} & {
|
|
11934
12128
|
trade: {
|
|
@@ -11938,6 +12132,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11938
12132
|
from: string;
|
|
11939
12133
|
gasLimit: number | null;
|
|
11940
12134
|
chainId: number;
|
|
12135
|
+
effectiveGas?: number | undefined;
|
|
11941
12136
|
};
|
|
11942
12137
|
approval?: {
|
|
11943
12138
|
data: string;
|
|
@@ -11946,6 +12141,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11946
12141
|
from: string;
|
|
11947
12142
|
gasLimit: number | null;
|
|
11948
12143
|
chainId: number;
|
|
12144
|
+
effectiveGas?: number | undefined;
|
|
11949
12145
|
} | undefined;
|
|
11950
12146
|
} & QuoteMetadata) | null;
|
|
11951
12147
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -12091,6 +12287,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12091
12287
|
from: string;
|
|
12092
12288
|
gasLimit: number | null;
|
|
12093
12289
|
chainId: number;
|
|
12290
|
+
effectiveGas?: number | undefined;
|
|
12094
12291
|
};
|
|
12095
12292
|
approval?: {
|
|
12096
12293
|
data: string;
|
|
@@ -12099,6 +12296,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12099
12296
|
from: string;
|
|
12100
12297
|
gasLimit: number | null;
|
|
12101
12298
|
chainId: number;
|
|
12299
|
+
effectiveGas?: number | undefined;
|
|
12102
12300
|
} | undefined;
|
|
12103
12301
|
} & {
|
|
12104
12302
|
trade: {
|
|
@@ -12108,6 +12306,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12108
12306
|
from: string;
|
|
12109
12307
|
gasLimit: number | null;
|
|
12110
12308
|
chainId: number;
|
|
12309
|
+
effectiveGas?: number | undefined;
|
|
12111
12310
|
};
|
|
12112
12311
|
approval?: {
|
|
12113
12312
|
data: string;
|
|
@@ -12116,6 +12315,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12116
12315
|
from: string;
|
|
12117
12316
|
gasLimit: number | null;
|
|
12118
12317
|
chainId: number;
|
|
12318
|
+
effectiveGas?: number | undefined;
|
|
12119
12319
|
} | undefined;
|
|
12120
12320
|
} & QuoteMetadata)[]) & {
|
|
12121
12321
|
clearCache: () => void;
|
|
@@ -12144,11 +12344,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12144
12344
|
valueInCurrency: string | null;
|
|
12145
12345
|
usd: string | null;
|
|
12146
12346
|
};
|
|
12147
|
-
gasFee:
|
|
12148
|
-
amount: string;
|
|
12149
|
-
valueInCurrency: string | null;
|
|
12150
|
-
usd: string | null;
|
|
12151
|
-
};
|
|
12347
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
12152
12348
|
adjustedReturn: {
|
|
12153
12349
|
valueInCurrency: string | null;
|
|
12154
12350
|
usd: string | null;
|
|
@@ -12300,6 +12496,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12300
12496
|
from: string;
|
|
12301
12497
|
gasLimit: number | null;
|
|
12302
12498
|
chainId: number;
|
|
12499
|
+
effectiveGas?: number | undefined;
|
|
12303
12500
|
} | (string & {
|
|
12304
12501
|
data: string;
|
|
12305
12502
|
value: string;
|
|
@@ -12307,6 +12504,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12307
12504
|
from: string;
|
|
12308
12505
|
gasLimit: number | null;
|
|
12309
12506
|
chainId: number;
|
|
12507
|
+
effectiveGas?: number | undefined;
|
|
12310
12508
|
});
|
|
12311
12509
|
approval?: {
|
|
12312
12510
|
data: string;
|
|
@@ -12315,6 +12513,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12315
12513
|
from: string;
|
|
12316
12514
|
gasLimit: number | null;
|
|
12317
12515
|
chainId: number;
|
|
12516
|
+
effectiveGas?: number | undefined;
|
|
12318
12517
|
} | undefined;
|
|
12319
12518
|
l1GasFeesInHexWei?: string | undefined;
|
|
12320
12519
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -12457,6 +12656,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12457
12656
|
from: string;
|
|
12458
12657
|
gasLimit: number | null;
|
|
12459
12658
|
chainId: number;
|
|
12659
|
+
effectiveGas?: number | undefined;
|
|
12460
12660
|
};
|
|
12461
12661
|
approval?: {
|
|
12462
12662
|
data: string;
|
|
@@ -12465,6 +12665,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12465
12665
|
from: string;
|
|
12466
12666
|
gasLimit: number | null;
|
|
12467
12667
|
chainId: number;
|
|
12668
|
+
effectiveGas?: number | undefined;
|
|
12468
12669
|
} | undefined;
|
|
12469
12670
|
} & {
|
|
12470
12671
|
trade: {
|
|
@@ -12474,6 +12675,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12474
12675
|
from: string;
|
|
12475
12676
|
gasLimit: number | null;
|
|
12476
12677
|
chainId: number;
|
|
12678
|
+
effectiveGas?: number | undefined;
|
|
12477
12679
|
};
|
|
12478
12680
|
approval?: {
|
|
12479
12681
|
data: string;
|
|
@@ -12482,6 +12684,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12482
12684
|
from: string;
|
|
12483
12685
|
gasLimit: number | null;
|
|
12484
12686
|
chainId: number;
|
|
12687
|
+
effectiveGas?: number | undefined;
|
|
12485
12688
|
} | undefined;
|
|
12486
12689
|
} & QuoteMetadata)[];
|
|
12487
12690
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
@@ -12506,11 +12709,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12506
12709
|
valueInCurrency: string | null;
|
|
12507
12710
|
usd: string | null;
|
|
12508
12711
|
};
|
|
12509
|
-
gasFee:
|
|
12510
|
-
amount: string;
|
|
12511
|
-
valueInCurrency: string | null;
|
|
12512
|
-
usd: string | null;
|
|
12513
|
-
};
|
|
12712
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
12514
12713
|
adjustedReturn: {
|
|
12515
12714
|
valueInCurrency: string | null;
|
|
12516
12715
|
usd: string | null;
|
|
@@ -12662,6 +12861,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12662
12861
|
from: string;
|
|
12663
12862
|
gasLimit: number | null;
|
|
12664
12863
|
chainId: number;
|
|
12864
|
+
effectiveGas?: number | undefined;
|
|
12665
12865
|
} | (string & {
|
|
12666
12866
|
data: string;
|
|
12667
12867
|
value: string;
|
|
@@ -12669,6 +12869,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12669
12869
|
from: string;
|
|
12670
12870
|
gasLimit: number | null;
|
|
12671
12871
|
chainId: number;
|
|
12872
|
+
effectiveGas?: number | undefined;
|
|
12672
12873
|
});
|
|
12673
12874
|
approval?: {
|
|
12674
12875
|
data: string;
|
|
@@ -12677,6 +12878,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12677
12878
|
from: string;
|
|
12678
12879
|
gasLimit: number | null;
|
|
12679
12880
|
chainId: number;
|
|
12881
|
+
effectiveGas?: number | undefined;
|
|
12680
12882
|
} | undefined;
|
|
12681
12883
|
l1GasFeesInHexWei?: string | undefined;
|
|
12682
12884
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -12819,6 +13021,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12819
13021
|
from: string;
|
|
12820
13022
|
gasLimit: number | null;
|
|
12821
13023
|
chainId: number;
|
|
13024
|
+
effectiveGas?: number | undefined;
|
|
12822
13025
|
};
|
|
12823
13026
|
approval?: {
|
|
12824
13027
|
data: string;
|
|
@@ -12827,6 +13030,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12827
13030
|
from: string;
|
|
12828
13031
|
gasLimit: number | null;
|
|
12829
13032
|
chainId: number;
|
|
13033
|
+
effectiveGas?: number | undefined;
|
|
12830
13034
|
} | undefined;
|
|
12831
13035
|
} & {
|
|
12832
13036
|
trade: {
|
|
@@ -12836,6 +13040,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12836
13040
|
from: string;
|
|
12837
13041
|
gasLimit: number | null;
|
|
12838
13042
|
chainId: number;
|
|
13043
|
+
effectiveGas?: number | undefined;
|
|
12839
13044
|
};
|
|
12840
13045
|
approval?: {
|
|
12841
13046
|
data: string;
|
|
@@ -12844,6 +13049,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12844
13049
|
from: string;
|
|
12845
13050
|
gasLimit: number | null;
|
|
12846
13051
|
chainId: number;
|
|
13052
|
+
effectiveGas?: number | undefined;
|
|
12847
13053
|
} | undefined;
|
|
12848
13054
|
} & QuoteMetadata)[]) & {
|
|
12849
13055
|
clearCache: () => void;
|
|
@@ -12989,6 +13195,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12989
13195
|
from: string;
|
|
12990
13196
|
gasLimit: number | null;
|
|
12991
13197
|
chainId: number;
|
|
13198
|
+
effectiveGas?: number | undefined;
|
|
12992
13199
|
};
|
|
12993
13200
|
approval?: {
|
|
12994
13201
|
data: string;
|
|
@@ -12997,6 +13204,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12997
13204
|
from: string;
|
|
12998
13205
|
gasLimit: number | null;
|
|
12999
13206
|
chainId: number;
|
|
13207
|
+
effectiveGas?: number | undefined;
|
|
13000
13208
|
} | undefined;
|
|
13001
13209
|
} & {
|
|
13002
13210
|
trade: {
|
|
@@ -13006,6 +13214,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13006
13214
|
from: string;
|
|
13007
13215
|
gasLimit: number | null;
|
|
13008
13216
|
chainId: number;
|
|
13217
|
+
effectiveGas?: number | undefined;
|
|
13009
13218
|
};
|
|
13010
13219
|
approval?: {
|
|
13011
13220
|
data: string;
|
|
@@ -13014,6 +13223,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13014
13223
|
from: string;
|
|
13015
13224
|
gasLimit: number | null;
|
|
13016
13225
|
chainId: number;
|
|
13226
|
+
effectiveGas?: number | undefined;
|
|
13017
13227
|
} | undefined;
|
|
13018
13228
|
} & QuoteMetadata)[];
|
|
13019
13229
|
dependencies: [((state: BridgeControllerState & {
|
|
@@ -13042,11 +13252,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13042
13252
|
valueInCurrency: string | null;
|
|
13043
13253
|
usd: string | null;
|
|
13044
13254
|
};
|
|
13045
|
-
gasFee:
|
|
13046
|
-
amount: string;
|
|
13047
|
-
valueInCurrency: string | null;
|
|
13048
|
-
usd: string | null;
|
|
13049
|
-
};
|
|
13255
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
13050
13256
|
adjustedReturn: {
|
|
13051
13257
|
valueInCurrency: string | null;
|
|
13052
13258
|
usd: string | null;
|
|
@@ -13198,6 +13404,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13198
13404
|
from: string;
|
|
13199
13405
|
gasLimit: number | null;
|
|
13200
13406
|
chainId: number;
|
|
13407
|
+
effectiveGas?: number | undefined;
|
|
13201
13408
|
} | (string & {
|
|
13202
13409
|
data: string;
|
|
13203
13410
|
value: string;
|
|
@@ -13205,6 +13412,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13205
13412
|
from: string;
|
|
13206
13413
|
gasLimit: number | null;
|
|
13207
13414
|
chainId: number;
|
|
13415
|
+
effectiveGas?: number | undefined;
|
|
13208
13416
|
});
|
|
13209
13417
|
approval?: {
|
|
13210
13418
|
data: string;
|
|
@@ -13213,6 +13421,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13213
13421
|
from: string;
|
|
13214
13422
|
gasLimit: number | null;
|
|
13215
13423
|
chainId: number;
|
|
13424
|
+
effectiveGas?: number | undefined;
|
|
13216
13425
|
} | undefined;
|
|
13217
13426
|
l1GasFeesInHexWei?: string | undefined;
|
|
13218
13427
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -13360,6 +13569,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13360
13569
|
from: string;
|
|
13361
13570
|
gasLimit: number | null;
|
|
13362
13571
|
chainId: number;
|
|
13572
|
+
effectiveGas?: number | undefined;
|
|
13363
13573
|
};
|
|
13364
13574
|
approval?: {
|
|
13365
13575
|
data: string;
|
|
@@ -13368,6 +13578,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13368
13578
|
from: string;
|
|
13369
13579
|
gasLimit: number | null;
|
|
13370
13580
|
chainId: number;
|
|
13581
|
+
effectiveGas?: number | undefined;
|
|
13371
13582
|
} | undefined;
|
|
13372
13583
|
} & {
|
|
13373
13584
|
trade: {
|
|
@@ -13377,6 +13588,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13377
13588
|
from: string;
|
|
13378
13589
|
gasLimit: number | null;
|
|
13379
13590
|
chainId: number;
|
|
13591
|
+
effectiveGas?: number | undefined;
|
|
13380
13592
|
};
|
|
13381
13593
|
approval?: {
|
|
13382
13594
|
data: string;
|
|
@@ -13385,6 +13597,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13385
13597
|
from: string;
|
|
13386
13598
|
gasLimit: number | null;
|
|
13387
13599
|
chainId: number;
|
|
13600
|
+
effectiveGas?: number | undefined;
|
|
13388
13601
|
} | undefined;
|
|
13389
13602
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
13390
13603
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -13412,11 +13625,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13412
13625
|
valueInCurrency: string | null;
|
|
13413
13626
|
usd: string | null;
|
|
13414
13627
|
};
|
|
13415
|
-
gasFee:
|
|
13416
|
-
amount: string;
|
|
13417
|
-
valueInCurrency: string | null;
|
|
13418
|
-
usd: string | null;
|
|
13419
|
-
};
|
|
13628
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
13420
13629
|
adjustedReturn: {
|
|
13421
13630
|
valueInCurrency: string | null;
|
|
13422
13631
|
usd: string | null;
|
|
@@ -13568,6 +13777,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13568
13777
|
from: string;
|
|
13569
13778
|
gasLimit: number | null;
|
|
13570
13779
|
chainId: number;
|
|
13780
|
+
effectiveGas?: number | undefined;
|
|
13571
13781
|
} | (string & {
|
|
13572
13782
|
data: string;
|
|
13573
13783
|
value: string;
|
|
@@ -13575,6 +13785,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13575
13785
|
from: string;
|
|
13576
13786
|
gasLimit: number | null;
|
|
13577
13787
|
chainId: number;
|
|
13788
|
+
effectiveGas?: number | undefined;
|
|
13578
13789
|
});
|
|
13579
13790
|
approval?: {
|
|
13580
13791
|
data: string;
|
|
@@ -13583,6 +13794,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13583
13794
|
from: string;
|
|
13584
13795
|
gasLimit: number | null;
|
|
13585
13796
|
chainId: number;
|
|
13797
|
+
effectiveGas?: number | undefined;
|
|
13586
13798
|
} | undefined;
|
|
13587
13799
|
l1GasFeesInHexWei?: string | undefined;
|
|
13588
13800
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -13726,6 +13938,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13726
13938
|
from: string;
|
|
13727
13939
|
gasLimit: number | null;
|
|
13728
13940
|
chainId: number;
|
|
13941
|
+
effectiveGas?: number | undefined;
|
|
13729
13942
|
};
|
|
13730
13943
|
approval?: {
|
|
13731
13944
|
data: string;
|
|
@@ -13734,6 +13947,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13734
13947
|
from: string;
|
|
13735
13948
|
gasLimit: number | null;
|
|
13736
13949
|
chainId: number;
|
|
13950
|
+
effectiveGas?: number | undefined;
|
|
13737
13951
|
} | undefined;
|
|
13738
13952
|
} & {
|
|
13739
13953
|
trade: {
|
|
@@ -13743,6 +13957,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13743
13957
|
from: string;
|
|
13744
13958
|
gasLimit: number | null;
|
|
13745
13959
|
chainId: number;
|
|
13960
|
+
effectiveGas?: number | undefined;
|
|
13746
13961
|
};
|
|
13747
13962
|
approval?: {
|
|
13748
13963
|
data: string;
|
|
@@ -13751,6 +13966,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13751
13966
|
from: string;
|
|
13752
13967
|
gasLimit: number | null;
|
|
13753
13968
|
chainId: number;
|
|
13969
|
+
effectiveGas?: number | undefined;
|
|
13754
13970
|
} | undefined;
|
|
13755
13971
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], resultFuncArgs_1: {
|
|
13756
13972
|
estimatedBaseFeeInDecGwei: string;
|
|
@@ -13778,11 +13994,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13778
13994
|
valueInCurrency: string | null;
|
|
13779
13995
|
usd: string | null;
|
|
13780
13996
|
};
|
|
13781
|
-
gasFee:
|
|
13782
|
-
amount: string;
|
|
13783
|
-
valueInCurrency: string | null;
|
|
13784
|
-
usd: string | null;
|
|
13785
|
-
};
|
|
13997
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
13786
13998
|
adjustedReturn: {
|
|
13787
13999
|
valueInCurrency: string | null;
|
|
13788
14000
|
usd: string | null;
|
|
@@ -13934,6 +14146,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13934
14146
|
from: string;
|
|
13935
14147
|
gasLimit: number | null;
|
|
13936
14148
|
chainId: number;
|
|
14149
|
+
effectiveGas?: number | undefined;
|
|
13937
14150
|
} | (string & {
|
|
13938
14151
|
data: string;
|
|
13939
14152
|
value: string;
|
|
@@ -13941,6 +14154,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13941
14154
|
from: string;
|
|
13942
14155
|
gasLimit: number | null;
|
|
13943
14156
|
chainId: number;
|
|
14157
|
+
effectiveGas?: number | undefined;
|
|
13944
14158
|
});
|
|
13945
14159
|
approval?: {
|
|
13946
14160
|
data: string;
|
|
@@ -13949,6 +14163,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13949
14163
|
from: string;
|
|
13950
14164
|
gasLimit: number | null;
|
|
13951
14165
|
chainId: number;
|
|
14166
|
+
effectiveGas?: number | undefined;
|
|
13952
14167
|
} | undefined;
|
|
13953
14168
|
l1GasFeesInHexWei?: string | undefined;
|
|
13954
14169
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -13979,11 +14194,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13979
14194
|
valueInCurrency: string | null;
|
|
13980
14195
|
usd: string | null;
|
|
13981
14196
|
};
|
|
13982
|
-
gasFee:
|
|
13983
|
-
amount: string;
|
|
13984
|
-
valueInCurrency: string | null;
|
|
13985
|
-
usd: string | null;
|
|
13986
|
-
};
|
|
14197
|
+
gasFee: Record<"max" | "total" | "effective", import("./types.cjs").TokenAmountValues>;
|
|
13987
14198
|
adjustedReturn: {
|
|
13988
14199
|
valueInCurrency: string | null;
|
|
13989
14200
|
usd: string | null;
|
|
@@ -14135,6 +14346,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14135
14346
|
from: string;
|
|
14136
14347
|
gasLimit: number | null;
|
|
14137
14348
|
chainId: number;
|
|
14349
|
+
effectiveGas?: number | undefined;
|
|
14138
14350
|
} | (string & {
|
|
14139
14351
|
data: string;
|
|
14140
14352
|
value: string;
|
|
@@ -14142,6 +14354,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14142
14354
|
from: string;
|
|
14143
14355
|
gasLimit: number | null;
|
|
14144
14356
|
chainId: number;
|
|
14357
|
+
effectiveGas?: number | undefined;
|
|
14145
14358
|
});
|
|
14146
14359
|
approval?: {
|
|
14147
14360
|
data: string;
|
|
@@ -14150,6 +14363,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14150
14363
|
from: string;
|
|
14151
14364
|
gasLimit: number | null;
|
|
14152
14365
|
chainId: number;
|
|
14366
|
+
effectiveGas?: number | undefined;
|
|
14153
14367
|
} | undefined;
|
|
14154
14368
|
l1GasFeesInHexWei?: string | undefined;
|
|
14155
14369
|
solanaFeesInLamports?: string | undefined;
|
|
@@ -14293,6 +14507,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14293
14507
|
from: string;
|
|
14294
14508
|
gasLimit: number | null;
|
|
14295
14509
|
chainId: number;
|
|
14510
|
+
effectiveGas?: number | undefined;
|
|
14296
14511
|
};
|
|
14297
14512
|
approval?: {
|
|
14298
14513
|
data: string;
|
|
@@ -14301,6 +14516,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14301
14516
|
from: string;
|
|
14302
14517
|
gasLimit: number | null;
|
|
14303
14518
|
chainId: number;
|
|
14519
|
+
effectiveGas?: number | undefined;
|
|
14304
14520
|
} | undefined;
|
|
14305
14521
|
} & {
|
|
14306
14522
|
trade: {
|
|
@@ -14310,6 +14526,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14310
14526
|
from: string;
|
|
14311
14527
|
gasLimit: number | null;
|
|
14312
14528
|
chainId: number;
|
|
14529
|
+
effectiveGas?: number | undefined;
|
|
14313
14530
|
};
|
|
14314
14531
|
approval?: {
|
|
14315
14532
|
data: string;
|
|
@@ -14318,6 +14535,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14318
14535
|
from: string;
|
|
14319
14536
|
gasLimit: number | null;
|
|
14320
14537
|
chainId: number;
|
|
14538
|
+
effectiveGas?: number | undefined;
|
|
14321
14539
|
} | undefined;
|
|
14322
14540
|
} & import("./types.cjs").L1GasFees & import("./types.cjs").SolanaFees)[], ((state: BridgeControllerState & {
|
|
14323
14541
|
gasFeeEstimates: GasFeeEstimates;
|
|
@@ -14594,6 +14812,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14594
14812
|
from: string;
|
|
14595
14813
|
gasLimit: number | null;
|
|
14596
14814
|
chainId: number;
|
|
14815
|
+
effectiveGas?: number | undefined;
|
|
14597
14816
|
};
|
|
14598
14817
|
approval?: {
|
|
14599
14818
|
data: string;
|
|
@@ -14602,6 +14821,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14602
14821
|
from: string;
|
|
14603
14822
|
gasLimit: number | null;
|
|
14604
14823
|
chainId: number;
|
|
14824
|
+
effectiveGas?: number | undefined;
|
|
14605
14825
|
} | undefined;
|
|
14606
14826
|
} & {
|
|
14607
14827
|
trade: {
|
|
@@ -14611,6 +14831,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14611
14831
|
from: string;
|
|
14612
14832
|
gasLimit: number | null;
|
|
14613
14833
|
chainId: number;
|
|
14834
|
+
effectiveGas?: number | undefined;
|
|
14614
14835
|
};
|
|
14615
14836
|
approval?: {
|
|
14616
14837
|
data: string;
|
|
@@ -14619,6 +14840,7 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14619
14840
|
from: string;
|
|
14620
14841
|
gasLimit: number | null;
|
|
14621
14842
|
chainId: number;
|
|
14843
|
+
effectiveGas?: number | undefined;
|
|
14622
14844
|
} | undefined;
|
|
14623
14845
|
} & QuoteMetadata) | null];
|
|
14624
14846
|
recomputations: () => number;
|