@metamask-previews/bridge-controller 64.3.0-preview-cb897e9 → 64.4.0-preview-8a4f4ea3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/dist/selectors.d.cts +7488 -0
- package/dist/selectors.d.cts.map +1 -1
- package/dist/selectors.d.mts +7488 -0
- package/dist/selectors.d.mts.map +1 -1
- package/dist/utils/validators.cjs +12 -0
- package/dist/utils/validators.cjs.map +1 -1
- package/dist/utils/validators.d.cts +1410 -0
- package/dist/utils/validators.d.cts.map +1 -1
- package/dist/utils/validators.d.mts +1410 -0
- package/dist/utils/validators.d.mts.map +1 -1
- package/dist/utils/validators.mjs +12 -0
- package/dist/utils/validators.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -21,6 +21,18 @@ export declare const BridgeAssetSchema: import("@metamask/superstruct").Struct<{
|
|
|
21
21
|
decimals: number;
|
|
22
22
|
icon?: string | null | undefined;
|
|
23
23
|
iconUrl?: string | null | undefined;
|
|
24
|
+
rwaData?: {
|
|
25
|
+
instrumentType: string;
|
|
26
|
+
ticker: string;
|
|
27
|
+
market: {
|
|
28
|
+
nextOpen: string;
|
|
29
|
+
nextClose: string;
|
|
30
|
+
};
|
|
31
|
+
nextPause: {
|
|
32
|
+
start: string;
|
|
33
|
+
end: string;
|
|
34
|
+
};
|
|
35
|
+
} | undefined;
|
|
24
36
|
}, {
|
|
25
37
|
/**
|
|
26
38
|
* The chainId of the token
|
|
@@ -51,6 +63,35 @@ export declare const BridgeAssetSchema: import("@metamask/superstruct").Struct<{
|
|
|
51
63
|
* URL for token icon
|
|
52
64
|
*/
|
|
53
65
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
66
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
67
|
+
instrumentType: string;
|
|
68
|
+
ticker: string;
|
|
69
|
+
market: {
|
|
70
|
+
nextOpen: string;
|
|
71
|
+
nextClose: string;
|
|
72
|
+
};
|
|
73
|
+
nextPause: {
|
|
74
|
+
start: string;
|
|
75
|
+
end: string;
|
|
76
|
+
};
|
|
77
|
+
} | undefined, {
|
|
78
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
79
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
80
|
+
market: import("@metamask/superstruct").Struct<{
|
|
81
|
+
nextOpen: string;
|
|
82
|
+
nextClose: string;
|
|
83
|
+
}, {
|
|
84
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
85
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
86
|
+
}>;
|
|
87
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
88
|
+
start: string;
|
|
89
|
+
end: string;
|
|
90
|
+
}, {
|
|
91
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
92
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
93
|
+
}>;
|
|
94
|
+
}>;
|
|
54
95
|
}>;
|
|
55
96
|
export declare const ChainConfigurationSchema: import("@metamask/superstruct").Struct<{
|
|
56
97
|
isActiveSrc: boolean;
|
|
@@ -237,6 +278,18 @@ export declare const validateSwapsTokenObject: (data: unknown) => data is {
|
|
|
237
278
|
decimals: number;
|
|
238
279
|
icon?: string | null | undefined;
|
|
239
280
|
iconUrl?: string | null | undefined;
|
|
281
|
+
rwaData?: {
|
|
282
|
+
instrumentType: string;
|
|
283
|
+
ticker: string;
|
|
284
|
+
market: {
|
|
285
|
+
nextOpen: string;
|
|
286
|
+
nextClose: string;
|
|
287
|
+
};
|
|
288
|
+
nextPause: {
|
|
289
|
+
start: string;
|
|
290
|
+
end: string;
|
|
291
|
+
};
|
|
292
|
+
} | undefined;
|
|
240
293
|
};
|
|
241
294
|
export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
|
|
242
295
|
amount: string;
|
|
@@ -249,6 +302,18 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
|
|
|
249
302
|
decimals: number;
|
|
250
303
|
icon?: string | null | undefined;
|
|
251
304
|
iconUrl?: string | null | undefined;
|
|
305
|
+
rwaData?: {
|
|
306
|
+
instrumentType: string;
|
|
307
|
+
ticker: string;
|
|
308
|
+
market: {
|
|
309
|
+
nextOpen: string;
|
|
310
|
+
nextClose: string;
|
|
311
|
+
};
|
|
312
|
+
nextPause: {
|
|
313
|
+
start: string;
|
|
314
|
+
end: string;
|
|
315
|
+
};
|
|
316
|
+
} | undefined;
|
|
252
317
|
};
|
|
253
318
|
}, {
|
|
254
319
|
amount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -261,6 +326,18 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
|
|
|
261
326
|
decimals: number;
|
|
262
327
|
icon?: string | null | undefined;
|
|
263
328
|
iconUrl?: string | null | undefined;
|
|
329
|
+
rwaData?: {
|
|
330
|
+
instrumentType: string;
|
|
331
|
+
ticker: string;
|
|
332
|
+
market: {
|
|
333
|
+
nextOpen: string;
|
|
334
|
+
nextClose: string;
|
|
335
|
+
};
|
|
336
|
+
nextPause: {
|
|
337
|
+
start: string;
|
|
338
|
+
end: string;
|
|
339
|
+
};
|
|
340
|
+
} | undefined;
|
|
264
341
|
}, {
|
|
265
342
|
/**
|
|
266
343
|
* The chainId of the token
|
|
@@ -291,6 +368,35 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
|
|
|
291
368
|
* URL for token icon
|
|
292
369
|
*/
|
|
293
370
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
371
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
372
|
+
instrumentType: string;
|
|
373
|
+
ticker: string;
|
|
374
|
+
market: {
|
|
375
|
+
nextOpen: string;
|
|
376
|
+
nextClose: string;
|
|
377
|
+
};
|
|
378
|
+
nextPause: {
|
|
379
|
+
start: string;
|
|
380
|
+
end: string;
|
|
381
|
+
};
|
|
382
|
+
} | undefined, {
|
|
383
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
384
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
385
|
+
market: import("@metamask/superstruct").Struct<{
|
|
386
|
+
nextOpen: string;
|
|
387
|
+
nextClose: string;
|
|
388
|
+
}, {
|
|
389
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
390
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
391
|
+
}>;
|
|
392
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
393
|
+
start: string;
|
|
394
|
+
end: string;
|
|
395
|
+
}, {
|
|
396
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
397
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
398
|
+
}>;
|
|
399
|
+
}>;
|
|
294
400
|
}>;
|
|
295
401
|
}>;
|
|
296
402
|
export declare const ProtocolSchema: import("@metamask/superstruct").Struct<{
|
|
@@ -314,6 +420,18 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
314
420
|
decimals: number;
|
|
315
421
|
icon?: string | null | undefined;
|
|
316
422
|
iconUrl?: string | null | undefined;
|
|
423
|
+
rwaData?: {
|
|
424
|
+
instrumentType: string;
|
|
425
|
+
ticker: string;
|
|
426
|
+
market: {
|
|
427
|
+
nextOpen: string;
|
|
428
|
+
nextClose: string;
|
|
429
|
+
};
|
|
430
|
+
nextPause: {
|
|
431
|
+
start: string;
|
|
432
|
+
end: string;
|
|
433
|
+
};
|
|
434
|
+
} | undefined;
|
|
317
435
|
};
|
|
318
436
|
destAsset: {
|
|
319
437
|
symbol: string;
|
|
@@ -324,6 +442,18 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
324
442
|
decimals: number;
|
|
325
443
|
icon?: string | null | undefined;
|
|
326
444
|
iconUrl?: string | null | undefined;
|
|
445
|
+
rwaData?: {
|
|
446
|
+
instrumentType: string;
|
|
447
|
+
ticker: string;
|
|
448
|
+
market: {
|
|
449
|
+
nextOpen: string;
|
|
450
|
+
nextClose: string;
|
|
451
|
+
};
|
|
452
|
+
nextPause: {
|
|
453
|
+
start: string;
|
|
454
|
+
end: string;
|
|
455
|
+
};
|
|
456
|
+
} | undefined;
|
|
327
457
|
};
|
|
328
458
|
srcAmount: string;
|
|
329
459
|
destAmount: string;
|
|
@@ -350,6 +480,18 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
350
480
|
decimals: number;
|
|
351
481
|
icon?: string | null | undefined;
|
|
352
482
|
iconUrl?: string | null | undefined;
|
|
483
|
+
rwaData?: {
|
|
484
|
+
instrumentType: string;
|
|
485
|
+
ticker: string;
|
|
486
|
+
market: {
|
|
487
|
+
nextOpen: string;
|
|
488
|
+
nextClose: string;
|
|
489
|
+
};
|
|
490
|
+
nextPause: {
|
|
491
|
+
start: string;
|
|
492
|
+
end: string;
|
|
493
|
+
};
|
|
494
|
+
} | undefined;
|
|
353
495
|
}, {
|
|
354
496
|
/**
|
|
355
497
|
* The chainId of the token
|
|
@@ -380,6 +522,35 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
380
522
|
* URL for token icon
|
|
381
523
|
*/
|
|
382
524
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
525
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
526
|
+
instrumentType: string;
|
|
527
|
+
ticker: string;
|
|
528
|
+
market: {
|
|
529
|
+
nextOpen: string;
|
|
530
|
+
nextClose: string;
|
|
531
|
+
};
|
|
532
|
+
nextPause: {
|
|
533
|
+
start: string;
|
|
534
|
+
end: string;
|
|
535
|
+
};
|
|
536
|
+
} | undefined, {
|
|
537
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
538
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
539
|
+
market: import("@metamask/superstruct").Struct<{
|
|
540
|
+
nextOpen: string;
|
|
541
|
+
nextClose: string;
|
|
542
|
+
}, {
|
|
543
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
544
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
545
|
+
}>;
|
|
546
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
547
|
+
start: string;
|
|
548
|
+
end: string;
|
|
549
|
+
}, {
|
|
550
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
551
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
552
|
+
}>;
|
|
553
|
+
}>;
|
|
383
554
|
}>;
|
|
384
555
|
destAsset: import("@metamask/superstruct").Struct<{
|
|
385
556
|
symbol: string;
|
|
@@ -390,6 +561,18 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
390
561
|
decimals: number;
|
|
391
562
|
icon?: string | null | undefined;
|
|
392
563
|
iconUrl?: string | null | undefined;
|
|
564
|
+
rwaData?: {
|
|
565
|
+
instrumentType: string;
|
|
566
|
+
ticker: string;
|
|
567
|
+
market: {
|
|
568
|
+
nextOpen: string;
|
|
569
|
+
nextClose: string;
|
|
570
|
+
};
|
|
571
|
+
nextPause: {
|
|
572
|
+
start: string;
|
|
573
|
+
end: string;
|
|
574
|
+
};
|
|
575
|
+
} | undefined;
|
|
393
576
|
}, {
|
|
394
577
|
/**
|
|
395
578
|
* The chainId of the token
|
|
@@ -420,6 +603,35 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
|
|
|
420
603
|
* URL for token icon
|
|
421
604
|
*/
|
|
422
605
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
606
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
607
|
+
instrumentType: string;
|
|
608
|
+
ticker: string;
|
|
609
|
+
market: {
|
|
610
|
+
nextOpen: string;
|
|
611
|
+
nextClose: string;
|
|
612
|
+
};
|
|
613
|
+
nextPause: {
|
|
614
|
+
start: string;
|
|
615
|
+
end: string;
|
|
616
|
+
};
|
|
617
|
+
} | undefined, {
|
|
618
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
619
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
620
|
+
market: import("@metamask/superstruct").Struct<{
|
|
621
|
+
nextOpen: string;
|
|
622
|
+
nextClose: string;
|
|
623
|
+
}, {
|
|
624
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
625
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
626
|
+
}>;
|
|
627
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
628
|
+
start: string;
|
|
629
|
+
end: string;
|
|
630
|
+
}, {
|
|
631
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
632
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
633
|
+
}>;
|
|
634
|
+
}>;
|
|
423
635
|
}>;
|
|
424
636
|
srcAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
425
637
|
destAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -650,6 +862,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
650
862
|
decimals: number;
|
|
651
863
|
icon?: string | null | undefined;
|
|
652
864
|
iconUrl?: string | null | undefined;
|
|
865
|
+
rwaData?: {
|
|
866
|
+
instrumentType: string;
|
|
867
|
+
ticker: string;
|
|
868
|
+
market: {
|
|
869
|
+
nextOpen: string;
|
|
870
|
+
nextClose: string;
|
|
871
|
+
};
|
|
872
|
+
nextPause: {
|
|
873
|
+
start: string;
|
|
874
|
+
end: string;
|
|
875
|
+
};
|
|
876
|
+
} | undefined;
|
|
653
877
|
};
|
|
654
878
|
destAsset: {
|
|
655
879
|
symbol: string;
|
|
@@ -660,6 +884,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
660
884
|
decimals: number;
|
|
661
885
|
icon?: string | null | undefined;
|
|
662
886
|
iconUrl?: string | null | undefined;
|
|
887
|
+
rwaData?: {
|
|
888
|
+
instrumentType: string;
|
|
889
|
+
ticker: string;
|
|
890
|
+
market: {
|
|
891
|
+
nextOpen: string;
|
|
892
|
+
nextClose: string;
|
|
893
|
+
};
|
|
894
|
+
nextPause: {
|
|
895
|
+
start: string;
|
|
896
|
+
end: string;
|
|
897
|
+
};
|
|
898
|
+
} | undefined;
|
|
663
899
|
};
|
|
664
900
|
requestId: string;
|
|
665
901
|
srcTokenAmount: string;
|
|
@@ -677,6 +913,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
677
913
|
decimals: number;
|
|
678
914
|
icon?: string | null | undefined;
|
|
679
915
|
iconUrl?: string | null | undefined;
|
|
916
|
+
rwaData?: {
|
|
917
|
+
instrumentType: string;
|
|
918
|
+
ticker: string;
|
|
919
|
+
market: {
|
|
920
|
+
nextOpen: string;
|
|
921
|
+
nextClose: string;
|
|
922
|
+
};
|
|
923
|
+
nextPause: {
|
|
924
|
+
start: string;
|
|
925
|
+
end: string;
|
|
926
|
+
};
|
|
927
|
+
} | undefined;
|
|
680
928
|
};
|
|
681
929
|
};
|
|
682
930
|
txFee?: ({
|
|
@@ -690,6 +938,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
690
938
|
decimals: number;
|
|
691
939
|
icon?: string | null | undefined;
|
|
692
940
|
iconUrl?: string | null | undefined;
|
|
941
|
+
rwaData?: {
|
|
942
|
+
instrumentType: string;
|
|
943
|
+
ticker: string;
|
|
944
|
+
market: {
|
|
945
|
+
nextOpen: string;
|
|
946
|
+
nextClose: string;
|
|
947
|
+
};
|
|
948
|
+
nextPause: {
|
|
949
|
+
start: string;
|
|
950
|
+
end: string;
|
|
951
|
+
};
|
|
952
|
+
} | undefined;
|
|
693
953
|
};
|
|
694
954
|
} & {
|
|
695
955
|
maxFeePerGas: string;
|
|
@@ -710,6 +970,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
710
970
|
decimals: number;
|
|
711
971
|
icon?: string | null | undefined;
|
|
712
972
|
iconUrl?: string | null | undefined;
|
|
973
|
+
rwaData?: {
|
|
974
|
+
instrumentType: string;
|
|
975
|
+
ticker: string;
|
|
976
|
+
market: {
|
|
977
|
+
nextOpen: string;
|
|
978
|
+
nextClose: string;
|
|
979
|
+
};
|
|
980
|
+
nextPause: {
|
|
981
|
+
start: string;
|
|
982
|
+
end: string;
|
|
983
|
+
};
|
|
984
|
+
} | undefined;
|
|
713
985
|
};
|
|
714
986
|
destAsset: {
|
|
715
987
|
symbol: string;
|
|
@@ -720,6 +992,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
720
992
|
decimals: number;
|
|
721
993
|
icon?: string | null | undefined;
|
|
722
994
|
iconUrl?: string | null | undefined;
|
|
995
|
+
rwaData?: {
|
|
996
|
+
instrumentType: string;
|
|
997
|
+
ticker: string;
|
|
998
|
+
market: {
|
|
999
|
+
nextOpen: string;
|
|
1000
|
+
nextClose: string;
|
|
1001
|
+
};
|
|
1002
|
+
nextPause: {
|
|
1003
|
+
start: string;
|
|
1004
|
+
end: string;
|
|
1005
|
+
};
|
|
1006
|
+
} | undefined;
|
|
723
1007
|
};
|
|
724
1008
|
srcAmount: string;
|
|
725
1009
|
destAmount: string;
|
|
@@ -742,6 +1026,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
742
1026
|
decimals: number;
|
|
743
1027
|
icon?: string | null | undefined;
|
|
744
1028
|
iconUrl?: string | null | undefined;
|
|
1029
|
+
rwaData?: {
|
|
1030
|
+
instrumentType: string;
|
|
1031
|
+
ticker: string;
|
|
1032
|
+
market: {
|
|
1033
|
+
nextOpen: string;
|
|
1034
|
+
nextClose: string;
|
|
1035
|
+
};
|
|
1036
|
+
nextPause: {
|
|
1037
|
+
start: string;
|
|
1038
|
+
end: string;
|
|
1039
|
+
};
|
|
1040
|
+
} | undefined;
|
|
745
1041
|
};
|
|
746
1042
|
destAsset: {
|
|
747
1043
|
symbol: string;
|
|
@@ -752,6 +1048,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
752
1048
|
decimals: number;
|
|
753
1049
|
icon?: string | null | undefined;
|
|
754
1050
|
iconUrl?: string | null | undefined;
|
|
1051
|
+
rwaData?: {
|
|
1052
|
+
instrumentType: string;
|
|
1053
|
+
ticker: string;
|
|
1054
|
+
market: {
|
|
1055
|
+
nextOpen: string;
|
|
1056
|
+
nextClose: string;
|
|
1057
|
+
};
|
|
1058
|
+
nextPause: {
|
|
1059
|
+
start: string;
|
|
1060
|
+
end: string;
|
|
1061
|
+
};
|
|
1062
|
+
} | undefined;
|
|
755
1063
|
};
|
|
756
1064
|
srcAmount: string;
|
|
757
1065
|
destAmount: string;
|
|
@@ -802,6 +1110,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
802
1110
|
decimals: number;
|
|
803
1111
|
icon?: string | null | undefined;
|
|
804
1112
|
iconUrl?: string | null | undefined;
|
|
1113
|
+
rwaData?: {
|
|
1114
|
+
instrumentType: string;
|
|
1115
|
+
ticker: string;
|
|
1116
|
+
market: {
|
|
1117
|
+
nextOpen: string;
|
|
1118
|
+
nextClose: string;
|
|
1119
|
+
};
|
|
1120
|
+
nextPause: {
|
|
1121
|
+
start: string;
|
|
1122
|
+
end: string;
|
|
1123
|
+
};
|
|
1124
|
+
} | undefined;
|
|
805
1125
|
}, {
|
|
806
1126
|
/**
|
|
807
1127
|
* The chainId of the token
|
|
@@ -832,6 +1152,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
832
1152
|
* URL for token icon
|
|
833
1153
|
*/
|
|
834
1154
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1155
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1156
|
+
instrumentType: string;
|
|
1157
|
+
ticker: string;
|
|
1158
|
+
market: {
|
|
1159
|
+
nextOpen: string;
|
|
1160
|
+
nextClose: string;
|
|
1161
|
+
};
|
|
1162
|
+
nextPause: {
|
|
1163
|
+
start: string;
|
|
1164
|
+
end: string;
|
|
1165
|
+
};
|
|
1166
|
+
} | undefined, {
|
|
1167
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1168
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1169
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1170
|
+
nextOpen: string;
|
|
1171
|
+
nextClose: string;
|
|
1172
|
+
}, {
|
|
1173
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1174
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1175
|
+
}>;
|
|
1176
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1177
|
+
start: string;
|
|
1178
|
+
end: string;
|
|
1179
|
+
}, {
|
|
1180
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1181
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1182
|
+
}>;
|
|
1183
|
+
}>;
|
|
835
1184
|
}>;
|
|
836
1185
|
/**
|
|
837
1186
|
* The amount sent, in atomic amount: amount sent - fees
|
|
@@ -848,6 +1197,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
848
1197
|
decimals: number;
|
|
849
1198
|
icon?: string | null | undefined;
|
|
850
1199
|
iconUrl?: string | null | undefined;
|
|
1200
|
+
rwaData?: {
|
|
1201
|
+
instrumentType: string;
|
|
1202
|
+
ticker: string;
|
|
1203
|
+
market: {
|
|
1204
|
+
nextOpen: string;
|
|
1205
|
+
nextClose: string;
|
|
1206
|
+
};
|
|
1207
|
+
nextPause: {
|
|
1208
|
+
start: string;
|
|
1209
|
+
end: string;
|
|
1210
|
+
};
|
|
1211
|
+
} | undefined;
|
|
851
1212
|
}, {
|
|
852
1213
|
/**
|
|
853
1214
|
* The chainId of the token
|
|
@@ -878,6 +1239,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
878
1239
|
* URL for token icon
|
|
879
1240
|
*/
|
|
880
1241
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1242
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1243
|
+
instrumentType: string;
|
|
1244
|
+
ticker: string;
|
|
1245
|
+
market: {
|
|
1246
|
+
nextOpen: string;
|
|
1247
|
+
nextClose: string;
|
|
1248
|
+
};
|
|
1249
|
+
nextPause: {
|
|
1250
|
+
start: string;
|
|
1251
|
+
end: string;
|
|
1252
|
+
};
|
|
1253
|
+
} | undefined, {
|
|
1254
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1255
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1256
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1257
|
+
nextOpen: string;
|
|
1258
|
+
nextClose: string;
|
|
1259
|
+
}, {
|
|
1260
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1261
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1262
|
+
}>;
|
|
1263
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1264
|
+
start: string;
|
|
1265
|
+
end: string;
|
|
1266
|
+
}, {
|
|
1267
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1268
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1269
|
+
}>;
|
|
1270
|
+
}>;
|
|
881
1271
|
}>;
|
|
882
1272
|
/**
|
|
883
1273
|
* The amount received, in atomic amount
|
|
@@ -899,6 +1289,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
899
1289
|
decimals: number;
|
|
900
1290
|
icon?: string | null | undefined;
|
|
901
1291
|
iconUrl?: string | null | undefined;
|
|
1292
|
+
rwaData?: {
|
|
1293
|
+
instrumentType: string;
|
|
1294
|
+
ticker: string;
|
|
1295
|
+
market: {
|
|
1296
|
+
nextOpen: string;
|
|
1297
|
+
nextClose: string;
|
|
1298
|
+
};
|
|
1299
|
+
nextPause: {
|
|
1300
|
+
start: string;
|
|
1301
|
+
end: string;
|
|
1302
|
+
};
|
|
1303
|
+
} | undefined;
|
|
902
1304
|
};
|
|
903
1305
|
};
|
|
904
1306
|
txFee?: ({
|
|
@@ -912,6 +1314,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
912
1314
|
decimals: number;
|
|
913
1315
|
icon?: string | null | undefined;
|
|
914
1316
|
iconUrl?: string | null | undefined;
|
|
1317
|
+
rwaData?: {
|
|
1318
|
+
instrumentType: string;
|
|
1319
|
+
ticker: string;
|
|
1320
|
+
market: {
|
|
1321
|
+
nextOpen: string;
|
|
1322
|
+
nextClose: string;
|
|
1323
|
+
};
|
|
1324
|
+
nextPause: {
|
|
1325
|
+
start: string;
|
|
1326
|
+
end: string;
|
|
1327
|
+
};
|
|
1328
|
+
} | undefined;
|
|
915
1329
|
};
|
|
916
1330
|
} & {
|
|
917
1331
|
maxFeePerGas: string;
|
|
@@ -929,6 +1343,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
929
1343
|
decimals: number;
|
|
930
1344
|
icon?: string | null | undefined;
|
|
931
1345
|
iconUrl?: string | null | undefined;
|
|
1346
|
+
rwaData?: {
|
|
1347
|
+
instrumentType: string;
|
|
1348
|
+
ticker: string;
|
|
1349
|
+
market: {
|
|
1350
|
+
nextOpen: string;
|
|
1351
|
+
nextClose: string;
|
|
1352
|
+
};
|
|
1353
|
+
nextPause: {
|
|
1354
|
+
start: string;
|
|
1355
|
+
end: string;
|
|
1356
|
+
};
|
|
1357
|
+
} | undefined;
|
|
932
1358
|
};
|
|
933
1359
|
}, {
|
|
934
1360
|
amount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -941,6 +1367,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
941
1367
|
decimals: number;
|
|
942
1368
|
icon?: string | null | undefined;
|
|
943
1369
|
iconUrl?: string | null | undefined;
|
|
1370
|
+
rwaData?: {
|
|
1371
|
+
instrumentType: string;
|
|
1372
|
+
ticker: string;
|
|
1373
|
+
market: {
|
|
1374
|
+
nextOpen: string;
|
|
1375
|
+
nextClose: string;
|
|
1376
|
+
};
|
|
1377
|
+
nextPause: {
|
|
1378
|
+
start: string;
|
|
1379
|
+
end: string;
|
|
1380
|
+
};
|
|
1381
|
+
} | undefined;
|
|
944
1382
|
}, {
|
|
945
1383
|
/**
|
|
946
1384
|
* The chainId of the token
|
|
@@ -971,6 +1409,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
971
1409
|
* URL for token icon
|
|
972
1410
|
*/
|
|
973
1411
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1412
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1413
|
+
instrumentType: string;
|
|
1414
|
+
ticker: string;
|
|
1415
|
+
market: {
|
|
1416
|
+
nextOpen: string;
|
|
1417
|
+
nextClose: string;
|
|
1418
|
+
};
|
|
1419
|
+
nextPause: {
|
|
1420
|
+
start: string;
|
|
1421
|
+
end: string;
|
|
1422
|
+
};
|
|
1423
|
+
} | undefined, {
|
|
1424
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1425
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1426
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1427
|
+
nextOpen: string;
|
|
1428
|
+
nextClose: string;
|
|
1429
|
+
}, {
|
|
1430
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1431
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1432
|
+
}>;
|
|
1433
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1434
|
+
start: string;
|
|
1435
|
+
end: string;
|
|
1436
|
+
}, {
|
|
1437
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1438
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1439
|
+
}>;
|
|
1440
|
+
}>;
|
|
974
1441
|
}>;
|
|
975
1442
|
}>;
|
|
976
1443
|
/**
|
|
@@ -988,6 +1455,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
988
1455
|
decimals: number;
|
|
989
1456
|
icon?: string | null | undefined;
|
|
990
1457
|
iconUrl?: string | null | undefined;
|
|
1458
|
+
rwaData?: {
|
|
1459
|
+
instrumentType: string;
|
|
1460
|
+
ticker: string;
|
|
1461
|
+
market: {
|
|
1462
|
+
nextOpen: string;
|
|
1463
|
+
nextClose: string;
|
|
1464
|
+
};
|
|
1465
|
+
nextPause: {
|
|
1466
|
+
start: string;
|
|
1467
|
+
end: string;
|
|
1468
|
+
};
|
|
1469
|
+
} | undefined;
|
|
991
1470
|
};
|
|
992
1471
|
} & {
|
|
993
1472
|
maxFeePerGas: string;
|
|
@@ -1013,6 +1492,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1013
1492
|
decimals: number;
|
|
1014
1493
|
icon?: string | null | undefined;
|
|
1015
1494
|
iconUrl?: string | null | undefined;
|
|
1495
|
+
rwaData?: {
|
|
1496
|
+
instrumentType: string;
|
|
1497
|
+
ticker: string;
|
|
1498
|
+
market: {
|
|
1499
|
+
nextOpen: string;
|
|
1500
|
+
nextClose: string;
|
|
1501
|
+
};
|
|
1502
|
+
nextPause: {
|
|
1503
|
+
start: string;
|
|
1504
|
+
end: string;
|
|
1505
|
+
};
|
|
1506
|
+
} | undefined;
|
|
1016
1507
|
};
|
|
1017
1508
|
destAsset: {
|
|
1018
1509
|
symbol: string;
|
|
@@ -1023,6 +1514,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1023
1514
|
decimals: number;
|
|
1024
1515
|
icon?: string | null | undefined;
|
|
1025
1516
|
iconUrl?: string | null | undefined;
|
|
1517
|
+
rwaData?: {
|
|
1518
|
+
instrumentType: string;
|
|
1519
|
+
ticker: string;
|
|
1520
|
+
market: {
|
|
1521
|
+
nextOpen: string;
|
|
1522
|
+
nextClose: string;
|
|
1523
|
+
};
|
|
1524
|
+
nextPause: {
|
|
1525
|
+
start: string;
|
|
1526
|
+
end: string;
|
|
1527
|
+
};
|
|
1528
|
+
} | undefined;
|
|
1026
1529
|
};
|
|
1027
1530
|
srcAmount: string;
|
|
1028
1531
|
destAmount: string;
|
|
@@ -1044,6 +1547,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1044
1547
|
decimals: number;
|
|
1045
1548
|
icon?: string | null | undefined;
|
|
1046
1549
|
iconUrl?: string | null | undefined;
|
|
1550
|
+
rwaData?: {
|
|
1551
|
+
instrumentType: string;
|
|
1552
|
+
ticker: string;
|
|
1553
|
+
market: {
|
|
1554
|
+
nextOpen: string;
|
|
1555
|
+
nextClose: string;
|
|
1556
|
+
};
|
|
1557
|
+
nextPause: {
|
|
1558
|
+
start: string;
|
|
1559
|
+
end: string;
|
|
1560
|
+
};
|
|
1561
|
+
} | undefined;
|
|
1047
1562
|
};
|
|
1048
1563
|
destAsset: {
|
|
1049
1564
|
symbol: string;
|
|
@@ -1054,6 +1569,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1054
1569
|
decimals: number;
|
|
1055
1570
|
icon?: string | null | undefined;
|
|
1056
1571
|
iconUrl?: string | null | undefined;
|
|
1572
|
+
rwaData?: {
|
|
1573
|
+
instrumentType: string;
|
|
1574
|
+
ticker: string;
|
|
1575
|
+
market: {
|
|
1576
|
+
nextOpen: string;
|
|
1577
|
+
nextClose: string;
|
|
1578
|
+
};
|
|
1579
|
+
nextPause: {
|
|
1580
|
+
start: string;
|
|
1581
|
+
end: string;
|
|
1582
|
+
};
|
|
1583
|
+
} | undefined;
|
|
1057
1584
|
};
|
|
1058
1585
|
srcAmount: string;
|
|
1059
1586
|
destAmount: string;
|
|
@@ -1080,6 +1607,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1080
1607
|
decimals: number;
|
|
1081
1608
|
icon?: string | null | undefined;
|
|
1082
1609
|
iconUrl?: string | null | undefined;
|
|
1610
|
+
rwaData?: {
|
|
1611
|
+
instrumentType: string;
|
|
1612
|
+
ticker: string;
|
|
1613
|
+
market: {
|
|
1614
|
+
nextOpen: string;
|
|
1615
|
+
nextClose: string;
|
|
1616
|
+
};
|
|
1617
|
+
nextPause: {
|
|
1618
|
+
start: string;
|
|
1619
|
+
end: string;
|
|
1620
|
+
};
|
|
1621
|
+
} | undefined;
|
|
1083
1622
|
}, {
|
|
1084
1623
|
/**
|
|
1085
1624
|
* The chainId of the token
|
|
@@ -1110,6 +1649,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1110
1649
|
* URL for token icon
|
|
1111
1650
|
*/
|
|
1112
1651
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1652
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1653
|
+
instrumentType: string;
|
|
1654
|
+
ticker: string;
|
|
1655
|
+
market: {
|
|
1656
|
+
nextOpen: string;
|
|
1657
|
+
nextClose: string;
|
|
1658
|
+
};
|
|
1659
|
+
nextPause: {
|
|
1660
|
+
start: string;
|
|
1661
|
+
end: string;
|
|
1662
|
+
};
|
|
1663
|
+
} | undefined, {
|
|
1664
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1665
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1666
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1667
|
+
nextOpen: string;
|
|
1668
|
+
nextClose: string;
|
|
1669
|
+
}, {
|
|
1670
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1671
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1672
|
+
}>;
|
|
1673
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1674
|
+
start: string;
|
|
1675
|
+
end: string;
|
|
1676
|
+
}, {
|
|
1677
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1678
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1679
|
+
}>;
|
|
1680
|
+
}>;
|
|
1113
1681
|
}>;
|
|
1114
1682
|
destAsset: import("@metamask/superstruct").Struct<{
|
|
1115
1683
|
symbol: string;
|
|
@@ -1120,6 +1688,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1120
1688
|
decimals: number;
|
|
1121
1689
|
icon?: string | null | undefined;
|
|
1122
1690
|
iconUrl?: string | null | undefined;
|
|
1691
|
+
rwaData?: {
|
|
1692
|
+
instrumentType: string;
|
|
1693
|
+
ticker: string;
|
|
1694
|
+
market: {
|
|
1695
|
+
nextOpen: string;
|
|
1696
|
+
nextClose: string;
|
|
1697
|
+
};
|
|
1698
|
+
nextPause: {
|
|
1699
|
+
start: string;
|
|
1700
|
+
end: string;
|
|
1701
|
+
};
|
|
1702
|
+
} | undefined;
|
|
1123
1703
|
}, {
|
|
1124
1704
|
/**
|
|
1125
1705
|
* The chainId of the token
|
|
@@ -1150,6 +1730,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1150
1730
|
* URL for token icon
|
|
1151
1731
|
*/
|
|
1152
1732
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1733
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1734
|
+
instrumentType: string;
|
|
1735
|
+
ticker: string;
|
|
1736
|
+
market: {
|
|
1737
|
+
nextOpen: string;
|
|
1738
|
+
nextClose: string;
|
|
1739
|
+
};
|
|
1740
|
+
nextPause: {
|
|
1741
|
+
start: string;
|
|
1742
|
+
end: string;
|
|
1743
|
+
};
|
|
1744
|
+
} | undefined, {
|
|
1745
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1746
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1747
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1748
|
+
nextOpen: string;
|
|
1749
|
+
nextClose: string;
|
|
1750
|
+
}, {
|
|
1751
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1752
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1753
|
+
}>;
|
|
1754
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1755
|
+
start: string;
|
|
1756
|
+
end: string;
|
|
1757
|
+
}, {
|
|
1758
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1759
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1760
|
+
}>;
|
|
1761
|
+
}>;
|
|
1153
1762
|
}>;
|
|
1154
1763
|
srcAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
1155
1764
|
destAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -1175,6 +1784,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1175
1784
|
decimals: number;
|
|
1176
1785
|
icon?: string | null | undefined;
|
|
1177
1786
|
iconUrl?: string | null | undefined;
|
|
1787
|
+
rwaData?: {
|
|
1788
|
+
instrumentType: string;
|
|
1789
|
+
ticker: string;
|
|
1790
|
+
market: {
|
|
1791
|
+
nextOpen: string;
|
|
1792
|
+
nextClose: string;
|
|
1793
|
+
};
|
|
1794
|
+
nextPause: {
|
|
1795
|
+
start: string;
|
|
1796
|
+
end: string;
|
|
1797
|
+
};
|
|
1798
|
+
} | undefined;
|
|
1178
1799
|
};
|
|
1179
1800
|
destAsset: {
|
|
1180
1801
|
symbol: string;
|
|
@@ -1185,6 +1806,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1185
1806
|
decimals: number;
|
|
1186
1807
|
icon?: string | null | undefined;
|
|
1187
1808
|
iconUrl?: string | null | undefined;
|
|
1809
|
+
rwaData?: {
|
|
1810
|
+
instrumentType: string;
|
|
1811
|
+
ticker: string;
|
|
1812
|
+
market: {
|
|
1813
|
+
nextOpen: string;
|
|
1814
|
+
nextClose: string;
|
|
1815
|
+
};
|
|
1816
|
+
nextPause: {
|
|
1817
|
+
start: string;
|
|
1818
|
+
end: string;
|
|
1819
|
+
};
|
|
1820
|
+
} | undefined;
|
|
1188
1821
|
};
|
|
1189
1822
|
srcAmount: string;
|
|
1190
1823
|
destAmount: string;
|
|
@@ -1211,6 +1844,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1211
1844
|
decimals: number;
|
|
1212
1845
|
icon?: string | null | undefined;
|
|
1213
1846
|
iconUrl?: string | null | undefined;
|
|
1847
|
+
rwaData?: {
|
|
1848
|
+
instrumentType: string;
|
|
1849
|
+
ticker: string;
|
|
1850
|
+
market: {
|
|
1851
|
+
nextOpen: string;
|
|
1852
|
+
nextClose: string;
|
|
1853
|
+
};
|
|
1854
|
+
nextPause: {
|
|
1855
|
+
start: string;
|
|
1856
|
+
end: string;
|
|
1857
|
+
};
|
|
1858
|
+
} | undefined;
|
|
1214
1859
|
}, {
|
|
1215
1860
|
/**
|
|
1216
1861
|
* The chainId of the token
|
|
@@ -1241,6 +1886,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1241
1886
|
* URL for token icon
|
|
1242
1887
|
*/
|
|
1243
1888
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1889
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1890
|
+
instrumentType: string;
|
|
1891
|
+
ticker: string;
|
|
1892
|
+
market: {
|
|
1893
|
+
nextOpen: string;
|
|
1894
|
+
nextClose: string;
|
|
1895
|
+
};
|
|
1896
|
+
nextPause: {
|
|
1897
|
+
start: string;
|
|
1898
|
+
end: string;
|
|
1899
|
+
};
|
|
1900
|
+
} | undefined, {
|
|
1901
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1902
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1903
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1904
|
+
nextOpen: string;
|
|
1905
|
+
nextClose: string;
|
|
1906
|
+
}, {
|
|
1907
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1908
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1909
|
+
}>;
|
|
1910
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1911
|
+
start: string;
|
|
1912
|
+
end: string;
|
|
1913
|
+
}, {
|
|
1914
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1915
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1916
|
+
}>;
|
|
1917
|
+
}>;
|
|
1244
1918
|
}>;
|
|
1245
1919
|
destAsset: import("@metamask/superstruct").Struct<{
|
|
1246
1920
|
symbol: string;
|
|
@@ -1251,6 +1925,18 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1251
1925
|
decimals: number;
|
|
1252
1926
|
icon?: string | null | undefined;
|
|
1253
1927
|
iconUrl?: string | null | undefined;
|
|
1928
|
+
rwaData?: {
|
|
1929
|
+
instrumentType: string;
|
|
1930
|
+
ticker: string;
|
|
1931
|
+
market: {
|
|
1932
|
+
nextOpen: string;
|
|
1933
|
+
nextClose: string;
|
|
1934
|
+
};
|
|
1935
|
+
nextPause: {
|
|
1936
|
+
start: string;
|
|
1937
|
+
end: string;
|
|
1938
|
+
};
|
|
1939
|
+
} | undefined;
|
|
1254
1940
|
}, {
|
|
1255
1941
|
/**
|
|
1256
1942
|
* The chainId of the token
|
|
@@ -1281,6 +1967,35 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
|
|
|
1281
1967
|
* URL for token icon
|
|
1282
1968
|
*/
|
|
1283
1969
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
1970
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
1971
|
+
instrumentType: string;
|
|
1972
|
+
ticker: string;
|
|
1973
|
+
market: {
|
|
1974
|
+
nextOpen: string;
|
|
1975
|
+
nextClose: string;
|
|
1976
|
+
};
|
|
1977
|
+
nextPause: {
|
|
1978
|
+
start: string;
|
|
1979
|
+
end: string;
|
|
1980
|
+
};
|
|
1981
|
+
} | undefined, {
|
|
1982
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
1983
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
1984
|
+
market: import("@metamask/superstruct").Struct<{
|
|
1985
|
+
nextOpen: string;
|
|
1986
|
+
nextClose: string;
|
|
1987
|
+
}, {
|
|
1988
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
1989
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
1990
|
+
}>;
|
|
1991
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
1992
|
+
start: string;
|
|
1993
|
+
end: string;
|
|
1994
|
+
}, {
|
|
1995
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
1996
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
1997
|
+
}>;
|
|
1998
|
+
}>;
|
|
1284
1999
|
}>;
|
|
1285
2000
|
srcAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
1286
2001
|
destAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -1489,6 +2204,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1489
2204
|
decimals: number;
|
|
1490
2205
|
icon?: string | null | undefined;
|
|
1491
2206
|
iconUrl?: string | null | undefined;
|
|
2207
|
+
rwaData?: {
|
|
2208
|
+
instrumentType: string;
|
|
2209
|
+
ticker: string;
|
|
2210
|
+
market: {
|
|
2211
|
+
nextOpen: string;
|
|
2212
|
+
nextClose: string;
|
|
2213
|
+
};
|
|
2214
|
+
nextPause: {
|
|
2215
|
+
start: string;
|
|
2216
|
+
end: string;
|
|
2217
|
+
};
|
|
2218
|
+
} | undefined;
|
|
1492
2219
|
};
|
|
1493
2220
|
destAsset: {
|
|
1494
2221
|
symbol: string;
|
|
@@ -1499,6 +2226,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1499
2226
|
decimals: number;
|
|
1500
2227
|
icon?: string | null | undefined;
|
|
1501
2228
|
iconUrl?: string | null | undefined;
|
|
2229
|
+
rwaData?: {
|
|
2230
|
+
instrumentType: string;
|
|
2231
|
+
ticker: string;
|
|
2232
|
+
market: {
|
|
2233
|
+
nextOpen: string;
|
|
2234
|
+
nextClose: string;
|
|
2235
|
+
};
|
|
2236
|
+
nextPause: {
|
|
2237
|
+
start: string;
|
|
2238
|
+
end: string;
|
|
2239
|
+
};
|
|
2240
|
+
} | undefined;
|
|
1502
2241
|
};
|
|
1503
2242
|
requestId: string;
|
|
1504
2243
|
srcTokenAmount: string;
|
|
@@ -1516,6 +2255,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1516
2255
|
decimals: number;
|
|
1517
2256
|
icon?: string | null | undefined;
|
|
1518
2257
|
iconUrl?: string | null | undefined;
|
|
2258
|
+
rwaData?: {
|
|
2259
|
+
instrumentType: string;
|
|
2260
|
+
ticker: string;
|
|
2261
|
+
market: {
|
|
2262
|
+
nextOpen: string;
|
|
2263
|
+
nextClose: string;
|
|
2264
|
+
};
|
|
2265
|
+
nextPause: {
|
|
2266
|
+
start: string;
|
|
2267
|
+
end: string;
|
|
2268
|
+
};
|
|
2269
|
+
} | undefined;
|
|
1519
2270
|
};
|
|
1520
2271
|
};
|
|
1521
2272
|
txFee?: ({
|
|
@@ -1529,6 +2280,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1529
2280
|
decimals: number;
|
|
1530
2281
|
icon?: string | null | undefined;
|
|
1531
2282
|
iconUrl?: string | null | undefined;
|
|
2283
|
+
rwaData?: {
|
|
2284
|
+
instrumentType: string;
|
|
2285
|
+
ticker: string;
|
|
2286
|
+
market: {
|
|
2287
|
+
nextOpen: string;
|
|
2288
|
+
nextClose: string;
|
|
2289
|
+
};
|
|
2290
|
+
nextPause: {
|
|
2291
|
+
start: string;
|
|
2292
|
+
end: string;
|
|
2293
|
+
};
|
|
2294
|
+
} | undefined;
|
|
1532
2295
|
};
|
|
1533
2296
|
} & {
|
|
1534
2297
|
maxFeePerGas: string;
|
|
@@ -1549,6 +2312,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1549
2312
|
decimals: number;
|
|
1550
2313
|
icon?: string | null | undefined;
|
|
1551
2314
|
iconUrl?: string | null | undefined;
|
|
2315
|
+
rwaData?: {
|
|
2316
|
+
instrumentType: string;
|
|
2317
|
+
ticker: string;
|
|
2318
|
+
market: {
|
|
2319
|
+
nextOpen: string;
|
|
2320
|
+
nextClose: string;
|
|
2321
|
+
};
|
|
2322
|
+
nextPause: {
|
|
2323
|
+
start: string;
|
|
2324
|
+
end: string;
|
|
2325
|
+
};
|
|
2326
|
+
} | undefined;
|
|
1552
2327
|
};
|
|
1553
2328
|
destAsset: {
|
|
1554
2329
|
symbol: string;
|
|
@@ -1559,6 +2334,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1559
2334
|
decimals: number;
|
|
1560
2335
|
icon?: string | null | undefined;
|
|
1561
2336
|
iconUrl?: string | null | undefined;
|
|
2337
|
+
rwaData?: {
|
|
2338
|
+
instrumentType: string;
|
|
2339
|
+
ticker: string;
|
|
2340
|
+
market: {
|
|
2341
|
+
nextOpen: string;
|
|
2342
|
+
nextClose: string;
|
|
2343
|
+
};
|
|
2344
|
+
nextPause: {
|
|
2345
|
+
start: string;
|
|
2346
|
+
end: string;
|
|
2347
|
+
};
|
|
2348
|
+
} | undefined;
|
|
1562
2349
|
};
|
|
1563
2350
|
srcAmount: string;
|
|
1564
2351
|
destAmount: string;
|
|
@@ -1581,6 +2368,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1581
2368
|
decimals: number;
|
|
1582
2369
|
icon?: string | null | undefined;
|
|
1583
2370
|
iconUrl?: string | null | undefined;
|
|
2371
|
+
rwaData?: {
|
|
2372
|
+
instrumentType: string;
|
|
2373
|
+
ticker: string;
|
|
2374
|
+
market: {
|
|
2375
|
+
nextOpen: string;
|
|
2376
|
+
nextClose: string;
|
|
2377
|
+
};
|
|
2378
|
+
nextPause: {
|
|
2379
|
+
start: string;
|
|
2380
|
+
end: string;
|
|
2381
|
+
};
|
|
2382
|
+
} | undefined;
|
|
1584
2383
|
};
|
|
1585
2384
|
destAsset: {
|
|
1586
2385
|
symbol: string;
|
|
@@ -1591,6 +2390,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1591
2390
|
decimals: number;
|
|
1592
2391
|
icon?: string | null | undefined;
|
|
1593
2392
|
iconUrl?: string | null | undefined;
|
|
2393
|
+
rwaData?: {
|
|
2394
|
+
instrumentType: string;
|
|
2395
|
+
ticker: string;
|
|
2396
|
+
market: {
|
|
2397
|
+
nextOpen: string;
|
|
2398
|
+
nextClose: string;
|
|
2399
|
+
};
|
|
2400
|
+
nextPause: {
|
|
2401
|
+
start: string;
|
|
2402
|
+
end: string;
|
|
2403
|
+
};
|
|
2404
|
+
} | undefined;
|
|
1594
2405
|
};
|
|
1595
2406
|
srcAmount: string;
|
|
1596
2407
|
destAmount: string;
|
|
@@ -1683,6 +2494,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1683
2494
|
decimals: number;
|
|
1684
2495
|
icon?: string | null | undefined;
|
|
1685
2496
|
iconUrl?: string | null | undefined;
|
|
2497
|
+
rwaData?: {
|
|
2498
|
+
instrumentType: string;
|
|
2499
|
+
ticker: string;
|
|
2500
|
+
market: {
|
|
2501
|
+
nextOpen: string;
|
|
2502
|
+
nextClose: string;
|
|
2503
|
+
};
|
|
2504
|
+
nextPause: {
|
|
2505
|
+
start: string;
|
|
2506
|
+
end: string;
|
|
2507
|
+
};
|
|
2508
|
+
} | undefined;
|
|
1686
2509
|
};
|
|
1687
2510
|
destAsset: {
|
|
1688
2511
|
symbol: string;
|
|
@@ -1693,6 +2516,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1693
2516
|
decimals: number;
|
|
1694
2517
|
icon?: string | null | undefined;
|
|
1695
2518
|
iconUrl?: string | null | undefined;
|
|
2519
|
+
rwaData?: {
|
|
2520
|
+
instrumentType: string;
|
|
2521
|
+
ticker: string;
|
|
2522
|
+
market: {
|
|
2523
|
+
nextOpen: string;
|
|
2524
|
+
nextClose: string;
|
|
2525
|
+
};
|
|
2526
|
+
nextPause: {
|
|
2527
|
+
start: string;
|
|
2528
|
+
end: string;
|
|
2529
|
+
};
|
|
2530
|
+
} | undefined;
|
|
1696
2531
|
};
|
|
1697
2532
|
requestId: string;
|
|
1698
2533
|
srcTokenAmount: string;
|
|
@@ -1710,6 +2545,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1710
2545
|
decimals: number;
|
|
1711
2546
|
icon?: string | null | undefined;
|
|
1712
2547
|
iconUrl?: string | null | undefined;
|
|
2548
|
+
rwaData?: {
|
|
2549
|
+
instrumentType: string;
|
|
2550
|
+
ticker: string;
|
|
2551
|
+
market: {
|
|
2552
|
+
nextOpen: string;
|
|
2553
|
+
nextClose: string;
|
|
2554
|
+
};
|
|
2555
|
+
nextPause: {
|
|
2556
|
+
start: string;
|
|
2557
|
+
end: string;
|
|
2558
|
+
};
|
|
2559
|
+
} | undefined;
|
|
1713
2560
|
};
|
|
1714
2561
|
};
|
|
1715
2562
|
txFee?: ({
|
|
@@ -1723,6 +2570,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1723
2570
|
decimals: number;
|
|
1724
2571
|
icon?: string | null | undefined;
|
|
1725
2572
|
iconUrl?: string | null | undefined;
|
|
2573
|
+
rwaData?: {
|
|
2574
|
+
instrumentType: string;
|
|
2575
|
+
ticker: string;
|
|
2576
|
+
market: {
|
|
2577
|
+
nextOpen: string;
|
|
2578
|
+
nextClose: string;
|
|
2579
|
+
};
|
|
2580
|
+
nextPause: {
|
|
2581
|
+
start: string;
|
|
2582
|
+
end: string;
|
|
2583
|
+
};
|
|
2584
|
+
} | undefined;
|
|
1726
2585
|
};
|
|
1727
2586
|
} & {
|
|
1728
2587
|
maxFeePerGas: string;
|
|
@@ -1743,6 +2602,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1743
2602
|
decimals: number;
|
|
1744
2603
|
icon?: string | null | undefined;
|
|
1745
2604
|
iconUrl?: string | null | undefined;
|
|
2605
|
+
rwaData?: {
|
|
2606
|
+
instrumentType: string;
|
|
2607
|
+
ticker: string;
|
|
2608
|
+
market: {
|
|
2609
|
+
nextOpen: string;
|
|
2610
|
+
nextClose: string;
|
|
2611
|
+
};
|
|
2612
|
+
nextPause: {
|
|
2613
|
+
start: string;
|
|
2614
|
+
end: string;
|
|
2615
|
+
};
|
|
2616
|
+
} | undefined;
|
|
1746
2617
|
};
|
|
1747
2618
|
destAsset: {
|
|
1748
2619
|
symbol: string;
|
|
@@ -1753,6 +2624,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1753
2624
|
decimals: number;
|
|
1754
2625
|
icon?: string | null | undefined;
|
|
1755
2626
|
iconUrl?: string | null | undefined;
|
|
2627
|
+
rwaData?: {
|
|
2628
|
+
instrumentType: string;
|
|
2629
|
+
ticker: string;
|
|
2630
|
+
market: {
|
|
2631
|
+
nextOpen: string;
|
|
2632
|
+
nextClose: string;
|
|
2633
|
+
};
|
|
2634
|
+
nextPause: {
|
|
2635
|
+
start: string;
|
|
2636
|
+
end: string;
|
|
2637
|
+
};
|
|
2638
|
+
} | undefined;
|
|
1756
2639
|
};
|
|
1757
2640
|
srcAmount: string;
|
|
1758
2641
|
destAmount: string;
|
|
@@ -1775,6 +2658,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1775
2658
|
decimals: number;
|
|
1776
2659
|
icon?: string | null | undefined;
|
|
1777
2660
|
iconUrl?: string | null | undefined;
|
|
2661
|
+
rwaData?: {
|
|
2662
|
+
instrumentType: string;
|
|
2663
|
+
ticker: string;
|
|
2664
|
+
market: {
|
|
2665
|
+
nextOpen: string;
|
|
2666
|
+
nextClose: string;
|
|
2667
|
+
};
|
|
2668
|
+
nextPause: {
|
|
2669
|
+
start: string;
|
|
2670
|
+
end: string;
|
|
2671
|
+
};
|
|
2672
|
+
} | undefined;
|
|
1778
2673
|
};
|
|
1779
2674
|
destAsset: {
|
|
1780
2675
|
symbol: string;
|
|
@@ -1785,6 +2680,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1785
2680
|
decimals: number;
|
|
1786
2681
|
icon?: string | null | undefined;
|
|
1787
2682
|
iconUrl?: string | null | undefined;
|
|
2683
|
+
rwaData?: {
|
|
2684
|
+
instrumentType: string;
|
|
2685
|
+
ticker: string;
|
|
2686
|
+
market: {
|
|
2687
|
+
nextOpen: string;
|
|
2688
|
+
nextClose: string;
|
|
2689
|
+
};
|
|
2690
|
+
nextPause: {
|
|
2691
|
+
start: string;
|
|
2692
|
+
end: string;
|
|
2693
|
+
};
|
|
2694
|
+
} | undefined;
|
|
1788
2695
|
};
|
|
1789
2696
|
srcAmount: string;
|
|
1790
2697
|
destAmount: string;
|
|
@@ -1835,6 +2742,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1835
2742
|
decimals: number;
|
|
1836
2743
|
icon?: string | null | undefined;
|
|
1837
2744
|
iconUrl?: string | null | undefined;
|
|
2745
|
+
rwaData?: {
|
|
2746
|
+
instrumentType: string;
|
|
2747
|
+
ticker: string;
|
|
2748
|
+
market: {
|
|
2749
|
+
nextOpen: string;
|
|
2750
|
+
nextClose: string;
|
|
2751
|
+
};
|
|
2752
|
+
nextPause: {
|
|
2753
|
+
start: string;
|
|
2754
|
+
end: string;
|
|
2755
|
+
};
|
|
2756
|
+
} | undefined;
|
|
1838
2757
|
}, {
|
|
1839
2758
|
/**
|
|
1840
2759
|
* The chainId of the token
|
|
@@ -1865,6 +2784,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1865
2784
|
* URL for token icon
|
|
1866
2785
|
*/
|
|
1867
2786
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
2787
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
2788
|
+
instrumentType: string;
|
|
2789
|
+
ticker: string;
|
|
2790
|
+
market: {
|
|
2791
|
+
nextOpen: string;
|
|
2792
|
+
nextClose: string;
|
|
2793
|
+
};
|
|
2794
|
+
nextPause: {
|
|
2795
|
+
start: string;
|
|
2796
|
+
end: string;
|
|
2797
|
+
};
|
|
2798
|
+
} | undefined, {
|
|
2799
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
2800
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
2801
|
+
market: import("@metamask/superstruct").Struct<{
|
|
2802
|
+
nextOpen: string;
|
|
2803
|
+
nextClose: string;
|
|
2804
|
+
}, {
|
|
2805
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
2806
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
2807
|
+
}>;
|
|
2808
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
2809
|
+
start: string;
|
|
2810
|
+
end: string;
|
|
2811
|
+
}, {
|
|
2812
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
2813
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
2814
|
+
}>;
|
|
2815
|
+
}>;
|
|
1868
2816
|
}>;
|
|
1869
2817
|
/**
|
|
1870
2818
|
* The amount sent, in atomic amount: amount sent - fees
|
|
@@ -1881,6 +2829,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1881
2829
|
decimals: number;
|
|
1882
2830
|
icon?: string | null | undefined;
|
|
1883
2831
|
iconUrl?: string | null | undefined;
|
|
2832
|
+
rwaData?: {
|
|
2833
|
+
instrumentType: string;
|
|
2834
|
+
ticker: string;
|
|
2835
|
+
market: {
|
|
2836
|
+
nextOpen: string;
|
|
2837
|
+
nextClose: string;
|
|
2838
|
+
};
|
|
2839
|
+
nextPause: {
|
|
2840
|
+
start: string;
|
|
2841
|
+
end: string;
|
|
2842
|
+
};
|
|
2843
|
+
} | undefined;
|
|
1884
2844
|
}, {
|
|
1885
2845
|
/**
|
|
1886
2846
|
* The chainId of the token
|
|
@@ -1911,6 +2871,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1911
2871
|
* URL for token icon
|
|
1912
2872
|
*/
|
|
1913
2873
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
2874
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
2875
|
+
instrumentType: string;
|
|
2876
|
+
ticker: string;
|
|
2877
|
+
market: {
|
|
2878
|
+
nextOpen: string;
|
|
2879
|
+
nextClose: string;
|
|
2880
|
+
};
|
|
2881
|
+
nextPause: {
|
|
2882
|
+
start: string;
|
|
2883
|
+
end: string;
|
|
2884
|
+
};
|
|
2885
|
+
} | undefined, {
|
|
2886
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
2887
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
2888
|
+
market: import("@metamask/superstruct").Struct<{
|
|
2889
|
+
nextOpen: string;
|
|
2890
|
+
nextClose: string;
|
|
2891
|
+
}, {
|
|
2892
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
2893
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
2894
|
+
}>;
|
|
2895
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
2896
|
+
start: string;
|
|
2897
|
+
end: string;
|
|
2898
|
+
}, {
|
|
2899
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
2900
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
2901
|
+
}>;
|
|
2902
|
+
}>;
|
|
1914
2903
|
}>;
|
|
1915
2904
|
/**
|
|
1916
2905
|
* The amount received, in atomic amount
|
|
@@ -1932,6 +2921,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1932
2921
|
decimals: number;
|
|
1933
2922
|
icon?: string | null | undefined;
|
|
1934
2923
|
iconUrl?: string | null | undefined;
|
|
2924
|
+
rwaData?: {
|
|
2925
|
+
instrumentType: string;
|
|
2926
|
+
ticker: string;
|
|
2927
|
+
market: {
|
|
2928
|
+
nextOpen: string;
|
|
2929
|
+
nextClose: string;
|
|
2930
|
+
};
|
|
2931
|
+
nextPause: {
|
|
2932
|
+
start: string;
|
|
2933
|
+
end: string;
|
|
2934
|
+
};
|
|
2935
|
+
} | undefined;
|
|
1935
2936
|
};
|
|
1936
2937
|
};
|
|
1937
2938
|
txFee?: ({
|
|
@@ -1945,6 +2946,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1945
2946
|
decimals: number;
|
|
1946
2947
|
icon?: string | null | undefined;
|
|
1947
2948
|
iconUrl?: string | null | undefined;
|
|
2949
|
+
rwaData?: {
|
|
2950
|
+
instrumentType: string;
|
|
2951
|
+
ticker: string;
|
|
2952
|
+
market: {
|
|
2953
|
+
nextOpen: string;
|
|
2954
|
+
nextClose: string;
|
|
2955
|
+
};
|
|
2956
|
+
nextPause: {
|
|
2957
|
+
start: string;
|
|
2958
|
+
end: string;
|
|
2959
|
+
};
|
|
2960
|
+
} | undefined;
|
|
1948
2961
|
};
|
|
1949
2962
|
} & {
|
|
1950
2963
|
maxFeePerGas: string;
|
|
@@ -1962,6 +2975,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1962
2975
|
decimals: number;
|
|
1963
2976
|
icon?: string | null | undefined;
|
|
1964
2977
|
iconUrl?: string | null | undefined;
|
|
2978
|
+
rwaData?: {
|
|
2979
|
+
instrumentType: string;
|
|
2980
|
+
ticker: string;
|
|
2981
|
+
market: {
|
|
2982
|
+
nextOpen: string;
|
|
2983
|
+
nextClose: string;
|
|
2984
|
+
};
|
|
2985
|
+
nextPause: {
|
|
2986
|
+
start: string;
|
|
2987
|
+
end: string;
|
|
2988
|
+
};
|
|
2989
|
+
} | undefined;
|
|
1965
2990
|
};
|
|
1966
2991
|
}, {
|
|
1967
2992
|
amount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -1974,6 +2999,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
1974
2999
|
decimals: number;
|
|
1975
3000
|
icon?: string | null | undefined;
|
|
1976
3001
|
iconUrl?: string | null | undefined;
|
|
3002
|
+
rwaData?: {
|
|
3003
|
+
instrumentType: string;
|
|
3004
|
+
ticker: string;
|
|
3005
|
+
market: {
|
|
3006
|
+
nextOpen: string;
|
|
3007
|
+
nextClose: string;
|
|
3008
|
+
};
|
|
3009
|
+
nextPause: {
|
|
3010
|
+
start: string;
|
|
3011
|
+
end: string;
|
|
3012
|
+
};
|
|
3013
|
+
} | undefined;
|
|
1977
3014
|
}, {
|
|
1978
3015
|
/**
|
|
1979
3016
|
* The chainId of the token
|
|
@@ -2004,6 +3041,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2004
3041
|
* URL for token icon
|
|
2005
3042
|
*/
|
|
2006
3043
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
3044
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
3045
|
+
instrumentType: string;
|
|
3046
|
+
ticker: string;
|
|
3047
|
+
market: {
|
|
3048
|
+
nextOpen: string;
|
|
3049
|
+
nextClose: string;
|
|
3050
|
+
};
|
|
3051
|
+
nextPause: {
|
|
3052
|
+
start: string;
|
|
3053
|
+
end: string;
|
|
3054
|
+
};
|
|
3055
|
+
} | undefined, {
|
|
3056
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
3057
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
3058
|
+
market: import("@metamask/superstruct").Struct<{
|
|
3059
|
+
nextOpen: string;
|
|
3060
|
+
nextClose: string;
|
|
3061
|
+
}, {
|
|
3062
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
3063
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
3064
|
+
}>;
|
|
3065
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
3066
|
+
start: string;
|
|
3067
|
+
end: string;
|
|
3068
|
+
}, {
|
|
3069
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
3070
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
3071
|
+
}>;
|
|
3072
|
+
}>;
|
|
2007
3073
|
}>;
|
|
2008
3074
|
}>;
|
|
2009
3075
|
/**
|
|
@@ -2021,6 +3087,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2021
3087
|
decimals: number;
|
|
2022
3088
|
icon?: string | null | undefined;
|
|
2023
3089
|
iconUrl?: string | null | undefined;
|
|
3090
|
+
rwaData?: {
|
|
3091
|
+
instrumentType: string;
|
|
3092
|
+
ticker: string;
|
|
3093
|
+
market: {
|
|
3094
|
+
nextOpen: string;
|
|
3095
|
+
nextClose: string;
|
|
3096
|
+
};
|
|
3097
|
+
nextPause: {
|
|
3098
|
+
start: string;
|
|
3099
|
+
end: string;
|
|
3100
|
+
};
|
|
3101
|
+
} | undefined;
|
|
2024
3102
|
};
|
|
2025
3103
|
} & {
|
|
2026
3104
|
maxFeePerGas: string;
|
|
@@ -2046,6 +3124,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2046
3124
|
decimals: number;
|
|
2047
3125
|
icon?: string | null | undefined;
|
|
2048
3126
|
iconUrl?: string | null | undefined;
|
|
3127
|
+
rwaData?: {
|
|
3128
|
+
instrumentType: string;
|
|
3129
|
+
ticker: string;
|
|
3130
|
+
market: {
|
|
3131
|
+
nextOpen: string;
|
|
3132
|
+
nextClose: string;
|
|
3133
|
+
};
|
|
3134
|
+
nextPause: {
|
|
3135
|
+
start: string;
|
|
3136
|
+
end: string;
|
|
3137
|
+
};
|
|
3138
|
+
} | undefined;
|
|
2049
3139
|
};
|
|
2050
3140
|
destAsset: {
|
|
2051
3141
|
symbol: string;
|
|
@@ -2056,6 +3146,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2056
3146
|
decimals: number;
|
|
2057
3147
|
icon?: string | null | undefined;
|
|
2058
3148
|
iconUrl?: string | null | undefined;
|
|
3149
|
+
rwaData?: {
|
|
3150
|
+
instrumentType: string;
|
|
3151
|
+
ticker: string;
|
|
3152
|
+
market: {
|
|
3153
|
+
nextOpen: string;
|
|
3154
|
+
nextClose: string;
|
|
3155
|
+
};
|
|
3156
|
+
nextPause: {
|
|
3157
|
+
start: string;
|
|
3158
|
+
end: string;
|
|
3159
|
+
};
|
|
3160
|
+
} | undefined;
|
|
2059
3161
|
};
|
|
2060
3162
|
srcAmount: string;
|
|
2061
3163
|
destAmount: string;
|
|
@@ -2077,6 +3179,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2077
3179
|
decimals: number;
|
|
2078
3180
|
icon?: string | null | undefined;
|
|
2079
3181
|
iconUrl?: string | null | undefined;
|
|
3182
|
+
rwaData?: {
|
|
3183
|
+
instrumentType: string;
|
|
3184
|
+
ticker: string;
|
|
3185
|
+
market: {
|
|
3186
|
+
nextOpen: string;
|
|
3187
|
+
nextClose: string;
|
|
3188
|
+
};
|
|
3189
|
+
nextPause: {
|
|
3190
|
+
start: string;
|
|
3191
|
+
end: string;
|
|
3192
|
+
};
|
|
3193
|
+
} | undefined;
|
|
2080
3194
|
};
|
|
2081
3195
|
destAsset: {
|
|
2082
3196
|
symbol: string;
|
|
@@ -2087,6 +3201,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2087
3201
|
decimals: number;
|
|
2088
3202
|
icon?: string | null | undefined;
|
|
2089
3203
|
iconUrl?: string | null | undefined;
|
|
3204
|
+
rwaData?: {
|
|
3205
|
+
instrumentType: string;
|
|
3206
|
+
ticker: string;
|
|
3207
|
+
market: {
|
|
3208
|
+
nextOpen: string;
|
|
3209
|
+
nextClose: string;
|
|
3210
|
+
};
|
|
3211
|
+
nextPause: {
|
|
3212
|
+
start: string;
|
|
3213
|
+
end: string;
|
|
3214
|
+
};
|
|
3215
|
+
} | undefined;
|
|
2090
3216
|
};
|
|
2091
3217
|
srcAmount: string;
|
|
2092
3218
|
destAmount: string;
|
|
@@ -2113,6 +3239,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2113
3239
|
decimals: number;
|
|
2114
3240
|
icon?: string | null | undefined;
|
|
2115
3241
|
iconUrl?: string | null | undefined;
|
|
3242
|
+
rwaData?: {
|
|
3243
|
+
instrumentType: string;
|
|
3244
|
+
ticker: string;
|
|
3245
|
+
market: {
|
|
3246
|
+
nextOpen: string;
|
|
3247
|
+
nextClose: string;
|
|
3248
|
+
};
|
|
3249
|
+
nextPause: {
|
|
3250
|
+
start: string;
|
|
3251
|
+
end: string;
|
|
3252
|
+
};
|
|
3253
|
+
} | undefined;
|
|
2116
3254
|
}, {
|
|
2117
3255
|
/**
|
|
2118
3256
|
* The chainId of the token
|
|
@@ -2143,6 +3281,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2143
3281
|
* URL for token icon
|
|
2144
3282
|
*/
|
|
2145
3283
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
3284
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
3285
|
+
instrumentType: string;
|
|
3286
|
+
ticker: string;
|
|
3287
|
+
market: {
|
|
3288
|
+
nextOpen: string;
|
|
3289
|
+
nextClose: string;
|
|
3290
|
+
};
|
|
3291
|
+
nextPause: {
|
|
3292
|
+
start: string;
|
|
3293
|
+
end: string;
|
|
3294
|
+
};
|
|
3295
|
+
} | undefined, {
|
|
3296
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
3297
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
3298
|
+
market: import("@metamask/superstruct").Struct<{
|
|
3299
|
+
nextOpen: string;
|
|
3300
|
+
nextClose: string;
|
|
3301
|
+
}, {
|
|
3302
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
3303
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
3304
|
+
}>;
|
|
3305
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
3306
|
+
start: string;
|
|
3307
|
+
end: string;
|
|
3308
|
+
}, {
|
|
3309
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
3310
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
3311
|
+
}>;
|
|
3312
|
+
}>;
|
|
2146
3313
|
}>;
|
|
2147
3314
|
destAsset: import("@metamask/superstruct").Struct<{
|
|
2148
3315
|
symbol: string;
|
|
@@ -2153,6 +3320,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2153
3320
|
decimals: number;
|
|
2154
3321
|
icon?: string | null | undefined;
|
|
2155
3322
|
iconUrl?: string | null | undefined;
|
|
3323
|
+
rwaData?: {
|
|
3324
|
+
instrumentType: string;
|
|
3325
|
+
ticker: string;
|
|
3326
|
+
market: {
|
|
3327
|
+
nextOpen: string;
|
|
3328
|
+
nextClose: string;
|
|
3329
|
+
};
|
|
3330
|
+
nextPause: {
|
|
3331
|
+
start: string;
|
|
3332
|
+
end: string;
|
|
3333
|
+
};
|
|
3334
|
+
} | undefined;
|
|
2156
3335
|
}, {
|
|
2157
3336
|
/**
|
|
2158
3337
|
* The chainId of the token
|
|
@@ -2183,6 +3362,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2183
3362
|
* URL for token icon
|
|
2184
3363
|
*/
|
|
2185
3364
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
3365
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
3366
|
+
instrumentType: string;
|
|
3367
|
+
ticker: string;
|
|
3368
|
+
market: {
|
|
3369
|
+
nextOpen: string;
|
|
3370
|
+
nextClose: string;
|
|
3371
|
+
};
|
|
3372
|
+
nextPause: {
|
|
3373
|
+
start: string;
|
|
3374
|
+
end: string;
|
|
3375
|
+
};
|
|
3376
|
+
} | undefined, {
|
|
3377
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
3378
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
3379
|
+
market: import("@metamask/superstruct").Struct<{
|
|
3380
|
+
nextOpen: string;
|
|
3381
|
+
nextClose: string;
|
|
3382
|
+
}, {
|
|
3383
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
3384
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
3385
|
+
}>;
|
|
3386
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
3387
|
+
start: string;
|
|
3388
|
+
end: string;
|
|
3389
|
+
}, {
|
|
3390
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
3391
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
3392
|
+
}>;
|
|
3393
|
+
}>;
|
|
2186
3394
|
}>;
|
|
2187
3395
|
srcAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
2188
3396
|
destAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -2208,6 +3416,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2208
3416
|
decimals: number;
|
|
2209
3417
|
icon?: string | null | undefined;
|
|
2210
3418
|
iconUrl?: string | null | undefined;
|
|
3419
|
+
rwaData?: {
|
|
3420
|
+
instrumentType: string;
|
|
3421
|
+
ticker: string;
|
|
3422
|
+
market: {
|
|
3423
|
+
nextOpen: string;
|
|
3424
|
+
nextClose: string;
|
|
3425
|
+
};
|
|
3426
|
+
nextPause: {
|
|
3427
|
+
start: string;
|
|
3428
|
+
end: string;
|
|
3429
|
+
};
|
|
3430
|
+
} | undefined;
|
|
2211
3431
|
};
|
|
2212
3432
|
destAsset: {
|
|
2213
3433
|
symbol: string;
|
|
@@ -2218,6 +3438,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2218
3438
|
decimals: number;
|
|
2219
3439
|
icon?: string | null | undefined;
|
|
2220
3440
|
iconUrl?: string | null | undefined;
|
|
3441
|
+
rwaData?: {
|
|
3442
|
+
instrumentType: string;
|
|
3443
|
+
ticker: string;
|
|
3444
|
+
market: {
|
|
3445
|
+
nextOpen: string;
|
|
3446
|
+
nextClose: string;
|
|
3447
|
+
};
|
|
3448
|
+
nextPause: {
|
|
3449
|
+
start: string;
|
|
3450
|
+
end: string;
|
|
3451
|
+
};
|
|
3452
|
+
} | undefined;
|
|
2221
3453
|
};
|
|
2222
3454
|
srcAmount: string;
|
|
2223
3455
|
destAmount: string;
|
|
@@ -2244,6 +3476,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2244
3476
|
decimals: number;
|
|
2245
3477
|
icon?: string | null | undefined;
|
|
2246
3478
|
iconUrl?: string | null | undefined;
|
|
3479
|
+
rwaData?: {
|
|
3480
|
+
instrumentType: string;
|
|
3481
|
+
ticker: string;
|
|
3482
|
+
market: {
|
|
3483
|
+
nextOpen: string;
|
|
3484
|
+
nextClose: string;
|
|
3485
|
+
};
|
|
3486
|
+
nextPause: {
|
|
3487
|
+
start: string;
|
|
3488
|
+
end: string;
|
|
3489
|
+
};
|
|
3490
|
+
} | undefined;
|
|
2247
3491
|
}, {
|
|
2248
3492
|
/**
|
|
2249
3493
|
* The chainId of the token
|
|
@@ -2274,6 +3518,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2274
3518
|
* URL for token icon
|
|
2275
3519
|
*/
|
|
2276
3520
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
3521
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
3522
|
+
instrumentType: string;
|
|
3523
|
+
ticker: string;
|
|
3524
|
+
market: {
|
|
3525
|
+
nextOpen: string;
|
|
3526
|
+
nextClose: string;
|
|
3527
|
+
};
|
|
3528
|
+
nextPause: {
|
|
3529
|
+
start: string;
|
|
3530
|
+
end: string;
|
|
3531
|
+
};
|
|
3532
|
+
} | undefined, {
|
|
3533
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
3534
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
3535
|
+
market: import("@metamask/superstruct").Struct<{
|
|
3536
|
+
nextOpen: string;
|
|
3537
|
+
nextClose: string;
|
|
3538
|
+
}, {
|
|
3539
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
3540
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
3541
|
+
}>;
|
|
3542
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
3543
|
+
start: string;
|
|
3544
|
+
end: string;
|
|
3545
|
+
}, {
|
|
3546
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
3547
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
3548
|
+
}>;
|
|
3549
|
+
}>;
|
|
2277
3550
|
}>;
|
|
2278
3551
|
destAsset: import("@metamask/superstruct").Struct<{
|
|
2279
3552
|
symbol: string;
|
|
@@ -2284,6 +3557,18 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2284
3557
|
decimals: number;
|
|
2285
3558
|
icon?: string | null | undefined;
|
|
2286
3559
|
iconUrl?: string | null | undefined;
|
|
3560
|
+
rwaData?: {
|
|
3561
|
+
instrumentType: string;
|
|
3562
|
+
ticker: string;
|
|
3563
|
+
market: {
|
|
3564
|
+
nextOpen: string;
|
|
3565
|
+
nextClose: string;
|
|
3566
|
+
};
|
|
3567
|
+
nextPause: {
|
|
3568
|
+
start: string;
|
|
3569
|
+
end: string;
|
|
3570
|
+
};
|
|
3571
|
+
} | undefined;
|
|
2287
3572
|
}, {
|
|
2288
3573
|
/**
|
|
2289
3574
|
* The chainId of the token
|
|
@@ -2314,6 +3599,35 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
|
|
|
2314
3599
|
* URL for token icon
|
|
2315
3600
|
*/
|
|
2316
3601
|
iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
|
|
3602
|
+
rwaData: import("@metamask/superstruct").Struct<{
|
|
3603
|
+
instrumentType: string;
|
|
3604
|
+
ticker: string;
|
|
3605
|
+
market: {
|
|
3606
|
+
nextOpen: string;
|
|
3607
|
+
nextClose: string;
|
|
3608
|
+
};
|
|
3609
|
+
nextPause: {
|
|
3610
|
+
start: string;
|
|
3611
|
+
end: string;
|
|
3612
|
+
};
|
|
3613
|
+
} | undefined, {
|
|
3614
|
+
instrumentType: import("@metamask/superstruct").Struct<string, null>;
|
|
3615
|
+
ticker: import("@metamask/superstruct").Struct<string, null>;
|
|
3616
|
+
market: import("@metamask/superstruct").Struct<{
|
|
3617
|
+
nextOpen: string;
|
|
3618
|
+
nextClose: string;
|
|
3619
|
+
}, {
|
|
3620
|
+
nextOpen: import("@metamask/superstruct").Struct<string, null>;
|
|
3621
|
+
nextClose: import("@metamask/superstruct").Struct<string, null>;
|
|
3622
|
+
}>;
|
|
3623
|
+
nextPause: import("@metamask/superstruct").Struct<{
|
|
3624
|
+
start: string;
|
|
3625
|
+
end: string;
|
|
3626
|
+
}, {
|
|
3627
|
+
start: import("@metamask/superstruct").Struct<string, null>;
|
|
3628
|
+
end: import("@metamask/superstruct").Struct<string, null>;
|
|
3629
|
+
}>;
|
|
3630
|
+
}>;
|
|
2317
3631
|
}>;
|
|
2318
3632
|
srcAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
2319
3633
|
destAmount: import("@metamask/superstruct").Struct<string, null>;
|
|
@@ -2511,6 +3825,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2511
3825
|
decimals: number;
|
|
2512
3826
|
icon?: string | null | undefined;
|
|
2513
3827
|
iconUrl?: string | null | undefined;
|
|
3828
|
+
rwaData?: {
|
|
3829
|
+
instrumentType: string;
|
|
3830
|
+
ticker: string;
|
|
3831
|
+
market: {
|
|
3832
|
+
nextOpen: string;
|
|
3833
|
+
nextClose: string;
|
|
3834
|
+
};
|
|
3835
|
+
nextPause: {
|
|
3836
|
+
start: string;
|
|
3837
|
+
end: string;
|
|
3838
|
+
};
|
|
3839
|
+
} | undefined;
|
|
2514
3840
|
};
|
|
2515
3841
|
destAsset: {
|
|
2516
3842
|
symbol: string;
|
|
@@ -2521,6 +3847,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2521
3847
|
decimals: number;
|
|
2522
3848
|
icon?: string | null | undefined;
|
|
2523
3849
|
iconUrl?: string | null | undefined;
|
|
3850
|
+
rwaData?: {
|
|
3851
|
+
instrumentType: string;
|
|
3852
|
+
ticker: string;
|
|
3853
|
+
market: {
|
|
3854
|
+
nextOpen: string;
|
|
3855
|
+
nextClose: string;
|
|
3856
|
+
};
|
|
3857
|
+
nextPause: {
|
|
3858
|
+
start: string;
|
|
3859
|
+
end: string;
|
|
3860
|
+
};
|
|
3861
|
+
} | undefined;
|
|
2524
3862
|
};
|
|
2525
3863
|
requestId: string;
|
|
2526
3864
|
srcTokenAmount: string;
|
|
@@ -2538,6 +3876,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2538
3876
|
decimals: number;
|
|
2539
3877
|
icon?: string | null | undefined;
|
|
2540
3878
|
iconUrl?: string | null | undefined;
|
|
3879
|
+
rwaData?: {
|
|
3880
|
+
instrumentType: string;
|
|
3881
|
+
ticker: string;
|
|
3882
|
+
market: {
|
|
3883
|
+
nextOpen: string;
|
|
3884
|
+
nextClose: string;
|
|
3885
|
+
};
|
|
3886
|
+
nextPause: {
|
|
3887
|
+
start: string;
|
|
3888
|
+
end: string;
|
|
3889
|
+
};
|
|
3890
|
+
} | undefined;
|
|
2541
3891
|
};
|
|
2542
3892
|
};
|
|
2543
3893
|
txFee?: ({
|
|
@@ -2551,6 +3901,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2551
3901
|
decimals: number;
|
|
2552
3902
|
icon?: string | null | undefined;
|
|
2553
3903
|
iconUrl?: string | null | undefined;
|
|
3904
|
+
rwaData?: {
|
|
3905
|
+
instrumentType: string;
|
|
3906
|
+
ticker: string;
|
|
3907
|
+
market: {
|
|
3908
|
+
nextOpen: string;
|
|
3909
|
+
nextClose: string;
|
|
3910
|
+
};
|
|
3911
|
+
nextPause: {
|
|
3912
|
+
start: string;
|
|
3913
|
+
end: string;
|
|
3914
|
+
};
|
|
3915
|
+
} | undefined;
|
|
2554
3916
|
};
|
|
2555
3917
|
} & {
|
|
2556
3918
|
maxFeePerGas: string;
|
|
@@ -2571,6 +3933,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2571
3933
|
decimals: number;
|
|
2572
3934
|
icon?: string | null | undefined;
|
|
2573
3935
|
iconUrl?: string | null | undefined;
|
|
3936
|
+
rwaData?: {
|
|
3937
|
+
instrumentType: string;
|
|
3938
|
+
ticker: string;
|
|
3939
|
+
market: {
|
|
3940
|
+
nextOpen: string;
|
|
3941
|
+
nextClose: string;
|
|
3942
|
+
};
|
|
3943
|
+
nextPause: {
|
|
3944
|
+
start: string;
|
|
3945
|
+
end: string;
|
|
3946
|
+
};
|
|
3947
|
+
} | undefined;
|
|
2574
3948
|
};
|
|
2575
3949
|
destAsset: {
|
|
2576
3950
|
symbol: string;
|
|
@@ -2581,6 +3955,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2581
3955
|
decimals: number;
|
|
2582
3956
|
icon?: string | null | undefined;
|
|
2583
3957
|
iconUrl?: string | null | undefined;
|
|
3958
|
+
rwaData?: {
|
|
3959
|
+
instrumentType: string;
|
|
3960
|
+
ticker: string;
|
|
3961
|
+
market: {
|
|
3962
|
+
nextOpen: string;
|
|
3963
|
+
nextClose: string;
|
|
3964
|
+
};
|
|
3965
|
+
nextPause: {
|
|
3966
|
+
start: string;
|
|
3967
|
+
end: string;
|
|
3968
|
+
};
|
|
3969
|
+
} | undefined;
|
|
2584
3970
|
};
|
|
2585
3971
|
srcAmount: string;
|
|
2586
3972
|
destAmount: string;
|
|
@@ -2603,6 +3989,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2603
3989
|
decimals: number;
|
|
2604
3990
|
icon?: string | null | undefined;
|
|
2605
3991
|
iconUrl?: string | null | undefined;
|
|
3992
|
+
rwaData?: {
|
|
3993
|
+
instrumentType: string;
|
|
3994
|
+
ticker: string;
|
|
3995
|
+
market: {
|
|
3996
|
+
nextOpen: string;
|
|
3997
|
+
nextClose: string;
|
|
3998
|
+
};
|
|
3999
|
+
nextPause: {
|
|
4000
|
+
start: string;
|
|
4001
|
+
end: string;
|
|
4002
|
+
};
|
|
4003
|
+
} | undefined;
|
|
2606
4004
|
};
|
|
2607
4005
|
destAsset: {
|
|
2608
4006
|
symbol: string;
|
|
@@ -2613,6 +4011,18 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
|
|
|
2613
4011
|
decimals: number;
|
|
2614
4012
|
icon?: string | null | undefined;
|
|
2615
4013
|
iconUrl?: string | null | undefined;
|
|
4014
|
+
rwaData?: {
|
|
4015
|
+
instrumentType: string;
|
|
4016
|
+
ticker: string;
|
|
4017
|
+
market: {
|
|
4018
|
+
nextOpen: string;
|
|
4019
|
+
nextClose: string;
|
|
4020
|
+
};
|
|
4021
|
+
nextPause: {
|
|
4022
|
+
start: string;
|
|
4023
|
+
end: string;
|
|
4024
|
+
};
|
|
4025
|
+
} | undefined;
|
|
2616
4026
|
};
|
|
2617
4027
|
srcAmount: string;
|
|
2618
4028
|
destAmount: string;
|