clear-signing 0.1.0

ERC-7730 v2 clear signing library: decodes and formats Ethereum calldata and EIP-712 typed data for human-readable display.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;

use crate::{
    eip712::TypedData, error::FormatFailure, outcome::DescriptorResolutionOutcome,
    outcome::FormatOutcome, outcome::ResolvedDescriptorResolution, provider::DataProvider,
    resolver::ResolvedDescriptor, token::TokenMeta, types::descriptor::Descriptor,
};

#[cfg(feature = "github-registry")]
use crate::resolver::{DescriptorSource, GitHubRegistrySource};

#[cfg(feature = "github-registry")]
const DEFAULT_REGISTRY_URL: &str =
    "https://raw.githubusercontent.com/ethereum/clear-signing-erc7730-registry/master";

#[cfg(feature = "github-registry")]
static REGISTRY_SOURCE: tokio::sync::OnceCell<GitHubRegistrySource> =
    tokio::sync::OnceCell::const_new();

#[cfg(feature = "github-registry")]
async fn get_registry_source() -> Result<&'static GitHubRegistrySource, FormatFailure> {
    REGISTRY_SOURCE
        .get_or_try_init(|| async {
            GitHubRegistrySource::from_registry(DEFAULT_REGISTRY_URL)
                .await
                .map_err(|e| FormatFailure::ResolutionFailed {
                    message: format!("failed to initialize registry: {e}"),
                    retryable: true,
                })
        })
        .await
}

// ---------------------------------------------------------------------------
// FFI-safe token metadata record
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, PartialEq, Eq, uniffi::Record)]
pub struct TokenMetaFfi {
    pub symbol: String,
    pub decimals: u8,
    pub name: String,
}

impl From<TokenMetaFfi> for TokenMeta {
    fn from(ffi: TokenMetaFfi) -> Self {
        TokenMeta {
            symbol: ffi.symbol,
            decimals: ffi.decimals,
            name: ffi.name,
        }
    }
}

impl From<TokenMeta> for TokenMetaFfi {
    fn from(meta: TokenMeta) -> Self {
        TokenMetaFfi {
            symbol: meta.symbol,
            decimals: meta.decimals,
            name: meta.name,
        }
    }
}

// ---------------------------------------------------------------------------
// Foreign data-provider trait (wallet implements this in Swift/Kotlin)
// ---------------------------------------------------------------------------

/// Sync callback trait for wallet-side data resolution.
///
/// Wallets implement this protocol (Swift/Kotlin) to provide token metadata,
/// ENS names, local contact names, and NFT collection names during clear-sign
/// formatting. Methods are synchronous across the FFI boundary — the proxy
/// bridges them to the async `DataProvider` trait used internally.
#[uniffi::export(with_foreign)]
pub trait DataProviderFfi: Send + Sync {
    fn resolve_token(&self, chain_id: u64, address: String) -> Option<TokenMetaFfi>;
    fn resolve_ens_name(
        &self,
        address: String,
        chain_id: u64,
        types: Option<Vec<String>>,
    ) -> Option<String>;
    fn resolve_local_name(
        &self,
        address: String,
        chain_id: u64,
        types: Option<Vec<String>>,
    ) -> Option<String>;
    fn resolve_nft_collection_name(
        &self,
        collection_address: String,
        chain_id: u64,
    ) -> Option<String>;
    fn resolve_block_timestamp(&self, chain_id: u64, block_number: u64) -> Option<u64>;
    /// Detect proxy contract implementation address.
    ///
    /// Called when descriptor resolution by `tx.to` fails. Wallets should read
    /// EIP-1967 implementation slot and/or Safe storage slot 0 via `eth_getStorageAt`.
    /// Return `None` if the address is not a known proxy.
    fn get_implementation_address(&self, chain_id: u64, address: String) -> Option<String>;
}

// ---------------------------------------------------------------------------
// Proxy: wraps Arc<dyn DataProviderFfi> → implements internal DataProvider
// ---------------------------------------------------------------------------

pub struct DataProviderFfiProxy(pub Arc<dyn DataProviderFfi>);

impl DataProvider for DataProviderFfiProxy {
    fn resolve_token(
        &self,
        chain_id: u64,
        address: &str,
    ) -> Pin<Box<dyn Future<Output = Option<TokenMeta>> + Send + '_>> {
        let address = address.to_string();
        let inner = Arc::clone(&self.0);
        Box::pin(async move {
            let result =
                tokio::task::spawn_blocking(move || inner.resolve_token(chain_id, address)).await;
            result.ok().flatten().map(Into::into)
        })
    }

    fn resolve_ens_name(
        &self,
        address: &str,
        chain_id: u64,
        types: Option<&[String]>,
    ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + '_>> {
        let address = address.to_string();
        let types_owned = types.map(|t| t.to_vec());
        let inner = Arc::clone(&self.0);
        Box::pin(async move {
            let result = tokio::task::spawn_blocking(move || {
                inner.resolve_ens_name(address, chain_id, types_owned)
            })
            .await;
            result.ok().flatten()
        })
    }

    fn resolve_local_name(
        &self,
        address: &str,
        chain_id: u64,
        types: Option<&[String]>,
    ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + '_>> {
        let address = address.to_string();
        let types_owned = types.map(|t| t.to_vec());
        let inner = Arc::clone(&self.0);
        Box::pin(async move {
            let result = tokio::task::spawn_blocking(move || {
                inner.resolve_local_name(address, chain_id, types_owned)
            })
            .await;
            result.ok().flatten()
        })
    }

    fn resolve_nft_collection_name(
        &self,
        collection_address: &str,
        chain_id: u64,
    ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + '_>> {
        let collection_address = collection_address.to_string();
        let inner = Arc::clone(&self.0);
        Box::pin(async move {
            let result = tokio::task::spawn_blocking(move || {
                inner.resolve_nft_collection_name(collection_address, chain_id)
            })
            .await;
            result.ok().flatten()
        })
    }

    fn resolve_block_timestamp(
        &self,
        chain_id: u64,
        block_number: u64,
    ) -> Pin<Box<dyn Future<Output = Option<u64>> + Send + '_>> {
        let inner = Arc::clone(&self.0);
        Box::pin(async move {
            let result = tokio::task::spawn_blocking(move || {
                inner.resolve_block_timestamp(chain_id, block_number)
            })
            .await;
            result.ok().flatten()
        })
    }
}

// ---------------------------------------------------------------------------
// TransactionInput — FFI-safe transaction record
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, PartialEq, Eq, uniffi::Record)]
pub struct TransactionInput {
    pub chain_id: u64,
    pub to: String,
    pub calldata_hex: String,
    pub value_hex: Option<String>,
    pub from_address: Option<String>,
}

// ---------------------------------------------------------------------------
// FFI exports
// ---------------------------------------------------------------------------

/// Format contract calldata for clear signing display.
///
/// Takes pre-resolved descriptor JSON strings and a `TransactionInput`.
/// The wallet is responsible for descriptor resolution (via `clear_signing_resolve_descriptor`
/// or its own source). Proxy detection is automatic when `data_provider` is provided.
#[uniffi::export(async_runtime = "tokio")]
pub async fn clear_signing_format_calldata(
    descriptors_json: Vec<String>,
    transaction: TransactionInput,
    data_provider: Option<Arc<dyn DataProviderFfi>>,
) -> Result<FormatOutcome, FormatFailure> {
    let descriptors = parse_descriptors(&descriptors_json, transaction.chain_id, &transaction.to)?;
    let calldata = decode_hex(&transaction.calldata_hex, HexContext::Calldata)?;
    let value = match transaction.value_hex {
        Some(ref hex_value) => Some(decode_hex(hex_value, HexContext::Value)?),
        None => None,
    };
    // Descriptors can be keyed at either the contract address (Aave V3 Pool) or the
    // singleton implementation (Safe). Pre-check `tx.to` against the descriptor
    // deployments and only ask the wallet for the implementation address when
    // nothing matches — this avoids masking genuine render/descriptor errors with
    // a misleading "no outer descriptor matches <impl>" message.
    let to_has_match = descriptors.iter().any(|rd| {
        rd.descriptor.context.deployments().iter().any(|dep| {
            dep.chain_id == transaction.chain_id
                && dep.address.eq_ignore_ascii_case(&transaction.to)
        })
    });
    let impl_addr = if to_has_match {
        None
    } else {
        data_provider.as_ref().and_then(|dp| {
            dp.get_implementation_address(transaction.chain_id, transaction.to.clone())
        })
    };

    let provider = build_data_provider(data_provider);
    let tx = crate::TransactionContext {
        chain_id: transaction.chain_id,
        to: &transaction.to,
        calldata: &calldata,
        value: value.as_deref(),
        from: transaction.from_address.as_deref(),
        implementation_address: impl_addr.as_deref(),
    };
    crate::format_calldata(&descriptors, &tx, provider.as_ref()).await
}

/// Format EIP-712 typed data for clear signing display.
///
/// Takes pre-resolved descriptor JSON strings and the EIP-712 typed data JSON.
#[uniffi::export(async_runtime = "tokio")]
pub async fn clear_signing_format_typed_data(
    descriptors_json: Vec<String>,
    typed_data_json: String,
    data_provider: Option<Arc<dyn DataProviderFfi>>,
) -> Result<FormatOutcome, FormatFailure> {
    let typed_data: TypedData = serde_json::from_str::<TypedData>(&typed_data_json)
        .map_err(|e| invalid_input(format!("invalid typed data JSON: {e}")))?;

    let chain_id = typed_data.domain.chain_id.unwrap_or(1);
    let address = typed_data
        .domain
        .verifying_contract
        .as_deref()
        .unwrap_or("0x0000000000000000000000000000000000000000");
    let descriptors = parse_descriptors(&descriptors_json, chain_id, address)?;
    let provider = build_data_provider(data_provider);
    crate::format_typed_data(&descriptors, &typed_data, provider.as_ref()).await
}

/// Resolve a calldata descriptor from the GitHub registry for a given chain + address.
///
/// Returns the descriptor JSON string, or `None` if no descriptor is found.
/// Requires the `github-registry` feature.
#[cfg(feature = "github-registry")]
#[uniffi::export(async_runtime = "tokio")]
pub async fn clear_signing_resolve_descriptor(
    chain_id: u64,
    address: String,
) -> Result<DescriptorResolutionOutcome, FormatFailure> {
    let source = get_registry_source().await?;
    match source.resolve_calldata(chain_id, &address).await {
        Ok(resolved) => {
            let json = serde_json::to_string(&resolved.descriptor)
                .map_err(|e| invalid_descriptor(format!("failed to serialize descriptor: {e}")))?;
            Ok(DescriptorResolutionOutcome::Found(vec![json]))
        }
        Err(crate::error::ResolveError::NotFound { .. }) => {
            Ok(DescriptorResolutionOutcome::NotFound)
        }
        Err(e) => Err(FormatFailure::from(e)),
    }
}

/// Resolve all descriptors needed for EIP-712 typed data, including nested calldata.
///
/// Uses the GitHub registry. Returns descriptor JSON strings in dependency order.
/// First element is the outer EIP-712 descriptor, subsequent are inner calldata descriptors.
/// Returns empty vec if no descriptor is found for the outer verifying contract.
/// Automatically detects proxy contracts via `data_provider.get_implementation_address`.
#[cfg(feature = "github-registry")]
#[uniffi::export(async_runtime = "tokio")]
pub async fn clear_signing_resolve_descriptors_for_typed_data(
    typed_data_json: String,
    data_provider: Arc<dyn DataProviderFfi>,
) -> Result<DescriptorResolutionOutcome, FormatFailure> {
    let typed_data: crate::eip712::TypedData = serde_json::from_str(&typed_data_json)
        .map_err(|e| invalid_input(format!("invalid typed data JSON: {e}")))?;

    let chain_id = typed_data.domain.chain_id.unwrap_or(1);
    let verifying_contract = typed_data
        .domain
        .verifying_contract
        .as_deref()
        .unwrap_or("0x0000000000000000000000000000000000000000");

    let source = get_registry_source().await?;

    // Try direct lookup
    let mut descriptors = crate::resolver::resolve_descriptors_for_typed_data(&typed_data, source)
        .await
        .map_err(FormatFailure::from)?;

    // Proxy detection fallback
    if matches!(descriptors, ResolvedDescriptorResolution::NotFound) {
        let impl_addr =
            data_provider.get_implementation_address(chain_id, verifying_contract.to_string());
        if let Some(impl_addr) = impl_addr {
            let mut proxied = typed_data.clone();
            proxied.domain.verifying_contract = Some(impl_addr.clone());
            descriptors = crate::resolver::resolve_descriptors_for_typed_data(&proxied, source)
                .await
                .map_err(FormatFailure::from)?;
        }
    }

    resolved_descriptor_json_outcome(descriptors)
}

/// Resolve all descriptors needed for a transaction, including nested calldata.
///
/// Uses the GitHub registry. Returns descriptor JSON strings in dependency order.
/// First element is the outer descriptor, subsequent are inner callees.
/// Returns empty vec if no descriptor is found for the outer address.
/// Automatically detects proxy contracts via `data_provider.get_implementation_address`.
#[cfg(feature = "github-registry")]
#[uniffi::export(async_runtime = "tokio")]
pub async fn clear_signing_resolve_descriptors_for_tx(
    transaction: TransactionInput,
    data_provider: Arc<dyn DataProviderFfi>,
) -> Result<DescriptorResolutionOutcome, FormatFailure> {
    let source = get_registry_source().await?;
    let calldata = decode_hex(&transaction.calldata_hex, HexContext::Calldata)?;
    let value = match transaction.value_hex {
        Some(ref hex_value) => Some(decode_hex(hex_value, HexContext::Value)?),
        None => None,
    };
    let tx = crate::TransactionContext {
        chain_id: transaction.chain_id,
        to: &transaction.to,
        calldata: &calldata,
        value: value.as_deref(),
        from: transaction.from_address.as_deref(),
        implementation_address: None,
    };
    let mut descriptors = crate::resolve_descriptors_for_tx(&tx, source)
        .await
        .map_err(FormatFailure::from)?;

    // Proxy detection fallback
    if matches!(descriptors, ResolvedDescriptorResolution::NotFound) {
        let impl_addr =
            data_provider.get_implementation_address(transaction.chain_id, transaction.to.clone());
        if let Some(impl_addr) = impl_addr {
            let tx_with_impl = crate::TransactionContext {
                implementation_address: Some(impl_addr.as_str()),
                ..tx
            };
            descriptors = crate::resolve_descriptors_for_tx(&tx_with_impl, source)
                .await
                .map_err(FormatFailure::from)?;
        }
    }

    resolved_descriptor_json_outcome(descriptors)
}

/// Merge two descriptor JSON strings (including + included).
///
/// Returns merged JSON ready for use with `clear_signing_format_calldata` / `clear_signing_format_typed_data`.
#[uniffi::export]
pub fn clear_signing_merge_descriptors(
    including_json: String,
    included_json: String,
) -> Result<String, FormatFailure> {
    crate::merge::merge_descriptors(&including_json, &included_json).map_err(FormatFailure::from)
}

// ---------------------------------------------------------------------------
// Internal helpers
// ---------------------------------------------------------------------------

enum HexContext {
    Calldata,
    Value,
}

fn decode_hex(input: &str, context: HexContext) -> Result<Vec<u8>, FormatFailure> {
    let trimmed = input.trim();
    let normalized = trimmed
        .strip_prefix("0x")
        .or_else(|| trimmed.strip_prefix("0X"))
        .unwrap_or(trimmed);

    // Pad odd-length hex strings with a leading zero (e.g. "0x0" → "00")
    let padded;
    let hex_str = if normalized.len() % 2 != 0 {
        padded = format!("0{}", normalized);
        &padded
    } else {
        normalized
    };

    hex::decode(hex_str).map_err(|err| match context {
        HexContext::Calldata => invalid_input(format!("invalid calldata hex: {err}")),
        HexContext::Value => invalid_input(format!("invalid value hex: {err}")),
    })
}

fn parse_descriptors(
    descriptors_json: &[String],
    fallback_chain_id: u64,
    fallback_address: &str,
) -> Result<Vec<ResolvedDescriptor>, FormatFailure> {
    let mut descriptors = Vec::with_capacity(descriptors_json.len());
    for json_str in descriptors_json {
        let descriptor = Descriptor::from_json(json_str)
            .map_err(|e| invalid_descriptor(format!("invalid descriptor JSON: {e}")))?;
        let (cid, addr) = descriptor
            .context
            .deployments()
            .first()
            .map(|dep| (dep.chain_id, dep.address.clone()))
            .unwrap_or((fallback_chain_id, fallback_address.to_string()));
        descriptors.push(ResolvedDescriptor {
            descriptor,
            chain_id: cid,
            address: addr,
        });
    }
    Ok(descriptors)
}

fn resolved_descriptor_json_outcome(
    descriptors: ResolvedDescriptorResolution,
) -> Result<DescriptorResolutionOutcome, FormatFailure> {
    match descriptors {
        ResolvedDescriptorResolution::Found(descriptors) => descriptors
            .iter()
            .map(|rd| {
                serde_json::to_string(&rd.descriptor)
                    .map_err(|e| invalid_descriptor(format!("failed to serialize descriptor: {e}")))
            })
            .collect::<Result<Vec<_>, _>>()
            .map(DescriptorResolutionOutcome::Found),
        ResolvedDescriptorResolution::NotFound => Ok(DescriptorResolutionOutcome::NotFound),
    }
}

fn invalid_input(message: String) -> FormatFailure {
    FormatFailure::InvalidInput {
        message,
        retryable: false,
    }
}

fn invalid_descriptor(message: String) -> FormatFailure {
    FormatFailure::InvalidDescriptor {
        message,
        retryable: false,
    }
}

fn build_data_provider(ffi_provider: Option<Arc<dyn DataProviderFfi>>) -> Box<dyn DataProvider> {
    match ffi_provider {
        Some(ffi) => Box::new(DataProviderFfiProxy(ffi)),
        None => Box::new(crate::provider::EmptyDataProvider),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::DisplayEntry;

    fn calldata_descriptor_json() -> &'static str {
        r#"{
            "context": {
                "contract": {
                    "deployments": [
                        { "chainId": 1, "address": "0xdac17f958d2ee523a2206206994597c13d831ec7" }
                    ]
                }
            },
            "metadata": {
                "owner": "test",
                "contractName": "Tether USD",
                "enums": {},
                "constants": {},
                "addressBook": {},
                "maps": {}
            },
            "display": {
                "definitions": {},
                "formats": {
                    "transfer(address,uint256)": {
                        "intent": "Transfer tokens",
                        "fields": [
                            {
                                "path": "@.0",
                                "label": "To",
                                "format": "address"
                            },
                            {
                                "path": "@.1",
                                "label": "Amount",
                                "format": "number"
                            }
                        ]
                    }
                }
            }
        }"#
    }

    fn typed_descriptor_json() -> &'static str {
        r#"{
            "context": {
                "eip712": {
                    "deployments": [
                        { "chainId": 1, "address": "0x0000000000000000000000000000000000000001" }
                    ]
                }
            },
            "metadata": {
                "owner": "test",
                "enums": {},
                "constants": {},
                "addressBook": {},
                "maps": {}
            },
            "display": {
                "definitions": {},
                "formats": {
                    "Mail(address from,string contents)": {
                        "intent": "Sign mail",
                        "fields": [
                            {
                                "path": "@.from",
                                "label": "From",
                                "format": "address"
                            },
                            {
                                "path": "contents",
                                "label": "Contents",
                                "format": "raw"
                            }
                        ]
                    }
                }
            }
        }"#
    }

    fn typed_data_json() -> &'static str {
        r#"{
            "types": {
                "EIP712Domain": [
                    { "name": "chainId", "type": "uint256" },
                    { "name": "verifyingContract", "type": "address" }
                ],
                "Mail": [
                    { "name": "from", "type": "address" },
                    { "name": "contents", "type": "string" }
                ]
            },
            "primaryType": "Mail",
            "domain": {
                "chainId": 1,
                "verifyingContract": "0x0000000000000000000000000000000000000001"
            },
            "container": {
                "from": "0x0000000000000000000000000000000000000002"
            },
            "message": {
                "from": "0x0000000000000000000000000000000000000002",
                "contents": "hello"
            }
        }"#
    }

    fn transfer_calldata_hex() -> &'static str {
        "a9059cbb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8"
    }

    fn transfer_transaction() -> TransactionInput {
        TransactionInput {
            chain_id: 1,
            to: "0xdac17f958d2ee523a2206206994597c13d831ec7".to_string(),
            calldata_hex: transfer_calldata_hex().to_string(),
            value_hex: None,
            from_address: None,
        }
    }

    #[tokio::test]
    async fn format_calldata_success() {
        let result = clear_signing_format_calldata(
            vec![calldata_descriptor_json().to_string()],
            transfer_transaction(),
            None,
        )
        .await
        .expect("calldata formatting should succeed");

        assert_eq!(result.intent, "Transfer tokens");
        assert_eq!(result.entries.len(), 2);

        match &result.entries[0] {
            DisplayEntry::Item(item) => {
                assert_eq!(item.label, "To");
            }
            _ => {
                panic!("expected item entry");
            }
        }
    }

    #[tokio::test]
    async fn format_typed_success() {
        let result = clear_signing_format_typed_data(
            vec![typed_descriptor_json().to_string()],
            typed_data_json().to_string(),
            None,
        )
        .await
        .expect("typed formatting should succeed");

        assert_eq!(result.intent, "Sign mail");
        assert_eq!(result.entries.len(), 2);
    }

    #[tokio::test]
    async fn format_typed_blockheight_uses_data_provider_ffi() {
        let descriptor_json = r#"{
            "context": {
                "eip712": {
                    "deployments": [
                        { "chainId": 1, "address": "0x0000000000000000000000000000000000000001" }
                    ]
                }
            },
            "metadata": {
                "owner": "test",
                "enums": {},
                "constants": {},
                "maps": {}
            },
            "display": {
                "definitions": {},
                "formats": {
                    "Expiry(uint256 blockNumber)": {
                        "intent": "Expiry",
                        "fields": [
                            {
                                "path": "blockNumber",
                                "label": "Expiry",
                                "format": "date",
                                "params": { "encoding": "blockheight" }
                            }
                        ]
                    }
                }
            }
        }"#;

        let typed_data_json = r#"{
            "types": {
                "EIP712Domain": [
                    { "name": "chainId", "type": "uint256" },
                    { "name": "verifyingContract", "type": "address" }
                ],
                "Expiry": [
                    { "name": "blockNumber", "type": "uint256" }
                ]
            },
            "primaryType": "Expiry",
            "domain": {
                "chainId": 1,
                "verifyingContract": "0x0000000000000000000000000000000000000001"
            },
            "message": {
                "blockNumber": 19500000
            }
        }"#;

        let mock_provider: Arc<dyn DataProviderFfi> = Arc::new(MockDataProviderFfi);
        let result = clear_signing_format_typed_data(
            vec![descriptor_json.to_string()],
            typed_data_json.to_string(),
            Some(mock_provider),
        )
        .await
        .expect("typed blockheight formatting should succeed");

        match &result.entries[0] {
            DisplayEntry::Item(item) => assert_eq!(item.value, "2024-03-09 16:00:00 UTC"),
            _ => panic!("expected item entry"),
        }
    }

    #[tokio::test]
    async fn format_calldata_invalid_descriptor_json() {
        let err =
            clear_signing_format_calldata(vec!["{".to_string()], transfer_transaction(), None)
                .await
                .expect_err("invalid descriptor should fail");

        assert!(matches!(err, FormatFailure::InvalidDescriptor { .. }));
    }

    #[tokio::test]
    async fn format_typed_invalid_typed_data_json() {
        let err = clear_signing_format_typed_data(
            vec![typed_descriptor_json().to_string()],
            "{".to_string(),
            None,
        )
        .await
        .expect_err("invalid typed data should fail");

        assert!(matches!(err, FormatFailure::InvalidInput { .. }));
    }

    #[tokio::test]
    async fn format_calldata_invalid_calldata_hex() {
        let mut tx = transfer_transaction();
        tx.calldata_hex = "zz".to_string();

        let err =
            clear_signing_format_calldata(vec![calldata_descriptor_json().to_string()], tx, None)
                .await
                .expect_err("invalid calldata hex should fail");

        assert!(matches!(err, FormatFailure::InvalidInput { .. }));
    }

    #[tokio::test]
    async fn format_calldata_invalid_value_hex() {
        let mut tx = transfer_transaction();
        tx.value_hex = Some("zz".to_string());

        let err =
            clear_signing_format_calldata(vec![calldata_descriptor_json().to_string()], tx, None)
                .await
                .expect_err("invalid value hex should fail");

        assert!(matches!(err, FormatFailure::InvalidInput { .. }));
    }

    #[tokio::test]
    async fn format_calldata_accepts_0x_prefix() {
        let no_prefix = clear_signing_format_calldata(
            vec![calldata_descriptor_json().to_string()],
            transfer_transaction(),
            None,
        )
        .await
        .expect("no-prefix calldata should succeed");

        let mut tx_with_prefix = transfer_transaction();
        tx_with_prefix.calldata_hex = format!("0x{}", transfer_calldata_hex());
        tx_with_prefix.value_hex = Some("0x00".to_string());

        let with_prefix = clear_signing_format_calldata(
            vec![calldata_descriptor_json().to_string()],
            tx_with_prefix,
            None,
        )
        .await
        .expect("prefixed calldata should succeed");

        assert_eq!(no_prefix.intent, with_prefix.intent);
        assert_eq!(no_prefix.entries.len(), with_prefix.entries.len());
    }

    // -----------------------------------------------------------------------
    // Mock DataProviderFfi to validate end-to-end proxy wiring
    // -----------------------------------------------------------------------

    struct MockDataProviderFfi;

    impl DataProviderFfi for MockDataProviderFfi {
        fn resolve_token(&self, _chain_id: u64, _address: String) -> Option<TokenMetaFfi> {
            None
        }
        fn resolve_ens_name(
            &self,
            _address: String,
            _chain_id: u64,
            _types: Option<Vec<String>>,
        ) -> Option<String> {
            None
        }
        fn resolve_local_name(
            &self,
            address: String,
            _chain_id: u64,
            _types: Option<Vec<String>>,
        ) -> Option<String> {
            if address.to_lowercase() == "0x0000000000000000000000000000000000000001".to_lowercase()
            {
                Some("My Contact".to_string())
            } else {
                None
            }
        }
        fn resolve_nft_collection_name(
            &self,
            _collection_address: String,
            _chain_id: u64,
        ) -> Option<String> {
            None
        }
        fn resolve_block_timestamp(&self, _chain_id: u64, block_number: u64) -> Option<u64> {
            if block_number == 19_500_000 {
                Some(1_710_000_000)
            } else {
                None
            }
        }
        fn get_implementation_address(&self, _chain_id: u64, _address: String) -> Option<String> {
            None
        }
    }

    #[tokio::test]
    async fn format_calldata_with_data_provider_ffi() {
        // Descriptor that uses addressName format (triggers local name resolution)
        let descriptor_json = r#"{
            "context": {
                "contract": {
                    "deployments": [
                        { "chainId": 1, "address": "0xdac17f958d2ee523a2206206994597c13d831ec7" }
                    ]
                }
            },
            "metadata": {
                "owner": "test",
                "contractName": "Tether USD",
                "enums": {},
                "constants": {},
                "addressBook": {},
                "maps": {}
            },
            "display": {
                "definitions": {},
                "formats": {
                    "transfer(address,uint256)": {
                        "intent": "Transfer tokens",
                        "fields": [
                            {
                                "path": "@.0",
                                "label": "To",
                                "format": "addressName",
                                "params": {
                                    "sources": ["local"]
                                }
                            },
                            {
                                "path": "@.1",
                                "label": "Amount",
                                "format": "number"
                            }
                        ]
                    }
                }
            }
        }"#;

        let mock_provider: Arc<dyn DataProviderFfi> = Arc::new(MockDataProviderFfi);

        let result = clear_signing_format_calldata(
            vec![descriptor_json.to_string()],
            transfer_transaction(),
            Some(mock_provider),
        )
        .await
        .expect("calldata formatting with data provider should succeed");

        assert_eq!(result.intent, "Transfer tokens");
        assert_eq!(result.entries.len(), 2);

        // The "To" address (0x...0001) should resolve to "My Contact" via mock provider
        match &result.entries[0] {
            DisplayEntry::Item(item) => {
                assert_eq!(item.label, "To");
                assert_eq!(item.value, "My Contact");
            }
            _ => panic!("expected item entry"),
        }
    }

    /// DataProvider that reports a proxy → implementation mapping.
    ///
    /// Models the real Aave V3 Pool on Optimism: the descriptor in the registry is keyed
    /// at the proxy address (0x794a6135…), but the wallet's proxy detection returns the
    /// current implementation contract (0x9b8e56…). Regression coverage for the FFI path
    /// in `clear_signing_format_calldata` when descriptor is keyed at the proxy.
    struct ProxyAwareMockDataProviderFfi {
        proxy: String,
        implementation: String,
    }

    impl DataProviderFfi for ProxyAwareMockDataProviderFfi {
        fn resolve_token(&self, _chain_id: u64, _address: String) -> Option<TokenMetaFfi> {
            None
        }
        fn resolve_ens_name(
            &self,
            _address: String,
            _chain_id: u64,
            _types: Option<Vec<String>>,
        ) -> Option<String> {
            None
        }
        fn resolve_local_name(
            &self,
            _address: String,
            _chain_id: u64,
            _types: Option<Vec<String>>,
        ) -> Option<String> {
            None
        }
        fn resolve_nft_collection_name(
            &self,
            _collection_address: String,
            _chain_id: u64,
        ) -> Option<String> {
            None
        }
        fn resolve_block_timestamp(&self, _chain_id: u64, _block_number: u64) -> Option<u64> {
            None
        }
        fn get_implementation_address(&self, _chain_id: u64, address: String) -> Option<String> {
            if address.to_lowercase() == self.proxy.to_lowercase() {
                Some(self.implementation.clone())
            } else {
                None
            }
        }
    }

    /// Regression: descriptor keyed at proxy address + wallet resolves implementation.
    ///
    /// Mirrors the Aave V3 Pool scenario on Optimism:
    ///   - registry descriptor deployment is `{ chainId: 10, address: PROXY }`
    ///   - wallet's `DataProviderFfi::get_implementation_address(PROXY)` returns IMPL
    ///   - user signs a call to PROXY (the `to` address)
    ///
    /// Expected: formatting succeeds using the proxy-keyed descriptor. If the FFI layer
    /// unconditionally substitutes IMPL into `match_address`, matching fails and this
    /// test errors with "no outer descriptor matches chain_id=10 address=IMPL".
    #[tokio::test]
    async fn format_calldata_proxy_keyed_descriptor_survives_impl_lookup() {
        const PROXY: &str = "0x794a61358d6845594f94dc1db02a252b5b4814ad";
        const IMPL: &str = "0x9b8e56d890bffbbd385fe8b0e73803a82fcef2f1";
        const CHAIN_ID: u64 = 10;

        let descriptor_json = format!(
            r#"{{
                "context": {{
                    "contract": {{
                        "deployments": [
                            {{ "chainId": {CHAIN_ID}, "address": "{PROXY}" }}
                        ]
                    }}
                }},
                "metadata": {{
                    "owner": "Aave DAO",
                    "contractName": "Aave V3 Pool",
                    "enums": {{}},
                    "constants": {{}},
                    "addressBook": {{}},
                    "maps": {{}}
                }},
                "display": {{
                    "definitions": {{}},
                    "formats": {{
                        "transfer(address,uint256)": {{
                            "intent": "Transfer tokens",
                            "fields": [
                                {{ "path": "@.0", "label": "To", "format": "raw" }},
                                {{ "path": "@.1", "label": "Amount", "format": "number" }}
                            ]
                        }}
                    }}
                }}
            }}"#
        );

        let tx = TransactionInput {
            chain_id: CHAIN_ID,
            to: PROXY.to_string(),
            calldata_hex: transfer_calldata_hex().to_string(),
            value_hex: None,
            from_address: Some("0xbf01daf454dce008d3e2bfd47d5e186f71477253".to_string()),
        };

        let provider: Arc<dyn DataProviderFfi> = Arc::new(ProxyAwareMockDataProviderFfi {
            proxy: PROXY.to_string(),
            implementation: IMPL.to_string(),
        });

        let result = clear_signing_format_calldata(vec![descriptor_json], tx, Some(provider))
            .await
            .expect(
                "proxy-keyed descriptor must format successfully even when the wallet \
                 resolves an implementation address for the proxy (Aave V3 Pool pattern)",
            );

        assert_eq!(result.intent, "Transfer tokens");
        assert_eq!(result.entries.len(), 2);
    }

    /// Regression guard against masking unrelated descriptor errors.
    ///
    /// When a descriptor is keyed at `tx.to`, the FFI must NOT call
    /// `get_implementation_address` nor retry against an implementation address on
    /// descriptor/render errors that are unrelated to proxy matching (e.g. duplicate
    /// selectors, malformed fields). Otherwise the caller sees a misleading
    /// "no outer descriptor matches <impl>" instead of the real error.
    #[tokio::test]
    async fn format_calldata_does_not_retry_on_unrelated_descriptor_error() {
        const CONTRACT: &str = "0xdac17f958d2ee523a2206206994597c13d831ec7";
        const CHAIN_ID: u64 = 1;

        // Two format keys sharing selector 0xa9059cbb — the engine rejects this
        // with Error::Descriptor("duplicate selectors..."), which converts to
        // FormatFailure::InvalidDescriptor. The pre-check must see a match at
        // `tx.to` and skip the impl lookup entirely.
        let descriptor_json = format!(
            r#"{{
                "context": {{
                    "contract": {{
                        "deployments": [
                            {{ "chainId": {CHAIN_ID}, "address": "{CONTRACT}" }}
                        ]
                    }}
                }},
                "metadata": {{
                    "owner": "test",
                    "contractName": "Dup",
                    "enums": {{}},
                    "constants": {{}},
                    "addressBook": {{}},
                    "maps": {{}}
                }},
                "display": {{
                    "definitions": {{}},
                    "formats": {{
                        "transfer(address,uint256)": {{
                            "intent": "Transfer A",
                            "fields": [
                                {{ "path": "@.0", "label": "To", "format": "raw" }},
                                {{ "path": "@.1", "label": "Amount", "format": "number" }}
                            ]
                        }},
                        "transfer(address dst, uint256 wad)": {{
                            "intent": "Transfer B",
                            "fields": [
                                {{ "path": "dst", "label": "Dest", "format": "raw" }},
                                {{ "path": "wad", "label": "Wad", "format": "number" }}
                            ]
                        }}
                    }}
                }}
            }}"#
        );

        struct PanicOnImplLookup;
        impl DataProviderFfi for PanicOnImplLookup {
            fn resolve_token(&self, _: u64, _: String) -> Option<TokenMetaFfi> {
                None
            }
            fn resolve_ens_name(
                &self,
                _: String,
                _: u64,
                _: Option<Vec<String>>,
            ) -> Option<String> {
                None
            }
            fn resolve_local_name(
                &self,
                _: String,
                _: u64,
                _: Option<Vec<String>>,
            ) -> Option<String> {
                None
            }
            fn resolve_nft_collection_name(&self, _: String, _: u64) -> Option<String> {
                None
            }
            fn resolve_block_timestamp(&self, _: u64, _: u64) -> Option<u64> {
                None
            }
            fn get_implementation_address(&self, _: u64, _: String) -> Option<String> {
                panic!(
                    "get_implementation_address must not be called when tx.to already \
                     matches a descriptor deployment"
                );
            }
        }

        let provider: Arc<dyn DataProviderFfi> = Arc::new(PanicOnImplLookup);

        let tx = TransactionInput {
            chain_id: CHAIN_ID,
            to: CONTRACT.to_string(),
            calldata_hex: transfer_calldata_hex().to_string(),
            value_hex: None,
            from_address: None,
        };

        let err = clear_signing_format_calldata(vec![descriptor_json], tx, Some(provider))
            .await
            .expect_err("duplicate selectors must surface the real error");

        match err {
            FormatFailure::InvalidDescriptor { message, .. } => {
                assert!(
                    message.contains("duplicate selectors"),
                    "expected duplicate-selector message, got: {message}"
                );
                assert!(
                    !message.contains("no outer descriptor matches"),
                    "FFI must not retry against impl address on unrelated descriptor errors; \
                     got: {message}"
                );
            }
            other => panic!("expected InvalidDescriptor, got {other:?}"),
        }
    }

    /// Regression guard: descriptor keyed at the singleton implementation address
    /// (Safe pattern) — every deployed Safe proxy delegatecalls the same singleton,
    /// so the registry keys one descriptor at the impl address. The FFI must fall
    /// back from `tx.to` to the wallet-provided implementation address to find it.
    #[tokio::test]
    async fn format_calldata_safe_pattern_descriptor_resolves_via_implementation() {
        const PROXY: &str = "0x1111111111111111111111111111111111111111";
        const IMPL: &str = "0x6666666666666666666666666666666666666666";
        const CHAIN_ID: u64 = 1;

        let descriptor_json = format!(
            r#"{{
                "context": {{
                    "contract": {{
                        "deployments": [
                            {{ "chainId": {CHAIN_ID}, "address": "{IMPL}" }}
                        ]
                    }}
                }},
                "metadata": {{
                    "owner": "Safe",
                    "contractName": "Safe Singleton",
                    "enums": {{}},
                    "constants": {{}},
                    "addressBook": {{}},
                    "maps": {{}}
                }},
                "display": {{
                    "definitions": {{}},
                    "formats": {{
                        "transfer(address,uint256)": {{
                            "intent": "Transfer tokens",
                            "fields": [
                                {{ "path": "@.0", "label": "To", "format": "raw" }},
                                {{ "path": "@.1", "label": "Amount", "format": "number" }}
                            ]
                        }}
                    }}
                }}
            }}"#
        );

        let tx = TransactionInput {
            chain_id: CHAIN_ID,
            to: PROXY.to_string(),
            calldata_hex: transfer_calldata_hex().to_string(),
            value_hex: None,
            from_address: None,
        };

        let provider: Arc<dyn DataProviderFfi> = Arc::new(ProxyAwareMockDataProviderFfi {
            proxy: PROXY.to_string(),
            implementation: IMPL.to_string(),
        });

        let result = clear_signing_format_calldata(vec![descriptor_json], tx, Some(provider))
            .await
            .expect(
                "Safe-pattern descriptor (keyed at impl singleton) must format when \
                 `tx.to` is the proxy and the wallet resolves the impl address",
            );

        assert_eq!(result.intent, "Transfer tokens");
        assert_eq!(result.entries.len(), 2);
    }

    /// Simulates the exact wallet flow: descriptor JSON → serde round-trip → format_typed_data.
    /// Tests the encodeType format key matching through the FFI layer.
    #[tokio::test]
    async fn format_typed_data_velora_encode_type_key() {
        // Real descriptor from remote registry (with encodeType format key)
        let raw_descriptor_json = r#"{
            "context": {
                "eip712": {
                    "deployments": [
                        { "chainId": 1, "address": "0x0000000000bbf5c5fd284e657f01bd000933c96d" },
                        { "chainId": 10, "address": "0x0000000000bbf5c5fd284e657f01bd000933c96d" }
                    ],
                    "domain": { "name": "Portikus", "version": "2.0.0" }
                }
            },
            "metadata": { "owner": "Velora" },
            "display": {
                "formats": {
                    "Order(address owner,address beneficiary,address srcToken,address destToken,uint256 srcAmount,uint256 destAmount,uint256 expectedAmount,uint256 deadline,uint8 kind,uint256 nonce,uint256 partnerAndFee,bytes permit,bytes metadata,Bridge bridge)Bridge(bytes4 protocolSelector,uint256 destinationChainId,address outputToken,int8 scalingFactor,bytes protocolData)": {
                        "intent": "Swap order",
                        "fields": [
                            { "path": "srcAmount", "label": "Amount to send", "format": "tokenAmount", "params": { "tokenPath": "srcToken" } },
                            { "path": "destAmount", "label": "Minimum to receive", "format": "tokenAmount", "params": { "tokenPath": "destToken" } },
                            { "path": "beneficiary", "label": "Beneficiary", "format": "raw" },
                            { "path": "deadline", "label": "Expiration time", "format": "date", "params": { "encoding": "timestamp" } }
                        ]
                    }
                }
            }
        }"#;

        // Simulate the resolve round-trip: parse → serialize (like clear_signing_resolve_descriptor does)
        let descriptor: Descriptor = serde_json::from_str(raw_descriptor_json).unwrap();
        let round_tripped_json = serde_json::to_string(&descriptor).unwrap();

        // Verify the format key survives round-trip
        assert!(
            round_tripped_json.contains("Order(address owner"),
            "encodeType key lost during serde round-trip: {}",
            round_tripped_json
        );

        let typed_data_json = r#"{
            "domain": {
                "chainId": 10,
                "name": "Portikus",
                "version": "2.0.0",
                "verifyingContract": "0x0000000000bbf5c5fd284e657f01bd000933c96d"
            },
            "message": {
                "owner": "0xbf01daf454dce008d3e2bfd47d5e186f71477253",
                "beneficiary": "0xbf01daf454dce008d3e2bfd47d5e186f71477253",
                "srcToken": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58",
                "destToken": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
                "srcAmount": "38627265",
                "destAmount": "18805928711910788",
                "expectedAmount": "18900430866241998",
                "deadline": 1774258780,
                "nonce": "1774258180237",
                "permit": "0x",
                "partnerAndFee": "90631063861114836560958097440945986548822432573276877133894239693005947666959",
                "bridge": {
                    "protocolSelector": "0x00000000",
                    "destinationChainId": 0,
                    "outputToken": "0x0000000000000000000000000000000000000000",
                    "scalingFactor": 0,
                    "protocolData": "0x"
                },
                "kind": 0,
                "metadata": "0x"
            },
            "primaryType": "Order",
            "types": {
                "EIP712Domain": [
                    { "name": "name", "type": "string" },
                    { "name": "version", "type": "string" },
                    { "name": "chainId", "type": "uint256" },
                    { "name": "verifyingContract", "type": "address" }
                ],
                "Order": [
                    { "name": "owner", "type": "address" },
                    { "name": "beneficiary", "type": "address" },
                    { "name": "srcToken", "type": "address" },
                    { "name": "destToken", "type": "address" },
                    { "name": "srcAmount", "type": "uint256" },
                    { "name": "destAmount", "type": "uint256" },
                    { "name": "expectedAmount", "type": "uint256" },
                    { "name": "deadline", "type": "uint256" },
                    { "name": "kind", "type": "uint8" },
                    { "name": "nonce", "type": "uint256" },
                    { "name": "partnerAndFee", "type": "uint256" },
                    { "name": "permit", "type": "bytes" },
                    { "name": "metadata", "type": "bytes" },
                    { "name": "bridge", "type": "Bridge" }
                ],
                "Bridge": [
                    { "name": "protocolSelector", "type": "bytes4" },
                    { "name": "destinationChainId", "type": "uint256" },
                    { "name": "outputToken", "type": "address" },
                    { "name": "scalingFactor", "type": "int8" },
                    { "name": "protocolData", "type": "bytes" }
                ]
            }
        }"#;

        // Call through the FFI function with the round-tripped descriptor
        let result = clear_signing_format_typed_data(
            vec![round_tripped_json],
            typed_data_json.to_string(),
            None,
        )
        .await
        .expect("typed data formatting should succeed");

        assert_eq!(result.intent, "Swap order");
        assert!(
            result.diagnostics().is_empty(),
            "unexpected diagnostics: {:?}",
            result.diagnostics()
        );
        assert_eq!(result.entries.len(), 4);

        match &result.entries[0] {
            DisplayEntry::Item(item) => assert_eq!(item.label, "Amount to send"),
            _ => panic!("expected Item"),
        }
        match &result.entries[1] {
            DisplayEntry::Item(item) => assert_eq!(item.label, "Minimum to receive"),
            _ => panic!("expected Item"),
        }
        match &result.entries[2] {
            DisplayEntry::Item(item) => assert_eq!(item.label, "Beneficiary"),
            _ => panic!("expected Item"),
        }
        match &result.entries[3] {
            DisplayEntry::Item(item) => assert_eq!(item.label, "Expiration time"),
            _ => panic!("expected Item"),
        }
    }
}