inspectV2TransactionSemantics method
Implementation
@override
Future<ScV2TransactionSemantics> inspectV2TransactionSemantics(
Uint8List semanticBytes, {
Iterable<String> changeAddresses = const [],
}) async {
final resultJson = await inspectV2TransactionSemanticsJson(
json.encode({
'semantics': hex.encode(semanticBytes),
'changeAddresses': changeAddresses.toList(),
}),
);
return ScV2TransactionSemantics.fromJson(_decodeResult(resultJson));
}