@metamask-previews/bridge-controller 64.4.0-preview-8a4f4ea3 → 64.4.0-preview-a033b2d7

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.
@@ -22,16 +22,16 @@ export declare const BridgeAssetSchema: import("@metamask/superstruct").Struct<{
22
22
  icon?: string | null | undefined;
23
23
  iconUrl?: string | null | undefined;
24
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
- };
25
+ instrumentType?: string | undefined;
26
+ ticker?: string | undefined;
27
+ market?: {
28
+ nextOpen?: string | undefined;
29
+ nextClose?: string | undefined;
30
+ } | undefined;
31
+ nextPause?: {
32
+ start?: string | undefined;
33
+ end?: string | undefined;
34
+ } | undefined;
35
35
  } | undefined;
36
36
  }, {
37
37
  /**
@@ -64,32 +64,32 @@ export declare const BridgeAssetSchema: import("@metamask/superstruct").Struct<{
64
64
  */
65
65
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
66
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
- };
67
+ instrumentType?: string | undefined;
68
+ ticker?: string | undefined;
69
+ market?: {
70
+ nextOpen?: string | undefined;
71
+ nextClose?: string | undefined;
72
+ } | undefined;
73
+ nextPause?: {
74
+ start?: string | undefined;
75
+ end?: string | undefined;
76
+ } | undefined;
77
77
  } | undefined, {
78
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
79
- ticker: import("@metamask/superstruct").Struct<string, null>;
78
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
79
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
80
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>;
81
+ nextOpen?: string | undefined;
82
+ nextClose?: string | undefined;
83
+ } | undefined, {
84
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
85
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
86
86
  }>;
87
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>;
88
+ start?: string | undefined;
89
+ end?: string | undefined;
90
+ } | undefined, {
91
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
92
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
93
93
  }>;
94
94
  }>;
95
95
  }>;
@@ -279,16 +279,16 @@ export declare const validateSwapsTokenObject: (data: unknown) => data is {
279
279
  icon?: string | null | undefined;
280
280
  iconUrl?: string | null | undefined;
281
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
- };
282
+ instrumentType?: string | undefined;
283
+ ticker?: string | undefined;
284
+ market?: {
285
+ nextOpen?: string | undefined;
286
+ nextClose?: string | undefined;
287
+ } | undefined;
288
+ nextPause?: {
289
+ start?: string | undefined;
290
+ end?: string | undefined;
291
+ } | undefined;
292
292
  } | undefined;
293
293
  };
294
294
  export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
@@ -303,16 +303,16 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
303
303
  icon?: string | null | undefined;
304
304
  iconUrl?: string | null | undefined;
305
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
- };
306
+ instrumentType?: string | undefined;
307
+ ticker?: string | undefined;
308
+ market?: {
309
+ nextOpen?: string | undefined;
310
+ nextClose?: string | undefined;
311
+ } | undefined;
312
+ nextPause?: {
313
+ start?: string | undefined;
314
+ end?: string | undefined;
315
+ } | undefined;
316
316
  } | undefined;
317
317
  };
318
318
  }, {
@@ -327,16 +327,16 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
327
327
  icon?: string | null | undefined;
328
328
  iconUrl?: string | null | undefined;
329
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
- };
330
+ instrumentType?: string | undefined;
331
+ ticker?: string | undefined;
332
+ market?: {
333
+ nextOpen?: string | undefined;
334
+ nextClose?: string | undefined;
335
+ } | undefined;
336
+ nextPause?: {
337
+ start?: string | undefined;
338
+ end?: string | undefined;
339
+ } | undefined;
340
340
  } | undefined;
341
341
  }, {
342
342
  /**
@@ -369,32 +369,32 @@ export declare const FeeDataSchema: import("@metamask/superstruct").Struct<{
369
369
  */
370
370
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
371
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
- };
372
+ instrumentType?: string | undefined;
373
+ ticker?: string | undefined;
374
+ market?: {
375
+ nextOpen?: string | undefined;
376
+ nextClose?: string | undefined;
377
+ } | undefined;
378
+ nextPause?: {
379
+ start?: string | undefined;
380
+ end?: string | undefined;
381
+ } | undefined;
382
382
  } | undefined, {
383
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
384
- ticker: import("@metamask/superstruct").Struct<string, null>;
383
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
384
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
385
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>;
386
+ nextOpen?: string | undefined;
387
+ nextClose?: string | undefined;
388
+ } | undefined, {
389
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
390
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
391
391
  }>;
392
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>;
393
+ start?: string | undefined;
394
+ end?: string | undefined;
395
+ } | undefined, {
396
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
397
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
398
398
  }>;
399
399
  }>;
400
400
  }>;
@@ -421,16 +421,16 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
421
421
  icon?: string | null | undefined;
422
422
  iconUrl?: string | null | undefined;
423
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
- };
424
+ instrumentType?: string | undefined;
425
+ ticker?: string | undefined;
426
+ market?: {
427
+ nextOpen?: string | undefined;
428
+ nextClose?: string | undefined;
429
+ } | undefined;
430
+ nextPause?: {
431
+ start?: string | undefined;
432
+ end?: string | undefined;
433
+ } | undefined;
434
434
  } | undefined;
435
435
  };
436
436
  destAsset: {
@@ -443,16 +443,16 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
443
443
  icon?: string | null | undefined;
444
444
  iconUrl?: string | null | undefined;
445
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
- };
446
+ instrumentType?: string | undefined;
447
+ ticker?: string | undefined;
448
+ market?: {
449
+ nextOpen?: string | undefined;
450
+ nextClose?: string | undefined;
451
+ } | undefined;
452
+ nextPause?: {
453
+ start?: string | undefined;
454
+ end?: string | undefined;
455
+ } | undefined;
456
456
  } | undefined;
457
457
  };
458
458
  srcAmount: string;
@@ -481,16 +481,16 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
481
481
  icon?: string | null | undefined;
482
482
  iconUrl?: string | null | undefined;
483
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
- };
484
+ instrumentType?: string | undefined;
485
+ ticker?: string | undefined;
486
+ market?: {
487
+ nextOpen?: string | undefined;
488
+ nextClose?: string | undefined;
489
+ } | undefined;
490
+ nextPause?: {
491
+ start?: string | undefined;
492
+ end?: string | undefined;
493
+ } | undefined;
494
494
  } | undefined;
495
495
  }, {
496
496
  /**
@@ -523,32 +523,32 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
523
523
  */
524
524
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
525
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
- };
526
+ instrumentType?: string | undefined;
527
+ ticker?: string | undefined;
528
+ market?: {
529
+ nextOpen?: string | undefined;
530
+ nextClose?: string | undefined;
531
+ } | undefined;
532
+ nextPause?: {
533
+ start?: string | undefined;
534
+ end?: string | undefined;
535
+ } | undefined;
536
536
  } | undefined, {
537
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
538
- ticker: import("@metamask/superstruct").Struct<string, null>;
537
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
538
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
539
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>;
540
+ nextOpen?: string | undefined;
541
+ nextClose?: string | undefined;
542
+ } | undefined, {
543
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
544
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
545
545
  }>;
546
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>;
547
+ start?: string | undefined;
548
+ end?: string | undefined;
549
+ } | undefined, {
550
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
551
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
552
552
  }>;
553
553
  }>;
554
554
  }>;
@@ -562,16 +562,16 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
562
562
  icon?: string | null | undefined;
563
563
  iconUrl?: string | null | undefined;
564
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
- };
565
+ instrumentType?: string | undefined;
566
+ ticker?: string | undefined;
567
+ market?: {
568
+ nextOpen?: string | undefined;
569
+ nextClose?: string | undefined;
570
+ } | undefined;
571
+ nextPause?: {
572
+ start?: string | undefined;
573
+ end?: string | undefined;
574
+ } | undefined;
575
575
  } | undefined;
576
576
  }, {
577
577
  /**
@@ -604,32 +604,32 @@ export declare const StepSchema: import("@metamask/superstruct").Struct<{
604
604
  */
605
605
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
606
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
- };
607
+ instrumentType?: string | undefined;
608
+ ticker?: string | undefined;
609
+ market?: {
610
+ nextOpen?: string | undefined;
611
+ nextClose?: string | undefined;
612
+ } | undefined;
613
+ nextPause?: {
614
+ start?: string | undefined;
615
+ end?: string | undefined;
616
+ } | undefined;
617
617
  } | undefined, {
618
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
619
- ticker: import("@metamask/superstruct").Struct<string, null>;
618
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
619
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
620
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>;
621
+ nextOpen?: string | undefined;
622
+ nextClose?: string | undefined;
623
+ } | undefined, {
624
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
625
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
626
626
  }>;
627
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>;
628
+ start?: string | undefined;
629
+ end?: string | undefined;
630
+ } | undefined, {
631
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
632
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
633
633
  }>;
634
634
  }>;
635
635
  }>;
@@ -863,16 +863,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
863
863
  icon?: string | null | undefined;
864
864
  iconUrl?: string | null | undefined;
865
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
- };
866
+ instrumentType?: string | undefined;
867
+ ticker?: string | undefined;
868
+ market?: {
869
+ nextOpen?: string | undefined;
870
+ nextClose?: string | undefined;
871
+ } | undefined;
872
+ nextPause?: {
873
+ start?: string | undefined;
874
+ end?: string | undefined;
875
+ } | undefined;
876
876
  } | undefined;
877
877
  };
878
878
  destAsset: {
@@ -885,16 +885,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
885
885
  icon?: string | null | undefined;
886
886
  iconUrl?: string | null | undefined;
887
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
- };
888
+ instrumentType?: string | undefined;
889
+ ticker?: string | undefined;
890
+ market?: {
891
+ nextOpen?: string | undefined;
892
+ nextClose?: string | undefined;
893
+ } | undefined;
894
+ nextPause?: {
895
+ start?: string | undefined;
896
+ end?: string | undefined;
897
+ } | undefined;
898
898
  } | undefined;
899
899
  };
900
900
  requestId: string;
@@ -914,16 +914,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
914
914
  icon?: string | null | undefined;
915
915
  iconUrl?: string | null | undefined;
916
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
- };
917
+ instrumentType?: string | undefined;
918
+ ticker?: string | undefined;
919
+ market?: {
920
+ nextOpen?: string | undefined;
921
+ nextClose?: string | undefined;
922
+ } | undefined;
923
+ nextPause?: {
924
+ start?: string | undefined;
925
+ end?: string | undefined;
926
+ } | undefined;
927
927
  } | undefined;
928
928
  };
929
929
  };
@@ -939,16 +939,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
939
939
  icon?: string | null | undefined;
940
940
  iconUrl?: string | null | undefined;
941
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
- };
942
+ instrumentType?: string | undefined;
943
+ ticker?: string | undefined;
944
+ market?: {
945
+ nextOpen?: string | undefined;
946
+ nextClose?: string | undefined;
947
+ } | undefined;
948
+ nextPause?: {
949
+ start?: string | undefined;
950
+ end?: string | undefined;
951
+ } | undefined;
952
952
  } | undefined;
953
953
  };
954
954
  } & {
@@ -971,16 +971,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
971
971
  icon?: string | null | undefined;
972
972
  iconUrl?: string | null | undefined;
973
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
- };
974
+ instrumentType?: string | undefined;
975
+ ticker?: string | undefined;
976
+ market?: {
977
+ nextOpen?: string | undefined;
978
+ nextClose?: string | undefined;
979
+ } | undefined;
980
+ nextPause?: {
981
+ start?: string | undefined;
982
+ end?: string | undefined;
983
+ } | undefined;
984
984
  } | undefined;
985
985
  };
986
986
  destAsset: {
@@ -993,16 +993,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
993
993
  icon?: string | null | undefined;
994
994
  iconUrl?: string | null | undefined;
995
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
- };
996
+ instrumentType?: string | undefined;
997
+ ticker?: string | undefined;
998
+ market?: {
999
+ nextOpen?: string | undefined;
1000
+ nextClose?: string | undefined;
1001
+ } | undefined;
1002
+ nextPause?: {
1003
+ start?: string | undefined;
1004
+ end?: string | undefined;
1005
+ } | undefined;
1006
1006
  } | undefined;
1007
1007
  };
1008
1008
  srcAmount: string;
@@ -1027,16 +1027,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1027
1027
  icon?: string | null | undefined;
1028
1028
  iconUrl?: string | null | undefined;
1029
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
- };
1030
+ instrumentType?: string | undefined;
1031
+ ticker?: string | undefined;
1032
+ market?: {
1033
+ nextOpen?: string | undefined;
1034
+ nextClose?: string | undefined;
1035
+ } | undefined;
1036
+ nextPause?: {
1037
+ start?: string | undefined;
1038
+ end?: string | undefined;
1039
+ } | undefined;
1040
1040
  } | undefined;
1041
1041
  };
1042
1042
  destAsset: {
@@ -1049,16 +1049,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1049
1049
  icon?: string | null | undefined;
1050
1050
  iconUrl?: string | null | undefined;
1051
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
- };
1052
+ instrumentType?: string | undefined;
1053
+ ticker?: string | undefined;
1054
+ market?: {
1055
+ nextOpen?: string | undefined;
1056
+ nextClose?: string | undefined;
1057
+ } | undefined;
1058
+ nextPause?: {
1059
+ start?: string | undefined;
1060
+ end?: string | undefined;
1061
+ } | undefined;
1062
1062
  } | undefined;
1063
1063
  };
1064
1064
  srcAmount: string;
@@ -1111,16 +1111,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1111
1111
  icon?: string | null | undefined;
1112
1112
  iconUrl?: string | null | undefined;
1113
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
- };
1114
+ instrumentType?: string | undefined;
1115
+ ticker?: string | undefined;
1116
+ market?: {
1117
+ nextOpen?: string | undefined;
1118
+ nextClose?: string | undefined;
1119
+ } | undefined;
1120
+ nextPause?: {
1121
+ start?: string | undefined;
1122
+ end?: string | undefined;
1123
+ } | undefined;
1124
1124
  } | undefined;
1125
1125
  }, {
1126
1126
  /**
@@ -1153,32 +1153,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1153
1153
  */
1154
1154
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1155
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
- };
1156
+ instrumentType?: string | undefined;
1157
+ ticker?: string | undefined;
1158
+ market?: {
1159
+ nextOpen?: string | undefined;
1160
+ nextClose?: string | undefined;
1161
+ } | undefined;
1162
+ nextPause?: {
1163
+ start?: string | undefined;
1164
+ end?: string | undefined;
1165
+ } | undefined;
1166
1166
  } | undefined, {
1167
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1168
- ticker: import("@metamask/superstruct").Struct<string, null>;
1167
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1168
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1169
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>;
1170
+ nextOpen?: string | undefined;
1171
+ nextClose?: string | undefined;
1172
+ } | undefined, {
1173
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1174
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1175
1175
  }>;
1176
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>;
1177
+ start?: string | undefined;
1178
+ end?: string | undefined;
1179
+ } | undefined, {
1180
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1181
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1182
1182
  }>;
1183
1183
  }>;
1184
1184
  }>;
@@ -1198,16 +1198,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1198
1198
  icon?: string | null | undefined;
1199
1199
  iconUrl?: string | null | undefined;
1200
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
- };
1201
+ instrumentType?: string | undefined;
1202
+ ticker?: string | undefined;
1203
+ market?: {
1204
+ nextOpen?: string | undefined;
1205
+ nextClose?: string | undefined;
1206
+ } | undefined;
1207
+ nextPause?: {
1208
+ start?: string | undefined;
1209
+ end?: string | undefined;
1210
+ } | undefined;
1211
1211
  } | undefined;
1212
1212
  }, {
1213
1213
  /**
@@ -1240,32 +1240,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1240
1240
  */
1241
1241
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1242
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
- };
1243
+ instrumentType?: string | undefined;
1244
+ ticker?: string | undefined;
1245
+ market?: {
1246
+ nextOpen?: string | undefined;
1247
+ nextClose?: string | undefined;
1248
+ } | undefined;
1249
+ nextPause?: {
1250
+ start?: string | undefined;
1251
+ end?: string | undefined;
1252
+ } | undefined;
1253
1253
  } | undefined, {
1254
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1255
- ticker: import("@metamask/superstruct").Struct<string, null>;
1254
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1255
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1256
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>;
1257
+ nextOpen?: string | undefined;
1258
+ nextClose?: string | undefined;
1259
+ } | undefined, {
1260
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1261
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1262
1262
  }>;
1263
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>;
1264
+ start?: string | undefined;
1265
+ end?: string | undefined;
1266
+ } | undefined, {
1267
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1268
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1269
1269
  }>;
1270
1270
  }>;
1271
1271
  }>;
@@ -1290,16 +1290,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1290
1290
  icon?: string | null | undefined;
1291
1291
  iconUrl?: string | null | undefined;
1292
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
- };
1293
+ instrumentType?: string | undefined;
1294
+ ticker?: string | undefined;
1295
+ market?: {
1296
+ nextOpen?: string | undefined;
1297
+ nextClose?: string | undefined;
1298
+ } | undefined;
1299
+ nextPause?: {
1300
+ start?: string | undefined;
1301
+ end?: string | undefined;
1302
+ } | undefined;
1303
1303
  } | undefined;
1304
1304
  };
1305
1305
  };
@@ -1315,16 +1315,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1315
1315
  icon?: string | null | undefined;
1316
1316
  iconUrl?: string | null | undefined;
1317
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
- };
1318
+ instrumentType?: string | undefined;
1319
+ ticker?: string | undefined;
1320
+ market?: {
1321
+ nextOpen?: string | undefined;
1322
+ nextClose?: string | undefined;
1323
+ } | undefined;
1324
+ nextPause?: {
1325
+ start?: string | undefined;
1326
+ end?: string | undefined;
1327
+ } | undefined;
1328
1328
  } | undefined;
1329
1329
  };
1330
1330
  } & {
@@ -1344,16 +1344,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1344
1344
  icon?: string | null | undefined;
1345
1345
  iconUrl?: string | null | undefined;
1346
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
- };
1347
+ instrumentType?: string | undefined;
1348
+ ticker?: string | undefined;
1349
+ market?: {
1350
+ nextOpen?: string | undefined;
1351
+ nextClose?: string | undefined;
1352
+ } | undefined;
1353
+ nextPause?: {
1354
+ start?: string | undefined;
1355
+ end?: string | undefined;
1356
+ } | undefined;
1357
1357
  } | undefined;
1358
1358
  };
1359
1359
  }, {
@@ -1368,16 +1368,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1368
1368
  icon?: string | null | undefined;
1369
1369
  iconUrl?: string | null | undefined;
1370
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
- };
1371
+ instrumentType?: string | undefined;
1372
+ ticker?: string | undefined;
1373
+ market?: {
1374
+ nextOpen?: string | undefined;
1375
+ nextClose?: string | undefined;
1376
+ } | undefined;
1377
+ nextPause?: {
1378
+ start?: string | undefined;
1379
+ end?: string | undefined;
1380
+ } | undefined;
1381
1381
  } | undefined;
1382
1382
  }, {
1383
1383
  /**
@@ -1410,32 +1410,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1410
1410
  */
1411
1411
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1412
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
- };
1413
+ instrumentType?: string | undefined;
1414
+ ticker?: string | undefined;
1415
+ market?: {
1416
+ nextOpen?: string | undefined;
1417
+ nextClose?: string | undefined;
1418
+ } | undefined;
1419
+ nextPause?: {
1420
+ start?: string | undefined;
1421
+ end?: string | undefined;
1422
+ } | undefined;
1423
1423
  } | undefined, {
1424
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1425
- ticker: import("@metamask/superstruct").Struct<string, null>;
1424
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1425
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1426
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>;
1427
+ nextOpen?: string | undefined;
1428
+ nextClose?: string | undefined;
1429
+ } | undefined, {
1430
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1431
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1432
1432
  }>;
1433
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>;
1434
+ start?: string | undefined;
1435
+ end?: string | undefined;
1436
+ } | undefined, {
1437
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1438
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1439
1439
  }>;
1440
1440
  }>;
1441
1441
  }>;
@@ -1456,16 +1456,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1456
1456
  icon?: string | null | undefined;
1457
1457
  iconUrl?: string | null | undefined;
1458
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
- };
1459
+ instrumentType?: string | undefined;
1460
+ ticker?: string | undefined;
1461
+ market?: {
1462
+ nextOpen?: string | undefined;
1463
+ nextClose?: string | undefined;
1464
+ } | undefined;
1465
+ nextPause?: {
1466
+ start?: string | undefined;
1467
+ end?: string | undefined;
1468
+ } | undefined;
1469
1469
  } | undefined;
1470
1470
  };
1471
1471
  } & {
@@ -1493,16 +1493,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1493
1493
  icon?: string | null | undefined;
1494
1494
  iconUrl?: string | null | undefined;
1495
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
- };
1496
+ instrumentType?: string | undefined;
1497
+ ticker?: string | undefined;
1498
+ market?: {
1499
+ nextOpen?: string | undefined;
1500
+ nextClose?: string | undefined;
1501
+ } | undefined;
1502
+ nextPause?: {
1503
+ start?: string | undefined;
1504
+ end?: string | undefined;
1505
+ } | undefined;
1506
1506
  } | undefined;
1507
1507
  };
1508
1508
  destAsset: {
@@ -1515,16 +1515,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1515
1515
  icon?: string | null | undefined;
1516
1516
  iconUrl?: string | null | undefined;
1517
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
- };
1518
+ instrumentType?: string | undefined;
1519
+ ticker?: string | undefined;
1520
+ market?: {
1521
+ nextOpen?: string | undefined;
1522
+ nextClose?: string | undefined;
1523
+ } | undefined;
1524
+ nextPause?: {
1525
+ start?: string | undefined;
1526
+ end?: string | undefined;
1527
+ } | undefined;
1528
1528
  } | undefined;
1529
1529
  };
1530
1530
  srcAmount: string;
@@ -1548,16 +1548,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1548
1548
  icon?: string | null | undefined;
1549
1549
  iconUrl?: string | null | undefined;
1550
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
- };
1551
+ instrumentType?: string | undefined;
1552
+ ticker?: string | undefined;
1553
+ market?: {
1554
+ nextOpen?: string | undefined;
1555
+ nextClose?: string | undefined;
1556
+ } | undefined;
1557
+ nextPause?: {
1558
+ start?: string | undefined;
1559
+ end?: string | undefined;
1560
+ } | undefined;
1561
1561
  } | undefined;
1562
1562
  };
1563
1563
  destAsset: {
@@ -1570,16 +1570,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1570
1570
  icon?: string | null | undefined;
1571
1571
  iconUrl?: string | null | undefined;
1572
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
- };
1573
+ instrumentType?: string | undefined;
1574
+ ticker?: string | undefined;
1575
+ market?: {
1576
+ nextOpen?: string | undefined;
1577
+ nextClose?: string | undefined;
1578
+ } | undefined;
1579
+ nextPause?: {
1580
+ start?: string | undefined;
1581
+ end?: string | undefined;
1582
+ } | undefined;
1583
1583
  } | undefined;
1584
1584
  };
1585
1585
  srcAmount: string;
@@ -1608,16 +1608,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1608
1608
  icon?: string | null | undefined;
1609
1609
  iconUrl?: string | null | undefined;
1610
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
- };
1611
+ instrumentType?: string | undefined;
1612
+ ticker?: string | undefined;
1613
+ market?: {
1614
+ nextOpen?: string | undefined;
1615
+ nextClose?: string | undefined;
1616
+ } | undefined;
1617
+ nextPause?: {
1618
+ start?: string | undefined;
1619
+ end?: string | undefined;
1620
+ } | undefined;
1621
1621
  } | undefined;
1622
1622
  }, {
1623
1623
  /**
@@ -1650,32 +1650,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1650
1650
  */
1651
1651
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1652
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
- };
1653
+ instrumentType?: string | undefined;
1654
+ ticker?: string | undefined;
1655
+ market?: {
1656
+ nextOpen?: string | undefined;
1657
+ nextClose?: string | undefined;
1658
+ } | undefined;
1659
+ nextPause?: {
1660
+ start?: string | undefined;
1661
+ end?: string | undefined;
1662
+ } | undefined;
1663
1663
  } | undefined, {
1664
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1665
- ticker: import("@metamask/superstruct").Struct<string, null>;
1664
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1665
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1666
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>;
1667
+ nextOpen?: string | undefined;
1668
+ nextClose?: string | undefined;
1669
+ } | undefined, {
1670
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1671
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1672
1672
  }>;
1673
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>;
1674
+ start?: string | undefined;
1675
+ end?: string | undefined;
1676
+ } | undefined, {
1677
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1678
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1679
1679
  }>;
1680
1680
  }>;
1681
1681
  }>;
@@ -1689,16 +1689,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1689
1689
  icon?: string | null | undefined;
1690
1690
  iconUrl?: string | null | undefined;
1691
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
- };
1692
+ instrumentType?: string | undefined;
1693
+ ticker?: string | undefined;
1694
+ market?: {
1695
+ nextOpen?: string | undefined;
1696
+ nextClose?: string | undefined;
1697
+ } | undefined;
1698
+ nextPause?: {
1699
+ start?: string | undefined;
1700
+ end?: string | undefined;
1701
+ } | undefined;
1702
1702
  } | undefined;
1703
1703
  }, {
1704
1704
  /**
@@ -1731,32 +1731,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1731
1731
  */
1732
1732
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1733
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
- };
1734
+ instrumentType?: string | undefined;
1735
+ ticker?: string | undefined;
1736
+ market?: {
1737
+ nextOpen?: string | undefined;
1738
+ nextClose?: string | undefined;
1739
+ } | undefined;
1740
+ nextPause?: {
1741
+ start?: string | undefined;
1742
+ end?: string | undefined;
1743
+ } | undefined;
1744
1744
  } | undefined, {
1745
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1746
- ticker: import("@metamask/superstruct").Struct<string, null>;
1745
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1746
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1747
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>;
1748
+ nextOpen?: string | undefined;
1749
+ nextClose?: string | undefined;
1750
+ } | undefined, {
1751
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1752
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1753
1753
  }>;
1754
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>;
1755
+ start?: string | undefined;
1756
+ end?: string | undefined;
1757
+ } | undefined, {
1758
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1759
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1760
1760
  }>;
1761
1761
  }>;
1762
1762
  }>;
@@ -1785,16 +1785,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1785
1785
  icon?: string | null | undefined;
1786
1786
  iconUrl?: string | null | undefined;
1787
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
- };
1788
+ instrumentType?: string | undefined;
1789
+ ticker?: string | undefined;
1790
+ market?: {
1791
+ nextOpen?: string | undefined;
1792
+ nextClose?: string | undefined;
1793
+ } | undefined;
1794
+ nextPause?: {
1795
+ start?: string | undefined;
1796
+ end?: string | undefined;
1797
+ } | undefined;
1798
1798
  } | undefined;
1799
1799
  };
1800
1800
  destAsset: {
@@ -1807,16 +1807,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1807
1807
  icon?: string | null | undefined;
1808
1808
  iconUrl?: string | null | undefined;
1809
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
- };
1810
+ instrumentType?: string | undefined;
1811
+ ticker?: string | undefined;
1812
+ market?: {
1813
+ nextOpen?: string | undefined;
1814
+ nextClose?: string | undefined;
1815
+ } | undefined;
1816
+ nextPause?: {
1817
+ start?: string | undefined;
1818
+ end?: string | undefined;
1819
+ } | undefined;
1820
1820
  } | undefined;
1821
1821
  };
1822
1822
  srcAmount: string;
@@ -1845,16 +1845,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1845
1845
  icon?: string | null | undefined;
1846
1846
  iconUrl?: string | null | undefined;
1847
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
- };
1848
+ instrumentType?: string | undefined;
1849
+ ticker?: string | undefined;
1850
+ market?: {
1851
+ nextOpen?: string | undefined;
1852
+ nextClose?: string | undefined;
1853
+ } | undefined;
1854
+ nextPause?: {
1855
+ start?: string | undefined;
1856
+ end?: string | undefined;
1857
+ } | undefined;
1858
1858
  } | undefined;
1859
1859
  }, {
1860
1860
  /**
@@ -1887,32 +1887,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1887
1887
  */
1888
1888
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1889
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
- };
1890
+ instrumentType?: string | undefined;
1891
+ ticker?: string | undefined;
1892
+ market?: {
1893
+ nextOpen?: string | undefined;
1894
+ nextClose?: string | undefined;
1895
+ } | undefined;
1896
+ nextPause?: {
1897
+ start?: string | undefined;
1898
+ end?: string | undefined;
1899
+ } | undefined;
1900
1900
  } | undefined, {
1901
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1902
- ticker: import("@metamask/superstruct").Struct<string, null>;
1901
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1902
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1903
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>;
1904
+ nextOpen?: string | undefined;
1905
+ nextClose?: string | undefined;
1906
+ } | undefined, {
1907
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1908
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1909
1909
  }>;
1910
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>;
1911
+ start?: string | undefined;
1912
+ end?: string | undefined;
1913
+ } | undefined, {
1914
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1915
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1916
1916
  }>;
1917
1917
  }>;
1918
1918
  }>;
@@ -1926,16 +1926,16 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1926
1926
  icon?: string | null | undefined;
1927
1927
  iconUrl?: string | null | undefined;
1928
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
- };
1929
+ instrumentType?: string | undefined;
1930
+ ticker?: string | undefined;
1931
+ market?: {
1932
+ nextOpen?: string | undefined;
1933
+ nextClose?: string | undefined;
1934
+ } | undefined;
1935
+ nextPause?: {
1936
+ start?: string | undefined;
1937
+ end?: string | undefined;
1938
+ } | undefined;
1939
1939
  } | undefined;
1940
1940
  }, {
1941
1941
  /**
@@ -1968,32 +1968,32 @@ export declare const QuoteSchema: import("@metamask/superstruct").Struct<{
1968
1968
  */
1969
1969
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
1970
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
- };
1971
+ instrumentType?: string | undefined;
1972
+ ticker?: string | undefined;
1973
+ market?: {
1974
+ nextOpen?: string | undefined;
1975
+ nextClose?: string | undefined;
1976
+ } | undefined;
1977
+ nextPause?: {
1978
+ start?: string | undefined;
1979
+ end?: string | undefined;
1980
+ } | undefined;
1981
1981
  } | undefined, {
1982
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
1983
- ticker: import("@metamask/superstruct").Struct<string, null>;
1982
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
1983
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
1984
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>;
1985
+ nextOpen?: string | undefined;
1986
+ nextClose?: string | undefined;
1987
+ } | undefined, {
1988
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
1989
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
1990
1990
  }>;
1991
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>;
1992
+ start?: string | undefined;
1993
+ end?: string | undefined;
1994
+ } | undefined, {
1995
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
1996
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
1997
1997
  }>;
1998
1998
  }>;
1999
1999
  }>;
@@ -2205,16 +2205,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2205
2205
  icon?: string | null | undefined;
2206
2206
  iconUrl?: string | null | undefined;
2207
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
- };
2208
+ instrumentType?: string | undefined;
2209
+ ticker?: string | undefined;
2210
+ market?: {
2211
+ nextOpen?: string | undefined;
2212
+ nextClose?: string | undefined;
2213
+ } | undefined;
2214
+ nextPause?: {
2215
+ start?: string | undefined;
2216
+ end?: string | undefined;
2217
+ } | undefined;
2218
2218
  } | undefined;
2219
2219
  };
2220
2220
  destAsset: {
@@ -2227,16 +2227,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2227
2227
  icon?: string | null | undefined;
2228
2228
  iconUrl?: string | null | undefined;
2229
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
- };
2230
+ instrumentType?: string | undefined;
2231
+ ticker?: string | undefined;
2232
+ market?: {
2233
+ nextOpen?: string | undefined;
2234
+ nextClose?: string | undefined;
2235
+ } | undefined;
2236
+ nextPause?: {
2237
+ start?: string | undefined;
2238
+ end?: string | undefined;
2239
+ } | undefined;
2240
2240
  } | undefined;
2241
2241
  };
2242
2242
  requestId: string;
@@ -2256,16 +2256,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2256
2256
  icon?: string | null | undefined;
2257
2257
  iconUrl?: string | null | undefined;
2258
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
- };
2259
+ instrumentType?: string | undefined;
2260
+ ticker?: string | undefined;
2261
+ market?: {
2262
+ nextOpen?: string | undefined;
2263
+ nextClose?: string | undefined;
2264
+ } | undefined;
2265
+ nextPause?: {
2266
+ start?: string | undefined;
2267
+ end?: string | undefined;
2268
+ } | undefined;
2269
2269
  } | undefined;
2270
2270
  };
2271
2271
  };
@@ -2281,16 +2281,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2281
2281
  icon?: string | null | undefined;
2282
2282
  iconUrl?: string | null | undefined;
2283
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
- };
2284
+ instrumentType?: string | undefined;
2285
+ ticker?: string | undefined;
2286
+ market?: {
2287
+ nextOpen?: string | undefined;
2288
+ nextClose?: string | undefined;
2289
+ } | undefined;
2290
+ nextPause?: {
2291
+ start?: string | undefined;
2292
+ end?: string | undefined;
2293
+ } | undefined;
2294
2294
  } | undefined;
2295
2295
  };
2296
2296
  } & {
@@ -2313,16 +2313,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2313
2313
  icon?: string | null | undefined;
2314
2314
  iconUrl?: string | null | undefined;
2315
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
- };
2316
+ instrumentType?: string | undefined;
2317
+ ticker?: string | undefined;
2318
+ market?: {
2319
+ nextOpen?: string | undefined;
2320
+ nextClose?: string | undefined;
2321
+ } | undefined;
2322
+ nextPause?: {
2323
+ start?: string | undefined;
2324
+ end?: string | undefined;
2325
+ } | undefined;
2326
2326
  } | undefined;
2327
2327
  };
2328
2328
  destAsset: {
@@ -2335,16 +2335,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2335
2335
  icon?: string | null | undefined;
2336
2336
  iconUrl?: string | null | undefined;
2337
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
- };
2338
+ instrumentType?: string | undefined;
2339
+ ticker?: string | undefined;
2340
+ market?: {
2341
+ nextOpen?: string | undefined;
2342
+ nextClose?: string | undefined;
2343
+ } | undefined;
2344
+ nextPause?: {
2345
+ start?: string | undefined;
2346
+ end?: string | undefined;
2347
+ } | undefined;
2348
2348
  } | undefined;
2349
2349
  };
2350
2350
  srcAmount: string;
@@ -2369,16 +2369,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2369
2369
  icon?: string | null | undefined;
2370
2370
  iconUrl?: string | null | undefined;
2371
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
- };
2372
+ instrumentType?: string | undefined;
2373
+ ticker?: string | undefined;
2374
+ market?: {
2375
+ nextOpen?: string | undefined;
2376
+ nextClose?: string | undefined;
2377
+ } | undefined;
2378
+ nextPause?: {
2379
+ start?: string | undefined;
2380
+ end?: string | undefined;
2381
+ } | undefined;
2382
2382
  } | undefined;
2383
2383
  };
2384
2384
  destAsset: {
@@ -2391,16 +2391,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2391
2391
  icon?: string | null | undefined;
2392
2392
  iconUrl?: string | null | undefined;
2393
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
- };
2394
+ instrumentType?: string | undefined;
2395
+ ticker?: string | undefined;
2396
+ market?: {
2397
+ nextOpen?: string | undefined;
2398
+ nextClose?: string | undefined;
2399
+ } | undefined;
2400
+ nextPause?: {
2401
+ start?: string | undefined;
2402
+ end?: string | undefined;
2403
+ } | undefined;
2404
2404
  } | undefined;
2405
2405
  };
2406
2406
  srcAmount: string;
@@ -2495,16 +2495,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2495
2495
  icon?: string | null | undefined;
2496
2496
  iconUrl?: string | null | undefined;
2497
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
- };
2498
+ instrumentType?: string | undefined;
2499
+ ticker?: string | undefined;
2500
+ market?: {
2501
+ nextOpen?: string | undefined;
2502
+ nextClose?: string | undefined;
2503
+ } | undefined;
2504
+ nextPause?: {
2505
+ start?: string | undefined;
2506
+ end?: string | undefined;
2507
+ } | undefined;
2508
2508
  } | undefined;
2509
2509
  };
2510
2510
  destAsset: {
@@ -2517,16 +2517,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2517
2517
  icon?: string | null | undefined;
2518
2518
  iconUrl?: string | null | undefined;
2519
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
- };
2520
+ instrumentType?: string | undefined;
2521
+ ticker?: string | undefined;
2522
+ market?: {
2523
+ nextOpen?: string | undefined;
2524
+ nextClose?: string | undefined;
2525
+ } | undefined;
2526
+ nextPause?: {
2527
+ start?: string | undefined;
2528
+ end?: string | undefined;
2529
+ } | undefined;
2530
2530
  } | undefined;
2531
2531
  };
2532
2532
  requestId: string;
@@ -2546,16 +2546,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2546
2546
  icon?: string | null | undefined;
2547
2547
  iconUrl?: string | null | undefined;
2548
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
- };
2549
+ instrumentType?: string | undefined;
2550
+ ticker?: string | undefined;
2551
+ market?: {
2552
+ nextOpen?: string | undefined;
2553
+ nextClose?: string | undefined;
2554
+ } | undefined;
2555
+ nextPause?: {
2556
+ start?: string | undefined;
2557
+ end?: string | undefined;
2558
+ } | undefined;
2559
2559
  } | undefined;
2560
2560
  };
2561
2561
  };
@@ -2571,16 +2571,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2571
2571
  icon?: string | null | undefined;
2572
2572
  iconUrl?: string | null | undefined;
2573
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
- };
2574
+ instrumentType?: string | undefined;
2575
+ ticker?: string | undefined;
2576
+ market?: {
2577
+ nextOpen?: string | undefined;
2578
+ nextClose?: string | undefined;
2579
+ } | undefined;
2580
+ nextPause?: {
2581
+ start?: string | undefined;
2582
+ end?: string | undefined;
2583
+ } | undefined;
2584
2584
  } | undefined;
2585
2585
  };
2586
2586
  } & {
@@ -2603,16 +2603,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2603
2603
  icon?: string | null | undefined;
2604
2604
  iconUrl?: string | null | undefined;
2605
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
- };
2606
+ instrumentType?: string | undefined;
2607
+ ticker?: string | undefined;
2608
+ market?: {
2609
+ nextOpen?: string | undefined;
2610
+ nextClose?: string | undefined;
2611
+ } | undefined;
2612
+ nextPause?: {
2613
+ start?: string | undefined;
2614
+ end?: string | undefined;
2615
+ } | undefined;
2616
2616
  } | undefined;
2617
2617
  };
2618
2618
  destAsset: {
@@ -2625,16 +2625,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2625
2625
  icon?: string | null | undefined;
2626
2626
  iconUrl?: string | null | undefined;
2627
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
- };
2628
+ instrumentType?: string | undefined;
2629
+ ticker?: string | undefined;
2630
+ market?: {
2631
+ nextOpen?: string | undefined;
2632
+ nextClose?: string | undefined;
2633
+ } | undefined;
2634
+ nextPause?: {
2635
+ start?: string | undefined;
2636
+ end?: string | undefined;
2637
+ } | undefined;
2638
2638
  } | undefined;
2639
2639
  };
2640
2640
  srcAmount: string;
@@ -2659,16 +2659,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2659
2659
  icon?: string | null | undefined;
2660
2660
  iconUrl?: string | null | undefined;
2661
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
- };
2662
+ instrumentType?: string | undefined;
2663
+ ticker?: string | undefined;
2664
+ market?: {
2665
+ nextOpen?: string | undefined;
2666
+ nextClose?: string | undefined;
2667
+ } | undefined;
2668
+ nextPause?: {
2669
+ start?: string | undefined;
2670
+ end?: string | undefined;
2671
+ } | undefined;
2672
2672
  } | undefined;
2673
2673
  };
2674
2674
  destAsset: {
@@ -2681,16 +2681,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2681
2681
  icon?: string | null | undefined;
2682
2682
  iconUrl?: string | null | undefined;
2683
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
- };
2684
+ instrumentType?: string | undefined;
2685
+ ticker?: string | undefined;
2686
+ market?: {
2687
+ nextOpen?: string | undefined;
2688
+ nextClose?: string | undefined;
2689
+ } | undefined;
2690
+ nextPause?: {
2691
+ start?: string | undefined;
2692
+ end?: string | undefined;
2693
+ } | undefined;
2694
2694
  } | undefined;
2695
2695
  };
2696
2696
  srcAmount: string;
@@ -2743,16 +2743,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2743
2743
  icon?: string | null | undefined;
2744
2744
  iconUrl?: string | null | undefined;
2745
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
- };
2746
+ instrumentType?: string | undefined;
2747
+ ticker?: string | undefined;
2748
+ market?: {
2749
+ nextOpen?: string | undefined;
2750
+ nextClose?: string | undefined;
2751
+ } | undefined;
2752
+ nextPause?: {
2753
+ start?: string | undefined;
2754
+ end?: string | undefined;
2755
+ } | undefined;
2756
2756
  } | undefined;
2757
2757
  }, {
2758
2758
  /**
@@ -2785,32 +2785,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2785
2785
  */
2786
2786
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
2787
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
- };
2788
+ instrumentType?: string | undefined;
2789
+ ticker?: string | undefined;
2790
+ market?: {
2791
+ nextOpen?: string | undefined;
2792
+ nextClose?: string | undefined;
2793
+ } | undefined;
2794
+ nextPause?: {
2795
+ start?: string | undefined;
2796
+ end?: string | undefined;
2797
+ } | undefined;
2798
2798
  } | undefined, {
2799
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
2800
- ticker: import("@metamask/superstruct").Struct<string, null>;
2799
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
2800
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
2801
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>;
2802
+ nextOpen?: string | undefined;
2803
+ nextClose?: string | undefined;
2804
+ } | undefined, {
2805
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
2806
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
2807
2807
  }>;
2808
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>;
2809
+ start?: string | undefined;
2810
+ end?: string | undefined;
2811
+ } | undefined, {
2812
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
2813
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
2814
2814
  }>;
2815
2815
  }>;
2816
2816
  }>;
@@ -2830,16 +2830,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2830
2830
  icon?: string | null | undefined;
2831
2831
  iconUrl?: string | null | undefined;
2832
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
- };
2833
+ instrumentType?: string | undefined;
2834
+ ticker?: string | undefined;
2835
+ market?: {
2836
+ nextOpen?: string | undefined;
2837
+ nextClose?: string | undefined;
2838
+ } | undefined;
2839
+ nextPause?: {
2840
+ start?: string | undefined;
2841
+ end?: string | undefined;
2842
+ } | undefined;
2843
2843
  } | undefined;
2844
2844
  }, {
2845
2845
  /**
@@ -2872,32 +2872,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2872
2872
  */
2873
2873
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
2874
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
- };
2875
+ instrumentType?: string | undefined;
2876
+ ticker?: string | undefined;
2877
+ market?: {
2878
+ nextOpen?: string | undefined;
2879
+ nextClose?: string | undefined;
2880
+ } | undefined;
2881
+ nextPause?: {
2882
+ start?: string | undefined;
2883
+ end?: string | undefined;
2884
+ } | undefined;
2885
2885
  } | undefined, {
2886
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
2887
- ticker: import("@metamask/superstruct").Struct<string, null>;
2886
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
2887
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
2888
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>;
2889
+ nextOpen?: string | undefined;
2890
+ nextClose?: string | undefined;
2891
+ } | undefined, {
2892
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
2893
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
2894
2894
  }>;
2895
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>;
2896
+ start?: string | undefined;
2897
+ end?: string | undefined;
2898
+ } | undefined, {
2899
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
2900
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
2901
2901
  }>;
2902
2902
  }>;
2903
2903
  }>;
@@ -2922,16 +2922,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2922
2922
  icon?: string | null | undefined;
2923
2923
  iconUrl?: string | null | undefined;
2924
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
- };
2925
+ instrumentType?: string | undefined;
2926
+ ticker?: string | undefined;
2927
+ market?: {
2928
+ nextOpen?: string | undefined;
2929
+ nextClose?: string | undefined;
2930
+ } | undefined;
2931
+ nextPause?: {
2932
+ start?: string | undefined;
2933
+ end?: string | undefined;
2934
+ } | undefined;
2935
2935
  } | undefined;
2936
2936
  };
2937
2937
  };
@@ -2947,16 +2947,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2947
2947
  icon?: string | null | undefined;
2948
2948
  iconUrl?: string | null | undefined;
2949
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
- };
2950
+ instrumentType?: string | undefined;
2951
+ ticker?: string | undefined;
2952
+ market?: {
2953
+ nextOpen?: string | undefined;
2954
+ nextClose?: string | undefined;
2955
+ } | undefined;
2956
+ nextPause?: {
2957
+ start?: string | undefined;
2958
+ end?: string | undefined;
2959
+ } | undefined;
2960
2960
  } | undefined;
2961
2961
  };
2962
2962
  } & {
@@ -2976,16 +2976,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
2976
2976
  icon?: string | null | undefined;
2977
2977
  iconUrl?: string | null | undefined;
2978
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
- };
2979
+ instrumentType?: string | undefined;
2980
+ ticker?: string | undefined;
2981
+ market?: {
2982
+ nextOpen?: string | undefined;
2983
+ nextClose?: string | undefined;
2984
+ } | undefined;
2985
+ nextPause?: {
2986
+ start?: string | undefined;
2987
+ end?: string | undefined;
2988
+ } | undefined;
2989
2989
  } | undefined;
2990
2990
  };
2991
2991
  }, {
@@ -3000,16 +3000,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3000
3000
  icon?: string | null | undefined;
3001
3001
  iconUrl?: string | null | undefined;
3002
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
- };
3003
+ instrumentType?: string | undefined;
3004
+ ticker?: string | undefined;
3005
+ market?: {
3006
+ nextOpen?: string | undefined;
3007
+ nextClose?: string | undefined;
3008
+ } | undefined;
3009
+ nextPause?: {
3010
+ start?: string | undefined;
3011
+ end?: string | undefined;
3012
+ } | undefined;
3013
3013
  } | undefined;
3014
3014
  }, {
3015
3015
  /**
@@ -3042,32 +3042,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3042
3042
  */
3043
3043
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
3044
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
- };
3045
+ instrumentType?: string | undefined;
3046
+ ticker?: string | undefined;
3047
+ market?: {
3048
+ nextOpen?: string | undefined;
3049
+ nextClose?: string | undefined;
3050
+ } | undefined;
3051
+ nextPause?: {
3052
+ start?: string | undefined;
3053
+ end?: string | undefined;
3054
+ } | undefined;
3055
3055
  } | undefined, {
3056
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
3057
- ticker: import("@metamask/superstruct").Struct<string, null>;
3056
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
3057
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
3058
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>;
3059
+ nextOpen?: string | undefined;
3060
+ nextClose?: string | undefined;
3061
+ } | undefined, {
3062
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
3063
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
3064
3064
  }>;
3065
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>;
3066
+ start?: string | undefined;
3067
+ end?: string | undefined;
3068
+ } | undefined, {
3069
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
3070
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
3071
3071
  }>;
3072
3072
  }>;
3073
3073
  }>;
@@ -3088,16 +3088,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3088
3088
  icon?: string | null | undefined;
3089
3089
  iconUrl?: string | null | undefined;
3090
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
- };
3091
+ instrumentType?: string | undefined;
3092
+ ticker?: string | undefined;
3093
+ market?: {
3094
+ nextOpen?: string | undefined;
3095
+ nextClose?: string | undefined;
3096
+ } | undefined;
3097
+ nextPause?: {
3098
+ start?: string | undefined;
3099
+ end?: string | undefined;
3100
+ } | undefined;
3101
3101
  } | undefined;
3102
3102
  };
3103
3103
  } & {
@@ -3125,16 +3125,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3125
3125
  icon?: string | null | undefined;
3126
3126
  iconUrl?: string | null | undefined;
3127
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
- };
3128
+ instrumentType?: string | undefined;
3129
+ ticker?: string | undefined;
3130
+ market?: {
3131
+ nextOpen?: string | undefined;
3132
+ nextClose?: string | undefined;
3133
+ } | undefined;
3134
+ nextPause?: {
3135
+ start?: string | undefined;
3136
+ end?: string | undefined;
3137
+ } | undefined;
3138
3138
  } | undefined;
3139
3139
  };
3140
3140
  destAsset: {
@@ -3147,16 +3147,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3147
3147
  icon?: string | null | undefined;
3148
3148
  iconUrl?: string | null | undefined;
3149
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
- };
3150
+ instrumentType?: string | undefined;
3151
+ ticker?: string | undefined;
3152
+ market?: {
3153
+ nextOpen?: string | undefined;
3154
+ nextClose?: string | undefined;
3155
+ } | undefined;
3156
+ nextPause?: {
3157
+ start?: string | undefined;
3158
+ end?: string | undefined;
3159
+ } | undefined;
3160
3160
  } | undefined;
3161
3161
  };
3162
3162
  srcAmount: string;
@@ -3180,16 +3180,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3180
3180
  icon?: string | null | undefined;
3181
3181
  iconUrl?: string | null | undefined;
3182
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
- };
3183
+ instrumentType?: string | undefined;
3184
+ ticker?: string | undefined;
3185
+ market?: {
3186
+ nextOpen?: string | undefined;
3187
+ nextClose?: string | undefined;
3188
+ } | undefined;
3189
+ nextPause?: {
3190
+ start?: string | undefined;
3191
+ end?: string | undefined;
3192
+ } | undefined;
3193
3193
  } | undefined;
3194
3194
  };
3195
3195
  destAsset: {
@@ -3202,16 +3202,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3202
3202
  icon?: string | null | undefined;
3203
3203
  iconUrl?: string | null | undefined;
3204
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
- };
3205
+ instrumentType?: string | undefined;
3206
+ ticker?: string | undefined;
3207
+ market?: {
3208
+ nextOpen?: string | undefined;
3209
+ nextClose?: string | undefined;
3210
+ } | undefined;
3211
+ nextPause?: {
3212
+ start?: string | undefined;
3213
+ end?: string | undefined;
3214
+ } | undefined;
3215
3215
  } | undefined;
3216
3216
  };
3217
3217
  srcAmount: string;
@@ -3240,16 +3240,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3240
3240
  icon?: string | null | undefined;
3241
3241
  iconUrl?: string | null | undefined;
3242
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
- };
3243
+ instrumentType?: string | undefined;
3244
+ ticker?: string | undefined;
3245
+ market?: {
3246
+ nextOpen?: string | undefined;
3247
+ nextClose?: string | undefined;
3248
+ } | undefined;
3249
+ nextPause?: {
3250
+ start?: string | undefined;
3251
+ end?: string | undefined;
3252
+ } | undefined;
3253
3253
  } | undefined;
3254
3254
  }, {
3255
3255
  /**
@@ -3282,32 +3282,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3282
3282
  */
3283
3283
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
3284
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
- };
3285
+ instrumentType?: string | undefined;
3286
+ ticker?: string | undefined;
3287
+ market?: {
3288
+ nextOpen?: string | undefined;
3289
+ nextClose?: string | undefined;
3290
+ } | undefined;
3291
+ nextPause?: {
3292
+ start?: string | undefined;
3293
+ end?: string | undefined;
3294
+ } | undefined;
3295
3295
  } | undefined, {
3296
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
3297
- ticker: import("@metamask/superstruct").Struct<string, null>;
3296
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
3297
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
3298
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>;
3299
+ nextOpen?: string | undefined;
3300
+ nextClose?: string | undefined;
3301
+ } | undefined, {
3302
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
3303
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
3304
3304
  }>;
3305
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>;
3306
+ start?: string | undefined;
3307
+ end?: string | undefined;
3308
+ } | undefined, {
3309
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
3310
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
3311
3311
  }>;
3312
3312
  }>;
3313
3313
  }>;
@@ -3321,16 +3321,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3321
3321
  icon?: string | null | undefined;
3322
3322
  iconUrl?: string | null | undefined;
3323
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
- };
3324
+ instrumentType?: string | undefined;
3325
+ ticker?: string | undefined;
3326
+ market?: {
3327
+ nextOpen?: string | undefined;
3328
+ nextClose?: string | undefined;
3329
+ } | undefined;
3330
+ nextPause?: {
3331
+ start?: string | undefined;
3332
+ end?: string | undefined;
3333
+ } | undefined;
3334
3334
  } | undefined;
3335
3335
  }, {
3336
3336
  /**
@@ -3363,32 +3363,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3363
3363
  */
3364
3364
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
3365
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
- };
3366
+ instrumentType?: string | undefined;
3367
+ ticker?: string | undefined;
3368
+ market?: {
3369
+ nextOpen?: string | undefined;
3370
+ nextClose?: string | undefined;
3371
+ } | undefined;
3372
+ nextPause?: {
3373
+ start?: string | undefined;
3374
+ end?: string | undefined;
3375
+ } | undefined;
3376
3376
  } | undefined, {
3377
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
3378
- ticker: import("@metamask/superstruct").Struct<string, null>;
3377
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
3378
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
3379
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>;
3380
+ nextOpen?: string | undefined;
3381
+ nextClose?: string | undefined;
3382
+ } | undefined, {
3383
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
3384
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
3385
3385
  }>;
3386
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>;
3387
+ start?: string | undefined;
3388
+ end?: string | undefined;
3389
+ } | undefined, {
3390
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
3391
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
3392
3392
  }>;
3393
3393
  }>;
3394
3394
  }>;
@@ -3417,16 +3417,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3417
3417
  icon?: string | null | undefined;
3418
3418
  iconUrl?: string | null | undefined;
3419
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
- };
3420
+ instrumentType?: string | undefined;
3421
+ ticker?: string | undefined;
3422
+ market?: {
3423
+ nextOpen?: string | undefined;
3424
+ nextClose?: string | undefined;
3425
+ } | undefined;
3426
+ nextPause?: {
3427
+ start?: string | undefined;
3428
+ end?: string | undefined;
3429
+ } | undefined;
3430
3430
  } | undefined;
3431
3431
  };
3432
3432
  destAsset: {
@@ -3439,16 +3439,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3439
3439
  icon?: string | null | undefined;
3440
3440
  iconUrl?: string | null | undefined;
3441
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
- };
3442
+ instrumentType?: string | undefined;
3443
+ ticker?: string | undefined;
3444
+ market?: {
3445
+ nextOpen?: string | undefined;
3446
+ nextClose?: string | undefined;
3447
+ } | undefined;
3448
+ nextPause?: {
3449
+ start?: string | undefined;
3450
+ end?: string | undefined;
3451
+ } | undefined;
3452
3452
  } | undefined;
3453
3453
  };
3454
3454
  srcAmount: string;
@@ -3477,16 +3477,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3477
3477
  icon?: string | null | undefined;
3478
3478
  iconUrl?: string | null | undefined;
3479
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
- };
3480
+ instrumentType?: string | undefined;
3481
+ ticker?: string | undefined;
3482
+ market?: {
3483
+ nextOpen?: string | undefined;
3484
+ nextClose?: string | undefined;
3485
+ } | undefined;
3486
+ nextPause?: {
3487
+ start?: string | undefined;
3488
+ end?: string | undefined;
3489
+ } | undefined;
3490
3490
  } | undefined;
3491
3491
  }, {
3492
3492
  /**
@@ -3519,32 +3519,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3519
3519
  */
3520
3520
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
3521
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
- };
3522
+ instrumentType?: string | undefined;
3523
+ ticker?: string | undefined;
3524
+ market?: {
3525
+ nextOpen?: string | undefined;
3526
+ nextClose?: string | undefined;
3527
+ } | undefined;
3528
+ nextPause?: {
3529
+ start?: string | undefined;
3530
+ end?: string | undefined;
3531
+ } | undefined;
3532
3532
  } | undefined, {
3533
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
3534
- ticker: import("@metamask/superstruct").Struct<string, null>;
3533
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
3534
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
3535
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>;
3536
+ nextOpen?: string | undefined;
3537
+ nextClose?: string | undefined;
3538
+ } | undefined, {
3539
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
3540
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
3541
3541
  }>;
3542
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>;
3543
+ start?: string | undefined;
3544
+ end?: string | undefined;
3545
+ } | undefined, {
3546
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
3547
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
3548
3548
  }>;
3549
3549
  }>;
3550
3550
  }>;
@@ -3558,16 +3558,16 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3558
3558
  icon?: string | null | undefined;
3559
3559
  iconUrl?: string | null | undefined;
3560
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
- };
3561
+ instrumentType?: string | undefined;
3562
+ ticker?: string | undefined;
3563
+ market?: {
3564
+ nextOpen?: string | undefined;
3565
+ nextClose?: string | undefined;
3566
+ } | undefined;
3567
+ nextPause?: {
3568
+ start?: string | undefined;
3569
+ end?: string | undefined;
3570
+ } | undefined;
3571
3571
  } | undefined;
3572
3572
  }, {
3573
3573
  /**
@@ -3600,32 +3600,32 @@ export declare const QuoteResponseSchema: import("@metamask/superstruct").Struct
3600
3600
  */
3601
3601
  iconUrl: import("@metamask/superstruct").Struct<string | null | undefined, null>;
3602
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
- };
3603
+ instrumentType?: string | undefined;
3604
+ ticker?: string | undefined;
3605
+ market?: {
3606
+ nextOpen?: string | undefined;
3607
+ nextClose?: string | undefined;
3608
+ } | undefined;
3609
+ nextPause?: {
3610
+ start?: string | undefined;
3611
+ end?: string | undefined;
3612
+ } | undefined;
3613
3613
  } | undefined, {
3614
- instrumentType: import("@metamask/superstruct").Struct<string, null>;
3615
- ticker: import("@metamask/superstruct").Struct<string, null>;
3614
+ instrumentType: import("@metamask/superstruct").Struct<string | undefined, null>;
3615
+ ticker: import("@metamask/superstruct").Struct<string | undefined, null>;
3616
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>;
3617
+ nextOpen?: string | undefined;
3618
+ nextClose?: string | undefined;
3619
+ } | undefined, {
3620
+ nextOpen: import("@metamask/superstruct").Struct<string | undefined, null>;
3621
+ nextClose: import("@metamask/superstruct").Struct<string | undefined, null>;
3622
3622
  }>;
3623
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>;
3624
+ start?: string | undefined;
3625
+ end?: string | undefined;
3626
+ } | undefined, {
3627
+ start: import("@metamask/superstruct").Struct<string | undefined, null>;
3628
+ end: import("@metamask/superstruct").Struct<string | undefined, null>;
3629
3629
  }>;
3630
3630
  }>;
3631
3631
  }>;
@@ -3826,16 +3826,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3826
3826
  icon?: string | null | undefined;
3827
3827
  iconUrl?: string | null | undefined;
3828
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
- };
3829
+ instrumentType?: string | undefined;
3830
+ ticker?: string | undefined;
3831
+ market?: {
3832
+ nextOpen?: string | undefined;
3833
+ nextClose?: string | undefined;
3834
+ } | undefined;
3835
+ nextPause?: {
3836
+ start?: string | undefined;
3837
+ end?: string | undefined;
3838
+ } | undefined;
3839
3839
  } | undefined;
3840
3840
  };
3841
3841
  destAsset: {
@@ -3848,16 +3848,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3848
3848
  icon?: string | null | undefined;
3849
3849
  iconUrl?: string | null | undefined;
3850
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
- };
3851
+ instrumentType?: string | undefined;
3852
+ ticker?: string | undefined;
3853
+ market?: {
3854
+ nextOpen?: string | undefined;
3855
+ nextClose?: string | undefined;
3856
+ } | undefined;
3857
+ nextPause?: {
3858
+ start?: string | undefined;
3859
+ end?: string | undefined;
3860
+ } | undefined;
3861
3861
  } | undefined;
3862
3862
  };
3863
3863
  requestId: string;
@@ -3877,16 +3877,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3877
3877
  icon?: string | null | undefined;
3878
3878
  iconUrl?: string | null | undefined;
3879
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
- };
3880
+ instrumentType?: string | undefined;
3881
+ ticker?: string | undefined;
3882
+ market?: {
3883
+ nextOpen?: string | undefined;
3884
+ nextClose?: string | undefined;
3885
+ } | undefined;
3886
+ nextPause?: {
3887
+ start?: string | undefined;
3888
+ end?: string | undefined;
3889
+ } | undefined;
3890
3890
  } | undefined;
3891
3891
  };
3892
3892
  };
@@ -3902,16 +3902,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3902
3902
  icon?: string | null | undefined;
3903
3903
  iconUrl?: string | null | undefined;
3904
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
- };
3905
+ instrumentType?: string | undefined;
3906
+ ticker?: string | undefined;
3907
+ market?: {
3908
+ nextOpen?: string | undefined;
3909
+ nextClose?: string | undefined;
3910
+ } | undefined;
3911
+ nextPause?: {
3912
+ start?: string | undefined;
3913
+ end?: string | undefined;
3914
+ } | undefined;
3915
3915
  } | undefined;
3916
3916
  };
3917
3917
  } & {
@@ -3934,16 +3934,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3934
3934
  icon?: string | null | undefined;
3935
3935
  iconUrl?: string | null | undefined;
3936
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
- };
3937
+ instrumentType?: string | undefined;
3938
+ ticker?: string | undefined;
3939
+ market?: {
3940
+ nextOpen?: string | undefined;
3941
+ nextClose?: string | undefined;
3942
+ } | undefined;
3943
+ nextPause?: {
3944
+ start?: string | undefined;
3945
+ end?: string | undefined;
3946
+ } | undefined;
3947
3947
  } | undefined;
3948
3948
  };
3949
3949
  destAsset: {
@@ -3956,16 +3956,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3956
3956
  icon?: string | null | undefined;
3957
3957
  iconUrl?: string | null | undefined;
3958
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
- };
3959
+ instrumentType?: string | undefined;
3960
+ ticker?: string | undefined;
3961
+ market?: {
3962
+ nextOpen?: string | undefined;
3963
+ nextClose?: string | undefined;
3964
+ } | undefined;
3965
+ nextPause?: {
3966
+ start?: string | undefined;
3967
+ end?: string | undefined;
3968
+ } | undefined;
3969
3969
  } | undefined;
3970
3970
  };
3971
3971
  srcAmount: string;
@@ -3990,16 +3990,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
3990
3990
  icon?: string | null | undefined;
3991
3991
  iconUrl?: string | null | undefined;
3992
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
- };
3993
+ instrumentType?: string | undefined;
3994
+ ticker?: string | undefined;
3995
+ market?: {
3996
+ nextOpen?: string | undefined;
3997
+ nextClose?: string | undefined;
3998
+ } | undefined;
3999
+ nextPause?: {
4000
+ start?: string | undefined;
4001
+ end?: string | undefined;
4002
+ } | undefined;
4003
4003
  } | undefined;
4004
4004
  };
4005
4005
  destAsset: {
@@ -4012,16 +4012,16 @@ export declare const validateQuoteResponse: (data: unknown) => data is {
4012
4012
  icon?: string | null | undefined;
4013
4013
  iconUrl?: string | null | undefined;
4014
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
- };
4015
+ instrumentType?: string | undefined;
4016
+ ticker?: string | undefined;
4017
+ market?: {
4018
+ nextOpen?: string | undefined;
4019
+ nextClose?: string | undefined;
4020
+ } | undefined;
4021
+ nextPause?: {
4022
+ start?: string | undefined;
4023
+ end?: string | undefined;
4024
+ } | undefined;
4025
4025
  } | undefined;
4026
4026
  };
4027
4027
  srcAmount: string;