@metamask-previews/bridge-controller 42.0.0-preview-48cbf01a → 42.0.0-preview-331bec5d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/selectors.d.cts +1560 -0
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +1560 -0
- package/dist/selectors.d.mts.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +3 -1
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +3 -1
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/utils/validators.cjs +31 -1
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +281 -0
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +281 -0
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +30 -0
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +1 -1
package/dist/selectors.d.cts
CHANGED
|
@@ -705,6 +705,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
705
705
|
totalToAmountUsd?: string | undefined;
|
|
706
706
|
priceImpact?: string | undefined;
|
|
707
707
|
} | undefined;
|
|
708
|
+
intent?: {
|
|
709
|
+
order: {
|
|
710
|
+
kind: "sell" | "buy";
|
|
711
|
+
sellToken: string;
|
|
712
|
+
buyToken: string;
|
|
713
|
+
validTo: string | number;
|
|
714
|
+
appData: string;
|
|
715
|
+
appDataHash: string;
|
|
716
|
+
feeAmount: string;
|
|
717
|
+
partiallyFillable: boolean;
|
|
718
|
+
receiver?: string | undefined;
|
|
719
|
+
from?: string | undefined;
|
|
720
|
+
sellAmount?: string | undefined;
|
|
721
|
+
buyAmount?: string | undefined;
|
|
722
|
+
};
|
|
723
|
+
protocol: "cowswap";
|
|
724
|
+
settlementContract?: string | undefined;
|
|
725
|
+
relayer?: string | undefined;
|
|
726
|
+
quoteId?: string | null | undefined;
|
|
727
|
+
} | undefined;
|
|
708
728
|
};
|
|
709
729
|
estimatedProcessingTimeInSeconds: number;
|
|
710
730
|
trade: string | {
|
|
@@ -877,6 +897,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
877
897
|
totalToAmountUsd?: string | undefined;
|
|
878
898
|
priceImpact?: string | undefined;
|
|
879
899
|
} | undefined;
|
|
900
|
+
intent?: {
|
|
901
|
+
order: {
|
|
902
|
+
kind: "sell" | "buy";
|
|
903
|
+
sellToken: string;
|
|
904
|
+
buyToken: string;
|
|
905
|
+
validTo: string | number;
|
|
906
|
+
appData: string;
|
|
907
|
+
appDataHash: string;
|
|
908
|
+
feeAmount: string;
|
|
909
|
+
partiallyFillable: boolean;
|
|
910
|
+
receiver?: string | undefined;
|
|
911
|
+
from?: string | undefined;
|
|
912
|
+
sellAmount?: string | undefined;
|
|
913
|
+
buyAmount?: string | undefined;
|
|
914
|
+
};
|
|
915
|
+
protocol: "cowswap";
|
|
916
|
+
settlementContract?: string | undefined;
|
|
917
|
+
relayer?: string | undefined;
|
|
918
|
+
quoteId?: string | null | undefined;
|
|
919
|
+
} | undefined;
|
|
880
920
|
};
|
|
881
921
|
estimatedProcessingTimeInSeconds: number;
|
|
882
922
|
trade: string | {
|
|
@@ -1049,6 +1089,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1049
1089
|
totalToAmountUsd?: string | undefined;
|
|
1050
1090
|
priceImpact?: string | undefined;
|
|
1051
1091
|
} | undefined;
|
|
1092
|
+
intent?: {
|
|
1093
|
+
order: {
|
|
1094
|
+
kind: "sell" | "buy";
|
|
1095
|
+
sellToken: string;
|
|
1096
|
+
buyToken: string;
|
|
1097
|
+
validTo: string | number;
|
|
1098
|
+
appData: string;
|
|
1099
|
+
appDataHash: string;
|
|
1100
|
+
feeAmount: string;
|
|
1101
|
+
partiallyFillable: boolean;
|
|
1102
|
+
receiver?: string | undefined;
|
|
1103
|
+
from?: string | undefined;
|
|
1104
|
+
sellAmount?: string | undefined;
|
|
1105
|
+
buyAmount?: string | undefined;
|
|
1106
|
+
};
|
|
1107
|
+
protocol: "cowswap";
|
|
1108
|
+
settlementContract?: string | undefined;
|
|
1109
|
+
relayer?: string | undefined;
|
|
1110
|
+
quoteId?: string | null | undefined;
|
|
1111
|
+
} | undefined;
|
|
1052
1112
|
};
|
|
1053
1113
|
estimatedProcessingTimeInSeconds: number;
|
|
1054
1114
|
trade: string | {
|
|
@@ -1232,6 +1292,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1232
1292
|
totalToAmountUsd?: string | undefined;
|
|
1233
1293
|
priceImpact?: string | undefined;
|
|
1234
1294
|
} | undefined;
|
|
1295
|
+
intent?: {
|
|
1296
|
+
order: {
|
|
1297
|
+
kind: "sell" | "buy";
|
|
1298
|
+
sellToken: string;
|
|
1299
|
+
buyToken: string;
|
|
1300
|
+
validTo: string | number;
|
|
1301
|
+
appData: string;
|
|
1302
|
+
appDataHash: string;
|
|
1303
|
+
feeAmount: string;
|
|
1304
|
+
partiallyFillable: boolean;
|
|
1305
|
+
receiver?: string | undefined;
|
|
1306
|
+
from?: string | undefined;
|
|
1307
|
+
sellAmount?: string | undefined;
|
|
1308
|
+
buyAmount?: string | undefined;
|
|
1309
|
+
};
|
|
1310
|
+
protocol: "cowswap";
|
|
1311
|
+
settlementContract?: string | undefined;
|
|
1312
|
+
relayer?: string | undefined;
|
|
1313
|
+
quoteId?: string | null | undefined;
|
|
1314
|
+
} | undefined;
|
|
1235
1315
|
};
|
|
1236
1316
|
estimatedProcessingTimeInSeconds: number;
|
|
1237
1317
|
trade: string | {
|
|
@@ -1403,6 +1483,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1403
1483
|
totalToAmountUsd?: string | undefined;
|
|
1404
1484
|
priceImpact?: string | undefined;
|
|
1405
1485
|
} | undefined;
|
|
1486
|
+
intent?: {
|
|
1487
|
+
order: {
|
|
1488
|
+
kind: "sell" | "buy";
|
|
1489
|
+
sellToken: string;
|
|
1490
|
+
buyToken: string;
|
|
1491
|
+
validTo: string | number;
|
|
1492
|
+
appData: string;
|
|
1493
|
+
appDataHash: string;
|
|
1494
|
+
feeAmount: string;
|
|
1495
|
+
partiallyFillable: boolean;
|
|
1496
|
+
receiver?: string | undefined;
|
|
1497
|
+
from?: string | undefined;
|
|
1498
|
+
sellAmount?: string | undefined;
|
|
1499
|
+
buyAmount?: string | undefined;
|
|
1500
|
+
};
|
|
1501
|
+
protocol: "cowswap";
|
|
1502
|
+
settlementContract?: string | undefined;
|
|
1503
|
+
relayer?: string | undefined;
|
|
1504
|
+
quoteId?: string | null | undefined;
|
|
1505
|
+
} | undefined;
|
|
1406
1506
|
};
|
|
1407
1507
|
estimatedProcessingTimeInSeconds: number;
|
|
1408
1508
|
trade: string | {
|
|
@@ -1574,6 +1674,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1574
1674
|
totalToAmountUsd?: string | undefined;
|
|
1575
1675
|
priceImpact?: string | undefined;
|
|
1576
1676
|
} | undefined;
|
|
1677
|
+
intent?: {
|
|
1678
|
+
order: {
|
|
1679
|
+
kind: "sell" | "buy";
|
|
1680
|
+
sellToken: string;
|
|
1681
|
+
buyToken: string;
|
|
1682
|
+
validTo: string | number;
|
|
1683
|
+
appData: string;
|
|
1684
|
+
appDataHash: string;
|
|
1685
|
+
feeAmount: string;
|
|
1686
|
+
partiallyFillable: boolean;
|
|
1687
|
+
receiver?: string | undefined;
|
|
1688
|
+
from?: string | undefined;
|
|
1689
|
+
sellAmount?: string | undefined;
|
|
1690
|
+
buyAmount?: string | undefined;
|
|
1691
|
+
};
|
|
1692
|
+
protocol: "cowswap";
|
|
1693
|
+
settlementContract?: string | undefined;
|
|
1694
|
+
relayer?: string | undefined;
|
|
1695
|
+
quoteId?: string | null | undefined;
|
|
1696
|
+
} | undefined;
|
|
1577
1697
|
};
|
|
1578
1698
|
estimatedProcessingTimeInSeconds: number;
|
|
1579
1699
|
trade: string | {
|
|
@@ -1746,6 +1866,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1746
1866
|
totalToAmountUsd?: string | undefined;
|
|
1747
1867
|
priceImpact?: string | undefined;
|
|
1748
1868
|
} | undefined;
|
|
1869
|
+
intent?: {
|
|
1870
|
+
order: {
|
|
1871
|
+
kind: "sell" | "buy";
|
|
1872
|
+
sellToken: string;
|
|
1873
|
+
buyToken: string;
|
|
1874
|
+
validTo: string | number;
|
|
1875
|
+
appData: string;
|
|
1876
|
+
appDataHash: string;
|
|
1877
|
+
feeAmount: string;
|
|
1878
|
+
partiallyFillable: boolean;
|
|
1879
|
+
receiver?: string | undefined;
|
|
1880
|
+
from?: string | undefined;
|
|
1881
|
+
sellAmount?: string | undefined;
|
|
1882
|
+
buyAmount?: string | undefined;
|
|
1883
|
+
};
|
|
1884
|
+
protocol: "cowswap";
|
|
1885
|
+
settlementContract?: string | undefined;
|
|
1886
|
+
relayer?: string | undefined;
|
|
1887
|
+
quoteId?: string | null | undefined;
|
|
1888
|
+
} | undefined;
|
|
1749
1889
|
};
|
|
1750
1890
|
estimatedProcessingTimeInSeconds: number;
|
|
1751
1891
|
trade: string | {
|
|
@@ -1918,6 +2058,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
1918
2058
|
totalToAmountUsd?: string | undefined;
|
|
1919
2059
|
priceImpact?: string | undefined;
|
|
1920
2060
|
} | undefined;
|
|
2061
|
+
intent?: {
|
|
2062
|
+
order: {
|
|
2063
|
+
kind: "sell" | "buy";
|
|
2064
|
+
sellToken: string;
|
|
2065
|
+
buyToken: string;
|
|
2066
|
+
validTo: string | number;
|
|
2067
|
+
appData: string;
|
|
2068
|
+
appDataHash: string;
|
|
2069
|
+
feeAmount: string;
|
|
2070
|
+
partiallyFillable: boolean;
|
|
2071
|
+
receiver?: string | undefined;
|
|
2072
|
+
from?: string | undefined;
|
|
2073
|
+
sellAmount?: string | undefined;
|
|
2074
|
+
buyAmount?: string | undefined;
|
|
2075
|
+
};
|
|
2076
|
+
protocol: "cowswap";
|
|
2077
|
+
settlementContract?: string | undefined;
|
|
2078
|
+
relayer?: string | undefined;
|
|
2079
|
+
quoteId?: string | null | undefined;
|
|
2080
|
+
} | undefined;
|
|
1921
2081
|
};
|
|
1922
2082
|
estimatedProcessingTimeInSeconds: number;
|
|
1923
2083
|
trade: string | {
|
|
@@ -2090,6 +2250,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2090
2250
|
totalToAmountUsd?: string | undefined;
|
|
2091
2251
|
priceImpact?: string | undefined;
|
|
2092
2252
|
} | undefined;
|
|
2253
|
+
intent?: {
|
|
2254
|
+
order: {
|
|
2255
|
+
kind: "sell" | "buy";
|
|
2256
|
+
sellToken: string;
|
|
2257
|
+
buyToken: string;
|
|
2258
|
+
validTo: string | number;
|
|
2259
|
+
appData: string;
|
|
2260
|
+
appDataHash: string;
|
|
2261
|
+
feeAmount: string;
|
|
2262
|
+
partiallyFillable: boolean;
|
|
2263
|
+
receiver?: string | undefined;
|
|
2264
|
+
from?: string | undefined;
|
|
2265
|
+
sellAmount?: string | undefined;
|
|
2266
|
+
buyAmount?: string | undefined;
|
|
2267
|
+
};
|
|
2268
|
+
protocol: "cowswap";
|
|
2269
|
+
settlementContract?: string | undefined;
|
|
2270
|
+
relayer?: string | undefined;
|
|
2271
|
+
quoteId?: string | null | undefined;
|
|
2272
|
+
} | undefined;
|
|
2093
2273
|
};
|
|
2094
2274
|
estimatedProcessingTimeInSeconds: number;
|
|
2095
2275
|
trade: string | {
|
|
@@ -2269,6 +2449,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2269
2449
|
totalToAmountUsd?: string | undefined;
|
|
2270
2450
|
priceImpact?: string | undefined;
|
|
2271
2451
|
} | undefined;
|
|
2452
|
+
intent?: {
|
|
2453
|
+
order: {
|
|
2454
|
+
kind: "sell" | "buy";
|
|
2455
|
+
sellToken: string;
|
|
2456
|
+
buyToken: string;
|
|
2457
|
+
validTo: string | number;
|
|
2458
|
+
appData: string;
|
|
2459
|
+
appDataHash: string;
|
|
2460
|
+
feeAmount: string;
|
|
2461
|
+
partiallyFillable: boolean;
|
|
2462
|
+
receiver?: string | undefined;
|
|
2463
|
+
from?: string | undefined;
|
|
2464
|
+
sellAmount?: string | undefined;
|
|
2465
|
+
buyAmount?: string | undefined;
|
|
2466
|
+
};
|
|
2467
|
+
protocol: "cowswap";
|
|
2468
|
+
settlementContract?: string | undefined;
|
|
2469
|
+
relayer?: string | undefined;
|
|
2470
|
+
quoteId?: string | null | undefined;
|
|
2471
|
+
} | undefined;
|
|
2272
2472
|
};
|
|
2273
2473
|
estimatedProcessingTimeInSeconds: number;
|
|
2274
2474
|
trade: string | {
|
|
@@ -2440,6 +2640,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2440
2640
|
totalToAmountUsd?: string | undefined;
|
|
2441
2641
|
priceImpact?: string | undefined;
|
|
2442
2642
|
} | undefined;
|
|
2643
|
+
intent?: {
|
|
2644
|
+
order: {
|
|
2645
|
+
kind: "sell" | "buy";
|
|
2646
|
+
sellToken: string;
|
|
2647
|
+
buyToken: string;
|
|
2648
|
+
validTo: string | number;
|
|
2649
|
+
appData: string;
|
|
2650
|
+
appDataHash: string;
|
|
2651
|
+
feeAmount: string;
|
|
2652
|
+
partiallyFillable: boolean;
|
|
2653
|
+
receiver?: string | undefined;
|
|
2654
|
+
from?: string | undefined;
|
|
2655
|
+
sellAmount?: string | undefined;
|
|
2656
|
+
buyAmount?: string | undefined;
|
|
2657
|
+
};
|
|
2658
|
+
protocol: "cowswap";
|
|
2659
|
+
settlementContract?: string | undefined;
|
|
2660
|
+
relayer?: string | undefined;
|
|
2661
|
+
quoteId?: string | null | undefined;
|
|
2662
|
+
} | undefined;
|
|
2443
2663
|
};
|
|
2444
2664
|
estimatedProcessingTimeInSeconds: number;
|
|
2445
2665
|
trade: string | {
|
|
@@ -2611,6 +2831,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2611
2831
|
totalToAmountUsd?: string | undefined;
|
|
2612
2832
|
priceImpact?: string | undefined;
|
|
2613
2833
|
} | undefined;
|
|
2834
|
+
intent?: {
|
|
2835
|
+
order: {
|
|
2836
|
+
kind: "sell" | "buy";
|
|
2837
|
+
sellToken: string;
|
|
2838
|
+
buyToken: string;
|
|
2839
|
+
validTo: string | number;
|
|
2840
|
+
appData: string;
|
|
2841
|
+
appDataHash: string;
|
|
2842
|
+
feeAmount: string;
|
|
2843
|
+
partiallyFillable: boolean;
|
|
2844
|
+
receiver?: string | undefined;
|
|
2845
|
+
from?: string | undefined;
|
|
2846
|
+
sellAmount?: string | undefined;
|
|
2847
|
+
buyAmount?: string | undefined;
|
|
2848
|
+
};
|
|
2849
|
+
protocol: "cowswap";
|
|
2850
|
+
settlementContract?: string | undefined;
|
|
2851
|
+
relayer?: string | undefined;
|
|
2852
|
+
quoteId?: string | null | undefined;
|
|
2853
|
+
} | undefined;
|
|
2614
2854
|
};
|
|
2615
2855
|
estimatedProcessingTimeInSeconds: number;
|
|
2616
2856
|
trade: string | {
|
|
@@ -2783,6 +3023,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2783
3023
|
totalToAmountUsd?: string | undefined;
|
|
2784
3024
|
priceImpact?: string | undefined;
|
|
2785
3025
|
} | undefined;
|
|
3026
|
+
intent?: {
|
|
3027
|
+
order: {
|
|
3028
|
+
kind: "sell" | "buy";
|
|
3029
|
+
sellToken: string;
|
|
3030
|
+
buyToken: string;
|
|
3031
|
+
validTo: string | number;
|
|
3032
|
+
appData: string;
|
|
3033
|
+
appDataHash: string;
|
|
3034
|
+
feeAmount: string;
|
|
3035
|
+
partiallyFillable: boolean;
|
|
3036
|
+
receiver?: string | undefined;
|
|
3037
|
+
from?: string | undefined;
|
|
3038
|
+
sellAmount?: string | undefined;
|
|
3039
|
+
buyAmount?: string | undefined;
|
|
3040
|
+
};
|
|
3041
|
+
protocol: "cowswap";
|
|
3042
|
+
settlementContract?: string | undefined;
|
|
3043
|
+
relayer?: string | undefined;
|
|
3044
|
+
quoteId?: string | null | undefined;
|
|
3045
|
+
} | undefined;
|
|
2786
3046
|
};
|
|
2787
3047
|
estimatedProcessingTimeInSeconds: number;
|
|
2788
3048
|
trade: string | {
|
|
@@ -2955,6 +3215,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
2955
3215
|
totalToAmountUsd?: string | undefined;
|
|
2956
3216
|
priceImpact?: string | undefined;
|
|
2957
3217
|
} | undefined;
|
|
3218
|
+
intent?: {
|
|
3219
|
+
order: {
|
|
3220
|
+
kind: "sell" | "buy";
|
|
3221
|
+
sellToken: string;
|
|
3222
|
+
buyToken: string;
|
|
3223
|
+
validTo: string | number;
|
|
3224
|
+
appData: string;
|
|
3225
|
+
appDataHash: string;
|
|
3226
|
+
feeAmount: string;
|
|
3227
|
+
partiallyFillable: boolean;
|
|
3228
|
+
receiver?: string | undefined;
|
|
3229
|
+
from?: string | undefined;
|
|
3230
|
+
sellAmount?: string | undefined;
|
|
3231
|
+
buyAmount?: string | undefined;
|
|
3232
|
+
};
|
|
3233
|
+
protocol: "cowswap";
|
|
3234
|
+
settlementContract?: string | undefined;
|
|
3235
|
+
relayer?: string | undefined;
|
|
3236
|
+
quoteId?: string | null | undefined;
|
|
3237
|
+
} | undefined;
|
|
2958
3238
|
};
|
|
2959
3239
|
estimatedProcessingTimeInSeconds: number;
|
|
2960
3240
|
trade: string | {
|
|
@@ -3127,6 +3407,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3127
3407
|
totalToAmountUsd?: string | undefined;
|
|
3128
3408
|
priceImpact?: string | undefined;
|
|
3129
3409
|
} | undefined;
|
|
3410
|
+
intent?: {
|
|
3411
|
+
order: {
|
|
3412
|
+
kind: "sell" | "buy";
|
|
3413
|
+
sellToken: string;
|
|
3414
|
+
buyToken: string;
|
|
3415
|
+
validTo: string | number;
|
|
3416
|
+
appData: string;
|
|
3417
|
+
appDataHash: string;
|
|
3418
|
+
feeAmount: string;
|
|
3419
|
+
partiallyFillable: boolean;
|
|
3420
|
+
receiver?: string | undefined;
|
|
3421
|
+
from?: string | undefined;
|
|
3422
|
+
sellAmount?: string | undefined;
|
|
3423
|
+
buyAmount?: string | undefined;
|
|
3424
|
+
};
|
|
3425
|
+
protocol: "cowswap";
|
|
3426
|
+
settlementContract?: string | undefined;
|
|
3427
|
+
relayer?: string | undefined;
|
|
3428
|
+
quoteId?: string | null | undefined;
|
|
3429
|
+
} | undefined;
|
|
3130
3430
|
};
|
|
3131
3431
|
estimatedProcessingTimeInSeconds: number;
|
|
3132
3432
|
trade: string | {
|
|
@@ -3311,6 +3611,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3311
3611
|
totalToAmountUsd?: string | undefined;
|
|
3312
3612
|
priceImpact?: string | undefined;
|
|
3313
3613
|
} | undefined;
|
|
3614
|
+
intent?: {
|
|
3615
|
+
order: {
|
|
3616
|
+
kind: "sell" | "buy";
|
|
3617
|
+
sellToken: string;
|
|
3618
|
+
buyToken: string;
|
|
3619
|
+
validTo: string | number;
|
|
3620
|
+
appData: string;
|
|
3621
|
+
appDataHash: string;
|
|
3622
|
+
feeAmount: string;
|
|
3623
|
+
partiallyFillable: boolean;
|
|
3624
|
+
receiver?: string | undefined;
|
|
3625
|
+
from?: string | undefined;
|
|
3626
|
+
sellAmount?: string | undefined;
|
|
3627
|
+
buyAmount?: string | undefined;
|
|
3628
|
+
};
|
|
3629
|
+
protocol: "cowswap";
|
|
3630
|
+
settlementContract?: string | undefined;
|
|
3631
|
+
relayer?: string | undefined;
|
|
3632
|
+
quoteId?: string | null | undefined;
|
|
3633
|
+
} | undefined;
|
|
3314
3634
|
};
|
|
3315
3635
|
estimatedProcessingTimeInSeconds: number;
|
|
3316
3636
|
trade: string | {
|
|
@@ -3483,6 +3803,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3483
3803
|
totalToAmountUsd?: string | undefined;
|
|
3484
3804
|
priceImpact?: string | undefined;
|
|
3485
3805
|
} | undefined;
|
|
3806
|
+
intent?: {
|
|
3807
|
+
order: {
|
|
3808
|
+
kind: "sell" | "buy";
|
|
3809
|
+
sellToken: string;
|
|
3810
|
+
buyToken: string;
|
|
3811
|
+
validTo: string | number;
|
|
3812
|
+
appData: string;
|
|
3813
|
+
appDataHash: string;
|
|
3814
|
+
feeAmount: string;
|
|
3815
|
+
partiallyFillable: boolean;
|
|
3816
|
+
receiver?: string | undefined;
|
|
3817
|
+
from?: string | undefined;
|
|
3818
|
+
sellAmount?: string | undefined;
|
|
3819
|
+
buyAmount?: string | undefined;
|
|
3820
|
+
};
|
|
3821
|
+
protocol: "cowswap";
|
|
3822
|
+
settlementContract?: string | undefined;
|
|
3823
|
+
relayer?: string | undefined;
|
|
3824
|
+
quoteId?: string | null | undefined;
|
|
3825
|
+
} | undefined;
|
|
3486
3826
|
};
|
|
3487
3827
|
estimatedProcessingTimeInSeconds: number;
|
|
3488
3828
|
trade: string | {
|
|
@@ -3655,6 +3995,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3655
3995
|
totalToAmountUsd?: string | undefined;
|
|
3656
3996
|
priceImpact?: string | undefined;
|
|
3657
3997
|
} | undefined;
|
|
3998
|
+
intent?: {
|
|
3999
|
+
order: {
|
|
4000
|
+
kind: "sell" | "buy";
|
|
4001
|
+
sellToken: string;
|
|
4002
|
+
buyToken: string;
|
|
4003
|
+
validTo: string | number;
|
|
4004
|
+
appData: string;
|
|
4005
|
+
appDataHash: string;
|
|
4006
|
+
feeAmount: string;
|
|
4007
|
+
partiallyFillable: boolean;
|
|
4008
|
+
receiver?: string | undefined;
|
|
4009
|
+
from?: string | undefined;
|
|
4010
|
+
sellAmount?: string | undefined;
|
|
4011
|
+
buyAmount?: string | undefined;
|
|
4012
|
+
};
|
|
4013
|
+
protocol: "cowswap";
|
|
4014
|
+
settlementContract?: string | undefined;
|
|
4015
|
+
relayer?: string | undefined;
|
|
4016
|
+
quoteId?: string | null | undefined;
|
|
4017
|
+
} | undefined;
|
|
3658
4018
|
};
|
|
3659
4019
|
estimatedProcessingTimeInSeconds: number;
|
|
3660
4020
|
trade: string | {
|
|
@@ -3838,6 +4198,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
3838
4198
|
totalToAmountUsd?: string | undefined;
|
|
3839
4199
|
priceImpact?: string | undefined;
|
|
3840
4200
|
} | undefined;
|
|
4201
|
+
intent?: {
|
|
4202
|
+
order: {
|
|
4203
|
+
kind: "sell" | "buy";
|
|
4204
|
+
sellToken: string;
|
|
4205
|
+
buyToken: string;
|
|
4206
|
+
validTo: string | number;
|
|
4207
|
+
appData: string;
|
|
4208
|
+
appDataHash: string;
|
|
4209
|
+
feeAmount: string;
|
|
4210
|
+
partiallyFillable: boolean;
|
|
4211
|
+
receiver?: string | undefined;
|
|
4212
|
+
from?: string | undefined;
|
|
4213
|
+
sellAmount?: string | undefined;
|
|
4214
|
+
buyAmount?: string | undefined;
|
|
4215
|
+
};
|
|
4216
|
+
protocol: "cowswap";
|
|
4217
|
+
settlementContract?: string | undefined;
|
|
4218
|
+
relayer?: string | undefined;
|
|
4219
|
+
quoteId?: string | null | undefined;
|
|
4220
|
+
} | undefined;
|
|
3841
4221
|
};
|
|
3842
4222
|
estimatedProcessingTimeInSeconds: number;
|
|
3843
4223
|
trade: string | {
|
|
@@ -4054,6 +4434,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4054
4434
|
totalToAmountUsd?: string | undefined;
|
|
4055
4435
|
priceImpact?: string | undefined;
|
|
4056
4436
|
} | undefined;
|
|
4437
|
+
intent?: {
|
|
4438
|
+
order: {
|
|
4439
|
+
kind: "sell" | "buy";
|
|
4440
|
+
sellToken: string;
|
|
4441
|
+
buyToken: string;
|
|
4442
|
+
validTo: string | number;
|
|
4443
|
+
appData: string;
|
|
4444
|
+
appDataHash: string;
|
|
4445
|
+
feeAmount: string;
|
|
4446
|
+
partiallyFillable: boolean;
|
|
4447
|
+
receiver?: string | undefined;
|
|
4448
|
+
from?: string | undefined;
|
|
4449
|
+
sellAmount?: string | undefined;
|
|
4450
|
+
buyAmount?: string | undefined;
|
|
4451
|
+
};
|
|
4452
|
+
protocol: "cowswap";
|
|
4453
|
+
settlementContract?: string | undefined;
|
|
4454
|
+
relayer?: string | undefined;
|
|
4455
|
+
quoteId?: string | null | undefined;
|
|
4456
|
+
} | undefined;
|
|
4057
4457
|
};
|
|
4058
4458
|
estimatedProcessingTimeInSeconds: number;
|
|
4059
4459
|
trade: {
|
|
@@ -4216,6 +4616,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4216
4616
|
totalToAmountUsd?: string | undefined;
|
|
4217
4617
|
priceImpact?: string | undefined;
|
|
4218
4618
|
} | undefined;
|
|
4619
|
+
intent?: {
|
|
4620
|
+
order: {
|
|
4621
|
+
kind: "sell" | "buy";
|
|
4622
|
+
sellToken: string;
|
|
4623
|
+
buyToken: string;
|
|
4624
|
+
validTo: string | number;
|
|
4625
|
+
appData: string;
|
|
4626
|
+
appDataHash: string;
|
|
4627
|
+
feeAmount: string;
|
|
4628
|
+
partiallyFillable: boolean;
|
|
4629
|
+
receiver?: string | undefined;
|
|
4630
|
+
from?: string | undefined;
|
|
4631
|
+
sellAmount?: string | undefined;
|
|
4632
|
+
buyAmount?: string | undefined;
|
|
4633
|
+
};
|
|
4634
|
+
protocol: "cowswap";
|
|
4635
|
+
settlementContract?: string | undefined;
|
|
4636
|
+
relayer?: string | undefined;
|
|
4637
|
+
quoteId?: string | null | undefined;
|
|
4638
|
+
} | undefined;
|
|
4219
4639
|
};
|
|
4220
4640
|
estimatedProcessingTimeInSeconds: number;
|
|
4221
4641
|
trade: string | {
|
|
@@ -4428,6 +4848,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4428
4848
|
totalToAmountUsd?: string | undefined;
|
|
4429
4849
|
priceImpact?: string | undefined;
|
|
4430
4850
|
} | undefined;
|
|
4851
|
+
intent?: {
|
|
4852
|
+
order: {
|
|
4853
|
+
kind: "sell" | "buy";
|
|
4854
|
+
sellToken: string;
|
|
4855
|
+
buyToken: string;
|
|
4856
|
+
validTo: string | number;
|
|
4857
|
+
appData: string;
|
|
4858
|
+
appDataHash: string;
|
|
4859
|
+
feeAmount: string;
|
|
4860
|
+
partiallyFillable: boolean;
|
|
4861
|
+
receiver?: string | undefined;
|
|
4862
|
+
from?: string | undefined;
|
|
4863
|
+
sellAmount?: string | undefined;
|
|
4864
|
+
buyAmount?: string | undefined;
|
|
4865
|
+
};
|
|
4866
|
+
protocol: "cowswap";
|
|
4867
|
+
settlementContract?: string | undefined;
|
|
4868
|
+
relayer?: string | undefined;
|
|
4869
|
+
quoteId?: string | null | undefined;
|
|
4870
|
+
} | undefined;
|
|
4431
4871
|
};
|
|
4432
4872
|
estimatedProcessingTimeInSeconds: number;
|
|
4433
4873
|
trade: {
|
|
@@ -4590,6 +5030,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4590
5030
|
totalToAmountUsd?: string | undefined;
|
|
4591
5031
|
priceImpact?: string | undefined;
|
|
4592
5032
|
} | undefined;
|
|
5033
|
+
intent?: {
|
|
5034
|
+
order: {
|
|
5035
|
+
kind: "sell" | "buy";
|
|
5036
|
+
sellToken: string;
|
|
5037
|
+
buyToken: string;
|
|
5038
|
+
validTo: string | number;
|
|
5039
|
+
appData: string;
|
|
5040
|
+
appDataHash: string;
|
|
5041
|
+
feeAmount: string;
|
|
5042
|
+
partiallyFillable: boolean;
|
|
5043
|
+
receiver?: string | undefined;
|
|
5044
|
+
from?: string | undefined;
|
|
5045
|
+
sellAmount?: string | undefined;
|
|
5046
|
+
buyAmount?: string | undefined;
|
|
5047
|
+
};
|
|
5048
|
+
protocol: "cowswap";
|
|
5049
|
+
settlementContract?: string | undefined;
|
|
5050
|
+
relayer?: string | undefined;
|
|
5051
|
+
quoteId?: string | null | undefined;
|
|
5052
|
+
} | undefined;
|
|
4593
5053
|
};
|
|
4594
5054
|
estimatedProcessingTimeInSeconds: number;
|
|
4595
5055
|
trade: string | {
|
|
@@ -4766,6 +5226,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4766
5226
|
totalToAmountUsd?: string | undefined;
|
|
4767
5227
|
priceImpact?: string | undefined;
|
|
4768
5228
|
} | undefined;
|
|
5229
|
+
intent?: {
|
|
5230
|
+
order: {
|
|
5231
|
+
kind: "sell" | "buy";
|
|
5232
|
+
sellToken: string;
|
|
5233
|
+
buyToken: string;
|
|
5234
|
+
validTo: string | number;
|
|
5235
|
+
appData: string;
|
|
5236
|
+
appDataHash: string;
|
|
5237
|
+
feeAmount: string;
|
|
5238
|
+
partiallyFillable: boolean;
|
|
5239
|
+
receiver?: string | undefined;
|
|
5240
|
+
from?: string | undefined;
|
|
5241
|
+
sellAmount?: string | undefined;
|
|
5242
|
+
buyAmount?: string | undefined;
|
|
5243
|
+
};
|
|
5244
|
+
protocol: "cowswap";
|
|
5245
|
+
settlementContract?: string | undefined;
|
|
5246
|
+
relayer?: string | undefined;
|
|
5247
|
+
quoteId?: string | null | undefined;
|
|
5248
|
+
} | undefined;
|
|
4769
5249
|
};
|
|
4770
5250
|
estimatedProcessingTimeInSeconds: number;
|
|
4771
5251
|
trade: string | {
|
|
@@ -4982,6 +5462,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
4982
5462
|
totalToAmountUsd?: string | undefined;
|
|
4983
5463
|
priceImpact?: string | undefined;
|
|
4984
5464
|
} | undefined;
|
|
5465
|
+
intent?: {
|
|
5466
|
+
order: {
|
|
5467
|
+
kind: "sell" | "buy";
|
|
5468
|
+
sellToken: string;
|
|
5469
|
+
buyToken: string;
|
|
5470
|
+
validTo: string | number;
|
|
5471
|
+
appData: string;
|
|
5472
|
+
appDataHash: string;
|
|
5473
|
+
feeAmount: string;
|
|
5474
|
+
partiallyFillable: boolean;
|
|
5475
|
+
receiver?: string | undefined;
|
|
5476
|
+
from?: string | undefined;
|
|
5477
|
+
sellAmount?: string | undefined;
|
|
5478
|
+
buyAmount?: string | undefined;
|
|
5479
|
+
};
|
|
5480
|
+
protocol: "cowswap";
|
|
5481
|
+
settlementContract?: string | undefined;
|
|
5482
|
+
relayer?: string | undefined;
|
|
5483
|
+
quoteId?: string | null | undefined;
|
|
5484
|
+
} | undefined;
|
|
4985
5485
|
};
|
|
4986
5486
|
estimatedProcessingTimeInSeconds: number;
|
|
4987
5487
|
trade: {
|
|
@@ -5149,6 +5649,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5149
5649
|
totalToAmountUsd?: string | undefined;
|
|
5150
5650
|
priceImpact?: string | undefined;
|
|
5151
5651
|
} | undefined;
|
|
5652
|
+
intent?: {
|
|
5653
|
+
order: {
|
|
5654
|
+
kind: "sell" | "buy";
|
|
5655
|
+
sellToken: string;
|
|
5656
|
+
buyToken: string;
|
|
5657
|
+
validTo: string | number;
|
|
5658
|
+
appData: string;
|
|
5659
|
+
appDataHash: string;
|
|
5660
|
+
feeAmount: string;
|
|
5661
|
+
partiallyFillable: boolean;
|
|
5662
|
+
receiver?: string | undefined;
|
|
5663
|
+
from?: string | undefined;
|
|
5664
|
+
sellAmount?: string | undefined;
|
|
5665
|
+
buyAmount?: string | undefined;
|
|
5666
|
+
};
|
|
5667
|
+
protocol: "cowswap";
|
|
5668
|
+
settlementContract?: string | undefined;
|
|
5669
|
+
relayer?: string | undefined;
|
|
5670
|
+
quoteId?: string | null | undefined;
|
|
5671
|
+
} | undefined;
|
|
5152
5672
|
};
|
|
5153
5673
|
estimatedProcessingTimeInSeconds: number;
|
|
5154
5674
|
trade: string | {
|
|
@@ -5364,6 +5884,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5364
5884
|
totalToAmountUsd?: string | undefined;
|
|
5365
5885
|
priceImpact?: string | undefined;
|
|
5366
5886
|
} | undefined;
|
|
5887
|
+
intent?: {
|
|
5888
|
+
order: {
|
|
5889
|
+
kind: "sell" | "buy";
|
|
5890
|
+
sellToken: string;
|
|
5891
|
+
buyToken: string;
|
|
5892
|
+
validTo: string | number;
|
|
5893
|
+
appData: string;
|
|
5894
|
+
appDataHash: string;
|
|
5895
|
+
feeAmount: string;
|
|
5896
|
+
partiallyFillable: boolean;
|
|
5897
|
+
receiver?: string | undefined;
|
|
5898
|
+
from?: string | undefined;
|
|
5899
|
+
sellAmount?: string | undefined;
|
|
5900
|
+
buyAmount?: string | undefined;
|
|
5901
|
+
};
|
|
5902
|
+
protocol: "cowswap";
|
|
5903
|
+
settlementContract?: string | undefined;
|
|
5904
|
+
relayer?: string | undefined;
|
|
5905
|
+
quoteId?: string | null | undefined;
|
|
5906
|
+
} | undefined;
|
|
5367
5907
|
};
|
|
5368
5908
|
estimatedProcessingTimeInSeconds: number;
|
|
5369
5909
|
trade: {
|
|
@@ -5527,6 +6067,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5527
6067
|
totalToAmountUsd?: string | undefined;
|
|
5528
6068
|
priceImpact?: string | undefined;
|
|
5529
6069
|
} | undefined;
|
|
6070
|
+
intent?: {
|
|
6071
|
+
order: {
|
|
6072
|
+
kind: "sell" | "buy";
|
|
6073
|
+
sellToken: string;
|
|
6074
|
+
buyToken: string;
|
|
6075
|
+
validTo: string | number;
|
|
6076
|
+
appData: string;
|
|
6077
|
+
appDataHash: string;
|
|
6078
|
+
feeAmount: string;
|
|
6079
|
+
partiallyFillable: boolean;
|
|
6080
|
+
receiver?: string | undefined;
|
|
6081
|
+
from?: string | undefined;
|
|
6082
|
+
sellAmount?: string | undefined;
|
|
6083
|
+
buyAmount?: string | undefined;
|
|
6084
|
+
};
|
|
6085
|
+
protocol: "cowswap";
|
|
6086
|
+
settlementContract?: string | undefined;
|
|
6087
|
+
relayer?: string | undefined;
|
|
6088
|
+
quoteId?: string | null | undefined;
|
|
6089
|
+
} | undefined;
|
|
5530
6090
|
};
|
|
5531
6091
|
estimatedProcessingTimeInSeconds: number;
|
|
5532
6092
|
trade: string | {
|
|
@@ -5742,6 +6302,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5742
6302
|
totalToAmountUsd?: string | undefined;
|
|
5743
6303
|
priceImpact?: string | undefined;
|
|
5744
6304
|
} | undefined;
|
|
6305
|
+
intent?: {
|
|
6306
|
+
order: {
|
|
6307
|
+
kind: "sell" | "buy";
|
|
6308
|
+
sellToken: string;
|
|
6309
|
+
buyToken: string;
|
|
6310
|
+
validTo: string | number;
|
|
6311
|
+
appData: string;
|
|
6312
|
+
appDataHash: string;
|
|
6313
|
+
feeAmount: string;
|
|
6314
|
+
partiallyFillable: boolean;
|
|
6315
|
+
receiver?: string | undefined;
|
|
6316
|
+
from?: string | undefined;
|
|
6317
|
+
sellAmount?: string | undefined;
|
|
6318
|
+
buyAmount?: string | undefined;
|
|
6319
|
+
};
|
|
6320
|
+
protocol: "cowswap";
|
|
6321
|
+
settlementContract?: string | undefined;
|
|
6322
|
+
relayer?: string | undefined;
|
|
6323
|
+
quoteId?: string | null | undefined;
|
|
6324
|
+
} | undefined;
|
|
5745
6325
|
};
|
|
5746
6326
|
estimatedProcessingTimeInSeconds: number;
|
|
5747
6327
|
trade: {
|
|
@@ -5949,6 +6529,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
5949
6529
|
totalToAmountUsd?: string | undefined;
|
|
5950
6530
|
priceImpact?: string | undefined;
|
|
5951
6531
|
} | undefined;
|
|
6532
|
+
intent?: {
|
|
6533
|
+
order: {
|
|
6534
|
+
kind: "sell" | "buy";
|
|
6535
|
+
sellToken: string;
|
|
6536
|
+
buyToken: string;
|
|
6537
|
+
validTo: string | number;
|
|
6538
|
+
appData: string;
|
|
6539
|
+
appDataHash: string;
|
|
6540
|
+
feeAmount: string;
|
|
6541
|
+
partiallyFillable: boolean;
|
|
6542
|
+
receiver?: string | undefined;
|
|
6543
|
+
from?: string | undefined;
|
|
6544
|
+
sellAmount?: string | undefined;
|
|
6545
|
+
buyAmount?: string | undefined;
|
|
6546
|
+
};
|
|
6547
|
+
protocol: "cowswap";
|
|
6548
|
+
settlementContract?: string | undefined;
|
|
6549
|
+
relayer?: string | undefined;
|
|
6550
|
+
quoteId?: string | null | undefined;
|
|
6551
|
+
} | undefined;
|
|
5952
6552
|
};
|
|
5953
6553
|
estimatedProcessingTimeInSeconds: number;
|
|
5954
6554
|
trade: {
|
|
@@ -6112,6 +6712,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6112
6712
|
totalToAmountUsd?: string | undefined;
|
|
6113
6713
|
priceImpact?: string | undefined;
|
|
6114
6714
|
} | undefined;
|
|
6715
|
+
intent?: {
|
|
6716
|
+
order: {
|
|
6717
|
+
kind: "sell" | "buy";
|
|
6718
|
+
sellToken: string;
|
|
6719
|
+
buyToken: string;
|
|
6720
|
+
validTo: string | number;
|
|
6721
|
+
appData: string;
|
|
6722
|
+
appDataHash: string;
|
|
6723
|
+
feeAmount: string;
|
|
6724
|
+
partiallyFillable: boolean;
|
|
6725
|
+
receiver?: string | undefined;
|
|
6726
|
+
from?: string | undefined;
|
|
6727
|
+
sellAmount?: string | undefined;
|
|
6728
|
+
buyAmount?: string | undefined;
|
|
6729
|
+
};
|
|
6730
|
+
protocol: "cowswap";
|
|
6731
|
+
settlementContract?: string | undefined;
|
|
6732
|
+
relayer?: string | undefined;
|
|
6733
|
+
quoteId?: string | null | undefined;
|
|
6734
|
+
} | undefined;
|
|
6115
6735
|
};
|
|
6116
6736
|
estimatedProcessingTimeInSeconds: number;
|
|
6117
6737
|
trade: string | {
|
|
@@ -6415,6 +7035,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6415
7035
|
totalToAmountUsd?: string | undefined;
|
|
6416
7036
|
priceImpact?: string | undefined;
|
|
6417
7037
|
} | undefined;
|
|
7038
|
+
intent?: {
|
|
7039
|
+
order: {
|
|
7040
|
+
kind: "sell" | "buy";
|
|
7041
|
+
sellToken: string;
|
|
7042
|
+
buyToken: string;
|
|
7043
|
+
validTo: string | number;
|
|
7044
|
+
appData: string;
|
|
7045
|
+
appDataHash: string;
|
|
7046
|
+
feeAmount: string;
|
|
7047
|
+
partiallyFillable: boolean;
|
|
7048
|
+
receiver?: string | undefined;
|
|
7049
|
+
from?: string | undefined;
|
|
7050
|
+
sellAmount?: string | undefined;
|
|
7051
|
+
buyAmount?: string | undefined;
|
|
7052
|
+
};
|
|
7053
|
+
protocol: "cowswap";
|
|
7054
|
+
settlementContract?: string | undefined;
|
|
7055
|
+
relayer?: string | undefined;
|
|
7056
|
+
quoteId?: string | null | undefined;
|
|
7057
|
+
} | undefined;
|
|
6418
7058
|
};
|
|
6419
7059
|
estimatedProcessingTimeInSeconds: number;
|
|
6420
7060
|
trade: string | {
|
|
@@ -6591,6 +7231,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6591
7231
|
totalToAmountUsd?: string | undefined;
|
|
6592
7232
|
priceImpact?: string | undefined;
|
|
6593
7233
|
} | undefined;
|
|
7234
|
+
intent?: {
|
|
7235
|
+
order: {
|
|
7236
|
+
kind: "sell" | "buy";
|
|
7237
|
+
sellToken: string;
|
|
7238
|
+
buyToken: string;
|
|
7239
|
+
validTo: string | number;
|
|
7240
|
+
appData: string;
|
|
7241
|
+
appDataHash: string;
|
|
7242
|
+
feeAmount: string;
|
|
7243
|
+
partiallyFillable: boolean;
|
|
7244
|
+
receiver?: string | undefined;
|
|
7245
|
+
from?: string | undefined;
|
|
7246
|
+
sellAmount?: string | undefined;
|
|
7247
|
+
buyAmount?: string | undefined;
|
|
7248
|
+
};
|
|
7249
|
+
protocol: "cowswap";
|
|
7250
|
+
settlementContract?: string | undefined;
|
|
7251
|
+
relayer?: string | undefined;
|
|
7252
|
+
quoteId?: string | null | undefined;
|
|
7253
|
+
} | undefined;
|
|
6594
7254
|
};
|
|
6595
7255
|
estimatedProcessingTimeInSeconds: number;
|
|
6596
7256
|
trade: string | {
|
|
@@ -6762,6 +7422,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6762
7422
|
totalToAmountUsd?: string | undefined;
|
|
6763
7423
|
priceImpact?: string | undefined;
|
|
6764
7424
|
} | undefined;
|
|
7425
|
+
intent?: {
|
|
7426
|
+
order: {
|
|
7427
|
+
kind: "sell" | "buy";
|
|
7428
|
+
sellToken: string;
|
|
7429
|
+
buyToken: string;
|
|
7430
|
+
validTo: string | number;
|
|
7431
|
+
appData: string;
|
|
7432
|
+
appDataHash: string;
|
|
7433
|
+
feeAmount: string;
|
|
7434
|
+
partiallyFillable: boolean;
|
|
7435
|
+
receiver?: string | undefined;
|
|
7436
|
+
from?: string | undefined;
|
|
7437
|
+
sellAmount?: string | undefined;
|
|
7438
|
+
buyAmount?: string | undefined;
|
|
7439
|
+
};
|
|
7440
|
+
protocol: "cowswap";
|
|
7441
|
+
settlementContract?: string | undefined;
|
|
7442
|
+
relayer?: string | undefined;
|
|
7443
|
+
quoteId?: string | null | undefined;
|
|
7444
|
+
} | undefined;
|
|
6765
7445
|
};
|
|
6766
7446
|
estimatedProcessingTimeInSeconds: number;
|
|
6767
7447
|
trade: string | {
|
|
@@ -6934,6 +7614,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
6934
7614
|
totalToAmountUsd?: string | undefined;
|
|
6935
7615
|
priceImpact?: string | undefined;
|
|
6936
7616
|
} | undefined;
|
|
7617
|
+
intent?: {
|
|
7618
|
+
order: {
|
|
7619
|
+
kind: "sell" | "buy";
|
|
7620
|
+
sellToken: string;
|
|
7621
|
+
buyToken: string;
|
|
7622
|
+
validTo: string | number;
|
|
7623
|
+
appData: string;
|
|
7624
|
+
appDataHash: string;
|
|
7625
|
+
feeAmount: string;
|
|
7626
|
+
partiallyFillable: boolean;
|
|
7627
|
+
receiver?: string | undefined;
|
|
7628
|
+
from?: string | undefined;
|
|
7629
|
+
sellAmount?: string | undefined;
|
|
7630
|
+
buyAmount?: string | undefined;
|
|
7631
|
+
};
|
|
7632
|
+
protocol: "cowswap";
|
|
7633
|
+
settlementContract?: string | undefined;
|
|
7634
|
+
relayer?: string | undefined;
|
|
7635
|
+
quoteId?: string | null | undefined;
|
|
7636
|
+
} | undefined;
|
|
6937
7637
|
};
|
|
6938
7638
|
estimatedProcessingTimeInSeconds: number;
|
|
6939
7639
|
trade: string | {
|
|
@@ -7105,6 +7805,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7105
7805
|
totalToAmountUsd?: string | undefined;
|
|
7106
7806
|
priceImpact?: string | undefined;
|
|
7107
7807
|
} | undefined;
|
|
7808
|
+
intent?: {
|
|
7809
|
+
order: {
|
|
7810
|
+
kind: "sell" | "buy";
|
|
7811
|
+
sellToken: string;
|
|
7812
|
+
buyToken: string;
|
|
7813
|
+
validTo: string | number;
|
|
7814
|
+
appData: string;
|
|
7815
|
+
appDataHash: string;
|
|
7816
|
+
feeAmount: string;
|
|
7817
|
+
partiallyFillable: boolean;
|
|
7818
|
+
receiver?: string | undefined;
|
|
7819
|
+
from?: string | undefined;
|
|
7820
|
+
sellAmount?: string | undefined;
|
|
7821
|
+
buyAmount?: string | undefined;
|
|
7822
|
+
};
|
|
7823
|
+
protocol: "cowswap";
|
|
7824
|
+
settlementContract?: string | undefined;
|
|
7825
|
+
relayer?: string | undefined;
|
|
7826
|
+
quoteId?: string | null | undefined;
|
|
7827
|
+
} | undefined;
|
|
7108
7828
|
};
|
|
7109
7829
|
estimatedProcessingTimeInSeconds: number;
|
|
7110
7830
|
trade: string | {
|
|
@@ -7281,6 +8001,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7281
8001
|
totalToAmountUsd?: string | undefined;
|
|
7282
8002
|
priceImpact?: string | undefined;
|
|
7283
8003
|
} | undefined;
|
|
8004
|
+
intent?: {
|
|
8005
|
+
order: {
|
|
8006
|
+
kind: "sell" | "buy";
|
|
8007
|
+
sellToken: string;
|
|
8008
|
+
buyToken: string;
|
|
8009
|
+
validTo: string | number;
|
|
8010
|
+
appData: string;
|
|
8011
|
+
appDataHash: string;
|
|
8012
|
+
feeAmount: string;
|
|
8013
|
+
partiallyFillable: boolean;
|
|
8014
|
+
receiver?: string | undefined;
|
|
8015
|
+
from?: string | undefined;
|
|
8016
|
+
sellAmount?: string | undefined;
|
|
8017
|
+
buyAmount?: string | undefined;
|
|
8018
|
+
};
|
|
8019
|
+
protocol: "cowswap";
|
|
8020
|
+
settlementContract?: string | undefined;
|
|
8021
|
+
relayer?: string | undefined;
|
|
8022
|
+
quoteId?: string | null | undefined;
|
|
8023
|
+
} | undefined;
|
|
7284
8024
|
};
|
|
7285
8025
|
estimatedProcessingTimeInSeconds: number;
|
|
7286
8026
|
trade: string | {
|
|
@@ -7457,6 +8197,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7457
8197
|
totalToAmountUsd?: string | undefined;
|
|
7458
8198
|
priceImpact?: string | undefined;
|
|
7459
8199
|
} | undefined;
|
|
8200
|
+
intent?: {
|
|
8201
|
+
order: {
|
|
8202
|
+
kind: "sell" | "buy";
|
|
8203
|
+
sellToken: string;
|
|
8204
|
+
buyToken: string;
|
|
8205
|
+
validTo: string | number;
|
|
8206
|
+
appData: string;
|
|
8207
|
+
appDataHash: string;
|
|
8208
|
+
feeAmount: string;
|
|
8209
|
+
partiallyFillable: boolean;
|
|
8210
|
+
receiver?: string | undefined;
|
|
8211
|
+
from?: string | undefined;
|
|
8212
|
+
sellAmount?: string | undefined;
|
|
8213
|
+
buyAmount?: string | undefined;
|
|
8214
|
+
};
|
|
8215
|
+
protocol: "cowswap";
|
|
8216
|
+
settlementContract?: string | undefined;
|
|
8217
|
+
relayer?: string | undefined;
|
|
8218
|
+
quoteId?: string | null | undefined;
|
|
8219
|
+
} | undefined;
|
|
7460
8220
|
};
|
|
7461
8221
|
estimatedProcessingTimeInSeconds: number;
|
|
7462
8222
|
trade: string | {
|
|
@@ -7673,6 +8433,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7673
8433
|
totalToAmountUsd?: string | undefined;
|
|
7674
8434
|
priceImpact?: string | undefined;
|
|
7675
8435
|
} | undefined;
|
|
8436
|
+
intent?: {
|
|
8437
|
+
order: {
|
|
8438
|
+
kind: "sell" | "buy";
|
|
8439
|
+
sellToken: string;
|
|
8440
|
+
buyToken: string;
|
|
8441
|
+
validTo: string | number;
|
|
8442
|
+
appData: string;
|
|
8443
|
+
appDataHash: string;
|
|
8444
|
+
feeAmount: string;
|
|
8445
|
+
partiallyFillable: boolean;
|
|
8446
|
+
receiver?: string | undefined;
|
|
8447
|
+
from?: string | undefined;
|
|
8448
|
+
sellAmount?: string | undefined;
|
|
8449
|
+
buyAmount?: string | undefined;
|
|
8450
|
+
};
|
|
8451
|
+
protocol: "cowswap";
|
|
8452
|
+
settlementContract?: string | undefined;
|
|
8453
|
+
relayer?: string | undefined;
|
|
8454
|
+
quoteId?: string | null | undefined;
|
|
8455
|
+
} | undefined;
|
|
7676
8456
|
};
|
|
7677
8457
|
estimatedProcessingTimeInSeconds: number;
|
|
7678
8458
|
trade: {
|
|
@@ -7835,6 +8615,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
7835
8615
|
totalToAmountUsd?: string | undefined;
|
|
7836
8616
|
priceImpact?: string | undefined;
|
|
7837
8617
|
} | undefined;
|
|
8618
|
+
intent?: {
|
|
8619
|
+
order: {
|
|
8620
|
+
kind: "sell" | "buy";
|
|
8621
|
+
sellToken: string;
|
|
8622
|
+
buyToken: string;
|
|
8623
|
+
validTo: string | number;
|
|
8624
|
+
appData: string;
|
|
8625
|
+
appDataHash: string;
|
|
8626
|
+
feeAmount: string;
|
|
8627
|
+
partiallyFillable: boolean;
|
|
8628
|
+
receiver?: string | undefined;
|
|
8629
|
+
from?: string | undefined;
|
|
8630
|
+
sellAmount?: string | undefined;
|
|
8631
|
+
buyAmount?: string | undefined;
|
|
8632
|
+
};
|
|
8633
|
+
protocol: "cowswap";
|
|
8634
|
+
settlementContract?: string | undefined;
|
|
8635
|
+
relayer?: string | undefined;
|
|
8636
|
+
quoteId?: string | null | undefined;
|
|
8637
|
+
} | undefined;
|
|
7838
8638
|
};
|
|
7839
8639
|
estimatedProcessingTimeInSeconds: number;
|
|
7840
8640
|
trade: string | {
|
|
@@ -8047,6 +8847,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8047
8847
|
totalToAmountUsd?: string | undefined;
|
|
8048
8848
|
priceImpact?: string | undefined;
|
|
8049
8849
|
} | undefined;
|
|
8850
|
+
intent?: {
|
|
8851
|
+
order: {
|
|
8852
|
+
kind: "sell" | "buy";
|
|
8853
|
+
sellToken: string;
|
|
8854
|
+
buyToken: string;
|
|
8855
|
+
validTo: string | number;
|
|
8856
|
+
appData: string;
|
|
8857
|
+
appDataHash: string;
|
|
8858
|
+
feeAmount: string;
|
|
8859
|
+
partiallyFillable: boolean;
|
|
8860
|
+
receiver?: string | undefined;
|
|
8861
|
+
from?: string | undefined;
|
|
8862
|
+
sellAmount?: string | undefined;
|
|
8863
|
+
buyAmount?: string | undefined;
|
|
8864
|
+
};
|
|
8865
|
+
protocol: "cowswap";
|
|
8866
|
+
settlementContract?: string | undefined;
|
|
8867
|
+
relayer?: string | undefined;
|
|
8868
|
+
quoteId?: string | null | undefined;
|
|
8869
|
+
} | undefined;
|
|
8050
8870
|
};
|
|
8051
8871
|
estimatedProcessingTimeInSeconds: number;
|
|
8052
8872
|
trade: {
|
|
@@ -8209,6 +9029,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8209
9029
|
totalToAmountUsd?: string | undefined;
|
|
8210
9030
|
priceImpact?: string | undefined;
|
|
8211
9031
|
} | undefined;
|
|
9032
|
+
intent?: {
|
|
9033
|
+
order: {
|
|
9034
|
+
kind: "sell" | "buy";
|
|
9035
|
+
sellToken: string;
|
|
9036
|
+
buyToken: string;
|
|
9037
|
+
validTo: string | number;
|
|
9038
|
+
appData: string;
|
|
9039
|
+
appDataHash: string;
|
|
9040
|
+
feeAmount: string;
|
|
9041
|
+
partiallyFillable: boolean;
|
|
9042
|
+
receiver?: string | undefined;
|
|
9043
|
+
from?: string | undefined;
|
|
9044
|
+
sellAmount?: string | undefined;
|
|
9045
|
+
buyAmount?: string | undefined;
|
|
9046
|
+
};
|
|
9047
|
+
protocol: "cowswap";
|
|
9048
|
+
settlementContract?: string | undefined;
|
|
9049
|
+
relayer?: string | undefined;
|
|
9050
|
+
quoteId?: string | null | undefined;
|
|
9051
|
+
} | undefined;
|
|
8212
9052
|
};
|
|
8213
9053
|
estimatedProcessingTimeInSeconds: number;
|
|
8214
9054
|
trade: string | {
|
|
@@ -8385,6 +9225,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8385
9225
|
totalToAmountUsd?: string | undefined;
|
|
8386
9226
|
priceImpact?: string | undefined;
|
|
8387
9227
|
} | undefined;
|
|
9228
|
+
intent?: {
|
|
9229
|
+
order: {
|
|
9230
|
+
kind: "sell" | "buy";
|
|
9231
|
+
sellToken: string;
|
|
9232
|
+
buyToken: string;
|
|
9233
|
+
validTo: string | number;
|
|
9234
|
+
appData: string;
|
|
9235
|
+
appDataHash: string;
|
|
9236
|
+
feeAmount: string;
|
|
9237
|
+
partiallyFillable: boolean;
|
|
9238
|
+
receiver?: string | undefined;
|
|
9239
|
+
from?: string | undefined;
|
|
9240
|
+
sellAmount?: string | undefined;
|
|
9241
|
+
buyAmount?: string | undefined;
|
|
9242
|
+
};
|
|
9243
|
+
protocol: "cowswap";
|
|
9244
|
+
settlementContract?: string | undefined;
|
|
9245
|
+
relayer?: string | undefined;
|
|
9246
|
+
quoteId?: string | null | undefined;
|
|
9247
|
+
} | undefined;
|
|
8388
9248
|
};
|
|
8389
9249
|
estimatedProcessingTimeInSeconds: number;
|
|
8390
9250
|
trade: string | {
|
|
@@ -8601,6 +9461,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8601
9461
|
totalToAmountUsd?: string | undefined;
|
|
8602
9462
|
priceImpact?: string | undefined;
|
|
8603
9463
|
} | undefined;
|
|
9464
|
+
intent?: {
|
|
9465
|
+
order: {
|
|
9466
|
+
kind: "sell" | "buy";
|
|
9467
|
+
sellToken: string;
|
|
9468
|
+
buyToken: string;
|
|
9469
|
+
validTo: string | number;
|
|
9470
|
+
appData: string;
|
|
9471
|
+
appDataHash: string;
|
|
9472
|
+
feeAmount: string;
|
|
9473
|
+
partiallyFillable: boolean;
|
|
9474
|
+
receiver?: string | undefined;
|
|
9475
|
+
from?: string | undefined;
|
|
9476
|
+
sellAmount?: string | undefined;
|
|
9477
|
+
buyAmount?: string | undefined;
|
|
9478
|
+
};
|
|
9479
|
+
protocol: "cowswap";
|
|
9480
|
+
settlementContract?: string | undefined;
|
|
9481
|
+
relayer?: string | undefined;
|
|
9482
|
+
quoteId?: string | null | undefined;
|
|
9483
|
+
} | undefined;
|
|
8604
9484
|
};
|
|
8605
9485
|
estimatedProcessingTimeInSeconds: number;
|
|
8606
9486
|
trade: {
|
|
@@ -8768,6 +9648,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8768
9648
|
totalToAmountUsd?: string | undefined;
|
|
8769
9649
|
priceImpact?: string | undefined;
|
|
8770
9650
|
} | undefined;
|
|
9651
|
+
intent?: {
|
|
9652
|
+
order: {
|
|
9653
|
+
kind: "sell" | "buy";
|
|
9654
|
+
sellToken: string;
|
|
9655
|
+
buyToken: string;
|
|
9656
|
+
validTo: string | number;
|
|
9657
|
+
appData: string;
|
|
9658
|
+
appDataHash: string;
|
|
9659
|
+
feeAmount: string;
|
|
9660
|
+
partiallyFillable: boolean;
|
|
9661
|
+
receiver?: string | undefined;
|
|
9662
|
+
from?: string | undefined;
|
|
9663
|
+
sellAmount?: string | undefined;
|
|
9664
|
+
buyAmount?: string | undefined;
|
|
9665
|
+
};
|
|
9666
|
+
protocol: "cowswap";
|
|
9667
|
+
settlementContract?: string | undefined;
|
|
9668
|
+
relayer?: string | undefined;
|
|
9669
|
+
quoteId?: string | null | undefined;
|
|
9670
|
+
} | undefined;
|
|
8771
9671
|
};
|
|
8772
9672
|
estimatedProcessingTimeInSeconds: number;
|
|
8773
9673
|
trade: string | {
|
|
@@ -8983,6 +9883,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
8983
9883
|
totalToAmountUsd?: string | undefined;
|
|
8984
9884
|
priceImpact?: string | undefined;
|
|
8985
9885
|
} | undefined;
|
|
9886
|
+
intent?: {
|
|
9887
|
+
order: {
|
|
9888
|
+
kind: "sell" | "buy";
|
|
9889
|
+
sellToken: string;
|
|
9890
|
+
buyToken: string;
|
|
9891
|
+
validTo: string | number;
|
|
9892
|
+
appData: string;
|
|
9893
|
+
appDataHash: string;
|
|
9894
|
+
feeAmount: string;
|
|
9895
|
+
partiallyFillable: boolean;
|
|
9896
|
+
receiver?: string | undefined;
|
|
9897
|
+
from?: string | undefined;
|
|
9898
|
+
sellAmount?: string | undefined;
|
|
9899
|
+
buyAmount?: string | undefined;
|
|
9900
|
+
};
|
|
9901
|
+
protocol: "cowswap";
|
|
9902
|
+
settlementContract?: string | undefined;
|
|
9903
|
+
relayer?: string | undefined;
|
|
9904
|
+
quoteId?: string | null | undefined;
|
|
9905
|
+
} | undefined;
|
|
8986
9906
|
};
|
|
8987
9907
|
estimatedProcessingTimeInSeconds: number;
|
|
8988
9908
|
trade: {
|
|
@@ -9146,6 +10066,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9146
10066
|
totalToAmountUsd?: string | undefined;
|
|
9147
10067
|
priceImpact?: string | undefined;
|
|
9148
10068
|
} | undefined;
|
|
10069
|
+
intent?: {
|
|
10070
|
+
order: {
|
|
10071
|
+
kind: "sell" | "buy";
|
|
10072
|
+
sellToken: string;
|
|
10073
|
+
buyToken: string;
|
|
10074
|
+
validTo: string | number;
|
|
10075
|
+
appData: string;
|
|
10076
|
+
appDataHash: string;
|
|
10077
|
+
feeAmount: string;
|
|
10078
|
+
partiallyFillable: boolean;
|
|
10079
|
+
receiver?: string | undefined;
|
|
10080
|
+
from?: string | undefined;
|
|
10081
|
+
sellAmount?: string | undefined;
|
|
10082
|
+
buyAmount?: string | undefined;
|
|
10083
|
+
};
|
|
10084
|
+
protocol: "cowswap";
|
|
10085
|
+
settlementContract?: string | undefined;
|
|
10086
|
+
relayer?: string | undefined;
|
|
10087
|
+
quoteId?: string | null | undefined;
|
|
10088
|
+
} | undefined;
|
|
9149
10089
|
};
|
|
9150
10090
|
estimatedProcessingTimeInSeconds: number;
|
|
9151
10091
|
trade: string | {
|
|
@@ -9361,6 +10301,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9361
10301
|
totalToAmountUsd?: string | undefined;
|
|
9362
10302
|
priceImpact?: string | undefined;
|
|
9363
10303
|
} | undefined;
|
|
10304
|
+
intent?: {
|
|
10305
|
+
order: {
|
|
10306
|
+
kind: "sell" | "buy";
|
|
10307
|
+
sellToken: string;
|
|
10308
|
+
buyToken: string;
|
|
10309
|
+
validTo: string | number;
|
|
10310
|
+
appData: string;
|
|
10311
|
+
appDataHash: string;
|
|
10312
|
+
feeAmount: string;
|
|
10313
|
+
partiallyFillable: boolean;
|
|
10314
|
+
receiver?: string | undefined;
|
|
10315
|
+
from?: string | undefined;
|
|
10316
|
+
sellAmount?: string | undefined;
|
|
10317
|
+
buyAmount?: string | undefined;
|
|
10318
|
+
};
|
|
10319
|
+
protocol: "cowswap";
|
|
10320
|
+
settlementContract?: string | undefined;
|
|
10321
|
+
relayer?: string | undefined;
|
|
10322
|
+
quoteId?: string | null | undefined;
|
|
10323
|
+
} | undefined;
|
|
9364
10324
|
};
|
|
9365
10325
|
estimatedProcessingTimeInSeconds: number;
|
|
9366
10326
|
trade: {
|
|
@@ -9568,6 +10528,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9568
10528
|
totalToAmountUsd?: string | undefined;
|
|
9569
10529
|
priceImpact?: string | undefined;
|
|
9570
10530
|
} | undefined;
|
|
10531
|
+
intent?: {
|
|
10532
|
+
order: {
|
|
10533
|
+
kind: "sell" | "buy";
|
|
10534
|
+
sellToken: string;
|
|
10535
|
+
buyToken: string;
|
|
10536
|
+
validTo: string | number;
|
|
10537
|
+
appData: string;
|
|
10538
|
+
appDataHash: string;
|
|
10539
|
+
feeAmount: string;
|
|
10540
|
+
partiallyFillable: boolean;
|
|
10541
|
+
receiver?: string | undefined;
|
|
10542
|
+
from?: string | undefined;
|
|
10543
|
+
sellAmount?: string | undefined;
|
|
10544
|
+
buyAmount?: string | undefined;
|
|
10545
|
+
};
|
|
10546
|
+
protocol: "cowswap";
|
|
10547
|
+
settlementContract?: string | undefined;
|
|
10548
|
+
relayer?: string | undefined;
|
|
10549
|
+
quoteId?: string | null | undefined;
|
|
10550
|
+
} | undefined;
|
|
9571
10551
|
};
|
|
9572
10552
|
estimatedProcessingTimeInSeconds: number;
|
|
9573
10553
|
trade: {
|
|
@@ -9731,6 +10711,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
9731
10711
|
totalToAmountUsd?: string | undefined;
|
|
9732
10712
|
priceImpact?: string | undefined;
|
|
9733
10713
|
} | undefined;
|
|
10714
|
+
intent?: {
|
|
10715
|
+
order: {
|
|
10716
|
+
kind: "sell" | "buy";
|
|
10717
|
+
sellToken: string;
|
|
10718
|
+
buyToken: string;
|
|
10719
|
+
validTo: string | number;
|
|
10720
|
+
appData: string;
|
|
10721
|
+
appDataHash: string;
|
|
10722
|
+
feeAmount: string;
|
|
10723
|
+
partiallyFillable: boolean;
|
|
10724
|
+
receiver?: string | undefined;
|
|
10725
|
+
from?: string | undefined;
|
|
10726
|
+
sellAmount?: string | undefined;
|
|
10727
|
+
buyAmount?: string | undefined;
|
|
10728
|
+
};
|
|
10729
|
+
protocol: "cowswap";
|
|
10730
|
+
settlementContract?: string | undefined;
|
|
10731
|
+
relayer?: string | undefined;
|
|
10732
|
+
quoteId?: string | null | undefined;
|
|
10733
|
+
} | undefined;
|
|
9734
10734
|
};
|
|
9735
10735
|
estimatedProcessingTimeInSeconds: number;
|
|
9736
10736
|
trade: string | {
|
|
@@ -10042,6 +11042,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10042
11042
|
totalToAmountUsd?: string | undefined;
|
|
10043
11043
|
priceImpact?: string | undefined;
|
|
10044
11044
|
} | undefined;
|
|
11045
|
+
intent?: {
|
|
11046
|
+
order: {
|
|
11047
|
+
kind: "sell" | "buy";
|
|
11048
|
+
sellToken: string;
|
|
11049
|
+
buyToken: string;
|
|
11050
|
+
validTo: string | number;
|
|
11051
|
+
appData: string;
|
|
11052
|
+
appDataHash: string;
|
|
11053
|
+
feeAmount: string;
|
|
11054
|
+
partiallyFillable: boolean;
|
|
11055
|
+
receiver?: string | undefined;
|
|
11056
|
+
from?: string | undefined;
|
|
11057
|
+
sellAmount?: string | undefined;
|
|
11058
|
+
buyAmount?: string | undefined;
|
|
11059
|
+
};
|
|
11060
|
+
protocol: "cowswap";
|
|
11061
|
+
settlementContract?: string | undefined;
|
|
11062
|
+
relayer?: string | undefined;
|
|
11063
|
+
quoteId?: string | null | undefined;
|
|
11064
|
+
} | undefined;
|
|
10045
11065
|
};
|
|
10046
11066
|
estimatedProcessingTimeInSeconds: number;
|
|
10047
11067
|
trade: string | {
|
|
@@ -10218,6 +11238,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10218
11238
|
totalToAmountUsd?: string | undefined;
|
|
10219
11239
|
priceImpact?: string | undefined;
|
|
10220
11240
|
} | undefined;
|
|
11241
|
+
intent?: {
|
|
11242
|
+
order: {
|
|
11243
|
+
kind: "sell" | "buy";
|
|
11244
|
+
sellToken: string;
|
|
11245
|
+
buyToken: string;
|
|
11246
|
+
validTo: string | number;
|
|
11247
|
+
appData: string;
|
|
11248
|
+
appDataHash: string;
|
|
11249
|
+
feeAmount: string;
|
|
11250
|
+
partiallyFillable: boolean;
|
|
11251
|
+
receiver?: string | undefined;
|
|
11252
|
+
from?: string | undefined;
|
|
11253
|
+
sellAmount?: string | undefined;
|
|
11254
|
+
buyAmount?: string | undefined;
|
|
11255
|
+
};
|
|
11256
|
+
protocol: "cowswap";
|
|
11257
|
+
settlementContract?: string | undefined;
|
|
11258
|
+
relayer?: string | undefined;
|
|
11259
|
+
quoteId?: string | null | undefined;
|
|
11260
|
+
} | undefined;
|
|
10221
11261
|
};
|
|
10222
11262
|
estimatedProcessingTimeInSeconds: number;
|
|
10223
11263
|
trade: string | {
|
|
@@ -10389,6 +11429,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10389
11429
|
totalToAmountUsd?: string | undefined;
|
|
10390
11430
|
priceImpact?: string | undefined;
|
|
10391
11431
|
} | undefined;
|
|
11432
|
+
intent?: {
|
|
11433
|
+
order: {
|
|
11434
|
+
kind: "sell" | "buy";
|
|
11435
|
+
sellToken: string;
|
|
11436
|
+
buyToken: string;
|
|
11437
|
+
validTo: string | number;
|
|
11438
|
+
appData: string;
|
|
11439
|
+
appDataHash: string;
|
|
11440
|
+
feeAmount: string;
|
|
11441
|
+
partiallyFillable: boolean;
|
|
11442
|
+
receiver?: string | undefined;
|
|
11443
|
+
from?: string | undefined;
|
|
11444
|
+
sellAmount?: string | undefined;
|
|
11445
|
+
buyAmount?: string | undefined;
|
|
11446
|
+
};
|
|
11447
|
+
protocol: "cowswap";
|
|
11448
|
+
settlementContract?: string | undefined;
|
|
11449
|
+
relayer?: string | undefined;
|
|
11450
|
+
quoteId?: string | null | undefined;
|
|
11451
|
+
} | undefined;
|
|
10392
11452
|
};
|
|
10393
11453
|
estimatedProcessingTimeInSeconds: number;
|
|
10394
11454
|
trade: string | {
|
|
@@ -10560,6 +11620,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10560
11620
|
totalToAmountUsd?: string | undefined;
|
|
10561
11621
|
priceImpact?: string | undefined;
|
|
10562
11622
|
} | undefined;
|
|
11623
|
+
intent?: {
|
|
11624
|
+
order: {
|
|
11625
|
+
kind: "sell" | "buy";
|
|
11626
|
+
sellToken: string;
|
|
11627
|
+
buyToken: string;
|
|
11628
|
+
validTo: string | number;
|
|
11629
|
+
appData: string;
|
|
11630
|
+
appDataHash: string;
|
|
11631
|
+
feeAmount: string;
|
|
11632
|
+
partiallyFillable: boolean;
|
|
11633
|
+
receiver?: string | undefined;
|
|
11634
|
+
from?: string | undefined;
|
|
11635
|
+
sellAmount?: string | undefined;
|
|
11636
|
+
buyAmount?: string | undefined;
|
|
11637
|
+
};
|
|
11638
|
+
protocol: "cowswap";
|
|
11639
|
+
settlementContract?: string | undefined;
|
|
11640
|
+
relayer?: string | undefined;
|
|
11641
|
+
quoteId?: string | null | undefined;
|
|
11642
|
+
} | undefined;
|
|
10563
11643
|
};
|
|
10564
11644
|
estimatedProcessingTimeInSeconds: number;
|
|
10565
11645
|
trade: string | {
|
|
@@ -10732,6 +11812,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10732
11812
|
totalToAmountUsd?: string | undefined;
|
|
10733
11813
|
priceImpact?: string | undefined;
|
|
10734
11814
|
} | undefined;
|
|
11815
|
+
intent?: {
|
|
11816
|
+
order: {
|
|
11817
|
+
kind: "sell" | "buy";
|
|
11818
|
+
sellToken: string;
|
|
11819
|
+
buyToken: string;
|
|
11820
|
+
validTo: string | number;
|
|
11821
|
+
appData: string;
|
|
11822
|
+
appDataHash: string;
|
|
11823
|
+
feeAmount: string;
|
|
11824
|
+
partiallyFillable: boolean;
|
|
11825
|
+
receiver?: string | undefined;
|
|
11826
|
+
from?: string | undefined;
|
|
11827
|
+
sellAmount?: string | undefined;
|
|
11828
|
+
buyAmount?: string | undefined;
|
|
11829
|
+
};
|
|
11830
|
+
protocol: "cowswap";
|
|
11831
|
+
settlementContract?: string | undefined;
|
|
11832
|
+
relayer?: string | undefined;
|
|
11833
|
+
quoteId?: string | null | undefined;
|
|
11834
|
+
} | undefined;
|
|
10735
11835
|
};
|
|
10736
11836
|
estimatedProcessingTimeInSeconds: number;
|
|
10737
11837
|
trade: string | {
|
|
@@ -10903,6 +12003,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
10903
12003
|
totalToAmountUsd?: string | undefined;
|
|
10904
12004
|
priceImpact?: string | undefined;
|
|
10905
12005
|
} | undefined;
|
|
12006
|
+
intent?: {
|
|
12007
|
+
order: {
|
|
12008
|
+
kind: "sell" | "buy";
|
|
12009
|
+
sellToken: string;
|
|
12010
|
+
buyToken: string;
|
|
12011
|
+
validTo: string | number;
|
|
12012
|
+
appData: string;
|
|
12013
|
+
appDataHash: string;
|
|
12014
|
+
feeAmount: string;
|
|
12015
|
+
partiallyFillable: boolean;
|
|
12016
|
+
receiver?: string | undefined;
|
|
12017
|
+
from?: string | undefined;
|
|
12018
|
+
sellAmount?: string | undefined;
|
|
12019
|
+
buyAmount?: string | undefined;
|
|
12020
|
+
};
|
|
12021
|
+
protocol: "cowswap";
|
|
12022
|
+
settlementContract?: string | undefined;
|
|
12023
|
+
relayer?: string | undefined;
|
|
12024
|
+
quoteId?: string | null | undefined;
|
|
12025
|
+
} | undefined;
|
|
10906
12026
|
};
|
|
10907
12027
|
estimatedProcessingTimeInSeconds: number;
|
|
10908
12028
|
trade: string | {
|
|
@@ -11074,6 +12194,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11074
12194
|
totalToAmountUsd?: string | undefined;
|
|
11075
12195
|
priceImpact?: string | undefined;
|
|
11076
12196
|
} | undefined;
|
|
12197
|
+
intent?: {
|
|
12198
|
+
order: {
|
|
12199
|
+
kind: "sell" | "buy";
|
|
12200
|
+
sellToken: string;
|
|
12201
|
+
buyToken: string;
|
|
12202
|
+
validTo: string | number;
|
|
12203
|
+
appData: string;
|
|
12204
|
+
appDataHash: string;
|
|
12205
|
+
feeAmount: string;
|
|
12206
|
+
partiallyFillable: boolean;
|
|
12207
|
+
receiver?: string | undefined;
|
|
12208
|
+
from?: string | undefined;
|
|
12209
|
+
sellAmount?: string | undefined;
|
|
12210
|
+
buyAmount?: string | undefined;
|
|
12211
|
+
};
|
|
12212
|
+
protocol: "cowswap";
|
|
12213
|
+
settlementContract?: string | undefined;
|
|
12214
|
+
relayer?: string | undefined;
|
|
12215
|
+
quoteId?: string | null | undefined;
|
|
12216
|
+
} | undefined;
|
|
11077
12217
|
};
|
|
11078
12218
|
estimatedProcessingTimeInSeconds: number;
|
|
11079
12219
|
trade: string | {
|
|
@@ -11250,6 +12390,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11250
12390
|
totalToAmountUsd?: string | undefined;
|
|
11251
12391
|
priceImpact?: string | undefined;
|
|
11252
12392
|
} | undefined;
|
|
12393
|
+
intent?: {
|
|
12394
|
+
order: {
|
|
12395
|
+
kind: "sell" | "buy";
|
|
12396
|
+
sellToken: string;
|
|
12397
|
+
buyToken: string;
|
|
12398
|
+
validTo: string | number;
|
|
12399
|
+
appData: string;
|
|
12400
|
+
appDataHash: string;
|
|
12401
|
+
feeAmount: string;
|
|
12402
|
+
partiallyFillable: boolean;
|
|
12403
|
+
receiver?: string | undefined;
|
|
12404
|
+
from?: string | undefined;
|
|
12405
|
+
sellAmount?: string | undefined;
|
|
12406
|
+
buyAmount?: string | undefined;
|
|
12407
|
+
};
|
|
12408
|
+
protocol: "cowswap";
|
|
12409
|
+
settlementContract?: string | undefined;
|
|
12410
|
+
relayer?: string | undefined;
|
|
12411
|
+
quoteId?: string | null | undefined;
|
|
12412
|
+
} | undefined;
|
|
11253
12413
|
};
|
|
11254
12414
|
estimatedProcessingTimeInSeconds: number;
|
|
11255
12415
|
trade: string | {
|
|
@@ -11426,6 +12586,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11426
12586
|
totalToAmountUsd?: string | undefined;
|
|
11427
12587
|
priceImpact?: string | undefined;
|
|
11428
12588
|
} | undefined;
|
|
12589
|
+
intent?: {
|
|
12590
|
+
order: {
|
|
12591
|
+
kind: "sell" | "buy";
|
|
12592
|
+
sellToken: string;
|
|
12593
|
+
buyToken: string;
|
|
12594
|
+
validTo: string | number;
|
|
12595
|
+
appData: string;
|
|
12596
|
+
appDataHash: string;
|
|
12597
|
+
feeAmount: string;
|
|
12598
|
+
partiallyFillable: boolean;
|
|
12599
|
+
receiver?: string | undefined;
|
|
12600
|
+
from?: string | undefined;
|
|
12601
|
+
sellAmount?: string | undefined;
|
|
12602
|
+
buyAmount?: string | undefined;
|
|
12603
|
+
};
|
|
12604
|
+
protocol: "cowswap";
|
|
12605
|
+
settlementContract?: string | undefined;
|
|
12606
|
+
relayer?: string | undefined;
|
|
12607
|
+
quoteId?: string | null | undefined;
|
|
12608
|
+
} | undefined;
|
|
11429
12609
|
};
|
|
11430
12610
|
estimatedProcessingTimeInSeconds: number;
|
|
11431
12611
|
trade: string | {
|
|
@@ -11602,6 +12782,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11602
12782
|
totalToAmountUsd?: string | undefined;
|
|
11603
12783
|
priceImpact?: string | undefined;
|
|
11604
12784
|
} | undefined;
|
|
12785
|
+
intent?: {
|
|
12786
|
+
order: {
|
|
12787
|
+
kind: "sell" | "buy";
|
|
12788
|
+
sellToken: string;
|
|
12789
|
+
buyToken: string;
|
|
12790
|
+
validTo: string | number;
|
|
12791
|
+
appData: string;
|
|
12792
|
+
appDataHash: string;
|
|
12793
|
+
feeAmount: string;
|
|
12794
|
+
partiallyFillable: boolean;
|
|
12795
|
+
receiver?: string | undefined;
|
|
12796
|
+
from?: string | undefined;
|
|
12797
|
+
sellAmount?: string | undefined;
|
|
12798
|
+
buyAmount?: string | undefined;
|
|
12799
|
+
};
|
|
12800
|
+
protocol: "cowswap";
|
|
12801
|
+
settlementContract?: string | undefined;
|
|
12802
|
+
relayer?: string | undefined;
|
|
12803
|
+
quoteId?: string | null | undefined;
|
|
12804
|
+
} | undefined;
|
|
11605
12805
|
};
|
|
11606
12806
|
estimatedProcessingTimeInSeconds: number;
|
|
11607
12807
|
trade: string | {
|
|
@@ -11773,6 +12973,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11773
12973
|
totalToAmountUsd?: string | undefined;
|
|
11774
12974
|
priceImpact?: string | undefined;
|
|
11775
12975
|
} | undefined;
|
|
12976
|
+
intent?: {
|
|
12977
|
+
order: {
|
|
12978
|
+
kind: "sell" | "buy";
|
|
12979
|
+
sellToken: string;
|
|
12980
|
+
buyToken: string;
|
|
12981
|
+
validTo: string | number;
|
|
12982
|
+
appData: string;
|
|
12983
|
+
appDataHash: string;
|
|
12984
|
+
feeAmount: string;
|
|
12985
|
+
partiallyFillable: boolean;
|
|
12986
|
+
receiver?: string | undefined;
|
|
12987
|
+
from?: string | undefined;
|
|
12988
|
+
sellAmount?: string | undefined;
|
|
12989
|
+
buyAmount?: string | undefined;
|
|
12990
|
+
};
|
|
12991
|
+
protocol: "cowswap";
|
|
12992
|
+
settlementContract?: string | undefined;
|
|
12993
|
+
relayer?: string | undefined;
|
|
12994
|
+
quoteId?: string | null | undefined;
|
|
12995
|
+
} | undefined;
|
|
11776
12996
|
};
|
|
11777
12997
|
estimatedProcessingTimeInSeconds: number;
|
|
11778
12998
|
trade: string | {
|
|
@@ -11945,6 +13165,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
11945
13165
|
totalToAmountUsd?: string | undefined;
|
|
11946
13166
|
priceImpact?: string | undefined;
|
|
11947
13167
|
} | undefined;
|
|
13168
|
+
intent?: {
|
|
13169
|
+
order: {
|
|
13170
|
+
kind: "sell" | "buy";
|
|
13171
|
+
sellToken: string;
|
|
13172
|
+
buyToken: string;
|
|
13173
|
+
validTo: string | number;
|
|
13174
|
+
appData: string;
|
|
13175
|
+
appDataHash: string;
|
|
13176
|
+
feeAmount: string;
|
|
13177
|
+
partiallyFillable: boolean;
|
|
13178
|
+
receiver?: string | undefined;
|
|
13179
|
+
from?: string | undefined;
|
|
13180
|
+
sellAmount?: string | undefined;
|
|
13181
|
+
buyAmount?: string | undefined;
|
|
13182
|
+
};
|
|
13183
|
+
protocol: "cowswap";
|
|
13184
|
+
settlementContract?: string | undefined;
|
|
13185
|
+
relayer?: string | undefined;
|
|
13186
|
+
quoteId?: string | null | undefined;
|
|
13187
|
+
} | undefined;
|
|
11948
13188
|
};
|
|
11949
13189
|
estimatedProcessingTimeInSeconds: number;
|
|
11950
13190
|
trade: string | {
|
|
@@ -12116,6 +13356,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12116
13356
|
totalToAmountUsd?: string | undefined;
|
|
12117
13357
|
priceImpact?: string | undefined;
|
|
12118
13358
|
} | undefined;
|
|
13359
|
+
intent?: {
|
|
13360
|
+
order: {
|
|
13361
|
+
kind: "sell" | "buy";
|
|
13362
|
+
sellToken: string;
|
|
13363
|
+
buyToken: string;
|
|
13364
|
+
validTo: string | number;
|
|
13365
|
+
appData: string;
|
|
13366
|
+
appDataHash: string;
|
|
13367
|
+
feeAmount: string;
|
|
13368
|
+
partiallyFillable: boolean;
|
|
13369
|
+
receiver?: string | undefined;
|
|
13370
|
+
from?: string | undefined;
|
|
13371
|
+
sellAmount?: string | undefined;
|
|
13372
|
+
buyAmount?: string | undefined;
|
|
13373
|
+
};
|
|
13374
|
+
protocol: "cowswap";
|
|
13375
|
+
settlementContract?: string | undefined;
|
|
13376
|
+
relayer?: string | undefined;
|
|
13377
|
+
quoteId?: string | null | undefined;
|
|
13378
|
+
} | undefined;
|
|
12119
13379
|
};
|
|
12120
13380
|
estimatedProcessingTimeInSeconds: number;
|
|
12121
13381
|
trade: string | {
|
|
@@ -12292,6 +13552,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12292
13552
|
totalToAmountUsd?: string | undefined;
|
|
12293
13553
|
priceImpact?: string | undefined;
|
|
12294
13554
|
} | undefined;
|
|
13555
|
+
intent?: {
|
|
13556
|
+
order: {
|
|
13557
|
+
kind: "sell" | "buy";
|
|
13558
|
+
sellToken: string;
|
|
13559
|
+
buyToken: string;
|
|
13560
|
+
validTo: string | number;
|
|
13561
|
+
appData: string;
|
|
13562
|
+
appDataHash: string;
|
|
13563
|
+
feeAmount: string;
|
|
13564
|
+
partiallyFillable: boolean;
|
|
13565
|
+
receiver?: string | undefined;
|
|
13566
|
+
from?: string | undefined;
|
|
13567
|
+
sellAmount?: string | undefined;
|
|
13568
|
+
buyAmount?: string | undefined;
|
|
13569
|
+
};
|
|
13570
|
+
protocol: "cowswap";
|
|
13571
|
+
settlementContract?: string | undefined;
|
|
13572
|
+
relayer?: string | undefined;
|
|
13573
|
+
quoteId?: string | null | undefined;
|
|
13574
|
+
} | undefined;
|
|
12295
13575
|
};
|
|
12296
13576
|
estimatedProcessingTimeInSeconds: number;
|
|
12297
13577
|
trade: string | {
|
|
@@ -12468,6 +13748,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12468
13748
|
totalToAmountUsd?: string | undefined;
|
|
12469
13749
|
priceImpact?: string | undefined;
|
|
12470
13750
|
} | undefined;
|
|
13751
|
+
intent?: {
|
|
13752
|
+
order: {
|
|
13753
|
+
kind: "sell" | "buy";
|
|
13754
|
+
sellToken: string;
|
|
13755
|
+
buyToken: string;
|
|
13756
|
+
validTo: string | number;
|
|
13757
|
+
appData: string;
|
|
13758
|
+
appDataHash: string;
|
|
13759
|
+
feeAmount: string;
|
|
13760
|
+
partiallyFillable: boolean;
|
|
13761
|
+
receiver?: string | undefined;
|
|
13762
|
+
from?: string | undefined;
|
|
13763
|
+
sellAmount?: string | undefined;
|
|
13764
|
+
buyAmount?: string | undefined;
|
|
13765
|
+
};
|
|
13766
|
+
protocol: "cowswap";
|
|
13767
|
+
settlementContract?: string | undefined;
|
|
13768
|
+
relayer?: string | undefined;
|
|
13769
|
+
quoteId?: string | null | undefined;
|
|
13770
|
+
} | undefined;
|
|
12471
13771
|
};
|
|
12472
13772
|
estimatedProcessingTimeInSeconds: number;
|
|
12473
13773
|
trade: string | {
|
|
@@ -12684,6 +13984,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12684
13984
|
totalToAmountUsd?: string | undefined;
|
|
12685
13985
|
priceImpact?: string | undefined;
|
|
12686
13986
|
} | undefined;
|
|
13987
|
+
intent?: {
|
|
13988
|
+
order: {
|
|
13989
|
+
kind: "sell" | "buy";
|
|
13990
|
+
sellToken: string;
|
|
13991
|
+
buyToken: string;
|
|
13992
|
+
validTo: string | number;
|
|
13993
|
+
appData: string;
|
|
13994
|
+
appDataHash: string;
|
|
13995
|
+
feeAmount: string;
|
|
13996
|
+
partiallyFillable: boolean;
|
|
13997
|
+
receiver?: string | undefined;
|
|
13998
|
+
from?: string | undefined;
|
|
13999
|
+
sellAmount?: string | undefined;
|
|
14000
|
+
buyAmount?: string | undefined;
|
|
14001
|
+
};
|
|
14002
|
+
protocol: "cowswap";
|
|
14003
|
+
settlementContract?: string | undefined;
|
|
14004
|
+
relayer?: string | undefined;
|
|
14005
|
+
quoteId?: string | null | undefined;
|
|
14006
|
+
} | undefined;
|
|
12687
14007
|
};
|
|
12688
14008
|
estimatedProcessingTimeInSeconds: number;
|
|
12689
14009
|
trade: {
|
|
@@ -12846,6 +14166,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
12846
14166
|
totalToAmountUsd?: string | undefined;
|
|
12847
14167
|
priceImpact?: string | undefined;
|
|
12848
14168
|
} | undefined;
|
|
14169
|
+
intent?: {
|
|
14170
|
+
order: {
|
|
14171
|
+
kind: "sell" | "buy";
|
|
14172
|
+
sellToken: string;
|
|
14173
|
+
buyToken: string;
|
|
14174
|
+
validTo: string | number;
|
|
14175
|
+
appData: string;
|
|
14176
|
+
appDataHash: string;
|
|
14177
|
+
feeAmount: string;
|
|
14178
|
+
partiallyFillable: boolean;
|
|
14179
|
+
receiver?: string | undefined;
|
|
14180
|
+
from?: string | undefined;
|
|
14181
|
+
sellAmount?: string | undefined;
|
|
14182
|
+
buyAmount?: string | undefined;
|
|
14183
|
+
};
|
|
14184
|
+
protocol: "cowswap";
|
|
14185
|
+
settlementContract?: string | undefined;
|
|
14186
|
+
relayer?: string | undefined;
|
|
14187
|
+
quoteId?: string | null | undefined;
|
|
14188
|
+
} | undefined;
|
|
12849
14189
|
};
|
|
12850
14190
|
estimatedProcessingTimeInSeconds: number;
|
|
12851
14191
|
trade: string | {
|
|
@@ -13058,6 +14398,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13058
14398
|
totalToAmountUsd?: string | undefined;
|
|
13059
14399
|
priceImpact?: string | undefined;
|
|
13060
14400
|
} | undefined;
|
|
14401
|
+
intent?: {
|
|
14402
|
+
order: {
|
|
14403
|
+
kind: "sell" | "buy";
|
|
14404
|
+
sellToken: string;
|
|
14405
|
+
buyToken: string;
|
|
14406
|
+
validTo: string | number;
|
|
14407
|
+
appData: string;
|
|
14408
|
+
appDataHash: string;
|
|
14409
|
+
feeAmount: string;
|
|
14410
|
+
partiallyFillable: boolean;
|
|
14411
|
+
receiver?: string | undefined;
|
|
14412
|
+
from?: string | undefined;
|
|
14413
|
+
sellAmount?: string | undefined;
|
|
14414
|
+
buyAmount?: string | undefined;
|
|
14415
|
+
};
|
|
14416
|
+
protocol: "cowswap";
|
|
14417
|
+
settlementContract?: string | undefined;
|
|
14418
|
+
relayer?: string | undefined;
|
|
14419
|
+
quoteId?: string | null | undefined;
|
|
14420
|
+
} | undefined;
|
|
13061
14421
|
};
|
|
13062
14422
|
estimatedProcessingTimeInSeconds: number;
|
|
13063
14423
|
trade: {
|
|
@@ -13220,6 +14580,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13220
14580
|
totalToAmountUsd?: string | undefined;
|
|
13221
14581
|
priceImpact?: string | undefined;
|
|
13222
14582
|
} | undefined;
|
|
14583
|
+
intent?: {
|
|
14584
|
+
order: {
|
|
14585
|
+
kind: "sell" | "buy";
|
|
14586
|
+
sellToken: string;
|
|
14587
|
+
buyToken: string;
|
|
14588
|
+
validTo: string | number;
|
|
14589
|
+
appData: string;
|
|
14590
|
+
appDataHash: string;
|
|
14591
|
+
feeAmount: string;
|
|
14592
|
+
partiallyFillable: boolean;
|
|
14593
|
+
receiver?: string | undefined;
|
|
14594
|
+
from?: string | undefined;
|
|
14595
|
+
sellAmount?: string | undefined;
|
|
14596
|
+
buyAmount?: string | undefined;
|
|
14597
|
+
};
|
|
14598
|
+
protocol: "cowswap";
|
|
14599
|
+
settlementContract?: string | undefined;
|
|
14600
|
+
relayer?: string | undefined;
|
|
14601
|
+
quoteId?: string | null | undefined;
|
|
14602
|
+
} | undefined;
|
|
13223
14603
|
};
|
|
13224
14604
|
estimatedProcessingTimeInSeconds: number;
|
|
13225
14605
|
trade: string | {
|
|
@@ -13396,6 +14776,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13396
14776
|
totalToAmountUsd?: string | undefined;
|
|
13397
14777
|
priceImpact?: string | undefined;
|
|
13398
14778
|
} | undefined;
|
|
14779
|
+
intent?: {
|
|
14780
|
+
order: {
|
|
14781
|
+
kind: "sell" | "buy";
|
|
14782
|
+
sellToken: string;
|
|
14783
|
+
buyToken: string;
|
|
14784
|
+
validTo: string | number;
|
|
14785
|
+
appData: string;
|
|
14786
|
+
appDataHash: string;
|
|
14787
|
+
feeAmount: string;
|
|
14788
|
+
partiallyFillable: boolean;
|
|
14789
|
+
receiver?: string | undefined;
|
|
14790
|
+
from?: string | undefined;
|
|
14791
|
+
sellAmount?: string | undefined;
|
|
14792
|
+
buyAmount?: string | undefined;
|
|
14793
|
+
};
|
|
14794
|
+
protocol: "cowswap";
|
|
14795
|
+
settlementContract?: string | undefined;
|
|
14796
|
+
relayer?: string | undefined;
|
|
14797
|
+
quoteId?: string | null | undefined;
|
|
14798
|
+
} | undefined;
|
|
13399
14799
|
};
|
|
13400
14800
|
estimatedProcessingTimeInSeconds: number;
|
|
13401
14801
|
trade: string | {
|
|
@@ -13612,6 +15012,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13612
15012
|
totalToAmountUsd?: string | undefined;
|
|
13613
15013
|
priceImpact?: string | undefined;
|
|
13614
15014
|
} | undefined;
|
|
15015
|
+
intent?: {
|
|
15016
|
+
order: {
|
|
15017
|
+
kind: "sell" | "buy";
|
|
15018
|
+
sellToken: string;
|
|
15019
|
+
buyToken: string;
|
|
15020
|
+
validTo: string | number;
|
|
15021
|
+
appData: string;
|
|
15022
|
+
appDataHash: string;
|
|
15023
|
+
feeAmount: string;
|
|
15024
|
+
partiallyFillable: boolean;
|
|
15025
|
+
receiver?: string | undefined;
|
|
15026
|
+
from?: string | undefined;
|
|
15027
|
+
sellAmount?: string | undefined;
|
|
15028
|
+
buyAmount?: string | undefined;
|
|
15029
|
+
};
|
|
15030
|
+
protocol: "cowswap";
|
|
15031
|
+
settlementContract?: string | undefined;
|
|
15032
|
+
relayer?: string | undefined;
|
|
15033
|
+
quoteId?: string | null | undefined;
|
|
15034
|
+
} | undefined;
|
|
13615
15035
|
};
|
|
13616
15036
|
estimatedProcessingTimeInSeconds: number;
|
|
13617
15037
|
trade: {
|
|
@@ -13779,6 +15199,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13779
15199
|
totalToAmountUsd?: string | undefined;
|
|
13780
15200
|
priceImpact?: string | undefined;
|
|
13781
15201
|
} | undefined;
|
|
15202
|
+
intent?: {
|
|
15203
|
+
order: {
|
|
15204
|
+
kind: "sell" | "buy";
|
|
15205
|
+
sellToken: string;
|
|
15206
|
+
buyToken: string;
|
|
15207
|
+
validTo: string | number;
|
|
15208
|
+
appData: string;
|
|
15209
|
+
appDataHash: string;
|
|
15210
|
+
feeAmount: string;
|
|
15211
|
+
partiallyFillable: boolean;
|
|
15212
|
+
receiver?: string | undefined;
|
|
15213
|
+
from?: string | undefined;
|
|
15214
|
+
sellAmount?: string | undefined;
|
|
15215
|
+
buyAmount?: string | undefined;
|
|
15216
|
+
};
|
|
15217
|
+
protocol: "cowswap";
|
|
15218
|
+
settlementContract?: string | undefined;
|
|
15219
|
+
relayer?: string | undefined;
|
|
15220
|
+
quoteId?: string | null | undefined;
|
|
15221
|
+
} | undefined;
|
|
13782
15222
|
};
|
|
13783
15223
|
estimatedProcessingTimeInSeconds: number;
|
|
13784
15224
|
trade: string | {
|
|
@@ -13994,6 +15434,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
13994
15434
|
totalToAmountUsd?: string | undefined;
|
|
13995
15435
|
priceImpact?: string | undefined;
|
|
13996
15436
|
} | undefined;
|
|
15437
|
+
intent?: {
|
|
15438
|
+
order: {
|
|
15439
|
+
kind: "sell" | "buy";
|
|
15440
|
+
sellToken: string;
|
|
15441
|
+
buyToken: string;
|
|
15442
|
+
validTo: string | number;
|
|
15443
|
+
appData: string;
|
|
15444
|
+
appDataHash: string;
|
|
15445
|
+
feeAmount: string;
|
|
15446
|
+
partiallyFillable: boolean;
|
|
15447
|
+
receiver?: string | undefined;
|
|
15448
|
+
from?: string | undefined;
|
|
15449
|
+
sellAmount?: string | undefined;
|
|
15450
|
+
buyAmount?: string | undefined;
|
|
15451
|
+
};
|
|
15452
|
+
protocol: "cowswap";
|
|
15453
|
+
settlementContract?: string | undefined;
|
|
15454
|
+
relayer?: string | undefined;
|
|
15455
|
+
quoteId?: string | null | undefined;
|
|
15456
|
+
} | undefined;
|
|
13997
15457
|
};
|
|
13998
15458
|
estimatedProcessingTimeInSeconds: number;
|
|
13999
15459
|
trade: {
|
|
@@ -14157,6 +15617,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14157
15617
|
totalToAmountUsd?: string | undefined;
|
|
14158
15618
|
priceImpact?: string | undefined;
|
|
14159
15619
|
} | undefined;
|
|
15620
|
+
intent?: {
|
|
15621
|
+
order: {
|
|
15622
|
+
kind: "sell" | "buy";
|
|
15623
|
+
sellToken: string;
|
|
15624
|
+
buyToken: string;
|
|
15625
|
+
validTo: string | number;
|
|
15626
|
+
appData: string;
|
|
15627
|
+
appDataHash: string;
|
|
15628
|
+
feeAmount: string;
|
|
15629
|
+
partiallyFillable: boolean;
|
|
15630
|
+
receiver?: string | undefined;
|
|
15631
|
+
from?: string | undefined;
|
|
15632
|
+
sellAmount?: string | undefined;
|
|
15633
|
+
buyAmount?: string | undefined;
|
|
15634
|
+
};
|
|
15635
|
+
protocol: "cowswap";
|
|
15636
|
+
settlementContract?: string | undefined;
|
|
15637
|
+
relayer?: string | undefined;
|
|
15638
|
+
quoteId?: string | null | undefined;
|
|
15639
|
+
} | undefined;
|
|
14160
15640
|
};
|
|
14161
15641
|
estimatedProcessingTimeInSeconds: number;
|
|
14162
15642
|
trade: string | {
|
|
@@ -14372,6 +15852,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14372
15852
|
totalToAmountUsd?: string | undefined;
|
|
14373
15853
|
priceImpact?: string | undefined;
|
|
14374
15854
|
} | undefined;
|
|
15855
|
+
intent?: {
|
|
15856
|
+
order: {
|
|
15857
|
+
kind: "sell" | "buy";
|
|
15858
|
+
sellToken: string;
|
|
15859
|
+
buyToken: string;
|
|
15860
|
+
validTo: string | number;
|
|
15861
|
+
appData: string;
|
|
15862
|
+
appDataHash: string;
|
|
15863
|
+
feeAmount: string;
|
|
15864
|
+
partiallyFillable: boolean;
|
|
15865
|
+
receiver?: string | undefined;
|
|
15866
|
+
from?: string | undefined;
|
|
15867
|
+
sellAmount?: string | undefined;
|
|
15868
|
+
buyAmount?: string | undefined;
|
|
15869
|
+
};
|
|
15870
|
+
protocol: "cowswap";
|
|
15871
|
+
settlementContract?: string | undefined;
|
|
15872
|
+
relayer?: string | undefined;
|
|
15873
|
+
quoteId?: string | null | undefined;
|
|
15874
|
+
} | undefined;
|
|
14375
15875
|
};
|
|
14376
15876
|
estimatedProcessingTimeInSeconds: number;
|
|
14377
15877
|
trade: {
|
|
@@ -14579,6 +16079,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14579
16079
|
totalToAmountUsd?: string | undefined;
|
|
14580
16080
|
priceImpact?: string | undefined;
|
|
14581
16081
|
} | undefined;
|
|
16082
|
+
intent?: {
|
|
16083
|
+
order: {
|
|
16084
|
+
kind: "sell" | "buy";
|
|
16085
|
+
sellToken: string;
|
|
16086
|
+
buyToken: string;
|
|
16087
|
+
validTo: string | number;
|
|
16088
|
+
appData: string;
|
|
16089
|
+
appDataHash: string;
|
|
16090
|
+
feeAmount: string;
|
|
16091
|
+
partiallyFillable: boolean;
|
|
16092
|
+
receiver?: string | undefined;
|
|
16093
|
+
from?: string | undefined;
|
|
16094
|
+
sellAmount?: string | undefined;
|
|
16095
|
+
buyAmount?: string | undefined;
|
|
16096
|
+
};
|
|
16097
|
+
protocol: "cowswap";
|
|
16098
|
+
settlementContract?: string | undefined;
|
|
16099
|
+
relayer?: string | undefined;
|
|
16100
|
+
quoteId?: string | null | undefined;
|
|
16101
|
+
} | undefined;
|
|
14582
16102
|
};
|
|
14583
16103
|
estimatedProcessingTimeInSeconds: number;
|
|
14584
16104
|
trade: {
|
|
@@ -14742,6 +16262,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
14742
16262
|
totalToAmountUsd?: string | undefined;
|
|
14743
16263
|
priceImpact?: string | undefined;
|
|
14744
16264
|
} | undefined;
|
|
16265
|
+
intent?: {
|
|
16266
|
+
order: {
|
|
16267
|
+
kind: "sell" | "buy";
|
|
16268
|
+
sellToken: string;
|
|
16269
|
+
buyToken: string;
|
|
16270
|
+
validTo: string | number;
|
|
16271
|
+
appData: string;
|
|
16272
|
+
appDataHash: string;
|
|
16273
|
+
feeAmount: string;
|
|
16274
|
+
partiallyFillable: boolean;
|
|
16275
|
+
receiver?: string | undefined;
|
|
16276
|
+
from?: string | undefined;
|
|
16277
|
+
sellAmount?: string | undefined;
|
|
16278
|
+
buyAmount?: string | undefined;
|
|
16279
|
+
};
|
|
16280
|
+
protocol: "cowswap";
|
|
16281
|
+
settlementContract?: string | undefined;
|
|
16282
|
+
relayer?: string | undefined;
|
|
16283
|
+
quoteId?: string | null | undefined;
|
|
16284
|
+
} | undefined;
|
|
14745
16285
|
};
|
|
14746
16286
|
estimatedProcessingTimeInSeconds: number;
|
|
14747
16287
|
trade: string | {
|
|
@@ -15049,6 +16589,26 @@ export declare const selectBridgeQuotes: ((state: BridgeControllerState & {
|
|
|
15049
16589
|
totalToAmountUsd?: string | undefined;
|
|
15050
16590
|
priceImpact?: string | undefined;
|
|
15051
16591
|
} | undefined;
|
|
16592
|
+
intent?: {
|
|
16593
|
+
order: {
|
|
16594
|
+
kind: "sell" | "buy";
|
|
16595
|
+
sellToken: string;
|
|
16596
|
+
buyToken: string;
|
|
16597
|
+
validTo: string | number;
|
|
16598
|
+
appData: string;
|
|
16599
|
+
appDataHash: string;
|
|
16600
|
+
feeAmount: string;
|
|
16601
|
+
partiallyFillable: boolean;
|
|
16602
|
+
receiver?: string | undefined;
|
|
16603
|
+
from?: string | undefined;
|
|
16604
|
+
sellAmount?: string | undefined;
|
|
16605
|
+
buyAmount?: string | undefined;
|
|
16606
|
+
};
|
|
16607
|
+
protocol: "cowswap";
|
|
16608
|
+
settlementContract?: string | undefined;
|
|
16609
|
+
relayer?: string | undefined;
|
|
16610
|
+
quoteId?: string | null | undefined;
|
|
16611
|
+
} | undefined;
|
|
15052
16612
|
};
|
|
15053
16613
|
estimatedProcessingTimeInSeconds: number;
|
|
15054
16614
|
trade: string | {
|