@metamask/bridge-controller 60.0.0 → 61.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.
Files changed (90) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/dist/bridge-controller.d.cts +1 -1
  3. package/dist/bridge-controller.d.mts +1 -1
  4. package/dist/constants/bridge.cjs +1 -0
  5. package/dist/constants/bridge.cjs.map +1 -1
  6. package/dist/constants/bridge.d.cts +2 -2
  7. package/dist/constants/bridge.d.cts.map +1 -1
  8. package/dist/constants/bridge.d.mts +2 -2
  9. package/dist/constants/bridge.d.mts.map +1 -1
  10. package/dist/constants/bridge.mjs +2 -1
  11. package/dist/constants/bridge.mjs.map +1 -1
  12. package/dist/constants/tokens.cjs +10 -0
  13. package/dist/constants/tokens.cjs.map +1 -1
  14. package/dist/constants/tokens.d.cts +7 -0
  15. package/dist/constants/tokens.d.cts.map +1 -1
  16. package/dist/constants/tokens.d.mts +7 -0
  17. package/dist/constants/tokens.d.mts.map +1 -1
  18. package/dist/constants/tokens.mjs +11 -1
  19. package/dist/constants/tokens.mjs.map +1 -1
  20. package/dist/index.cjs +5 -1
  21. package/dist/index.cjs.map +1 -1
  22. package/dist/index.d.cts +2 -1
  23. package/dist/index.d.cts.map +1 -1
  24. package/dist/index.d.mts +2 -1
  25. package/dist/index.d.mts.map +1 -1
  26. package/dist/index.mjs +1 -0
  27. package/dist/index.mjs.map +1 -1
  28. package/dist/selectors.d.cts +2208 -0
  29. package/dist/selectors.d.cts.map +1 -1
  30. package/dist/selectors.d.mts +2208 -0
  31. package/dist/selectors.d.mts.map +1 -1
  32. package/dist/types.cjs +1 -0
  33. package/dist/types.cjs.map +1 -1
  34. package/dist/types.d.cts +7 -4
  35. package/dist/types.d.cts.map +1 -1
  36. package/dist/types.d.mts +7 -4
  37. package/dist/types.d.mts.map +1 -1
  38. package/dist/types.mjs +1 -0
  39. package/dist/types.mjs.map +1 -1
  40. package/dist/utils/bridge.cjs +12 -3
  41. package/dist/utils/bridge.cjs.map +1 -1
  42. package/dist/utils/bridge.d.cts +10 -1
  43. package/dist/utils/bridge.d.cts.map +1 -1
  44. package/dist/utils/bridge.d.mts +10 -1
  45. package/dist/utils/bridge.d.mts.map +1 -1
  46. package/dist/utils/bridge.mjs +11 -3
  47. package/dist/utils/bridge.mjs.map +1 -1
  48. package/dist/utils/caip-formatters.cjs +6 -0
  49. package/dist/utils/caip-formatters.cjs.map +1 -1
  50. package/dist/utils/caip-formatters.d.cts.map +1 -1
  51. package/dist/utils/caip-formatters.d.mts.map +1 -1
  52. package/dist/utils/caip-formatters.mjs +8 -2
  53. package/dist/utils/caip-formatters.mjs.map +1 -1
  54. package/dist/utils/quote-fees.cjs +11 -7
  55. package/dist/utils/quote-fees.cjs.map +1 -1
  56. package/dist/utils/quote-fees.d.cts.map +1 -1
  57. package/dist/utils/quote-fees.d.mts.map +1 -1
  58. package/dist/utils/quote-fees.mjs +11 -7
  59. package/dist/utils/quote-fees.mjs.map +1 -1
  60. package/dist/utils/quote.cjs.map +1 -1
  61. package/dist/utils/quote.d.cts +2 -2
  62. package/dist/utils/quote.d.cts.map +1 -1
  63. package/dist/utils/quote.d.mts +2 -2
  64. package/dist/utils/quote.d.mts.map +1 -1
  65. package/dist/utils/quote.mjs.map +1 -1
  66. package/dist/utils/snaps.cjs +3 -1
  67. package/dist/utils/snaps.cjs.map +1 -1
  68. package/dist/utils/snaps.d.cts +3 -1
  69. package/dist/utils/snaps.d.cts.map +1 -1
  70. package/dist/utils/snaps.d.mts +3 -1
  71. package/dist/utils/snaps.d.mts.map +1 -1
  72. package/dist/utils/snaps.mjs +3 -1
  73. package/dist/utils/snaps.mjs.map +1 -1
  74. package/dist/utils/trade-utils.cjs +65 -0
  75. package/dist/utils/trade-utils.cjs.map +1 -0
  76. package/dist/utils/trade-utils.d.cts +50 -0
  77. package/dist/utils/trade-utils.d.cts.map +1 -0
  78. package/dist/utils/trade-utils.d.mts +50 -0
  79. package/dist/utils/trade-utils.d.mts.map +1 -0
  80. package/dist/utils/trade-utils.mjs +58 -0
  81. package/dist/utils/trade-utils.mjs.map +1 -0
  82. package/dist/utils/validators.cjs +17 -3
  83. package/dist/utils/validators.cjs.map +1 -1
  84. package/dist/utils/validators.d.cts +74 -9
  85. package/dist/utils/validators.d.cts.map +1 -1
  86. package/dist/utils/validators.d.mts +74 -9
  87. package/dist/utils/validators.d.mts.map +1 -1
  88. package/dist/utils/validators.mjs +16 -2
  89. package/dist/utils/validators.mjs.map +1 -1
  90. package/package.json +4 -4
@@ -961,6 +961,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
961
961
  } | {
962
962
  unsignedPsbtBase64: string;
963
963
  inputsToSign: {}[] | null;
964
+ } | {
965
+ raw_data_hex: string;
966
+ visible?: boolean | undefined;
967
+ raw_data?: {
968
+ contract?: {
969
+ type?: string | undefined;
970
+ }[] | undefined;
971
+ } | null | undefined;
964
972
  };
965
973
  approval?: {
966
974
  chainId: number;
@@ -970,6 +978,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
970
978
  data: string;
971
979
  gasLimit: number | null;
972
980
  effectiveGas?: number | undefined;
981
+ } | {
982
+ raw_data_hex: string;
983
+ visible?: boolean | undefined;
984
+ raw_data?: {
985
+ contract?: {
986
+ type?: string | undefined;
987
+ }[] | undefined;
988
+ } | null | undefined;
973
989
  } | undefined;
974
990
  } & {
975
991
  trade: string | {
@@ -983,6 +999,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
983
999
  } | {
984
1000
  unsignedPsbtBase64: string;
985
1001
  inputsToSign: {}[] | null;
1002
+ } | {
1003
+ raw_data_hex: string;
1004
+ visible?: boolean | undefined;
1005
+ raw_data?: {
1006
+ contract?: {
1007
+ type?: string | undefined;
1008
+ }[] | undefined;
1009
+ } | null | undefined;
986
1010
  };
987
1011
  approval?: {
988
1012
  chainId: number;
@@ -992,6 +1016,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
992
1016
  data: string;
993
1017
  gasLimit: number | null;
994
1018
  effectiveGas?: number | undefined;
1019
+ } | {
1020
+ raw_data_hex: string;
1021
+ visible?: boolean | undefined;
1022
+ raw_data?: {
1023
+ contract?: {
1024
+ type?: string | undefined;
1025
+ }[] | undefined;
1026
+ } | null | undefined;
995
1027
  } | undefined;
996
1028
  featureId?: import(".").FeatureId | undefined;
997
1029
  } & QuoteMetadata)[];
@@ -1142,6 +1174,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1142
1174
  } | {
1143
1175
  unsignedPsbtBase64: string;
1144
1176
  inputsToSign: {}[] | null;
1177
+ } | {
1178
+ raw_data_hex: string;
1179
+ visible?: boolean | undefined;
1180
+ raw_data?: {
1181
+ contract?: {
1182
+ type?: string | undefined;
1183
+ }[] | undefined;
1184
+ } | null | undefined;
1145
1185
  };
1146
1186
  approval?: {
1147
1187
  chainId: number;
@@ -1151,6 +1191,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1151
1191
  data: string;
1152
1192
  gasLimit: number | null;
1153
1193
  effectiveGas?: number | undefined;
1194
+ } | {
1195
+ raw_data_hex: string;
1196
+ visible?: boolean | undefined;
1197
+ raw_data?: {
1198
+ contract?: {
1199
+ type?: string | undefined;
1200
+ }[] | undefined;
1201
+ } | null | undefined;
1154
1202
  } | undefined;
1155
1203
  } & {
1156
1204
  trade: string | {
@@ -1164,6 +1212,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1164
1212
  } | {
1165
1213
  unsignedPsbtBase64: string;
1166
1214
  inputsToSign: {}[] | null;
1215
+ } | {
1216
+ raw_data_hex: string;
1217
+ visible?: boolean | undefined;
1218
+ raw_data?: {
1219
+ contract?: {
1220
+ type?: string | undefined;
1221
+ }[] | undefined;
1222
+ } | null | undefined;
1167
1223
  };
1168
1224
  approval?: {
1169
1225
  chainId: number;
@@ -1173,6 +1229,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1173
1229
  data: string;
1174
1230
  gasLimit: number | null;
1175
1231
  effectiveGas?: number | undefined;
1232
+ } | {
1233
+ raw_data_hex: string;
1234
+ visible?: boolean | undefined;
1235
+ raw_data?: {
1236
+ contract?: {
1237
+ type?: string | undefined;
1238
+ }[] | undefined;
1239
+ } | null | undefined;
1176
1240
  } | undefined;
1177
1241
  featureId?: import(".").FeatureId | undefined;
1178
1242
  } & QuoteMetadata) | null;
@@ -1323,6 +1387,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1323
1387
  } | {
1324
1388
  unsignedPsbtBase64: string;
1325
1389
  inputsToSign: {}[] | null;
1390
+ } | {
1391
+ raw_data_hex: string;
1392
+ visible?: boolean | undefined;
1393
+ raw_data?: {
1394
+ contract?: {
1395
+ type?: string | undefined;
1396
+ }[] | undefined;
1397
+ } | null | undefined;
1326
1398
  };
1327
1399
  approval?: {
1328
1400
  chainId: number;
@@ -1332,6 +1404,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1332
1404
  data: string;
1333
1405
  gasLimit: number | null;
1334
1406
  effectiveGas?: number | undefined;
1407
+ } | {
1408
+ raw_data_hex: string;
1409
+ visible?: boolean | undefined;
1410
+ raw_data?: {
1411
+ contract?: {
1412
+ type?: string | undefined;
1413
+ }[] | undefined;
1414
+ } | null | undefined;
1335
1415
  } | undefined;
1336
1416
  } & {
1337
1417
  trade: string | {
@@ -1345,6 +1425,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1345
1425
  } | {
1346
1426
  unsignedPsbtBase64: string;
1347
1427
  inputsToSign: {}[] | null;
1428
+ } | {
1429
+ raw_data_hex: string;
1430
+ visible?: boolean | undefined;
1431
+ raw_data?: {
1432
+ contract?: {
1433
+ type?: string | undefined;
1434
+ }[] | undefined;
1435
+ } | null | undefined;
1348
1436
  };
1349
1437
  approval?: {
1350
1438
  chainId: number;
@@ -1354,6 +1442,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1354
1442
  data: string;
1355
1443
  gasLimit: number | null;
1356
1444
  effectiveGas?: number | undefined;
1445
+ } | {
1446
+ raw_data_hex: string;
1447
+ visible?: boolean | undefined;
1448
+ raw_data?: {
1449
+ contract?: {
1450
+ type?: string | undefined;
1451
+ }[] | undefined;
1452
+ } | null | undefined;
1357
1453
  } | undefined;
1358
1454
  featureId?: import(".").FeatureId | undefined;
1359
1455
  } & QuoteMetadata) | null;
@@ -1515,6 +1611,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1515
1611
  } | {
1516
1612
  unsignedPsbtBase64: string;
1517
1613
  inputsToSign: {}[] | null;
1614
+ } | {
1615
+ raw_data_hex: string;
1616
+ visible?: boolean | undefined;
1617
+ raw_data?: {
1618
+ contract?: {
1619
+ type?: string | undefined;
1620
+ }[] | undefined;
1621
+ } | null | undefined;
1518
1622
  };
1519
1623
  approval?: {
1520
1624
  chainId: number;
@@ -1524,6 +1628,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1524
1628
  data: string;
1525
1629
  gasLimit: number | null;
1526
1630
  effectiveGas?: number | undefined;
1631
+ } | {
1632
+ raw_data_hex: string;
1633
+ visible?: boolean | undefined;
1634
+ raw_data?: {
1635
+ contract?: {
1636
+ type?: string | undefined;
1637
+ }[] | undefined;
1638
+ } | null | undefined;
1527
1639
  } | undefined;
1528
1640
  } & {
1529
1641
  trade: string | {
@@ -1537,6 +1649,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1537
1649
  } | {
1538
1650
  unsignedPsbtBase64: string;
1539
1651
  inputsToSign: {}[] | null;
1652
+ } | {
1653
+ raw_data_hex: string;
1654
+ visible?: boolean | undefined;
1655
+ raw_data?: {
1656
+ contract?: {
1657
+ type?: string | undefined;
1658
+ }[] | undefined;
1659
+ } | null | undefined;
1540
1660
  };
1541
1661
  approval?: {
1542
1662
  chainId: number;
@@ -1546,6 +1666,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1546
1666
  data: string;
1547
1667
  gasLimit: number | null;
1548
1668
  effectiveGas?: number | undefined;
1669
+ } | {
1670
+ raw_data_hex: string;
1671
+ visible?: boolean | undefined;
1672
+ raw_data?: {
1673
+ contract?: {
1674
+ type?: string | undefined;
1675
+ }[] | undefined;
1676
+ } | null | undefined;
1549
1677
  } | undefined;
1550
1678
  featureId?: import(".").FeatureId | undefined;
1551
1679
  } & QuoteMetadata)[], resultFuncArgs_3: ({
@@ -1695,6 +1823,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1695
1823
  } | {
1696
1824
  unsignedPsbtBase64: string;
1697
1825
  inputsToSign: {}[] | null;
1826
+ } | {
1827
+ raw_data_hex: string;
1828
+ visible?: boolean | undefined;
1829
+ raw_data?: {
1830
+ contract?: {
1831
+ type?: string | undefined;
1832
+ }[] | undefined;
1833
+ } | null | undefined;
1698
1834
  };
1699
1835
  approval?: {
1700
1836
  chainId: number;
@@ -1704,6 +1840,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1704
1840
  data: string;
1705
1841
  gasLimit: number | null;
1706
1842
  effectiveGas?: number | undefined;
1843
+ } | {
1844
+ raw_data_hex: string;
1845
+ visible?: boolean | undefined;
1846
+ raw_data?: {
1847
+ contract?: {
1848
+ type?: string | undefined;
1849
+ }[] | undefined;
1850
+ } | null | undefined;
1707
1851
  } | undefined;
1708
1852
  } & {
1709
1853
  trade: string | {
@@ -1717,6 +1861,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1717
1861
  } | {
1718
1862
  unsignedPsbtBase64: string;
1719
1863
  inputsToSign: {}[] | null;
1864
+ } | {
1865
+ raw_data_hex: string;
1866
+ visible?: boolean | undefined;
1867
+ raw_data?: {
1868
+ contract?: {
1869
+ type?: string | undefined;
1870
+ }[] | undefined;
1871
+ } | null | undefined;
1720
1872
  };
1721
1873
  approval?: {
1722
1874
  chainId: number;
@@ -1726,6 +1878,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1726
1878
  data: string;
1727
1879
  gasLimit: number | null;
1728
1880
  effectiveGas?: number | undefined;
1881
+ } | {
1882
+ raw_data_hex: string;
1883
+ visible?: boolean | undefined;
1884
+ raw_data?: {
1885
+ contract?: {
1886
+ type?: string | undefined;
1887
+ }[] | undefined;
1888
+ } | null | undefined;
1729
1889
  } | undefined;
1730
1890
  featureId?: import(".").FeatureId | undefined;
1731
1891
  } & QuoteMetadata) | null, resultFuncArgs_4: ({
@@ -1875,6 +2035,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1875
2035
  } | {
1876
2036
  unsignedPsbtBase64: string;
1877
2037
  inputsToSign: {}[] | null;
2038
+ } | {
2039
+ raw_data_hex: string;
2040
+ visible?: boolean | undefined;
2041
+ raw_data?: {
2042
+ contract?: {
2043
+ type?: string | undefined;
2044
+ }[] | undefined;
2045
+ } | null | undefined;
1878
2046
  };
1879
2047
  approval?: {
1880
2048
  chainId: number;
@@ -1884,6 +2052,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1884
2052
  data: string;
1885
2053
  gasLimit: number | null;
1886
2054
  effectiveGas?: number | undefined;
2055
+ } | {
2056
+ raw_data_hex: string;
2057
+ visible?: boolean | undefined;
2058
+ raw_data?: {
2059
+ contract?: {
2060
+ type?: string | undefined;
2061
+ }[] | undefined;
2062
+ } | null | undefined;
1887
2063
  } | undefined;
1888
2064
  } & {
1889
2065
  trade: string | {
@@ -1897,6 +2073,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1897
2073
  } | {
1898
2074
  unsignedPsbtBase64: string;
1899
2075
  inputsToSign: {}[] | null;
2076
+ } | {
2077
+ raw_data_hex: string;
2078
+ visible?: boolean | undefined;
2079
+ raw_data?: {
2080
+ contract?: {
2081
+ type?: string | undefined;
2082
+ }[] | undefined;
2083
+ } | null | undefined;
1900
2084
  };
1901
2085
  approval?: {
1902
2086
  chainId: number;
@@ -1906,6 +2090,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
1906
2090
  data: string;
1907
2091
  gasLimit: number | null;
1908
2092
  effectiveGas?: number | undefined;
2093
+ } | {
2094
+ raw_data_hex: string;
2095
+ visible?: boolean | undefined;
2096
+ raw_data?: {
2097
+ contract?: {
2098
+ type?: string | undefined;
2099
+ }[] | undefined;
2100
+ } | null | undefined;
1909
2101
  } | undefined;
1910
2102
  featureId?: import(".").FeatureId | undefined;
1911
2103
  } & QuoteMetadata) | null, resultFuncArgs_5: number | null, resultFuncArgs_6: boolean, resultFuncArgs_7: number | null, resultFuncArgs_8: boolean) => {
@@ -2056,6 +2248,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2056
2248
  } | {
2057
2249
  unsignedPsbtBase64: string;
2058
2250
  inputsToSign: {}[] | null;
2251
+ } | {
2252
+ raw_data_hex: string;
2253
+ visible?: boolean | undefined;
2254
+ raw_data?: {
2255
+ contract?: {
2256
+ type?: string | undefined;
2257
+ }[] | undefined;
2258
+ } | null | undefined;
2059
2259
  };
2060
2260
  approval?: {
2061
2261
  chainId: number;
@@ -2065,6 +2265,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2065
2265
  data: string;
2066
2266
  gasLimit: number | null;
2067
2267
  effectiveGas?: number | undefined;
2268
+ } | {
2269
+ raw_data_hex: string;
2270
+ visible?: boolean | undefined;
2271
+ raw_data?: {
2272
+ contract?: {
2273
+ type?: string | undefined;
2274
+ }[] | undefined;
2275
+ } | null | undefined;
2068
2276
  } | undefined;
2069
2277
  } & {
2070
2278
  trade: string | {
@@ -2078,6 +2286,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2078
2286
  } | {
2079
2287
  unsignedPsbtBase64: string;
2080
2288
  inputsToSign: {}[] | null;
2289
+ } | {
2290
+ raw_data_hex: string;
2291
+ visible?: boolean | undefined;
2292
+ raw_data?: {
2293
+ contract?: {
2294
+ type?: string | undefined;
2295
+ }[] | undefined;
2296
+ } | null | undefined;
2081
2297
  };
2082
2298
  approval?: {
2083
2299
  chainId: number;
@@ -2087,6 +2303,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2087
2303
  data: string;
2088
2304
  gasLimit: number | null;
2089
2305
  effectiveGas?: number | undefined;
2306
+ } | {
2307
+ raw_data_hex: string;
2308
+ visible?: boolean | undefined;
2309
+ raw_data?: {
2310
+ contract?: {
2311
+ type?: string | undefined;
2312
+ }[] | undefined;
2313
+ } | null | undefined;
2090
2314
  } | undefined;
2091
2315
  featureId?: import(".").FeatureId | undefined;
2092
2316
  } & QuoteMetadata)[];
@@ -2237,6 +2461,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2237
2461
  } | {
2238
2462
  unsignedPsbtBase64: string;
2239
2463
  inputsToSign: {}[] | null;
2464
+ } | {
2465
+ raw_data_hex: string;
2466
+ visible?: boolean | undefined;
2467
+ raw_data?: {
2468
+ contract?: {
2469
+ type?: string | undefined;
2470
+ }[] | undefined;
2471
+ } | null | undefined;
2240
2472
  };
2241
2473
  approval?: {
2242
2474
  chainId: number;
@@ -2246,6 +2478,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2246
2478
  data: string;
2247
2479
  gasLimit: number | null;
2248
2480
  effectiveGas?: number | undefined;
2481
+ } | {
2482
+ raw_data_hex: string;
2483
+ visible?: boolean | undefined;
2484
+ raw_data?: {
2485
+ contract?: {
2486
+ type?: string | undefined;
2487
+ }[] | undefined;
2488
+ } | null | undefined;
2249
2489
  } | undefined;
2250
2490
  } & {
2251
2491
  trade: string | {
@@ -2259,6 +2499,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2259
2499
  } | {
2260
2500
  unsignedPsbtBase64: string;
2261
2501
  inputsToSign: {}[] | null;
2502
+ } | {
2503
+ raw_data_hex: string;
2504
+ visible?: boolean | undefined;
2505
+ raw_data?: {
2506
+ contract?: {
2507
+ type?: string | undefined;
2508
+ }[] | undefined;
2509
+ } | null | undefined;
2262
2510
  };
2263
2511
  approval?: {
2264
2512
  chainId: number;
@@ -2268,6 +2516,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2268
2516
  data: string;
2269
2517
  gasLimit: number | null;
2270
2518
  effectiveGas?: number | undefined;
2519
+ } | {
2520
+ raw_data_hex: string;
2521
+ visible?: boolean | undefined;
2522
+ raw_data?: {
2523
+ contract?: {
2524
+ type?: string | undefined;
2525
+ }[] | undefined;
2526
+ } | null | undefined;
2271
2527
  } | undefined;
2272
2528
  featureId?: import(".").FeatureId | undefined;
2273
2529
  } & QuoteMetadata) | null;
@@ -2418,6 +2674,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2418
2674
  } | {
2419
2675
  unsignedPsbtBase64: string;
2420
2676
  inputsToSign: {}[] | null;
2677
+ } | {
2678
+ raw_data_hex: string;
2679
+ visible?: boolean | undefined;
2680
+ raw_data?: {
2681
+ contract?: {
2682
+ type?: string | undefined;
2683
+ }[] | undefined;
2684
+ } | null | undefined;
2421
2685
  };
2422
2686
  approval?: {
2423
2687
  chainId: number;
@@ -2427,6 +2691,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2427
2691
  data: string;
2428
2692
  gasLimit: number | null;
2429
2693
  effectiveGas?: number | undefined;
2694
+ } | {
2695
+ raw_data_hex: string;
2696
+ visible?: boolean | undefined;
2697
+ raw_data?: {
2698
+ contract?: {
2699
+ type?: string | undefined;
2700
+ }[] | undefined;
2701
+ } | null | undefined;
2430
2702
  } | undefined;
2431
2703
  } & {
2432
2704
  trade: string | {
@@ -2440,6 +2712,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2440
2712
  } | {
2441
2713
  unsignedPsbtBase64: string;
2442
2714
  inputsToSign: {}[] | null;
2715
+ } | {
2716
+ raw_data_hex: string;
2717
+ visible?: boolean | undefined;
2718
+ raw_data?: {
2719
+ contract?: {
2720
+ type?: string | undefined;
2721
+ }[] | undefined;
2722
+ } | null | undefined;
2443
2723
  };
2444
2724
  approval?: {
2445
2725
  chainId: number;
@@ -2449,6 +2729,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2449
2729
  data: string;
2450
2730
  gasLimit: number | null;
2451
2731
  effectiveGas?: number | undefined;
2732
+ } | {
2733
+ raw_data_hex: string;
2734
+ visible?: boolean | undefined;
2735
+ raw_data?: {
2736
+ contract?: {
2737
+ type?: string | undefined;
2738
+ }[] | undefined;
2739
+ } | null | undefined;
2452
2740
  } | undefined;
2453
2741
  featureId?: import(".").FeatureId | undefined;
2454
2742
  } & QuoteMetadata) | null;
@@ -2606,6 +2894,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2606
2894
  } | {
2607
2895
  unsignedPsbtBase64: string;
2608
2896
  inputsToSign: {}[] | null;
2897
+ } | {
2898
+ raw_data_hex: string;
2899
+ visible?: boolean | undefined;
2900
+ raw_data?: {
2901
+ contract?: {
2902
+ type?: string | undefined;
2903
+ }[] | undefined;
2904
+ } | null | undefined;
2609
2905
  };
2610
2906
  approval?: {
2611
2907
  chainId: number;
@@ -2615,6 +2911,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2615
2911
  data: string;
2616
2912
  gasLimit: number | null;
2617
2913
  effectiveGas?: number | undefined;
2914
+ } | {
2915
+ raw_data_hex: string;
2916
+ visible?: boolean | undefined;
2917
+ raw_data?: {
2918
+ contract?: {
2919
+ type?: string | undefined;
2920
+ }[] | undefined;
2921
+ } | null | undefined;
2618
2922
  } | undefined;
2619
2923
  } & {
2620
2924
  trade: string | {
@@ -2628,6 +2932,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2628
2932
  } | {
2629
2933
  unsignedPsbtBase64: string;
2630
2934
  inputsToSign: {}[] | null;
2935
+ } | {
2936
+ raw_data_hex: string;
2937
+ visible?: boolean | undefined;
2938
+ raw_data?: {
2939
+ contract?: {
2940
+ type?: string | undefined;
2941
+ }[] | undefined;
2942
+ } | null | undefined;
2631
2943
  };
2632
2944
  approval?: {
2633
2945
  chainId: number;
@@ -2637,6 +2949,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2637
2949
  data: string;
2638
2950
  gasLimit: number | null;
2639
2951
  effectiveGas?: number | undefined;
2952
+ } | {
2953
+ raw_data_hex: string;
2954
+ visible?: boolean | undefined;
2955
+ raw_data?: {
2956
+ contract?: {
2957
+ type?: string | undefined;
2958
+ }[] | undefined;
2959
+ } | null | undefined;
2640
2960
  } | undefined;
2641
2961
  featureId?: import(".").FeatureId | undefined;
2642
2962
  } & QuoteMetadata)[], resultFuncArgs_3: ({
@@ -2786,6 +3106,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2786
3106
  } | {
2787
3107
  unsignedPsbtBase64: string;
2788
3108
  inputsToSign: {}[] | null;
3109
+ } | {
3110
+ raw_data_hex: string;
3111
+ visible?: boolean | undefined;
3112
+ raw_data?: {
3113
+ contract?: {
3114
+ type?: string | undefined;
3115
+ }[] | undefined;
3116
+ } | null | undefined;
2789
3117
  };
2790
3118
  approval?: {
2791
3119
  chainId: number;
@@ -2795,6 +3123,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2795
3123
  data: string;
2796
3124
  gasLimit: number | null;
2797
3125
  effectiveGas?: number | undefined;
3126
+ } | {
3127
+ raw_data_hex: string;
3128
+ visible?: boolean | undefined;
3129
+ raw_data?: {
3130
+ contract?: {
3131
+ type?: string | undefined;
3132
+ }[] | undefined;
3133
+ } | null | undefined;
2798
3134
  } | undefined;
2799
3135
  } & {
2800
3136
  trade: string | {
@@ -2808,6 +3144,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2808
3144
  } | {
2809
3145
  unsignedPsbtBase64: string;
2810
3146
  inputsToSign: {}[] | null;
3147
+ } | {
3148
+ raw_data_hex: string;
3149
+ visible?: boolean | undefined;
3150
+ raw_data?: {
3151
+ contract?: {
3152
+ type?: string | undefined;
3153
+ }[] | undefined;
3154
+ } | null | undefined;
2811
3155
  };
2812
3156
  approval?: {
2813
3157
  chainId: number;
@@ -2817,6 +3161,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2817
3161
  data: string;
2818
3162
  gasLimit: number | null;
2819
3163
  effectiveGas?: number | undefined;
3164
+ } | {
3165
+ raw_data_hex: string;
3166
+ visible?: boolean | undefined;
3167
+ raw_data?: {
3168
+ contract?: {
3169
+ type?: string | undefined;
3170
+ }[] | undefined;
3171
+ } | null | undefined;
2820
3172
  } | undefined;
2821
3173
  featureId?: import(".").FeatureId | undefined;
2822
3174
  } & QuoteMetadata) | null, resultFuncArgs_4: ({
@@ -2966,6 +3318,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2966
3318
  } | {
2967
3319
  unsignedPsbtBase64: string;
2968
3320
  inputsToSign: {}[] | null;
3321
+ } | {
3322
+ raw_data_hex: string;
3323
+ visible?: boolean | undefined;
3324
+ raw_data?: {
3325
+ contract?: {
3326
+ type?: string | undefined;
3327
+ }[] | undefined;
3328
+ } | null | undefined;
2969
3329
  };
2970
3330
  approval?: {
2971
3331
  chainId: number;
@@ -2975,6 +3335,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2975
3335
  data: string;
2976
3336
  gasLimit: number | null;
2977
3337
  effectiveGas?: number | undefined;
3338
+ } | {
3339
+ raw_data_hex: string;
3340
+ visible?: boolean | undefined;
3341
+ raw_data?: {
3342
+ contract?: {
3343
+ type?: string | undefined;
3344
+ }[] | undefined;
3345
+ } | null | undefined;
2978
3346
  } | undefined;
2979
3347
  } & {
2980
3348
  trade: string | {
@@ -2988,6 +3356,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2988
3356
  } | {
2989
3357
  unsignedPsbtBase64: string;
2990
3358
  inputsToSign: {}[] | null;
3359
+ } | {
3360
+ raw_data_hex: string;
3361
+ visible?: boolean | undefined;
3362
+ raw_data?: {
3363
+ contract?: {
3364
+ type?: string | undefined;
3365
+ }[] | undefined;
3366
+ } | null | undefined;
2991
3367
  };
2992
3368
  approval?: {
2993
3369
  chainId: number;
@@ -2997,6 +3373,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
2997
3373
  data: string;
2998
3374
  gasLimit: number | null;
2999
3375
  effectiveGas?: number | undefined;
3376
+ } | {
3377
+ raw_data_hex: string;
3378
+ visible?: boolean | undefined;
3379
+ raw_data?: {
3380
+ contract?: {
3381
+ type?: string | undefined;
3382
+ }[] | undefined;
3383
+ } | null | undefined;
3000
3384
  } | undefined;
3001
3385
  featureId?: import(".").FeatureId | undefined;
3002
3386
  } & QuoteMetadata) | null, resultFuncArgs_5: number | null, resultFuncArgs_6: boolean, resultFuncArgs_7: number | null, resultFuncArgs_8: boolean) => {
@@ -3147,6 +3531,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3147
3531
  } | {
3148
3532
  unsignedPsbtBase64: string;
3149
3533
  inputsToSign: {}[] | null;
3534
+ } | {
3535
+ raw_data_hex: string;
3536
+ visible?: boolean | undefined;
3537
+ raw_data?: {
3538
+ contract?: {
3539
+ type?: string | undefined;
3540
+ }[] | undefined;
3541
+ } | null | undefined;
3150
3542
  };
3151
3543
  approval?: {
3152
3544
  chainId: number;
@@ -3156,6 +3548,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3156
3548
  data: string;
3157
3549
  gasLimit: number | null;
3158
3550
  effectiveGas?: number | undefined;
3551
+ } | {
3552
+ raw_data_hex: string;
3553
+ visible?: boolean | undefined;
3554
+ raw_data?: {
3555
+ contract?: {
3556
+ type?: string | undefined;
3557
+ }[] | undefined;
3558
+ } | null | undefined;
3159
3559
  } | undefined;
3160
3560
  } & {
3161
3561
  trade: string | {
@@ -3169,6 +3569,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3169
3569
  } | {
3170
3570
  unsignedPsbtBase64: string;
3171
3571
  inputsToSign: {}[] | null;
3572
+ } | {
3573
+ raw_data_hex: string;
3574
+ visible?: boolean | undefined;
3575
+ raw_data?: {
3576
+ contract?: {
3577
+ type?: string | undefined;
3578
+ }[] | undefined;
3579
+ } | null | undefined;
3172
3580
  };
3173
3581
  approval?: {
3174
3582
  chainId: number;
@@ -3178,6 +3586,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3178
3586
  data: string;
3179
3587
  gasLimit: number | null;
3180
3588
  effectiveGas?: number | undefined;
3589
+ } | {
3590
+ raw_data_hex: string;
3591
+ visible?: boolean | undefined;
3592
+ raw_data?: {
3593
+ contract?: {
3594
+ type?: string | undefined;
3595
+ }[] | undefined;
3596
+ } | null | undefined;
3181
3597
  } | undefined;
3182
3598
  featureId?: import(".").FeatureId | undefined;
3183
3599
  } & QuoteMetadata)[];
@@ -3328,6 +3744,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3328
3744
  } | {
3329
3745
  unsignedPsbtBase64: string;
3330
3746
  inputsToSign: {}[] | null;
3747
+ } | {
3748
+ raw_data_hex: string;
3749
+ visible?: boolean | undefined;
3750
+ raw_data?: {
3751
+ contract?: {
3752
+ type?: string | undefined;
3753
+ }[] | undefined;
3754
+ } | null | undefined;
3331
3755
  };
3332
3756
  approval?: {
3333
3757
  chainId: number;
@@ -3337,6 +3761,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3337
3761
  data: string;
3338
3762
  gasLimit: number | null;
3339
3763
  effectiveGas?: number | undefined;
3764
+ } | {
3765
+ raw_data_hex: string;
3766
+ visible?: boolean | undefined;
3767
+ raw_data?: {
3768
+ contract?: {
3769
+ type?: string | undefined;
3770
+ }[] | undefined;
3771
+ } | null | undefined;
3340
3772
  } | undefined;
3341
3773
  } & {
3342
3774
  trade: string | {
@@ -3350,6 +3782,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3350
3782
  } | {
3351
3783
  unsignedPsbtBase64: string;
3352
3784
  inputsToSign: {}[] | null;
3785
+ } | {
3786
+ raw_data_hex: string;
3787
+ visible?: boolean | undefined;
3788
+ raw_data?: {
3789
+ contract?: {
3790
+ type?: string | undefined;
3791
+ }[] | undefined;
3792
+ } | null | undefined;
3353
3793
  };
3354
3794
  approval?: {
3355
3795
  chainId: number;
@@ -3359,6 +3799,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3359
3799
  data: string;
3360
3800
  gasLimit: number | null;
3361
3801
  effectiveGas?: number | undefined;
3802
+ } | {
3803
+ raw_data_hex: string;
3804
+ visible?: boolean | undefined;
3805
+ raw_data?: {
3806
+ contract?: {
3807
+ type?: string | undefined;
3808
+ }[] | undefined;
3809
+ } | null | undefined;
3362
3810
  } | undefined;
3363
3811
  featureId?: import(".").FeatureId | undefined;
3364
3812
  } & QuoteMetadata) | null;
@@ -3509,6 +3957,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3509
3957
  } | {
3510
3958
  unsignedPsbtBase64: string;
3511
3959
  inputsToSign: {}[] | null;
3960
+ } | {
3961
+ raw_data_hex: string;
3962
+ visible?: boolean | undefined;
3963
+ raw_data?: {
3964
+ contract?: {
3965
+ type?: string | undefined;
3966
+ }[] | undefined;
3967
+ } | null | undefined;
3512
3968
  };
3513
3969
  approval?: {
3514
3970
  chainId: number;
@@ -3518,6 +3974,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3518
3974
  data: string;
3519
3975
  gasLimit: number | null;
3520
3976
  effectiveGas?: number | undefined;
3977
+ } | {
3978
+ raw_data_hex: string;
3979
+ visible?: boolean | undefined;
3980
+ raw_data?: {
3981
+ contract?: {
3982
+ type?: string | undefined;
3983
+ }[] | undefined;
3984
+ } | null | undefined;
3521
3985
  } | undefined;
3522
3986
  } & {
3523
3987
  trade: string | {
@@ -3531,6 +3995,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3531
3995
  } | {
3532
3996
  unsignedPsbtBase64: string;
3533
3997
  inputsToSign: {}[] | null;
3998
+ } | {
3999
+ raw_data_hex: string;
4000
+ visible?: boolean | undefined;
4001
+ raw_data?: {
4002
+ contract?: {
4003
+ type?: string | undefined;
4004
+ }[] | undefined;
4005
+ } | null | undefined;
3534
4006
  };
3535
4007
  approval?: {
3536
4008
  chainId: number;
@@ -3540,6 +4012,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3540
4012
  data: string;
3541
4013
  gasLimit: number | null;
3542
4014
  effectiveGas?: number | undefined;
4015
+ } | {
4016
+ raw_data_hex: string;
4017
+ visible?: boolean | undefined;
4018
+ raw_data?: {
4019
+ contract?: {
4020
+ type?: string | undefined;
4021
+ }[] | undefined;
4022
+ } | null | undefined;
3543
4023
  } | undefined;
3544
4024
  featureId?: import(".").FeatureId | undefined;
3545
4025
  } & QuoteMetadata) | null;
@@ -3702,6 +4182,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3702
4182
  } | {
3703
4183
  unsignedPsbtBase64: string;
3704
4184
  inputsToSign: {}[] | null;
4185
+ } | {
4186
+ raw_data_hex: string;
4187
+ visible?: boolean | undefined;
4188
+ raw_data?: {
4189
+ contract?: {
4190
+ type?: string | undefined;
4191
+ }[] | undefined;
4192
+ } | null | undefined;
3705
4193
  };
3706
4194
  approval?: {
3707
4195
  chainId: number;
@@ -3711,6 +4199,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3711
4199
  data: string;
3712
4200
  gasLimit: number | null;
3713
4201
  effectiveGas?: number | undefined;
4202
+ } | {
4203
+ raw_data_hex: string;
4204
+ visible?: boolean | undefined;
4205
+ raw_data?: {
4206
+ contract?: {
4207
+ type?: string | undefined;
4208
+ }[] | undefined;
4209
+ } | null | undefined;
3714
4210
  } | undefined;
3715
4211
  } & {
3716
4212
  trade: string | {
@@ -3724,6 +4220,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3724
4220
  } | {
3725
4221
  unsignedPsbtBase64: string;
3726
4222
  inputsToSign: {}[] | null;
4223
+ } | {
4224
+ raw_data_hex: string;
4225
+ visible?: boolean | undefined;
4226
+ raw_data?: {
4227
+ contract?: {
4228
+ type?: string | undefined;
4229
+ }[] | undefined;
4230
+ } | null | undefined;
3727
4231
  };
3728
4232
  approval?: {
3729
4233
  chainId: number;
@@ -3733,6 +4237,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3733
4237
  data: string;
3734
4238
  gasLimit: number | null;
3735
4239
  effectiveGas?: number | undefined;
4240
+ } | {
4241
+ raw_data_hex: string;
4242
+ visible?: boolean | undefined;
4243
+ raw_data?: {
4244
+ contract?: {
4245
+ type?: string | undefined;
4246
+ }[] | undefined;
4247
+ } | null | undefined;
3736
4248
  } | undefined;
3737
4249
  featureId?: import(".").FeatureId | undefined;
3738
4250
  } & QuoteMetadata)[];
@@ -3883,6 +4395,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3883
4395
  } | {
3884
4396
  unsignedPsbtBase64: string;
3885
4397
  inputsToSign: {}[] | null;
4398
+ } | {
4399
+ raw_data_hex: string;
4400
+ visible?: boolean | undefined;
4401
+ raw_data?: {
4402
+ contract?: {
4403
+ type?: string | undefined;
4404
+ }[] | undefined;
4405
+ } | null | undefined;
3886
4406
  };
3887
4407
  approval?: {
3888
4408
  chainId: number;
@@ -3892,6 +4412,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3892
4412
  data: string;
3893
4413
  gasLimit: number | null;
3894
4414
  effectiveGas?: number | undefined;
4415
+ } | {
4416
+ raw_data_hex: string;
4417
+ visible?: boolean | undefined;
4418
+ raw_data?: {
4419
+ contract?: {
4420
+ type?: string | undefined;
4421
+ }[] | undefined;
4422
+ } | null | undefined;
3895
4423
  } | undefined;
3896
4424
  } & {
3897
4425
  trade: string | {
@@ -3905,6 +4433,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3905
4433
  } | {
3906
4434
  unsignedPsbtBase64: string;
3907
4435
  inputsToSign: {}[] | null;
4436
+ } | {
4437
+ raw_data_hex: string;
4438
+ visible?: boolean | undefined;
4439
+ raw_data?: {
4440
+ contract?: {
4441
+ type?: string | undefined;
4442
+ }[] | undefined;
4443
+ } | null | undefined;
3908
4444
  };
3909
4445
  approval?: {
3910
4446
  chainId: number;
@@ -3914,6 +4450,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
3914
4450
  data: string;
3915
4451
  gasLimit: number | null;
3916
4452
  effectiveGas?: number | undefined;
4453
+ } | {
4454
+ raw_data_hex: string;
4455
+ visible?: boolean | undefined;
4456
+ raw_data?: {
4457
+ contract?: {
4458
+ type?: string | undefined;
4459
+ }[] | undefined;
4460
+ } | null | undefined;
3917
4461
  } | undefined;
3918
4462
  featureId?: import(".").FeatureId | undefined;
3919
4463
  } & QuoteMetadata) | null;
@@ -4064,6 +4608,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4064
4608
  } | {
4065
4609
  unsignedPsbtBase64: string;
4066
4610
  inputsToSign: {}[] | null;
4611
+ } | {
4612
+ raw_data_hex: string;
4613
+ visible?: boolean | undefined;
4614
+ raw_data?: {
4615
+ contract?: {
4616
+ type?: string | undefined;
4617
+ }[] | undefined;
4618
+ } | null | undefined;
4067
4619
  };
4068
4620
  approval?: {
4069
4621
  chainId: number;
@@ -4073,6 +4625,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4073
4625
  data: string;
4074
4626
  gasLimit: number | null;
4075
4627
  effectiveGas?: number | undefined;
4628
+ } | {
4629
+ raw_data_hex: string;
4630
+ visible?: boolean | undefined;
4631
+ raw_data?: {
4632
+ contract?: {
4633
+ type?: string | undefined;
4634
+ }[] | undefined;
4635
+ } | null | undefined;
4076
4636
  } | undefined;
4077
4637
  } & {
4078
4638
  trade: string | {
@@ -4086,6 +4646,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4086
4646
  } | {
4087
4647
  unsignedPsbtBase64: string;
4088
4648
  inputsToSign: {}[] | null;
4649
+ } | {
4650
+ raw_data_hex: string;
4651
+ visible?: boolean | undefined;
4652
+ raw_data?: {
4653
+ contract?: {
4654
+ type?: string | undefined;
4655
+ }[] | undefined;
4656
+ } | null | undefined;
4089
4657
  };
4090
4658
  approval?: {
4091
4659
  chainId: number;
@@ -4095,6 +4663,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4095
4663
  data: string;
4096
4664
  gasLimit: number | null;
4097
4665
  effectiveGas?: number | undefined;
4666
+ } | {
4667
+ raw_data_hex: string;
4668
+ visible?: boolean | undefined;
4669
+ raw_data?: {
4670
+ contract?: {
4671
+ type?: string | undefined;
4672
+ }[] | undefined;
4673
+ } | null | undefined;
4098
4674
  } | undefined;
4099
4675
  featureId?: import(".").FeatureId | undefined;
4100
4676
  } & QuoteMetadata) | null;
@@ -4256,6 +4832,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4256
4832
  } | {
4257
4833
  unsignedPsbtBase64: string;
4258
4834
  inputsToSign: {}[] | null;
4835
+ } | {
4836
+ raw_data_hex: string;
4837
+ visible?: boolean | undefined;
4838
+ raw_data?: {
4839
+ contract?: {
4840
+ type?: string | undefined;
4841
+ }[] | undefined;
4842
+ } | null | undefined;
4259
4843
  };
4260
4844
  approval?: {
4261
4845
  chainId: number;
@@ -4265,6 +4849,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4265
4849
  data: string;
4266
4850
  gasLimit: number | null;
4267
4851
  effectiveGas?: number | undefined;
4852
+ } | {
4853
+ raw_data_hex: string;
4854
+ visible?: boolean | undefined;
4855
+ raw_data?: {
4856
+ contract?: {
4857
+ type?: string | undefined;
4858
+ }[] | undefined;
4859
+ } | null | undefined;
4268
4860
  } | undefined;
4269
4861
  } & {
4270
4862
  trade: string | {
@@ -4278,6 +4870,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4278
4870
  } | {
4279
4871
  unsignedPsbtBase64: string;
4280
4872
  inputsToSign: {}[] | null;
4873
+ } | {
4874
+ raw_data_hex: string;
4875
+ visible?: boolean | undefined;
4876
+ raw_data?: {
4877
+ contract?: {
4878
+ type?: string | undefined;
4879
+ }[] | undefined;
4880
+ } | null | undefined;
4281
4881
  };
4282
4882
  approval?: {
4283
4883
  chainId: number;
@@ -4287,6 +4887,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4287
4887
  data: string;
4288
4888
  gasLimit: number | null;
4289
4889
  effectiveGas?: number | undefined;
4890
+ } | {
4891
+ raw_data_hex: string;
4892
+ visible?: boolean | undefined;
4893
+ raw_data?: {
4894
+ contract?: {
4895
+ type?: string | undefined;
4896
+ }[] | undefined;
4897
+ } | null | undefined;
4290
4898
  } | undefined;
4291
4899
  featureId?: import(".").FeatureId | undefined;
4292
4900
  } & QuoteMetadata)[]) & {
@@ -4481,6 +5089,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4481
5089
  } | {
4482
5090
  unsignedPsbtBase64: string;
4483
5091
  inputsToSign: {}[] | null;
5092
+ } | {
5093
+ raw_data_hex: string;
5094
+ visible?: boolean | undefined;
5095
+ raw_data?: {
5096
+ contract?: {
5097
+ type?: string | undefined;
5098
+ }[] | undefined;
5099
+ } | null | undefined;
4484
5100
  };
4485
5101
  approval?: {
4486
5102
  chainId: number;
@@ -4490,6 +5106,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4490
5106
  data: string;
4491
5107
  gasLimit: number | null;
4492
5108
  effectiveGas?: number | undefined;
5109
+ } | {
5110
+ raw_data_hex: string;
5111
+ visible?: boolean | undefined;
5112
+ raw_data?: {
5113
+ contract?: {
5114
+ type?: string | undefined;
5115
+ }[] | undefined;
5116
+ } | null | undefined;
4493
5117
  } | undefined;
4494
5118
  featureId?: import(".").FeatureId | undefined;
4495
5119
  l1GasFeesInHexWei?: string | undefined;
@@ -4641,6 +5265,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4641
5265
  } | {
4642
5266
  unsignedPsbtBase64: string;
4643
5267
  inputsToSign: {}[] | null;
5268
+ } | {
5269
+ raw_data_hex: string;
5270
+ visible?: boolean | undefined;
5271
+ raw_data?: {
5272
+ contract?: {
5273
+ type?: string | undefined;
5274
+ }[] | undefined;
5275
+ } | null | undefined;
4644
5276
  };
4645
5277
  approval?: {
4646
5278
  chainId: number;
@@ -4650,6 +5282,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4650
5282
  data: string;
4651
5283
  gasLimit: number | null;
4652
5284
  effectiveGas?: number | undefined;
5285
+ } | {
5286
+ raw_data_hex: string;
5287
+ visible?: boolean | undefined;
5288
+ raw_data?: {
5289
+ contract?: {
5290
+ type?: string | undefined;
5291
+ }[] | undefined;
5292
+ } | null | undefined;
4653
5293
  } | undefined;
4654
5294
  } & {
4655
5295
  trade: string | {
@@ -4663,6 +5303,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4663
5303
  } | {
4664
5304
  unsignedPsbtBase64: string;
4665
5305
  inputsToSign: {}[] | null;
5306
+ } | {
5307
+ raw_data_hex: string;
5308
+ visible?: boolean | undefined;
5309
+ raw_data?: {
5310
+ contract?: {
5311
+ type?: string | undefined;
5312
+ }[] | undefined;
5313
+ } | null | undefined;
4666
5314
  };
4667
5315
  approval?: {
4668
5316
  chainId: number;
@@ -4672,6 +5320,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4672
5320
  data: string;
4673
5321
  gasLimit: number | null;
4674
5322
  effectiveGas?: number | undefined;
5323
+ } | {
5324
+ raw_data_hex: string;
5325
+ visible?: boolean | undefined;
5326
+ raw_data?: {
5327
+ contract?: {
5328
+ type?: string | undefined;
5329
+ }[] | undefined;
5330
+ } | null | undefined;
4675
5331
  } | undefined;
4676
5332
  featureId?: import(".").FeatureId | undefined;
4677
5333
  } & QuoteMetadata)[];
@@ -4862,6 +5518,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4862
5518
  } | {
4863
5519
  unsignedPsbtBase64: string;
4864
5520
  inputsToSign: {}[] | null;
5521
+ } | {
5522
+ raw_data_hex: string;
5523
+ visible?: boolean | undefined;
5524
+ raw_data?: {
5525
+ contract?: {
5526
+ type?: string | undefined;
5527
+ }[] | undefined;
5528
+ } | null | undefined;
4865
5529
  };
4866
5530
  approval?: {
4867
5531
  chainId: number;
@@ -4871,6 +5535,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
4871
5535
  data: string;
4872
5536
  gasLimit: number | null;
4873
5537
  effectiveGas?: number | undefined;
5538
+ } | {
5539
+ raw_data_hex: string;
5540
+ visible?: boolean | undefined;
5541
+ raw_data?: {
5542
+ contract?: {
5543
+ type?: string | undefined;
5544
+ }[] | undefined;
5545
+ } | null | undefined;
4874
5546
  } | undefined;
4875
5547
  featureId?: import(".").FeatureId | undefined;
4876
5548
  l1GasFeesInHexWei?: string | undefined;
@@ -5022,6 +5694,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5022
5694
  } | {
5023
5695
  unsignedPsbtBase64: string;
5024
5696
  inputsToSign: {}[] | null;
5697
+ } | {
5698
+ raw_data_hex: string;
5699
+ visible?: boolean | undefined;
5700
+ raw_data?: {
5701
+ contract?: {
5702
+ type?: string | undefined;
5703
+ }[] | undefined;
5704
+ } | null | undefined;
5025
5705
  };
5026
5706
  approval?: {
5027
5707
  chainId: number;
@@ -5031,6 +5711,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5031
5711
  data: string;
5032
5712
  gasLimit: number | null;
5033
5713
  effectiveGas?: number | undefined;
5714
+ } | {
5715
+ raw_data_hex: string;
5716
+ visible?: boolean | undefined;
5717
+ raw_data?: {
5718
+ contract?: {
5719
+ type?: string | undefined;
5720
+ }[] | undefined;
5721
+ } | null | undefined;
5034
5722
  } | undefined;
5035
5723
  } & {
5036
5724
  trade: string | {
@@ -5044,6 +5732,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5044
5732
  } | {
5045
5733
  unsignedPsbtBase64: string;
5046
5734
  inputsToSign: {}[] | null;
5735
+ } | {
5736
+ raw_data_hex: string;
5737
+ visible?: boolean | undefined;
5738
+ raw_data?: {
5739
+ contract?: {
5740
+ type?: string | undefined;
5741
+ }[] | undefined;
5742
+ } | null | undefined;
5047
5743
  };
5048
5744
  approval?: {
5049
5745
  chainId: number;
@@ -5053,6 +5749,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5053
5749
  data: string;
5054
5750
  gasLimit: number | null;
5055
5751
  effectiveGas?: number | undefined;
5752
+ } | {
5753
+ raw_data_hex: string;
5754
+ visible?: boolean | undefined;
5755
+ raw_data?: {
5756
+ contract?: {
5757
+ type?: string | undefined;
5758
+ }[] | undefined;
5759
+ } | null | undefined;
5056
5760
  } | undefined;
5057
5761
  featureId?: import(".").FeatureId | undefined;
5058
5762
  } & QuoteMetadata)[]) & {
@@ -5207,6 +5911,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5207
5911
  } | {
5208
5912
  unsignedPsbtBase64: string;
5209
5913
  inputsToSign: {}[] | null;
5914
+ } | {
5915
+ raw_data_hex: string;
5916
+ visible?: boolean | undefined;
5917
+ raw_data?: {
5918
+ contract?: {
5919
+ type?: string | undefined;
5920
+ }[] | undefined;
5921
+ } | null | undefined;
5210
5922
  };
5211
5923
  approval?: {
5212
5924
  chainId: number;
@@ -5216,6 +5928,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5216
5928
  data: string;
5217
5929
  gasLimit: number | null;
5218
5930
  effectiveGas?: number | undefined;
5931
+ } | {
5932
+ raw_data_hex: string;
5933
+ visible?: boolean | undefined;
5934
+ raw_data?: {
5935
+ contract?: {
5936
+ type?: string | undefined;
5937
+ }[] | undefined;
5938
+ } | null | undefined;
5219
5939
  } | undefined;
5220
5940
  } & {
5221
5941
  trade: string | {
@@ -5229,6 +5949,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5229
5949
  } | {
5230
5950
  unsignedPsbtBase64: string;
5231
5951
  inputsToSign: {}[] | null;
5952
+ } | {
5953
+ raw_data_hex: string;
5954
+ visible?: boolean | undefined;
5955
+ raw_data?: {
5956
+ contract?: {
5957
+ type?: string | undefined;
5958
+ }[] | undefined;
5959
+ } | null | undefined;
5232
5960
  };
5233
5961
  approval?: {
5234
5962
  chainId: number;
@@ -5238,6 +5966,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5238
5966
  data: string;
5239
5967
  gasLimit: number | null;
5240
5968
  effectiveGas?: number | undefined;
5969
+ } | {
5970
+ raw_data_hex: string;
5971
+ visible?: boolean | undefined;
5972
+ raw_data?: {
5973
+ contract?: {
5974
+ type?: string | undefined;
5975
+ }[] | undefined;
5976
+ } | null | undefined;
5241
5977
  } | undefined;
5242
5978
  featureId?: import(".").FeatureId | undefined;
5243
5979
  } & QuoteMetadata)[];
@@ -5432,6 +6168,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5432
6168
  } | {
5433
6169
  unsignedPsbtBase64: string;
5434
6170
  inputsToSign: {}[] | null;
6171
+ } | {
6172
+ raw_data_hex: string;
6173
+ visible?: boolean | undefined;
6174
+ raw_data?: {
6175
+ contract?: {
6176
+ type?: string | undefined;
6177
+ }[] | undefined;
6178
+ } | null | undefined;
5435
6179
  };
5436
6180
  approval?: {
5437
6181
  chainId: number;
@@ -5441,6 +6185,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5441
6185
  data: string;
5442
6186
  gasLimit: number | null;
5443
6187
  effectiveGas?: number | undefined;
6188
+ } | {
6189
+ raw_data_hex: string;
6190
+ visible?: boolean | undefined;
6191
+ raw_data?: {
6192
+ contract?: {
6193
+ type?: string | undefined;
6194
+ }[] | undefined;
6195
+ } | null | undefined;
5444
6196
  } | undefined;
5445
6197
  featureId?: import(".").FeatureId | undefined;
5446
6198
  l1GasFeesInHexWei?: string | undefined;
@@ -5597,6 +6349,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5597
6349
  } | {
5598
6350
  unsignedPsbtBase64: string;
5599
6351
  inputsToSign: {}[] | null;
6352
+ } | {
6353
+ raw_data_hex: string;
6354
+ visible?: boolean | undefined;
6355
+ raw_data?: {
6356
+ contract?: {
6357
+ type?: string | undefined;
6358
+ }[] | undefined;
6359
+ } | null | undefined;
5600
6360
  };
5601
6361
  approval?: {
5602
6362
  chainId: number;
@@ -5606,6 +6366,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5606
6366
  data: string;
5607
6367
  gasLimit: number | null;
5608
6368
  effectiveGas?: number | undefined;
6369
+ } | {
6370
+ raw_data_hex: string;
6371
+ visible?: boolean | undefined;
6372
+ raw_data?: {
6373
+ contract?: {
6374
+ type?: string | undefined;
6375
+ }[] | undefined;
6376
+ } | null | undefined;
5609
6377
  } | undefined;
5610
6378
  } & {
5611
6379
  trade: string | {
@@ -5619,6 +6387,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5619
6387
  } | {
5620
6388
  unsignedPsbtBase64: string;
5621
6389
  inputsToSign: {}[] | null;
6390
+ } | {
6391
+ raw_data_hex: string;
6392
+ visible?: boolean | undefined;
6393
+ raw_data?: {
6394
+ contract?: {
6395
+ type?: string | undefined;
6396
+ }[] | undefined;
6397
+ } | null | undefined;
5622
6398
  };
5623
6399
  approval?: {
5624
6400
  chainId: number;
@@ -5628,6 +6404,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5628
6404
  data: string;
5629
6405
  gasLimit: number | null;
5630
6406
  effectiveGas?: number | undefined;
6407
+ } | {
6408
+ raw_data_hex: string;
6409
+ visible?: boolean | undefined;
6410
+ raw_data?: {
6411
+ contract?: {
6412
+ type?: string | undefined;
6413
+ }[] | undefined;
6414
+ } | null | undefined;
5631
6415
  } | undefined;
5632
6416
  featureId?: import(".").FeatureId | undefined;
5633
6417
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -5821,6 +6605,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5821
6605
  } | {
5822
6606
  unsignedPsbtBase64: string;
5823
6607
  inputsToSign: {}[] | null;
6608
+ } | {
6609
+ raw_data_hex: string;
6610
+ visible?: boolean | undefined;
6611
+ raw_data?: {
6612
+ contract?: {
6613
+ type?: string | undefined;
6614
+ }[] | undefined;
6615
+ } | null | undefined;
5824
6616
  };
5825
6617
  approval?: {
5826
6618
  chainId: number;
@@ -5830,6 +6622,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5830
6622
  data: string;
5831
6623
  gasLimit: number | null;
5832
6624
  effectiveGas?: number | undefined;
6625
+ } | {
6626
+ raw_data_hex: string;
6627
+ visible?: boolean | undefined;
6628
+ raw_data?: {
6629
+ contract?: {
6630
+ type?: string | undefined;
6631
+ }[] | undefined;
6632
+ } | null | undefined;
5833
6633
  } | undefined;
5834
6634
  featureId?: import(".").FeatureId | undefined;
5835
6635
  l1GasFeesInHexWei?: string | undefined;
@@ -5982,6 +6782,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5982
6782
  } | {
5983
6783
  unsignedPsbtBase64: string;
5984
6784
  inputsToSign: {}[] | null;
6785
+ } | {
6786
+ raw_data_hex: string;
6787
+ visible?: boolean | undefined;
6788
+ raw_data?: {
6789
+ contract?: {
6790
+ type?: string | undefined;
6791
+ }[] | undefined;
6792
+ } | null | undefined;
5985
6793
  };
5986
6794
  approval?: {
5987
6795
  chainId: number;
@@ -5991,6 +6799,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
5991
6799
  data: string;
5992
6800
  gasLimit: number | null;
5993
6801
  effectiveGas?: number | undefined;
6802
+ } | {
6803
+ raw_data_hex: string;
6804
+ visible?: boolean | undefined;
6805
+ raw_data?: {
6806
+ contract?: {
6807
+ type?: string | undefined;
6808
+ }[] | undefined;
6809
+ } | null | undefined;
5994
6810
  } | undefined;
5995
6811
  } & {
5996
6812
  trade: string | {
@@ -6004,6 +6820,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6004
6820
  } | {
6005
6821
  unsignedPsbtBase64: string;
6006
6822
  inputsToSign: {}[] | null;
6823
+ } | {
6824
+ raw_data_hex: string;
6825
+ visible?: boolean | undefined;
6826
+ raw_data?: {
6827
+ contract?: {
6828
+ type?: string | undefined;
6829
+ }[] | undefined;
6830
+ } | null | undefined;
6007
6831
  };
6008
6832
  approval?: {
6009
6833
  chainId: number;
@@ -6013,6 +6837,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6013
6837
  data: string;
6014
6838
  gasLimit: number | null;
6015
6839
  effectiveGas?: number | undefined;
6840
+ } | {
6841
+ raw_data_hex: string;
6842
+ visible?: boolean | undefined;
6843
+ raw_data?: {
6844
+ contract?: {
6845
+ type?: string | undefined;
6846
+ }[] | undefined;
6847
+ } | null | undefined;
6016
6848
  } | undefined;
6017
6849
  featureId?: import(".").FeatureId | undefined;
6018
6850
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -6206,6 +7038,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6206
7038
  } | {
6207
7039
  unsignedPsbtBase64: string;
6208
7040
  inputsToSign: {}[] | null;
7041
+ } | {
7042
+ raw_data_hex: string;
7043
+ visible?: boolean | undefined;
7044
+ raw_data?: {
7045
+ contract?: {
7046
+ type?: string | undefined;
7047
+ }[] | undefined;
7048
+ } | null | undefined;
6209
7049
  };
6210
7050
  approval?: {
6211
7051
  chainId: number;
@@ -6215,6 +7055,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6215
7055
  data: string;
6216
7056
  gasLimit: number | null;
6217
7057
  effectiveGas?: number | undefined;
7058
+ } | {
7059
+ raw_data_hex: string;
7060
+ visible?: boolean | undefined;
7061
+ raw_data?: {
7062
+ contract?: {
7063
+ type?: string | undefined;
7064
+ }[] | undefined;
7065
+ } | null | undefined;
6218
7066
  } | undefined;
6219
7067
  featureId?: import(".").FeatureId | undefined;
6220
7068
  l1GasFeesInHexWei?: string | undefined;
@@ -6411,6 +7259,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6411
7259
  } | {
6412
7260
  unsignedPsbtBase64: string;
6413
7261
  inputsToSign: {}[] | null;
7262
+ } | {
7263
+ raw_data_hex: string;
7264
+ visible?: boolean | undefined;
7265
+ raw_data?: {
7266
+ contract?: {
7267
+ type?: string | undefined;
7268
+ }[] | undefined;
7269
+ } | null | undefined;
6414
7270
  };
6415
7271
  approval?: {
6416
7272
  chainId: number;
@@ -6420,6 +7276,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6420
7276
  data: string;
6421
7277
  gasLimit: number | null;
6422
7278
  effectiveGas?: number | undefined;
7279
+ } | {
7280
+ raw_data_hex: string;
7281
+ visible?: boolean | undefined;
7282
+ raw_data?: {
7283
+ contract?: {
7284
+ type?: string | undefined;
7285
+ }[] | undefined;
7286
+ } | null | undefined;
6423
7287
  } | undefined;
6424
7288
  featureId?: import(".").FeatureId | undefined;
6425
7289
  l1GasFeesInHexWei?: string | undefined;
@@ -6572,6 +7436,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6572
7436
  } | {
6573
7437
  unsignedPsbtBase64: string;
6574
7438
  inputsToSign: {}[] | null;
7439
+ } | {
7440
+ raw_data_hex: string;
7441
+ visible?: boolean | undefined;
7442
+ raw_data?: {
7443
+ contract?: {
7444
+ type?: string | undefined;
7445
+ }[] | undefined;
7446
+ } | null | undefined;
6575
7447
  };
6576
7448
  approval?: {
6577
7449
  chainId: number;
@@ -6581,6 +7453,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6581
7453
  data: string;
6582
7454
  gasLimit: number | null;
6583
7455
  effectiveGas?: number | undefined;
7456
+ } | {
7457
+ raw_data_hex: string;
7458
+ visible?: boolean | undefined;
7459
+ raw_data?: {
7460
+ contract?: {
7461
+ type?: string | undefined;
7462
+ }[] | undefined;
7463
+ } | null | undefined;
6584
7464
  } | undefined;
6585
7465
  } & {
6586
7466
  trade: string | {
@@ -6594,6 +7474,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6594
7474
  } | {
6595
7475
  unsignedPsbtBase64: string;
6596
7476
  inputsToSign: {}[] | null;
7477
+ } | {
7478
+ raw_data_hex: string;
7479
+ visible?: boolean | undefined;
7480
+ raw_data?: {
7481
+ contract?: {
7482
+ type?: string | undefined;
7483
+ }[] | undefined;
7484
+ } | null | undefined;
6597
7485
  };
6598
7486
  approval?: {
6599
7487
  chainId: number;
@@ -6603,6 +7491,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6603
7491
  data: string;
6604
7492
  gasLimit: number | null;
6605
7493
  effectiveGas?: number | undefined;
7494
+ } | {
7495
+ raw_data_hex: string;
7496
+ visible?: boolean | undefined;
7497
+ raw_data?: {
7498
+ contract?: {
7499
+ type?: string | undefined;
7500
+ }[] | undefined;
7501
+ } | null | undefined;
6606
7502
  } | undefined;
6607
7503
  featureId?: import(".").FeatureId | undefined;
6608
7504
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
@@ -6884,6 +7780,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6884
7780
  } | {
6885
7781
  unsignedPsbtBase64: string;
6886
7782
  inputsToSign: {}[] | null;
7783
+ } | {
7784
+ raw_data_hex: string;
7785
+ visible?: boolean | undefined;
7786
+ raw_data?: {
7787
+ contract?: {
7788
+ type?: string | undefined;
7789
+ }[] | undefined;
7790
+ } | null | undefined;
6887
7791
  };
6888
7792
  approval?: {
6889
7793
  chainId: number;
@@ -6893,6 +7797,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6893
7797
  data: string;
6894
7798
  gasLimit: number | null;
6895
7799
  effectiveGas?: number | undefined;
7800
+ } | {
7801
+ raw_data_hex: string;
7802
+ visible?: boolean | undefined;
7803
+ raw_data?: {
7804
+ contract?: {
7805
+ type?: string | undefined;
7806
+ }[] | undefined;
7807
+ } | null | undefined;
6896
7808
  } | undefined;
6897
7809
  } & {
6898
7810
  trade: string | {
@@ -6906,6 +7818,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6906
7818
  } | {
6907
7819
  unsignedPsbtBase64: string;
6908
7820
  inputsToSign: {}[] | null;
7821
+ } | {
7822
+ raw_data_hex: string;
7823
+ visible?: boolean | undefined;
7824
+ raw_data?: {
7825
+ contract?: {
7826
+ type?: string | undefined;
7827
+ }[] | undefined;
7828
+ } | null | undefined;
6909
7829
  };
6910
7830
  approval?: {
6911
7831
  chainId: number;
@@ -6915,6 +7835,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
6915
7835
  data: string;
6916
7836
  gasLimit: number | null;
6917
7837
  effectiveGas?: number | undefined;
7838
+ } | {
7839
+ raw_data_hex: string;
7840
+ visible?: boolean | undefined;
7841
+ raw_data?: {
7842
+ contract?: {
7843
+ type?: string | undefined;
7844
+ }[] | undefined;
7845
+ } | null | undefined;
6918
7846
  } | undefined;
6919
7847
  featureId?: import(".").FeatureId | undefined;
6920
7848
  } & QuoteMetadata) | null) & {
@@ -7069,6 +7997,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7069
7997
  } | {
7070
7998
  unsignedPsbtBase64: string;
7071
7999
  inputsToSign: {}[] | null;
8000
+ } | {
8001
+ raw_data_hex: string;
8002
+ visible?: boolean | undefined;
8003
+ raw_data?: {
8004
+ contract?: {
8005
+ type?: string | undefined;
8006
+ }[] | undefined;
8007
+ } | null | undefined;
7072
8008
  };
7073
8009
  approval?: {
7074
8010
  chainId: number;
@@ -7078,6 +8014,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7078
8014
  data: string;
7079
8015
  gasLimit: number | null;
7080
8016
  effectiveGas?: number | undefined;
8017
+ } | {
8018
+ raw_data_hex: string;
8019
+ visible?: boolean | undefined;
8020
+ raw_data?: {
8021
+ contract?: {
8022
+ type?: string | undefined;
8023
+ }[] | undefined;
8024
+ } | null | undefined;
7081
8025
  } | undefined;
7082
8026
  } & {
7083
8027
  trade: string | {
@@ -7091,6 +8035,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7091
8035
  } | {
7092
8036
  unsignedPsbtBase64: string;
7093
8037
  inputsToSign: {}[] | null;
8038
+ } | {
8039
+ raw_data_hex: string;
8040
+ visible?: boolean | undefined;
8041
+ raw_data?: {
8042
+ contract?: {
8043
+ type?: string | undefined;
8044
+ }[] | undefined;
8045
+ } | null | undefined;
7094
8046
  };
7095
8047
  approval?: {
7096
8048
  chainId: number;
@@ -7100,6 +8052,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7100
8052
  data: string;
7101
8053
  gasLimit: number | null;
7102
8054
  effectiveGas?: number | undefined;
8055
+ } | {
8056
+ raw_data_hex: string;
8057
+ visible?: boolean | undefined;
8058
+ raw_data?: {
8059
+ contract?: {
8060
+ type?: string | undefined;
8061
+ }[] | undefined;
8062
+ } | null | undefined;
7103
8063
  } | undefined;
7104
8064
  featureId?: import(".").FeatureId | undefined;
7105
8065
  } & QuoteMetadata)[]) => ({
@@ -7249,6 +8209,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7249
8209
  } | {
7250
8210
  unsignedPsbtBase64: string;
7251
8211
  inputsToSign: {}[] | null;
8212
+ } | {
8213
+ raw_data_hex: string;
8214
+ visible?: boolean | undefined;
8215
+ raw_data?: {
8216
+ contract?: {
8217
+ type?: string | undefined;
8218
+ }[] | undefined;
8219
+ } | null | undefined;
7252
8220
  };
7253
8221
  approval?: {
7254
8222
  chainId: number;
@@ -7258,6 +8226,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7258
8226
  data: string;
7259
8227
  gasLimit: number | null;
7260
8228
  effectiveGas?: number | undefined;
8229
+ } | {
8230
+ raw_data_hex: string;
8231
+ visible?: boolean | undefined;
8232
+ raw_data?: {
8233
+ contract?: {
8234
+ type?: string | undefined;
8235
+ }[] | undefined;
8236
+ } | null | undefined;
7261
8237
  } | undefined;
7262
8238
  } & {
7263
8239
  trade: string | {
@@ -7271,6 +8247,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7271
8247
  } | {
7272
8248
  unsignedPsbtBase64: string;
7273
8249
  inputsToSign: {}[] | null;
8250
+ } | {
8251
+ raw_data_hex: string;
8252
+ visible?: boolean | undefined;
8253
+ raw_data?: {
8254
+ contract?: {
8255
+ type?: string | undefined;
8256
+ }[] | undefined;
8257
+ } | null | undefined;
7274
8258
  };
7275
8259
  approval?: {
7276
8260
  chainId: number;
@@ -7280,6 +8264,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7280
8264
  data: string;
7281
8265
  gasLimit: number | null;
7282
8266
  effectiveGas?: number | undefined;
8267
+ } | {
8268
+ raw_data_hex: string;
8269
+ visible?: boolean | undefined;
8270
+ raw_data?: {
8271
+ contract?: {
8272
+ type?: string | undefined;
8273
+ }[] | undefined;
8274
+ } | null | undefined;
7283
8275
  } | undefined;
7284
8276
  featureId?: import(".").FeatureId | undefined;
7285
8277
  } & QuoteMetadata) | null;
@@ -7430,6 +8422,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7430
8422
  } | {
7431
8423
  unsignedPsbtBase64: string;
7432
8424
  inputsToSign: {}[] | null;
8425
+ } | {
8426
+ raw_data_hex: string;
8427
+ visible?: boolean | undefined;
8428
+ raw_data?: {
8429
+ contract?: {
8430
+ type?: string | undefined;
8431
+ }[] | undefined;
8432
+ } | null | undefined;
7433
8433
  };
7434
8434
  approval?: {
7435
8435
  chainId: number;
@@ -7439,6 +8439,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7439
8439
  data: string;
7440
8440
  gasLimit: number | null;
7441
8441
  effectiveGas?: number | undefined;
8442
+ } | {
8443
+ raw_data_hex: string;
8444
+ visible?: boolean | undefined;
8445
+ raw_data?: {
8446
+ contract?: {
8447
+ type?: string | undefined;
8448
+ }[] | undefined;
8449
+ } | null | undefined;
7442
8450
  } | undefined;
7443
8451
  } & {
7444
8452
  trade: string | {
@@ -7452,6 +8460,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7452
8460
  } | {
7453
8461
  unsignedPsbtBase64: string;
7454
8462
  inputsToSign: {}[] | null;
8463
+ } | {
8464
+ raw_data_hex: string;
8465
+ visible?: boolean | undefined;
8466
+ raw_data?: {
8467
+ contract?: {
8468
+ type?: string | undefined;
8469
+ }[] | undefined;
8470
+ } | null | undefined;
7455
8471
  };
7456
8472
  approval?: {
7457
8473
  chainId: number;
@@ -7461,6 +8477,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7461
8477
  data: string;
7462
8478
  gasLimit: number | null;
7463
8479
  effectiveGas?: number | undefined;
8480
+ } | {
8481
+ raw_data_hex: string;
8482
+ visible?: boolean | undefined;
8483
+ raw_data?: {
8484
+ contract?: {
8485
+ type?: string | undefined;
8486
+ }[] | undefined;
8487
+ } | null | undefined;
7464
8488
  } | undefined;
7465
8489
  featureId?: import(".").FeatureId | undefined;
7466
8490
  } & QuoteMetadata)[]) => ({
@@ -7610,6 +8634,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7610
8634
  } | {
7611
8635
  unsignedPsbtBase64: string;
7612
8636
  inputsToSign: {}[] | null;
8637
+ } | {
8638
+ raw_data_hex: string;
8639
+ visible?: boolean | undefined;
8640
+ raw_data?: {
8641
+ contract?: {
8642
+ type?: string | undefined;
8643
+ }[] | undefined;
8644
+ } | null | undefined;
7613
8645
  };
7614
8646
  approval?: {
7615
8647
  chainId: number;
@@ -7619,6 +8651,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7619
8651
  data: string;
7620
8652
  gasLimit: number | null;
7621
8653
  effectiveGas?: number | undefined;
8654
+ } | {
8655
+ raw_data_hex: string;
8656
+ visible?: boolean | undefined;
8657
+ raw_data?: {
8658
+ contract?: {
8659
+ type?: string | undefined;
8660
+ }[] | undefined;
8661
+ } | null | undefined;
7622
8662
  } | undefined;
7623
8663
  } & {
7624
8664
  trade: string | {
@@ -7632,6 +8672,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7632
8672
  } | {
7633
8673
  unsignedPsbtBase64: string;
7634
8674
  inputsToSign: {}[] | null;
8675
+ } | {
8676
+ raw_data_hex: string;
8677
+ visible?: boolean | undefined;
8678
+ raw_data?: {
8679
+ contract?: {
8680
+ type?: string | undefined;
8681
+ }[] | undefined;
8682
+ } | null | undefined;
7635
8683
  };
7636
8684
  approval?: {
7637
8685
  chainId: number;
@@ -7641,6 +8689,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7641
8689
  data: string;
7642
8690
  gasLimit: number | null;
7643
8691
  effectiveGas?: number | undefined;
8692
+ } | {
8693
+ raw_data_hex: string;
8694
+ visible?: boolean | undefined;
8695
+ raw_data?: {
8696
+ contract?: {
8697
+ type?: string | undefined;
8698
+ }[] | undefined;
8699
+ } | null | undefined;
7644
8700
  } | undefined;
7645
8701
  featureId?: import(".").FeatureId | undefined;
7646
8702
  } & QuoteMetadata) | null) & {
@@ -7795,6 +8851,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7795
8851
  } | {
7796
8852
  unsignedPsbtBase64: string;
7797
8853
  inputsToSign: {}[] | null;
8854
+ } | {
8855
+ raw_data_hex: string;
8856
+ visible?: boolean | undefined;
8857
+ raw_data?: {
8858
+ contract?: {
8859
+ type?: string | undefined;
8860
+ }[] | undefined;
8861
+ } | null | undefined;
7798
8862
  };
7799
8863
  approval?: {
7800
8864
  chainId: number;
@@ -7804,6 +8868,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7804
8868
  data: string;
7805
8869
  gasLimit: number | null;
7806
8870
  effectiveGas?: number | undefined;
8871
+ } | {
8872
+ raw_data_hex: string;
8873
+ visible?: boolean | undefined;
8874
+ raw_data?: {
8875
+ contract?: {
8876
+ type?: string | undefined;
8877
+ }[] | undefined;
8878
+ } | null | undefined;
7807
8879
  } | undefined;
7808
8880
  } & {
7809
8881
  trade: string | {
@@ -7817,6 +8889,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7817
8889
  } | {
7818
8890
  unsignedPsbtBase64: string;
7819
8891
  inputsToSign: {}[] | null;
8892
+ } | {
8893
+ raw_data_hex: string;
8894
+ visible?: boolean | undefined;
8895
+ raw_data?: {
8896
+ contract?: {
8897
+ type?: string | undefined;
8898
+ }[] | undefined;
8899
+ } | null | undefined;
7820
8900
  };
7821
8901
  approval?: {
7822
8902
  chainId: number;
@@ -7826,6 +8906,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7826
8906
  data: string;
7827
8907
  gasLimit: number | null;
7828
8908
  effectiveGas?: number | undefined;
8909
+ } | {
8910
+ raw_data_hex: string;
8911
+ visible?: boolean | undefined;
8912
+ raw_data?: {
8913
+ contract?: {
8914
+ type?: string | undefined;
8915
+ }[] | undefined;
8916
+ } | null | undefined;
7829
8917
  } | undefined;
7830
8918
  featureId?: import(".").FeatureId | undefined;
7831
8919
  } & QuoteMetadata) | null;
@@ -7980,6 +9068,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7980
9068
  } | {
7981
9069
  unsignedPsbtBase64: string;
7982
9070
  inputsToSign: {}[] | null;
9071
+ } | {
9072
+ raw_data_hex: string;
9073
+ visible?: boolean | undefined;
9074
+ raw_data?: {
9075
+ contract?: {
9076
+ type?: string | undefined;
9077
+ }[] | undefined;
9078
+ } | null | undefined;
7983
9079
  };
7984
9080
  approval?: {
7985
9081
  chainId: number;
@@ -7989,6 +9085,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
7989
9085
  data: string;
7990
9086
  gasLimit: number | null;
7991
9087
  effectiveGas?: number | undefined;
9088
+ } | {
9089
+ raw_data_hex: string;
9090
+ visible?: boolean | undefined;
9091
+ raw_data?: {
9092
+ contract?: {
9093
+ type?: string | undefined;
9094
+ }[] | undefined;
9095
+ } | null | undefined;
7992
9096
  } | undefined;
7993
9097
  } & {
7994
9098
  trade: string | {
@@ -8002,6 +9106,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8002
9106
  } | {
8003
9107
  unsignedPsbtBase64: string;
8004
9108
  inputsToSign: {}[] | null;
9109
+ } | {
9110
+ raw_data_hex: string;
9111
+ visible?: boolean | undefined;
9112
+ raw_data?: {
9113
+ contract?: {
9114
+ type?: string | undefined;
9115
+ }[] | undefined;
9116
+ } | null | undefined;
8005
9117
  };
8006
9118
  approval?: {
8007
9119
  chainId: number;
@@ -8011,6 +9123,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8011
9123
  data: string;
8012
9124
  gasLimit: number | null;
8013
9125
  effectiveGas?: number | undefined;
9126
+ } | {
9127
+ raw_data_hex: string;
9128
+ visible?: boolean | undefined;
9129
+ raw_data?: {
9130
+ contract?: {
9131
+ type?: string | undefined;
9132
+ }[] | undefined;
9133
+ } | null | undefined;
8014
9134
  } | undefined;
8015
9135
  featureId?: import(".").FeatureId | undefined;
8016
9136
  } & QuoteMetadata)[]) & {
@@ -8205,6 +9325,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8205
9325
  } | {
8206
9326
  unsignedPsbtBase64: string;
8207
9327
  inputsToSign: {}[] | null;
9328
+ } | {
9329
+ raw_data_hex: string;
9330
+ visible?: boolean | undefined;
9331
+ raw_data?: {
9332
+ contract?: {
9333
+ type?: string | undefined;
9334
+ }[] | undefined;
9335
+ } | null | undefined;
8208
9336
  };
8209
9337
  approval?: {
8210
9338
  chainId: number;
@@ -8214,6 +9342,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8214
9342
  data: string;
8215
9343
  gasLimit: number | null;
8216
9344
  effectiveGas?: number | undefined;
9345
+ } | {
9346
+ raw_data_hex: string;
9347
+ visible?: boolean | undefined;
9348
+ raw_data?: {
9349
+ contract?: {
9350
+ type?: string | undefined;
9351
+ }[] | undefined;
9352
+ } | null | undefined;
8217
9353
  } | undefined;
8218
9354
  featureId?: import(".").FeatureId | undefined;
8219
9355
  l1GasFeesInHexWei?: string | undefined;
@@ -8365,6 +9501,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8365
9501
  } | {
8366
9502
  unsignedPsbtBase64: string;
8367
9503
  inputsToSign: {}[] | null;
9504
+ } | {
9505
+ raw_data_hex: string;
9506
+ visible?: boolean | undefined;
9507
+ raw_data?: {
9508
+ contract?: {
9509
+ type?: string | undefined;
9510
+ }[] | undefined;
9511
+ } | null | undefined;
8368
9512
  };
8369
9513
  approval?: {
8370
9514
  chainId: number;
@@ -8374,6 +9518,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8374
9518
  data: string;
8375
9519
  gasLimit: number | null;
8376
9520
  effectiveGas?: number | undefined;
9521
+ } | {
9522
+ raw_data_hex: string;
9523
+ visible?: boolean | undefined;
9524
+ raw_data?: {
9525
+ contract?: {
9526
+ type?: string | undefined;
9527
+ }[] | undefined;
9528
+ } | null | undefined;
8377
9529
  } | undefined;
8378
9530
  } & {
8379
9531
  trade: string | {
@@ -8387,6 +9539,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8387
9539
  } | {
8388
9540
  unsignedPsbtBase64: string;
8389
9541
  inputsToSign: {}[] | null;
9542
+ } | {
9543
+ raw_data_hex: string;
9544
+ visible?: boolean | undefined;
9545
+ raw_data?: {
9546
+ contract?: {
9547
+ type?: string | undefined;
9548
+ }[] | undefined;
9549
+ } | null | undefined;
8390
9550
  };
8391
9551
  approval?: {
8392
9552
  chainId: number;
@@ -8396,6 +9556,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8396
9556
  data: string;
8397
9557
  gasLimit: number | null;
8398
9558
  effectiveGas?: number | undefined;
9559
+ } | {
9560
+ raw_data_hex: string;
9561
+ visible?: boolean | undefined;
9562
+ raw_data?: {
9563
+ contract?: {
9564
+ type?: string | undefined;
9565
+ }[] | undefined;
9566
+ } | null | undefined;
8399
9567
  } | undefined;
8400
9568
  featureId?: import(".").FeatureId | undefined;
8401
9569
  } & QuoteMetadata)[];
@@ -8586,6 +9754,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8586
9754
  } | {
8587
9755
  unsignedPsbtBase64: string;
8588
9756
  inputsToSign: {}[] | null;
9757
+ } | {
9758
+ raw_data_hex: string;
9759
+ visible?: boolean | undefined;
9760
+ raw_data?: {
9761
+ contract?: {
9762
+ type?: string | undefined;
9763
+ }[] | undefined;
9764
+ } | null | undefined;
8589
9765
  };
8590
9766
  approval?: {
8591
9767
  chainId: number;
@@ -8595,6 +9771,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8595
9771
  data: string;
8596
9772
  gasLimit: number | null;
8597
9773
  effectiveGas?: number | undefined;
9774
+ } | {
9775
+ raw_data_hex: string;
9776
+ visible?: boolean | undefined;
9777
+ raw_data?: {
9778
+ contract?: {
9779
+ type?: string | undefined;
9780
+ }[] | undefined;
9781
+ } | null | undefined;
8598
9782
  } | undefined;
8599
9783
  featureId?: import(".").FeatureId | undefined;
8600
9784
  l1GasFeesInHexWei?: string | undefined;
@@ -8746,6 +9930,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8746
9930
  } | {
8747
9931
  unsignedPsbtBase64: string;
8748
9932
  inputsToSign: {}[] | null;
9933
+ } | {
9934
+ raw_data_hex: string;
9935
+ visible?: boolean | undefined;
9936
+ raw_data?: {
9937
+ contract?: {
9938
+ type?: string | undefined;
9939
+ }[] | undefined;
9940
+ } | null | undefined;
8749
9941
  };
8750
9942
  approval?: {
8751
9943
  chainId: number;
@@ -8755,6 +9947,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8755
9947
  data: string;
8756
9948
  gasLimit: number | null;
8757
9949
  effectiveGas?: number | undefined;
9950
+ } | {
9951
+ raw_data_hex: string;
9952
+ visible?: boolean | undefined;
9953
+ raw_data?: {
9954
+ contract?: {
9955
+ type?: string | undefined;
9956
+ }[] | undefined;
9957
+ } | null | undefined;
8758
9958
  } | undefined;
8759
9959
  } & {
8760
9960
  trade: string | {
@@ -8768,6 +9968,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8768
9968
  } | {
8769
9969
  unsignedPsbtBase64: string;
8770
9970
  inputsToSign: {}[] | null;
9971
+ } | {
9972
+ raw_data_hex: string;
9973
+ visible?: boolean | undefined;
9974
+ raw_data?: {
9975
+ contract?: {
9976
+ type?: string | undefined;
9977
+ }[] | undefined;
9978
+ } | null | undefined;
8771
9979
  };
8772
9980
  approval?: {
8773
9981
  chainId: number;
@@ -8777,6 +9985,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8777
9985
  data: string;
8778
9986
  gasLimit: number | null;
8779
9987
  effectiveGas?: number | undefined;
9988
+ } | {
9989
+ raw_data_hex: string;
9990
+ visible?: boolean | undefined;
9991
+ raw_data?: {
9992
+ contract?: {
9993
+ type?: string | undefined;
9994
+ }[] | undefined;
9995
+ } | null | undefined;
8780
9996
  } | undefined;
8781
9997
  featureId?: import(".").FeatureId | undefined;
8782
9998
  } & QuoteMetadata)[]) & {
@@ -8931,6 +10147,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8931
10147
  } | {
8932
10148
  unsignedPsbtBase64: string;
8933
10149
  inputsToSign: {}[] | null;
10150
+ } | {
10151
+ raw_data_hex: string;
10152
+ visible?: boolean | undefined;
10153
+ raw_data?: {
10154
+ contract?: {
10155
+ type?: string | undefined;
10156
+ }[] | undefined;
10157
+ } | null | undefined;
8934
10158
  };
8935
10159
  approval?: {
8936
10160
  chainId: number;
@@ -8940,6 +10164,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8940
10164
  data: string;
8941
10165
  gasLimit: number | null;
8942
10166
  effectiveGas?: number | undefined;
10167
+ } | {
10168
+ raw_data_hex: string;
10169
+ visible?: boolean | undefined;
10170
+ raw_data?: {
10171
+ contract?: {
10172
+ type?: string | undefined;
10173
+ }[] | undefined;
10174
+ } | null | undefined;
8943
10175
  } | undefined;
8944
10176
  } & {
8945
10177
  trade: string | {
@@ -8953,6 +10185,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8953
10185
  } | {
8954
10186
  unsignedPsbtBase64: string;
8955
10187
  inputsToSign: {}[] | null;
10188
+ } | {
10189
+ raw_data_hex: string;
10190
+ visible?: boolean | undefined;
10191
+ raw_data?: {
10192
+ contract?: {
10193
+ type?: string | undefined;
10194
+ }[] | undefined;
10195
+ } | null | undefined;
8956
10196
  };
8957
10197
  approval?: {
8958
10198
  chainId: number;
@@ -8962,6 +10202,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
8962
10202
  data: string;
8963
10203
  gasLimit: number | null;
8964
10204
  effectiveGas?: number | undefined;
10205
+ } | {
10206
+ raw_data_hex: string;
10207
+ visible?: boolean | undefined;
10208
+ raw_data?: {
10209
+ contract?: {
10210
+ type?: string | undefined;
10211
+ }[] | undefined;
10212
+ } | null | undefined;
8965
10213
  } | undefined;
8966
10214
  featureId?: import(".").FeatureId | undefined;
8967
10215
  } & QuoteMetadata)[];
@@ -9156,6 +10404,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9156
10404
  } | {
9157
10405
  unsignedPsbtBase64: string;
9158
10406
  inputsToSign: {}[] | null;
10407
+ } | {
10408
+ raw_data_hex: string;
10409
+ visible?: boolean | undefined;
10410
+ raw_data?: {
10411
+ contract?: {
10412
+ type?: string | undefined;
10413
+ }[] | undefined;
10414
+ } | null | undefined;
9159
10415
  };
9160
10416
  approval?: {
9161
10417
  chainId: number;
@@ -9165,6 +10421,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9165
10421
  data: string;
9166
10422
  gasLimit: number | null;
9167
10423
  effectiveGas?: number | undefined;
10424
+ } | {
10425
+ raw_data_hex: string;
10426
+ visible?: boolean | undefined;
10427
+ raw_data?: {
10428
+ contract?: {
10429
+ type?: string | undefined;
10430
+ }[] | undefined;
10431
+ } | null | undefined;
9168
10432
  } | undefined;
9169
10433
  featureId?: import(".").FeatureId | undefined;
9170
10434
  l1GasFeesInHexWei?: string | undefined;
@@ -9321,6 +10585,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9321
10585
  } | {
9322
10586
  unsignedPsbtBase64: string;
9323
10587
  inputsToSign: {}[] | null;
10588
+ } | {
10589
+ raw_data_hex: string;
10590
+ visible?: boolean | undefined;
10591
+ raw_data?: {
10592
+ contract?: {
10593
+ type?: string | undefined;
10594
+ }[] | undefined;
10595
+ } | null | undefined;
9324
10596
  };
9325
10597
  approval?: {
9326
10598
  chainId: number;
@@ -9330,6 +10602,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9330
10602
  data: string;
9331
10603
  gasLimit: number | null;
9332
10604
  effectiveGas?: number | undefined;
10605
+ } | {
10606
+ raw_data_hex: string;
10607
+ visible?: boolean | undefined;
10608
+ raw_data?: {
10609
+ contract?: {
10610
+ type?: string | undefined;
10611
+ }[] | undefined;
10612
+ } | null | undefined;
9333
10613
  } | undefined;
9334
10614
  } & {
9335
10615
  trade: string | {
@@ -9343,6 +10623,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9343
10623
  } | {
9344
10624
  unsignedPsbtBase64: string;
9345
10625
  inputsToSign: {}[] | null;
10626
+ } | {
10627
+ raw_data_hex: string;
10628
+ visible?: boolean | undefined;
10629
+ raw_data?: {
10630
+ contract?: {
10631
+ type?: string | undefined;
10632
+ }[] | undefined;
10633
+ } | null | undefined;
9346
10634
  };
9347
10635
  approval?: {
9348
10636
  chainId: number;
@@ -9352,6 +10640,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9352
10640
  data: string;
9353
10641
  gasLimit: number | null;
9354
10642
  effectiveGas?: number | undefined;
10643
+ } | {
10644
+ raw_data_hex: string;
10645
+ visible?: boolean | undefined;
10646
+ raw_data?: {
10647
+ contract?: {
10648
+ type?: string | undefined;
10649
+ }[] | undefined;
10650
+ } | null | undefined;
9355
10651
  } | undefined;
9356
10652
  featureId?: import(".").FeatureId | undefined;
9357
10653
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -9545,6 +10841,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9545
10841
  } | {
9546
10842
  unsignedPsbtBase64: string;
9547
10843
  inputsToSign: {}[] | null;
10844
+ } | {
10845
+ raw_data_hex: string;
10846
+ visible?: boolean | undefined;
10847
+ raw_data?: {
10848
+ contract?: {
10849
+ type?: string | undefined;
10850
+ }[] | undefined;
10851
+ } | null | undefined;
9548
10852
  };
9549
10853
  approval?: {
9550
10854
  chainId: number;
@@ -9554,6 +10858,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9554
10858
  data: string;
9555
10859
  gasLimit: number | null;
9556
10860
  effectiveGas?: number | undefined;
10861
+ } | {
10862
+ raw_data_hex: string;
10863
+ visible?: boolean | undefined;
10864
+ raw_data?: {
10865
+ contract?: {
10866
+ type?: string | undefined;
10867
+ }[] | undefined;
10868
+ } | null | undefined;
9557
10869
  } | undefined;
9558
10870
  featureId?: import(".").FeatureId | undefined;
9559
10871
  l1GasFeesInHexWei?: string | undefined;
@@ -9706,6 +11018,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9706
11018
  } | {
9707
11019
  unsignedPsbtBase64: string;
9708
11020
  inputsToSign: {}[] | null;
11021
+ } | {
11022
+ raw_data_hex: string;
11023
+ visible?: boolean | undefined;
11024
+ raw_data?: {
11025
+ contract?: {
11026
+ type?: string | undefined;
11027
+ }[] | undefined;
11028
+ } | null | undefined;
9709
11029
  };
9710
11030
  approval?: {
9711
11031
  chainId: number;
@@ -9715,6 +11035,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9715
11035
  data: string;
9716
11036
  gasLimit: number | null;
9717
11037
  effectiveGas?: number | undefined;
11038
+ } | {
11039
+ raw_data_hex: string;
11040
+ visible?: boolean | undefined;
11041
+ raw_data?: {
11042
+ contract?: {
11043
+ type?: string | undefined;
11044
+ }[] | undefined;
11045
+ } | null | undefined;
9718
11046
  } | undefined;
9719
11047
  } & {
9720
11048
  trade: string | {
@@ -9728,6 +11056,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9728
11056
  } | {
9729
11057
  unsignedPsbtBase64: string;
9730
11058
  inputsToSign: {}[] | null;
11059
+ } | {
11060
+ raw_data_hex: string;
11061
+ visible?: boolean | undefined;
11062
+ raw_data?: {
11063
+ contract?: {
11064
+ type?: string | undefined;
11065
+ }[] | undefined;
11066
+ } | null | undefined;
9731
11067
  };
9732
11068
  approval?: {
9733
11069
  chainId: number;
@@ -9737,6 +11073,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9737
11073
  data: string;
9738
11074
  gasLimit: number | null;
9739
11075
  effectiveGas?: number | undefined;
11076
+ } | {
11077
+ raw_data_hex: string;
11078
+ visible?: boolean | undefined;
11079
+ raw_data?: {
11080
+ contract?: {
11081
+ type?: string | undefined;
11082
+ }[] | undefined;
11083
+ } | null | undefined;
9740
11084
  } | undefined;
9741
11085
  featureId?: import(".").FeatureId | undefined;
9742
11086
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -9930,6 +11274,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9930
11274
  } | {
9931
11275
  unsignedPsbtBase64: string;
9932
11276
  inputsToSign: {}[] | null;
11277
+ } | {
11278
+ raw_data_hex: string;
11279
+ visible?: boolean | undefined;
11280
+ raw_data?: {
11281
+ contract?: {
11282
+ type?: string | undefined;
11283
+ }[] | undefined;
11284
+ } | null | undefined;
9933
11285
  };
9934
11286
  approval?: {
9935
11287
  chainId: number;
@@ -9939,6 +11291,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
9939
11291
  data: string;
9940
11292
  gasLimit: number | null;
9941
11293
  effectiveGas?: number | undefined;
11294
+ } | {
11295
+ raw_data_hex: string;
11296
+ visible?: boolean | undefined;
11297
+ raw_data?: {
11298
+ contract?: {
11299
+ type?: string | undefined;
11300
+ }[] | undefined;
11301
+ } | null | undefined;
9942
11302
  } | undefined;
9943
11303
  featureId?: import(".").FeatureId | undefined;
9944
11304
  l1GasFeesInHexWei?: string | undefined;
@@ -10135,6 +11495,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10135
11495
  } | {
10136
11496
  unsignedPsbtBase64: string;
10137
11497
  inputsToSign: {}[] | null;
11498
+ } | {
11499
+ raw_data_hex: string;
11500
+ visible?: boolean | undefined;
11501
+ raw_data?: {
11502
+ contract?: {
11503
+ type?: string | undefined;
11504
+ }[] | undefined;
11505
+ } | null | undefined;
10138
11506
  };
10139
11507
  approval?: {
10140
11508
  chainId: number;
@@ -10144,6 +11512,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10144
11512
  data: string;
10145
11513
  gasLimit: number | null;
10146
11514
  effectiveGas?: number | undefined;
11515
+ } | {
11516
+ raw_data_hex: string;
11517
+ visible?: boolean | undefined;
11518
+ raw_data?: {
11519
+ contract?: {
11520
+ type?: string | undefined;
11521
+ }[] | undefined;
11522
+ } | null | undefined;
10147
11523
  } | undefined;
10148
11524
  featureId?: import(".").FeatureId | undefined;
10149
11525
  l1GasFeesInHexWei?: string | undefined;
@@ -10296,6 +11672,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10296
11672
  } | {
10297
11673
  unsignedPsbtBase64: string;
10298
11674
  inputsToSign: {}[] | null;
11675
+ } | {
11676
+ raw_data_hex: string;
11677
+ visible?: boolean | undefined;
11678
+ raw_data?: {
11679
+ contract?: {
11680
+ type?: string | undefined;
11681
+ }[] | undefined;
11682
+ } | null | undefined;
10299
11683
  };
10300
11684
  approval?: {
10301
11685
  chainId: number;
@@ -10305,6 +11689,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10305
11689
  data: string;
10306
11690
  gasLimit: number | null;
10307
11691
  effectiveGas?: number | undefined;
11692
+ } | {
11693
+ raw_data_hex: string;
11694
+ visible?: boolean | undefined;
11695
+ raw_data?: {
11696
+ contract?: {
11697
+ type?: string | undefined;
11698
+ }[] | undefined;
11699
+ } | null | undefined;
10308
11700
  } | undefined;
10309
11701
  } & {
10310
11702
  trade: string | {
@@ -10318,6 +11710,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10318
11710
  } | {
10319
11711
  unsignedPsbtBase64: string;
10320
11712
  inputsToSign: {}[] | null;
11713
+ } | {
11714
+ raw_data_hex: string;
11715
+ visible?: boolean | undefined;
11716
+ raw_data?: {
11717
+ contract?: {
11718
+ type?: string | undefined;
11719
+ }[] | undefined;
11720
+ } | null | undefined;
10321
11721
  };
10322
11722
  approval?: {
10323
11723
  chainId: number;
@@ -10327,6 +11727,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10327
11727
  data: string;
10328
11728
  gasLimit: number | null;
10329
11729
  effectiveGas?: number | undefined;
11730
+ } | {
11731
+ raw_data_hex: string;
11732
+ visible?: boolean | undefined;
11733
+ raw_data?: {
11734
+ contract?: {
11735
+ type?: string | undefined;
11736
+ }[] | undefined;
11737
+ } | null | undefined;
10330
11738
  } | undefined;
10331
11739
  featureId?: import(".").FeatureId | undefined;
10332
11740
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
@@ -10616,6 +12024,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10616
12024
  } | {
10617
12025
  unsignedPsbtBase64: string;
10618
12026
  inputsToSign: {}[] | null;
12027
+ } | {
12028
+ raw_data_hex: string;
12029
+ visible?: boolean | undefined;
12030
+ raw_data?: {
12031
+ contract?: {
12032
+ type?: string | undefined;
12033
+ }[] | undefined;
12034
+ } | null | undefined;
10619
12035
  };
10620
12036
  approval?: {
10621
12037
  chainId: number;
@@ -10625,6 +12041,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10625
12041
  data: string;
10626
12042
  gasLimit: number | null;
10627
12043
  effectiveGas?: number | undefined;
12044
+ } | {
12045
+ raw_data_hex: string;
12046
+ visible?: boolean | undefined;
12047
+ raw_data?: {
12048
+ contract?: {
12049
+ type?: string | undefined;
12050
+ }[] | undefined;
12051
+ } | null | undefined;
10628
12052
  } | undefined;
10629
12053
  } & {
10630
12054
  trade: string | {
@@ -10638,6 +12062,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10638
12062
  } | {
10639
12063
  unsignedPsbtBase64: string;
10640
12064
  inputsToSign: {}[] | null;
12065
+ } | {
12066
+ raw_data_hex: string;
12067
+ visible?: boolean | undefined;
12068
+ raw_data?: {
12069
+ contract?: {
12070
+ type?: string | undefined;
12071
+ }[] | undefined;
12072
+ } | null | undefined;
10641
12073
  };
10642
12074
  approval?: {
10643
12075
  chainId: number;
@@ -10647,6 +12079,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10647
12079
  data: string;
10648
12080
  gasLimit: number | null;
10649
12081
  effectiveGas?: number | undefined;
12082
+ } | {
12083
+ raw_data_hex: string;
12084
+ visible?: boolean | undefined;
12085
+ raw_data?: {
12086
+ contract?: {
12087
+ type?: string | undefined;
12088
+ }[] | undefined;
12089
+ } | null | undefined;
10650
12090
  } | undefined;
10651
12091
  featureId?: import(".").FeatureId | undefined;
10652
12092
  } & QuoteMetadata) | null) & {
@@ -10801,6 +12241,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10801
12241
  } | {
10802
12242
  unsignedPsbtBase64: string;
10803
12243
  inputsToSign: {}[] | null;
12244
+ } | {
12245
+ raw_data_hex: string;
12246
+ visible?: boolean | undefined;
12247
+ raw_data?: {
12248
+ contract?: {
12249
+ type?: string | undefined;
12250
+ }[] | undefined;
12251
+ } | null | undefined;
10804
12252
  };
10805
12253
  approval?: {
10806
12254
  chainId: number;
@@ -10810,6 +12258,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10810
12258
  data: string;
10811
12259
  gasLimit: number | null;
10812
12260
  effectiveGas?: number | undefined;
12261
+ } | {
12262
+ raw_data_hex: string;
12263
+ visible?: boolean | undefined;
12264
+ raw_data?: {
12265
+ contract?: {
12266
+ type?: string | undefined;
12267
+ }[] | undefined;
12268
+ } | null | undefined;
10813
12269
  } | undefined;
10814
12270
  } & {
10815
12271
  trade: string | {
@@ -10823,6 +12279,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10823
12279
  } | {
10824
12280
  unsignedPsbtBase64: string;
10825
12281
  inputsToSign: {}[] | null;
12282
+ } | {
12283
+ raw_data_hex: string;
12284
+ visible?: boolean | undefined;
12285
+ raw_data?: {
12286
+ contract?: {
12287
+ type?: string | undefined;
12288
+ }[] | undefined;
12289
+ } | null | undefined;
10826
12290
  };
10827
12291
  approval?: {
10828
12292
  chainId: number;
@@ -10832,6 +12296,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10832
12296
  data: string;
10833
12297
  gasLimit: number | null;
10834
12298
  effectiveGas?: number | undefined;
12299
+ } | {
12300
+ raw_data_hex: string;
12301
+ visible?: boolean | undefined;
12302
+ raw_data?: {
12303
+ contract?: {
12304
+ type?: string | undefined;
12305
+ }[] | undefined;
12306
+ } | null | undefined;
10835
12307
  } | undefined;
10836
12308
  featureId?: import(".").FeatureId | undefined;
10837
12309
  } & QuoteMetadata) | null, resultFuncArgs_1: ({
@@ -10981,6 +12453,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10981
12453
  } | {
10982
12454
  unsignedPsbtBase64: string;
10983
12455
  inputsToSign: {}[] | null;
12456
+ } | {
12457
+ raw_data_hex: string;
12458
+ visible?: boolean | undefined;
12459
+ raw_data?: {
12460
+ contract?: {
12461
+ type?: string | undefined;
12462
+ }[] | undefined;
12463
+ } | null | undefined;
10984
12464
  };
10985
12465
  approval?: {
10986
12466
  chainId: number;
@@ -10990,6 +12470,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
10990
12470
  data: string;
10991
12471
  gasLimit: number | null;
10992
12472
  effectiveGas?: number | undefined;
12473
+ } | {
12474
+ raw_data_hex: string;
12475
+ visible?: boolean | undefined;
12476
+ raw_data?: {
12477
+ contract?: {
12478
+ type?: string | undefined;
12479
+ }[] | undefined;
12480
+ } | null | undefined;
10993
12481
  } | undefined;
10994
12482
  } & {
10995
12483
  trade: string | {
@@ -11003,6 +12491,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11003
12491
  } | {
11004
12492
  unsignedPsbtBase64: string;
11005
12493
  inputsToSign: {}[] | null;
12494
+ } | {
12495
+ raw_data_hex: string;
12496
+ visible?: boolean | undefined;
12497
+ raw_data?: {
12498
+ contract?: {
12499
+ type?: string | undefined;
12500
+ }[] | undefined;
12501
+ } | null | undefined;
11006
12502
  };
11007
12503
  approval?: {
11008
12504
  chainId: number;
@@ -11012,6 +12508,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11012
12508
  data: string;
11013
12509
  gasLimit: number | null;
11014
12510
  effectiveGas?: number | undefined;
12511
+ } | {
12512
+ raw_data_hex: string;
12513
+ visible?: boolean | undefined;
12514
+ raw_data?: {
12515
+ contract?: {
12516
+ type?: string | undefined;
12517
+ }[] | undefined;
12518
+ } | null | undefined;
11015
12519
  } | undefined;
11016
12520
  featureId?: import(".").FeatureId | undefined;
11017
12521
  } & QuoteMetadata) | null) => ({
@@ -11161,6 +12665,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11161
12665
  } | {
11162
12666
  unsignedPsbtBase64: string;
11163
12667
  inputsToSign: {}[] | null;
12668
+ } | {
12669
+ raw_data_hex: string;
12670
+ visible?: boolean | undefined;
12671
+ raw_data?: {
12672
+ contract?: {
12673
+ type?: string | undefined;
12674
+ }[] | undefined;
12675
+ } | null | undefined;
11164
12676
  };
11165
12677
  approval?: {
11166
12678
  chainId: number;
@@ -11170,6 +12682,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11170
12682
  data: string;
11171
12683
  gasLimit: number | null;
11172
12684
  effectiveGas?: number | undefined;
12685
+ } | {
12686
+ raw_data_hex: string;
12687
+ visible?: boolean | undefined;
12688
+ raw_data?: {
12689
+ contract?: {
12690
+ type?: string | undefined;
12691
+ }[] | undefined;
12692
+ } | null | undefined;
11173
12693
  } | undefined;
11174
12694
  } & {
11175
12695
  trade: string | {
@@ -11183,6 +12703,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11183
12703
  } | {
11184
12704
  unsignedPsbtBase64: string;
11185
12705
  inputsToSign: {}[] | null;
12706
+ } | {
12707
+ raw_data_hex: string;
12708
+ visible?: boolean | undefined;
12709
+ raw_data?: {
12710
+ contract?: {
12711
+ type?: string | undefined;
12712
+ }[] | undefined;
12713
+ } | null | undefined;
11186
12714
  };
11187
12715
  approval?: {
11188
12716
  chainId: number;
@@ -11192,6 +12720,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11192
12720
  data: string;
11193
12721
  gasLimit: number | null;
11194
12722
  effectiveGas?: number | undefined;
12723
+ } | {
12724
+ raw_data_hex: string;
12725
+ visible?: boolean | undefined;
12726
+ raw_data?: {
12727
+ contract?: {
12728
+ type?: string | undefined;
12729
+ }[] | undefined;
12730
+ } | null | undefined;
11195
12731
  } | undefined;
11196
12732
  featureId?: import(".").FeatureId | undefined;
11197
12733
  } & QuoteMetadata) | null;
@@ -11342,6 +12878,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11342
12878
  } | {
11343
12879
  unsignedPsbtBase64: string;
11344
12880
  inputsToSign: {}[] | null;
12881
+ } | {
12882
+ raw_data_hex: string;
12883
+ visible?: boolean | undefined;
12884
+ raw_data?: {
12885
+ contract?: {
12886
+ type?: string | undefined;
12887
+ }[] | undefined;
12888
+ } | null | undefined;
11345
12889
  };
11346
12890
  approval?: {
11347
12891
  chainId: number;
@@ -11351,6 +12895,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11351
12895
  data: string;
11352
12896
  gasLimit: number | null;
11353
12897
  effectiveGas?: number | undefined;
12898
+ } | {
12899
+ raw_data_hex: string;
12900
+ visible?: boolean | undefined;
12901
+ raw_data?: {
12902
+ contract?: {
12903
+ type?: string | undefined;
12904
+ }[] | undefined;
12905
+ } | null | undefined;
11354
12906
  } | undefined;
11355
12907
  } & {
11356
12908
  trade: string | {
@@ -11364,6 +12916,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11364
12916
  } | {
11365
12917
  unsignedPsbtBase64: string;
11366
12918
  inputsToSign: {}[] | null;
12919
+ } | {
12920
+ raw_data_hex: string;
12921
+ visible?: boolean | undefined;
12922
+ raw_data?: {
12923
+ contract?: {
12924
+ type?: string | undefined;
12925
+ }[] | undefined;
12926
+ } | null | undefined;
11367
12927
  };
11368
12928
  approval?: {
11369
12929
  chainId: number;
@@ -11373,6 +12933,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11373
12933
  data: string;
11374
12934
  gasLimit: number | null;
11375
12935
  effectiveGas?: number | undefined;
12936
+ } | {
12937
+ raw_data_hex: string;
12938
+ visible?: boolean | undefined;
12939
+ raw_data?: {
12940
+ contract?: {
12941
+ type?: string | undefined;
12942
+ }[] | undefined;
12943
+ } | null | undefined;
11376
12944
  } | undefined;
11377
12945
  featureId?: import(".").FeatureId | undefined;
11378
12946
  } & QuoteMetadata) | null, resultFuncArgs_1: ({
@@ -11522,6 +13090,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11522
13090
  } | {
11523
13091
  unsignedPsbtBase64: string;
11524
13092
  inputsToSign: {}[] | null;
13093
+ } | {
13094
+ raw_data_hex: string;
13095
+ visible?: boolean | undefined;
13096
+ raw_data?: {
13097
+ contract?: {
13098
+ type?: string | undefined;
13099
+ }[] | undefined;
13100
+ } | null | undefined;
11525
13101
  };
11526
13102
  approval?: {
11527
13103
  chainId: number;
@@ -11531,6 +13107,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11531
13107
  data: string;
11532
13108
  gasLimit: number | null;
11533
13109
  effectiveGas?: number | undefined;
13110
+ } | {
13111
+ raw_data_hex: string;
13112
+ visible?: boolean | undefined;
13113
+ raw_data?: {
13114
+ contract?: {
13115
+ type?: string | undefined;
13116
+ }[] | undefined;
13117
+ } | null | undefined;
11534
13118
  } | undefined;
11535
13119
  } & {
11536
13120
  trade: string | {
@@ -11544,6 +13128,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11544
13128
  } | {
11545
13129
  unsignedPsbtBase64: string;
11546
13130
  inputsToSign: {}[] | null;
13131
+ } | {
13132
+ raw_data_hex: string;
13133
+ visible?: boolean | undefined;
13134
+ raw_data?: {
13135
+ contract?: {
13136
+ type?: string | undefined;
13137
+ }[] | undefined;
13138
+ } | null | undefined;
11547
13139
  };
11548
13140
  approval?: {
11549
13141
  chainId: number;
@@ -11553,6 +13145,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11553
13145
  data: string;
11554
13146
  gasLimit: number | null;
11555
13147
  effectiveGas?: number | undefined;
13148
+ } | {
13149
+ raw_data_hex: string;
13150
+ visible?: boolean | undefined;
13151
+ raw_data?: {
13152
+ contract?: {
13153
+ type?: string | undefined;
13154
+ }[] | undefined;
13155
+ } | null | undefined;
11556
13156
  } | undefined;
11557
13157
  featureId?: import(".").FeatureId | undefined;
11558
13158
  } & QuoteMetadata) | null) => ({
@@ -11702,6 +13302,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11702
13302
  } | {
11703
13303
  unsignedPsbtBase64: string;
11704
13304
  inputsToSign: {}[] | null;
13305
+ } | {
13306
+ raw_data_hex: string;
13307
+ visible?: boolean | undefined;
13308
+ raw_data?: {
13309
+ contract?: {
13310
+ type?: string | undefined;
13311
+ }[] | undefined;
13312
+ } | null | undefined;
11705
13313
  };
11706
13314
  approval?: {
11707
13315
  chainId: number;
@@ -11711,6 +13319,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11711
13319
  data: string;
11712
13320
  gasLimit: number | null;
11713
13321
  effectiveGas?: number | undefined;
13322
+ } | {
13323
+ raw_data_hex: string;
13324
+ visible?: boolean | undefined;
13325
+ raw_data?: {
13326
+ contract?: {
13327
+ type?: string | undefined;
13328
+ }[] | undefined;
13329
+ } | null | undefined;
11714
13330
  } | undefined;
11715
13331
  } & {
11716
13332
  trade: string | {
@@ -11724,6 +13340,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11724
13340
  } | {
11725
13341
  unsignedPsbtBase64: string;
11726
13342
  inputsToSign: {}[] | null;
13343
+ } | {
13344
+ raw_data_hex: string;
13345
+ visible?: boolean | undefined;
13346
+ raw_data?: {
13347
+ contract?: {
13348
+ type?: string | undefined;
13349
+ }[] | undefined;
13350
+ } | null | undefined;
11727
13351
  };
11728
13352
  approval?: {
11729
13353
  chainId: number;
@@ -11733,6 +13357,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11733
13357
  data: string;
11734
13358
  gasLimit: number | null;
11735
13359
  effectiveGas?: number | undefined;
13360
+ } | {
13361
+ raw_data_hex: string;
13362
+ visible?: boolean | undefined;
13363
+ raw_data?: {
13364
+ contract?: {
13365
+ type?: string | undefined;
13366
+ }[] | undefined;
13367
+ } | null | undefined;
11736
13368
  } | undefined;
11737
13369
  featureId?: import(".").FeatureId | undefined;
11738
13370
  } & QuoteMetadata) | null) & {
@@ -11887,6 +13519,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11887
13519
  } | {
11888
13520
  unsignedPsbtBase64: string;
11889
13521
  inputsToSign: {}[] | null;
13522
+ } | {
13523
+ raw_data_hex: string;
13524
+ visible?: boolean | undefined;
13525
+ raw_data?: {
13526
+ contract?: {
13527
+ type?: string | undefined;
13528
+ }[] | undefined;
13529
+ } | null | undefined;
11890
13530
  };
11891
13531
  approval?: {
11892
13532
  chainId: number;
@@ -11896,6 +13536,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11896
13536
  data: string;
11897
13537
  gasLimit: number | null;
11898
13538
  effectiveGas?: number | undefined;
13539
+ } | {
13540
+ raw_data_hex: string;
13541
+ visible?: boolean | undefined;
13542
+ raw_data?: {
13543
+ contract?: {
13544
+ type?: string | undefined;
13545
+ }[] | undefined;
13546
+ } | null | undefined;
11899
13547
  } | undefined;
11900
13548
  } & {
11901
13549
  trade: string | {
@@ -11909,6 +13557,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11909
13557
  } | {
11910
13558
  unsignedPsbtBase64: string;
11911
13559
  inputsToSign: {}[] | null;
13560
+ } | {
13561
+ raw_data_hex: string;
13562
+ visible?: boolean | undefined;
13563
+ raw_data?: {
13564
+ contract?: {
13565
+ type?: string | undefined;
13566
+ }[] | undefined;
13567
+ } | null | undefined;
11912
13568
  };
11913
13569
  approval?: {
11914
13570
  chainId: number;
@@ -11918,6 +13574,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
11918
13574
  data: string;
11919
13575
  gasLimit: number | null;
11920
13576
  effectiveGas?: number | undefined;
13577
+ } | {
13578
+ raw_data_hex: string;
13579
+ visible?: boolean | undefined;
13580
+ raw_data?: {
13581
+ contract?: {
13582
+ type?: string | undefined;
13583
+ }[] | undefined;
13584
+ } | null | undefined;
11921
13585
  } | undefined;
11922
13586
  featureId?: import(".").FeatureId | undefined;
11923
13587
  } & QuoteMetadata) | null;
@@ -12072,6 +13736,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12072
13736
  } | {
12073
13737
  unsignedPsbtBase64: string;
12074
13738
  inputsToSign: {}[] | null;
13739
+ } | {
13740
+ raw_data_hex: string;
13741
+ visible?: boolean | undefined;
13742
+ raw_data?: {
13743
+ contract?: {
13744
+ type?: string | undefined;
13745
+ }[] | undefined;
13746
+ } | null | undefined;
12075
13747
  };
12076
13748
  approval?: {
12077
13749
  chainId: number;
@@ -12081,6 +13753,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12081
13753
  data: string;
12082
13754
  gasLimit: number | null;
12083
13755
  effectiveGas?: number | undefined;
13756
+ } | {
13757
+ raw_data_hex: string;
13758
+ visible?: boolean | undefined;
13759
+ raw_data?: {
13760
+ contract?: {
13761
+ type?: string | undefined;
13762
+ }[] | undefined;
13763
+ } | null | undefined;
12084
13764
  } | undefined;
12085
13765
  } & {
12086
13766
  trade: string | {
@@ -12094,6 +13774,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12094
13774
  } | {
12095
13775
  unsignedPsbtBase64: string;
12096
13776
  inputsToSign: {}[] | null;
13777
+ } | {
13778
+ raw_data_hex: string;
13779
+ visible?: boolean | undefined;
13780
+ raw_data?: {
13781
+ contract?: {
13782
+ type?: string | undefined;
13783
+ }[] | undefined;
13784
+ } | null | undefined;
12097
13785
  };
12098
13786
  approval?: {
12099
13787
  chainId: number;
@@ -12103,6 +13791,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12103
13791
  data: string;
12104
13792
  gasLimit: number | null;
12105
13793
  effectiveGas?: number | undefined;
13794
+ } | {
13795
+ raw_data_hex: string;
13796
+ visible?: boolean | undefined;
13797
+ raw_data?: {
13798
+ contract?: {
13799
+ type?: string | undefined;
13800
+ }[] | undefined;
13801
+ } | null | undefined;
12106
13802
  } | undefined;
12107
13803
  featureId?: import(".").FeatureId | undefined;
12108
13804
  } & QuoteMetadata) | null) & {
@@ -12257,6 +13953,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12257
13953
  } | {
12258
13954
  unsignedPsbtBase64: string;
12259
13955
  inputsToSign: {}[] | null;
13956
+ } | {
13957
+ raw_data_hex: string;
13958
+ visible?: boolean | undefined;
13959
+ raw_data?: {
13960
+ contract?: {
13961
+ type?: string | undefined;
13962
+ }[] | undefined;
13963
+ } | null | undefined;
12260
13964
  };
12261
13965
  approval?: {
12262
13966
  chainId: number;
@@ -12266,6 +13970,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12266
13970
  data: string;
12267
13971
  gasLimit: number | null;
12268
13972
  effectiveGas?: number | undefined;
13973
+ } | {
13974
+ raw_data_hex: string;
13975
+ visible?: boolean | undefined;
13976
+ raw_data?: {
13977
+ contract?: {
13978
+ type?: string | undefined;
13979
+ }[] | undefined;
13980
+ } | null | undefined;
12269
13981
  } | undefined;
12270
13982
  } & {
12271
13983
  trade: string | {
@@ -12279,6 +13991,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12279
13991
  } | {
12280
13992
  unsignedPsbtBase64: string;
12281
13993
  inputsToSign: {}[] | null;
13994
+ } | {
13995
+ raw_data_hex: string;
13996
+ visible?: boolean | undefined;
13997
+ raw_data?: {
13998
+ contract?: {
13999
+ type?: string | undefined;
14000
+ }[] | undefined;
14001
+ } | null | undefined;
12282
14002
  };
12283
14003
  approval?: {
12284
14004
  chainId: number;
@@ -12288,6 +14008,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12288
14008
  data: string;
12289
14009
  gasLimit: number | null;
12290
14010
  effectiveGas?: number | undefined;
14011
+ } | {
14012
+ raw_data_hex: string;
14013
+ visible?: boolean | undefined;
14014
+ raw_data?: {
14015
+ contract?: {
14016
+ type?: string | undefined;
14017
+ }[] | undefined;
14018
+ } | null | undefined;
12291
14019
  } | undefined;
12292
14020
  featureId?: import(".").FeatureId | undefined;
12293
14021
  } & QuoteMetadata)[]) => ({
@@ -12437,6 +14165,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12437
14165
  } | {
12438
14166
  unsignedPsbtBase64: string;
12439
14167
  inputsToSign: {}[] | null;
14168
+ } | {
14169
+ raw_data_hex: string;
14170
+ visible?: boolean | undefined;
14171
+ raw_data?: {
14172
+ contract?: {
14173
+ type?: string | undefined;
14174
+ }[] | undefined;
14175
+ } | null | undefined;
12440
14176
  };
12441
14177
  approval?: {
12442
14178
  chainId: number;
@@ -12446,6 +14182,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12446
14182
  data: string;
12447
14183
  gasLimit: number | null;
12448
14184
  effectiveGas?: number | undefined;
14185
+ } | {
14186
+ raw_data_hex: string;
14187
+ visible?: boolean | undefined;
14188
+ raw_data?: {
14189
+ contract?: {
14190
+ type?: string | undefined;
14191
+ }[] | undefined;
14192
+ } | null | undefined;
12449
14193
  } | undefined;
12450
14194
  } & {
12451
14195
  trade: string | {
@@ -12459,6 +14203,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12459
14203
  } | {
12460
14204
  unsignedPsbtBase64: string;
12461
14205
  inputsToSign: {}[] | null;
14206
+ } | {
14207
+ raw_data_hex: string;
14208
+ visible?: boolean | undefined;
14209
+ raw_data?: {
14210
+ contract?: {
14211
+ type?: string | undefined;
14212
+ }[] | undefined;
14213
+ } | null | undefined;
12462
14214
  };
12463
14215
  approval?: {
12464
14216
  chainId: number;
@@ -12468,6 +14220,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12468
14220
  data: string;
12469
14221
  gasLimit: number | null;
12470
14222
  effectiveGas?: number | undefined;
14223
+ } | {
14224
+ raw_data_hex: string;
14225
+ visible?: boolean | undefined;
14226
+ raw_data?: {
14227
+ contract?: {
14228
+ type?: string | undefined;
14229
+ }[] | undefined;
14230
+ } | null | undefined;
12471
14231
  } | undefined;
12472
14232
  featureId?: import(".").FeatureId | undefined;
12473
14233
  } & QuoteMetadata) | null;
@@ -12618,6 +14378,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12618
14378
  } | {
12619
14379
  unsignedPsbtBase64: string;
12620
14380
  inputsToSign: {}[] | null;
14381
+ } | {
14382
+ raw_data_hex: string;
14383
+ visible?: boolean | undefined;
14384
+ raw_data?: {
14385
+ contract?: {
14386
+ type?: string | undefined;
14387
+ }[] | undefined;
14388
+ } | null | undefined;
12621
14389
  };
12622
14390
  approval?: {
12623
14391
  chainId: number;
@@ -12627,6 +14395,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12627
14395
  data: string;
12628
14396
  gasLimit: number | null;
12629
14397
  effectiveGas?: number | undefined;
14398
+ } | {
14399
+ raw_data_hex: string;
14400
+ visible?: boolean | undefined;
14401
+ raw_data?: {
14402
+ contract?: {
14403
+ type?: string | undefined;
14404
+ }[] | undefined;
14405
+ } | null | undefined;
12630
14406
  } | undefined;
12631
14407
  } & {
12632
14408
  trade: string | {
@@ -12640,6 +14416,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12640
14416
  } | {
12641
14417
  unsignedPsbtBase64: string;
12642
14418
  inputsToSign: {}[] | null;
14419
+ } | {
14420
+ raw_data_hex: string;
14421
+ visible?: boolean | undefined;
14422
+ raw_data?: {
14423
+ contract?: {
14424
+ type?: string | undefined;
14425
+ }[] | undefined;
14426
+ } | null | undefined;
12643
14427
  };
12644
14428
  approval?: {
12645
14429
  chainId: number;
@@ -12649,6 +14433,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12649
14433
  data: string;
12650
14434
  gasLimit: number | null;
12651
14435
  effectiveGas?: number | undefined;
14436
+ } | {
14437
+ raw_data_hex: string;
14438
+ visible?: boolean | undefined;
14439
+ raw_data?: {
14440
+ contract?: {
14441
+ type?: string | undefined;
14442
+ }[] | undefined;
14443
+ } | null | undefined;
12652
14444
  } | undefined;
12653
14445
  featureId?: import(".").FeatureId | undefined;
12654
14446
  } & QuoteMetadata)[]) => ({
@@ -12798,6 +14590,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12798
14590
  } | {
12799
14591
  unsignedPsbtBase64: string;
12800
14592
  inputsToSign: {}[] | null;
14593
+ } | {
14594
+ raw_data_hex: string;
14595
+ visible?: boolean | undefined;
14596
+ raw_data?: {
14597
+ contract?: {
14598
+ type?: string | undefined;
14599
+ }[] | undefined;
14600
+ } | null | undefined;
12801
14601
  };
12802
14602
  approval?: {
12803
14603
  chainId: number;
@@ -12807,6 +14607,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12807
14607
  data: string;
12808
14608
  gasLimit: number | null;
12809
14609
  effectiveGas?: number | undefined;
14610
+ } | {
14611
+ raw_data_hex: string;
14612
+ visible?: boolean | undefined;
14613
+ raw_data?: {
14614
+ contract?: {
14615
+ type?: string | undefined;
14616
+ }[] | undefined;
14617
+ } | null | undefined;
12810
14618
  } | undefined;
12811
14619
  } & {
12812
14620
  trade: string | {
@@ -12820,6 +14628,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12820
14628
  } | {
12821
14629
  unsignedPsbtBase64: string;
12822
14630
  inputsToSign: {}[] | null;
14631
+ } | {
14632
+ raw_data_hex: string;
14633
+ visible?: boolean | undefined;
14634
+ raw_data?: {
14635
+ contract?: {
14636
+ type?: string | undefined;
14637
+ }[] | undefined;
14638
+ } | null | undefined;
12823
14639
  };
12824
14640
  approval?: {
12825
14641
  chainId: number;
@@ -12829,6 +14645,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12829
14645
  data: string;
12830
14646
  gasLimit: number | null;
12831
14647
  effectiveGas?: number | undefined;
14648
+ } | {
14649
+ raw_data_hex: string;
14650
+ visible?: boolean | undefined;
14651
+ raw_data?: {
14652
+ contract?: {
14653
+ type?: string | undefined;
14654
+ }[] | undefined;
14655
+ } | null | undefined;
12832
14656
  } | undefined;
12833
14657
  featureId?: import(".").FeatureId | undefined;
12834
14658
  } & QuoteMetadata) | null) & {
@@ -12983,6 +14807,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12983
14807
  } | {
12984
14808
  unsignedPsbtBase64: string;
12985
14809
  inputsToSign: {}[] | null;
14810
+ } | {
14811
+ raw_data_hex: string;
14812
+ visible?: boolean | undefined;
14813
+ raw_data?: {
14814
+ contract?: {
14815
+ type?: string | undefined;
14816
+ }[] | undefined;
14817
+ } | null | undefined;
12986
14818
  };
12987
14819
  approval?: {
12988
14820
  chainId: number;
@@ -12992,6 +14824,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
12992
14824
  data: string;
12993
14825
  gasLimit: number | null;
12994
14826
  effectiveGas?: number | undefined;
14827
+ } | {
14828
+ raw_data_hex: string;
14829
+ visible?: boolean | undefined;
14830
+ raw_data?: {
14831
+ contract?: {
14832
+ type?: string | undefined;
14833
+ }[] | undefined;
14834
+ } | null | undefined;
12995
14835
  } | undefined;
12996
14836
  } & {
12997
14837
  trade: string | {
@@ -13005,6 +14845,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13005
14845
  } | {
13006
14846
  unsignedPsbtBase64: string;
13007
14847
  inputsToSign: {}[] | null;
14848
+ } | {
14849
+ raw_data_hex: string;
14850
+ visible?: boolean | undefined;
14851
+ raw_data?: {
14852
+ contract?: {
14853
+ type?: string | undefined;
14854
+ }[] | undefined;
14855
+ } | null | undefined;
13008
14856
  };
13009
14857
  approval?: {
13010
14858
  chainId: number;
@@ -13014,6 +14862,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13014
14862
  data: string;
13015
14863
  gasLimit: number | null;
13016
14864
  effectiveGas?: number | undefined;
14865
+ } | {
14866
+ raw_data_hex: string;
14867
+ visible?: boolean | undefined;
14868
+ raw_data?: {
14869
+ contract?: {
14870
+ type?: string | undefined;
14871
+ }[] | undefined;
14872
+ } | null | undefined;
13017
14873
  } | undefined;
13018
14874
  featureId?: import(".").FeatureId | undefined;
13019
14875
  } & QuoteMetadata) | null;
@@ -13168,6 +15024,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13168
15024
  } | {
13169
15025
  unsignedPsbtBase64: string;
13170
15026
  inputsToSign: {}[] | null;
15027
+ } | {
15028
+ raw_data_hex: string;
15029
+ visible?: boolean | undefined;
15030
+ raw_data?: {
15031
+ contract?: {
15032
+ type?: string | undefined;
15033
+ }[] | undefined;
15034
+ } | null | undefined;
13171
15035
  };
13172
15036
  approval?: {
13173
15037
  chainId: number;
@@ -13177,6 +15041,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13177
15041
  data: string;
13178
15042
  gasLimit: number | null;
13179
15043
  effectiveGas?: number | undefined;
15044
+ } | {
15045
+ raw_data_hex: string;
15046
+ visible?: boolean | undefined;
15047
+ raw_data?: {
15048
+ contract?: {
15049
+ type?: string | undefined;
15050
+ }[] | undefined;
15051
+ } | null | undefined;
13180
15052
  } | undefined;
13181
15053
  } & {
13182
15054
  trade: string | {
@@ -13190,6 +15062,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13190
15062
  } | {
13191
15063
  unsignedPsbtBase64: string;
13192
15064
  inputsToSign: {}[] | null;
15065
+ } | {
15066
+ raw_data_hex: string;
15067
+ visible?: boolean | undefined;
15068
+ raw_data?: {
15069
+ contract?: {
15070
+ type?: string | undefined;
15071
+ }[] | undefined;
15072
+ } | null | undefined;
13193
15073
  };
13194
15074
  approval?: {
13195
15075
  chainId: number;
@@ -13199,6 +15079,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13199
15079
  data: string;
13200
15080
  gasLimit: number | null;
13201
15081
  effectiveGas?: number | undefined;
15082
+ } | {
15083
+ raw_data_hex: string;
15084
+ visible?: boolean | undefined;
15085
+ raw_data?: {
15086
+ contract?: {
15087
+ type?: string | undefined;
15088
+ }[] | undefined;
15089
+ } | null | undefined;
13202
15090
  } | undefined;
13203
15091
  featureId?: import(".").FeatureId | undefined;
13204
15092
  } & QuoteMetadata)[]) & {
@@ -13393,6 +15281,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13393
15281
  } | {
13394
15282
  unsignedPsbtBase64: string;
13395
15283
  inputsToSign: {}[] | null;
15284
+ } | {
15285
+ raw_data_hex: string;
15286
+ visible?: boolean | undefined;
15287
+ raw_data?: {
15288
+ contract?: {
15289
+ type?: string | undefined;
15290
+ }[] | undefined;
15291
+ } | null | undefined;
13396
15292
  };
13397
15293
  approval?: {
13398
15294
  chainId: number;
@@ -13402,6 +15298,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13402
15298
  data: string;
13403
15299
  gasLimit: number | null;
13404
15300
  effectiveGas?: number | undefined;
15301
+ } | {
15302
+ raw_data_hex: string;
15303
+ visible?: boolean | undefined;
15304
+ raw_data?: {
15305
+ contract?: {
15306
+ type?: string | undefined;
15307
+ }[] | undefined;
15308
+ } | null | undefined;
13405
15309
  } | undefined;
13406
15310
  featureId?: import(".").FeatureId | undefined;
13407
15311
  l1GasFeesInHexWei?: string | undefined;
@@ -13553,6 +15457,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13553
15457
  } | {
13554
15458
  unsignedPsbtBase64: string;
13555
15459
  inputsToSign: {}[] | null;
15460
+ } | {
15461
+ raw_data_hex: string;
15462
+ visible?: boolean | undefined;
15463
+ raw_data?: {
15464
+ contract?: {
15465
+ type?: string | undefined;
15466
+ }[] | undefined;
15467
+ } | null | undefined;
13556
15468
  };
13557
15469
  approval?: {
13558
15470
  chainId: number;
@@ -13562,6 +15474,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13562
15474
  data: string;
13563
15475
  gasLimit: number | null;
13564
15476
  effectiveGas?: number | undefined;
15477
+ } | {
15478
+ raw_data_hex: string;
15479
+ visible?: boolean | undefined;
15480
+ raw_data?: {
15481
+ contract?: {
15482
+ type?: string | undefined;
15483
+ }[] | undefined;
15484
+ } | null | undefined;
13565
15485
  } | undefined;
13566
15486
  } & {
13567
15487
  trade: string | {
@@ -13575,6 +15495,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13575
15495
  } | {
13576
15496
  unsignedPsbtBase64: string;
13577
15497
  inputsToSign: {}[] | null;
15498
+ } | {
15499
+ raw_data_hex: string;
15500
+ visible?: boolean | undefined;
15501
+ raw_data?: {
15502
+ contract?: {
15503
+ type?: string | undefined;
15504
+ }[] | undefined;
15505
+ } | null | undefined;
13578
15506
  };
13579
15507
  approval?: {
13580
15508
  chainId: number;
@@ -13584,6 +15512,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13584
15512
  data: string;
13585
15513
  gasLimit: number | null;
13586
15514
  effectiveGas?: number | undefined;
15515
+ } | {
15516
+ raw_data_hex: string;
15517
+ visible?: boolean | undefined;
15518
+ raw_data?: {
15519
+ contract?: {
15520
+ type?: string | undefined;
15521
+ }[] | undefined;
15522
+ } | null | undefined;
13587
15523
  } | undefined;
13588
15524
  featureId?: import(".").FeatureId | undefined;
13589
15525
  } & QuoteMetadata)[];
@@ -13774,6 +15710,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13774
15710
  } | {
13775
15711
  unsignedPsbtBase64: string;
13776
15712
  inputsToSign: {}[] | null;
15713
+ } | {
15714
+ raw_data_hex: string;
15715
+ visible?: boolean | undefined;
15716
+ raw_data?: {
15717
+ contract?: {
15718
+ type?: string | undefined;
15719
+ }[] | undefined;
15720
+ } | null | undefined;
13777
15721
  };
13778
15722
  approval?: {
13779
15723
  chainId: number;
@@ -13783,6 +15727,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13783
15727
  data: string;
13784
15728
  gasLimit: number | null;
13785
15729
  effectiveGas?: number | undefined;
15730
+ } | {
15731
+ raw_data_hex: string;
15732
+ visible?: boolean | undefined;
15733
+ raw_data?: {
15734
+ contract?: {
15735
+ type?: string | undefined;
15736
+ }[] | undefined;
15737
+ } | null | undefined;
13786
15738
  } | undefined;
13787
15739
  featureId?: import(".").FeatureId | undefined;
13788
15740
  l1GasFeesInHexWei?: string | undefined;
@@ -13934,6 +15886,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13934
15886
  } | {
13935
15887
  unsignedPsbtBase64: string;
13936
15888
  inputsToSign: {}[] | null;
15889
+ } | {
15890
+ raw_data_hex: string;
15891
+ visible?: boolean | undefined;
15892
+ raw_data?: {
15893
+ contract?: {
15894
+ type?: string | undefined;
15895
+ }[] | undefined;
15896
+ } | null | undefined;
13937
15897
  };
13938
15898
  approval?: {
13939
15899
  chainId: number;
@@ -13943,6 +15903,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13943
15903
  data: string;
13944
15904
  gasLimit: number | null;
13945
15905
  effectiveGas?: number | undefined;
15906
+ } | {
15907
+ raw_data_hex: string;
15908
+ visible?: boolean | undefined;
15909
+ raw_data?: {
15910
+ contract?: {
15911
+ type?: string | undefined;
15912
+ }[] | undefined;
15913
+ } | null | undefined;
13946
15914
  } | undefined;
13947
15915
  } & {
13948
15916
  trade: string | {
@@ -13956,6 +15924,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13956
15924
  } | {
13957
15925
  unsignedPsbtBase64: string;
13958
15926
  inputsToSign: {}[] | null;
15927
+ } | {
15928
+ raw_data_hex: string;
15929
+ visible?: boolean | undefined;
15930
+ raw_data?: {
15931
+ contract?: {
15932
+ type?: string | undefined;
15933
+ }[] | undefined;
15934
+ } | null | undefined;
13959
15935
  };
13960
15936
  approval?: {
13961
15937
  chainId: number;
@@ -13965,6 +15941,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
13965
15941
  data: string;
13966
15942
  gasLimit: number | null;
13967
15943
  effectiveGas?: number | undefined;
15944
+ } | {
15945
+ raw_data_hex: string;
15946
+ visible?: boolean | undefined;
15947
+ raw_data?: {
15948
+ contract?: {
15949
+ type?: string | undefined;
15950
+ }[] | undefined;
15951
+ } | null | undefined;
13968
15952
  } | undefined;
13969
15953
  featureId?: import(".").FeatureId | undefined;
13970
15954
  } & QuoteMetadata)[]) & {
@@ -14119,6 +16103,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14119
16103
  } | {
14120
16104
  unsignedPsbtBase64: string;
14121
16105
  inputsToSign: {}[] | null;
16106
+ } | {
16107
+ raw_data_hex: string;
16108
+ visible?: boolean | undefined;
16109
+ raw_data?: {
16110
+ contract?: {
16111
+ type?: string | undefined;
16112
+ }[] | undefined;
16113
+ } | null | undefined;
14122
16114
  };
14123
16115
  approval?: {
14124
16116
  chainId: number;
@@ -14128,6 +16120,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14128
16120
  data: string;
14129
16121
  gasLimit: number | null;
14130
16122
  effectiveGas?: number | undefined;
16123
+ } | {
16124
+ raw_data_hex: string;
16125
+ visible?: boolean | undefined;
16126
+ raw_data?: {
16127
+ contract?: {
16128
+ type?: string | undefined;
16129
+ }[] | undefined;
16130
+ } | null | undefined;
14131
16131
  } | undefined;
14132
16132
  } & {
14133
16133
  trade: string | {
@@ -14141,6 +16141,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14141
16141
  } | {
14142
16142
  unsignedPsbtBase64: string;
14143
16143
  inputsToSign: {}[] | null;
16144
+ } | {
16145
+ raw_data_hex: string;
16146
+ visible?: boolean | undefined;
16147
+ raw_data?: {
16148
+ contract?: {
16149
+ type?: string | undefined;
16150
+ }[] | undefined;
16151
+ } | null | undefined;
14144
16152
  };
14145
16153
  approval?: {
14146
16154
  chainId: number;
@@ -14150,6 +16158,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14150
16158
  data: string;
14151
16159
  gasLimit: number | null;
14152
16160
  effectiveGas?: number | undefined;
16161
+ } | {
16162
+ raw_data_hex: string;
16163
+ visible?: boolean | undefined;
16164
+ raw_data?: {
16165
+ contract?: {
16166
+ type?: string | undefined;
16167
+ }[] | undefined;
16168
+ } | null | undefined;
14153
16169
  } | undefined;
14154
16170
  featureId?: import(".").FeatureId | undefined;
14155
16171
  } & QuoteMetadata)[];
@@ -14344,6 +16360,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14344
16360
  } | {
14345
16361
  unsignedPsbtBase64: string;
14346
16362
  inputsToSign: {}[] | null;
16363
+ } | {
16364
+ raw_data_hex: string;
16365
+ visible?: boolean | undefined;
16366
+ raw_data?: {
16367
+ contract?: {
16368
+ type?: string | undefined;
16369
+ }[] | undefined;
16370
+ } | null | undefined;
14347
16371
  };
14348
16372
  approval?: {
14349
16373
  chainId: number;
@@ -14353,6 +16377,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14353
16377
  data: string;
14354
16378
  gasLimit: number | null;
14355
16379
  effectiveGas?: number | undefined;
16380
+ } | {
16381
+ raw_data_hex: string;
16382
+ visible?: boolean | undefined;
16383
+ raw_data?: {
16384
+ contract?: {
16385
+ type?: string | undefined;
16386
+ }[] | undefined;
16387
+ } | null | undefined;
14356
16388
  } | undefined;
14357
16389
  featureId?: import(".").FeatureId | undefined;
14358
16390
  l1GasFeesInHexWei?: string | undefined;
@@ -14509,6 +16541,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14509
16541
  } | {
14510
16542
  unsignedPsbtBase64: string;
14511
16543
  inputsToSign: {}[] | null;
16544
+ } | {
16545
+ raw_data_hex: string;
16546
+ visible?: boolean | undefined;
16547
+ raw_data?: {
16548
+ contract?: {
16549
+ type?: string | undefined;
16550
+ }[] | undefined;
16551
+ } | null | undefined;
14512
16552
  };
14513
16553
  approval?: {
14514
16554
  chainId: number;
@@ -14518,6 +16558,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14518
16558
  data: string;
14519
16559
  gasLimit: number | null;
14520
16560
  effectiveGas?: number | undefined;
16561
+ } | {
16562
+ raw_data_hex: string;
16563
+ visible?: boolean | undefined;
16564
+ raw_data?: {
16565
+ contract?: {
16566
+ type?: string | undefined;
16567
+ }[] | undefined;
16568
+ } | null | undefined;
14521
16569
  } | undefined;
14522
16570
  } & {
14523
16571
  trade: string | {
@@ -14531,6 +16579,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14531
16579
  } | {
14532
16580
  unsignedPsbtBase64: string;
14533
16581
  inputsToSign: {}[] | null;
16582
+ } | {
16583
+ raw_data_hex: string;
16584
+ visible?: boolean | undefined;
16585
+ raw_data?: {
16586
+ contract?: {
16587
+ type?: string | undefined;
16588
+ }[] | undefined;
16589
+ } | null | undefined;
14534
16590
  };
14535
16591
  approval?: {
14536
16592
  chainId: number;
@@ -14540,6 +16596,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14540
16596
  data: string;
14541
16597
  gasLimit: number | null;
14542
16598
  effectiveGas?: number | undefined;
16599
+ } | {
16600
+ raw_data_hex: string;
16601
+ visible?: boolean | undefined;
16602
+ raw_data?: {
16603
+ contract?: {
16604
+ type?: string | undefined;
16605
+ }[] | undefined;
16606
+ } | null | undefined;
14543
16607
  } | undefined;
14544
16608
  featureId?: import(".").FeatureId | undefined;
14545
16609
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -14733,6 +16797,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14733
16797
  } | {
14734
16798
  unsignedPsbtBase64: string;
14735
16799
  inputsToSign: {}[] | null;
16800
+ } | {
16801
+ raw_data_hex: string;
16802
+ visible?: boolean | undefined;
16803
+ raw_data?: {
16804
+ contract?: {
16805
+ type?: string | undefined;
16806
+ }[] | undefined;
16807
+ } | null | undefined;
14736
16808
  };
14737
16809
  approval?: {
14738
16810
  chainId: number;
@@ -14742,6 +16814,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14742
16814
  data: string;
14743
16815
  gasLimit: number | null;
14744
16816
  effectiveGas?: number | undefined;
16817
+ } | {
16818
+ raw_data_hex: string;
16819
+ visible?: boolean | undefined;
16820
+ raw_data?: {
16821
+ contract?: {
16822
+ type?: string | undefined;
16823
+ }[] | undefined;
16824
+ } | null | undefined;
14745
16825
  } | undefined;
14746
16826
  featureId?: import(".").FeatureId | undefined;
14747
16827
  l1GasFeesInHexWei?: string | undefined;
@@ -14894,6 +16974,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14894
16974
  } | {
14895
16975
  unsignedPsbtBase64: string;
14896
16976
  inputsToSign: {}[] | null;
16977
+ } | {
16978
+ raw_data_hex: string;
16979
+ visible?: boolean | undefined;
16980
+ raw_data?: {
16981
+ contract?: {
16982
+ type?: string | undefined;
16983
+ }[] | undefined;
16984
+ } | null | undefined;
14897
16985
  };
14898
16986
  approval?: {
14899
16987
  chainId: number;
@@ -14903,6 +16991,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14903
16991
  data: string;
14904
16992
  gasLimit: number | null;
14905
16993
  effectiveGas?: number | undefined;
16994
+ } | {
16995
+ raw_data_hex: string;
16996
+ visible?: boolean | undefined;
16997
+ raw_data?: {
16998
+ contract?: {
16999
+ type?: string | undefined;
17000
+ }[] | undefined;
17001
+ } | null | undefined;
14906
17002
  } | undefined;
14907
17003
  } & {
14908
17004
  trade: string | {
@@ -14916,6 +17012,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14916
17012
  } | {
14917
17013
  unsignedPsbtBase64: string;
14918
17014
  inputsToSign: {}[] | null;
17015
+ } | {
17016
+ raw_data_hex: string;
17017
+ visible?: boolean | undefined;
17018
+ raw_data?: {
17019
+ contract?: {
17020
+ type?: string | undefined;
17021
+ }[] | undefined;
17022
+ } | null | undefined;
14919
17023
  };
14920
17024
  approval?: {
14921
17025
  chainId: number;
@@ -14925,6 +17029,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
14925
17029
  data: string;
14926
17030
  gasLimit: number | null;
14927
17031
  effectiveGas?: number | undefined;
17032
+ } | {
17033
+ raw_data_hex: string;
17034
+ visible?: boolean | undefined;
17035
+ raw_data?: {
17036
+ contract?: {
17037
+ type?: string | undefined;
17038
+ }[] | undefined;
17039
+ } | null | undefined;
14928
17040
  } | undefined;
14929
17041
  featureId?: import(".").FeatureId | undefined;
14930
17042
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], resultFuncArgs_1: {
@@ -15118,6 +17230,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15118
17230
  } | {
15119
17231
  unsignedPsbtBase64: string;
15120
17232
  inputsToSign: {}[] | null;
17233
+ } | {
17234
+ raw_data_hex: string;
17235
+ visible?: boolean | undefined;
17236
+ raw_data?: {
17237
+ contract?: {
17238
+ type?: string | undefined;
17239
+ }[] | undefined;
17240
+ } | null | undefined;
15121
17241
  };
15122
17242
  approval?: {
15123
17243
  chainId: number;
@@ -15127,6 +17247,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15127
17247
  data: string;
15128
17248
  gasLimit: number | null;
15129
17249
  effectiveGas?: number | undefined;
17250
+ } | {
17251
+ raw_data_hex: string;
17252
+ visible?: boolean | undefined;
17253
+ raw_data?: {
17254
+ contract?: {
17255
+ type?: string | undefined;
17256
+ }[] | undefined;
17257
+ } | null | undefined;
15130
17258
  } | undefined;
15131
17259
  featureId?: import(".").FeatureId | undefined;
15132
17260
  l1GasFeesInHexWei?: string | undefined;
@@ -15323,6 +17451,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15323
17451
  } | {
15324
17452
  unsignedPsbtBase64: string;
15325
17453
  inputsToSign: {}[] | null;
17454
+ } | {
17455
+ raw_data_hex: string;
17456
+ visible?: boolean | undefined;
17457
+ raw_data?: {
17458
+ contract?: {
17459
+ type?: string | undefined;
17460
+ }[] | undefined;
17461
+ } | null | undefined;
15326
17462
  };
15327
17463
  approval?: {
15328
17464
  chainId: number;
@@ -15332,6 +17468,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15332
17468
  data: string;
15333
17469
  gasLimit: number | null;
15334
17470
  effectiveGas?: number | undefined;
17471
+ } | {
17472
+ raw_data_hex: string;
17473
+ visible?: boolean | undefined;
17474
+ raw_data?: {
17475
+ contract?: {
17476
+ type?: string | undefined;
17477
+ }[] | undefined;
17478
+ } | null | undefined;
15335
17479
  } | undefined;
15336
17480
  featureId?: import(".").FeatureId | undefined;
15337
17481
  l1GasFeesInHexWei?: string | undefined;
@@ -15484,6 +17628,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15484
17628
  } | {
15485
17629
  unsignedPsbtBase64: string;
15486
17630
  inputsToSign: {}[] | null;
17631
+ } | {
17632
+ raw_data_hex: string;
17633
+ visible?: boolean | undefined;
17634
+ raw_data?: {
17635
+ contract?: {
17636
+ type?: string | undefined;
17637
+ }[] | undefined;
17638
+ } | null | undefined;
15487
17639
  };
15488
17640
  approval?: {
15489
17641
  chainId: number;
@@ -15493,6 +17645,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15493
17645
  data: string;
15494
17646
  gasLimit: number | null;
15495
17647
  effectiveGas?: number | undefined;
17648
+ } | {
17649
+ raw_data_hex: string;
17650
+ visible?: boolean | undefined;
17651
+ raw_data?: {
17652
+ contract?: {
17653
+ type?: string | undefined;
17654
+ }[] | undefined;
17655
+ } | null | undefined;
15496
17656
  } | undefined;
15497
17657
  } & {
15498
17658
  trade: string | {
@@ -15506,6 +17666,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15506
17666
  } | {
15507
17667
  unsignedPsbtBase64: string;
15508
17668
  inputsToSign: {}[] | null;
17669
+ } | {
17670
+ raw_data_hex: string;
17671
+ visible?: boolean | undefined;
17672
+ raw_data?: {
17673
+ contract?: {
17674
+ type?: string | undefined;
17675
+ }[] | undefined;
17676
+ } | null | undefined;
15509
17677
  };
15510
17678
  approval?: {
15511
17679
  chainId: number;
@@ -15515,6 +17683,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15515
17683
  data: string;
15516
17684
  gasLimit: number | null;
15517
17685
  effectiveGas?: number | undefined;
17686
+ } | {
17687
+ raw_data_hex: string;
17688
+ visible?: boolean | undefined;
17689
+ raw_data?: {
17690
+ contract?: {
17691
+ type?: string | undefined;
17692
+ }[] | undefined;
17693
+ } | null | undefined;
15518
17694
  } | undefined;
15519
17695
  featureId?: import(".").FeatureId | undefined;
15520
17696
  } & import("./types.cjs").L1GasFees & import("./types.cjs").NonEvmFees)[], ((state: BridgeControllerState & {
@@ -15800,6 +17976,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15800
17976
  } | {
15801
17977
  unsignedPsbtBase64: string;
15802
17978
  inputsToSign: {}[] | null;
17979
+ } | {
17980
+ raw_data_hex: string;
17981
+ visible?: boolean | undefined;
17982
+ raw_data?: {
17983
+ contract?: {
17984
+ type?: string | undefined;
17985
+ }[] | undefined;
17986
+ } | null | undefined;
15803
17987
  };
15804
17988
  approval?: {
15805
17989
  chainId: number;
@@ -15809,6 +17993,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15809
17993
  data: string;
15810
17994
  gasLimit: number | null;
15811
17995
  effectiveGas?: number | undefined;
17996
+ } | {
17997
+ raw_data_hex: string;
17998
+ visible?: boolean | undefined;
17999
+ raw_data?: {
18000
+ contract?: {
18001
+ type?: string | undefined;
18002
+ }[] | undefined;
18003
+ } | null | undefined;
15812
18004
  } | undefined;
15813
18005
  } & {
15814
18006
  trade: string | {
@@ -15822,6 +18014,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15822
18014
  } | {
15823
18015
  unsignedPsbtBase64: string;
15824
18016
  inputsToSign: {}[] | null;
18017
+ } | {
18018
+ raw_data_hex: string;
18019
+ visible?: boolean | undefined;
18020
+ raw_data?: {
18021
+ contract?: {
18022
+ type?: string | undefined;
18023
+ }[] | undefined;
18024
+ } | null | undefined;
15825
18025
  };
15826
18026
  approval?: {
15827
18027
  chainId: number;
@@ -15831,6 +18031,14 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
15831
18031
  data: string;
15832
18032
  gasLimit: number | null;
15833
18033
  effectiveGas?: number | undefined;
18034
+ } | {
18035
+ raw_data_hex: string;
18036
+ visible?: boolean | undefined;
18037
+ raw_data?: {
18038
+ contract?: {
18039
+ type?: string | undefined;
18040
+ }[] | undefined;
18041
+ } | null | undefined;
15834
18042
  } | undefined;
15835
18043
  featureId?: import(".").FeatureId | undefined;
15836
18044
  } & QuoteMetadata) | null];