2023-07-19 16:04:19 +00:00
|
|
|
import 'package:stackwallet/dto/ordinals/inscription_link.dart';
|
|
|
|
|
2023-07-18 21:36:26 +00:00
|
|
|
class TransactionResponse {
|
|
|
|
final TransactionLinks links;
|
|
|
|
final List<OutputLink> inputs;
|
|
|
|
final InscriptionLink inscription;
|
|
|
|
final List<OutputLink> outputs;
|
|
|
|
final TransactionLink self;
|
|
|
|
final String transaction;
|
|
|
|
|
|
|
|
TransactionResponse({
|
|
|
|
required this.links,
|
|
|
|
required this.inputs,
|
|
|
|
required this.inscription,
|
|
|
|
required this.outputs,
|
|
|
|
required this.self,
|
|
|
|
required this.transaction,
|
|
|
|
});
|
|
|
|
|
|
|
|
factory TransactionResponse.fromJson(Map<String, dynamic> json) {
|
|
|
|
final inputsJson = json['_links']['inputs'] as List;
|
|
|
|
final inputs = inputsJson
|
2023-07-19 16:04:19 +00:00
|
|
|
.map((inputJson) => OutputLink.fromJson(inputJson as Map<String, dynamic>))
|
2023-07-18 21:36:26 +00:00
|
|
|
.toList();
|
|
|
|
|
|
|
|
final outputsJson = json['_links']['outputs'] as List;
|
|
|
|
final outputs = outputsJson
|
2023-07-19 16:04:19 +00:00
|
|
|
.map((outputJson) => OutputLink.fromJson(outputJson as Map<String, dynamic>))
|
2023-07-18 21:36:26 +00:00
|
|
|
.toList();
|
|
|
|
|
|
|
|
return TransactionResponse(
|
2023-07-19 16:04:19 +00:00
|
|
|
links: TransactionLinks.fromJson(json['_links'] as Map<String, dynamic>),
|
2023-07-18 21:36:26 +00:00
|
|
|
inputs: inputs,
|
2023-07-19 16:04:19 +00:00
|
|
|
inscription: InscriptionLink.fromJson(json['_links']['inscription'] as Map<String, dynamic>),
|
2023-07-18 21:36:26 +00:00
|
|
|
outputs: outputs,
|
2023-07-19 16:04:19 +00:00
|
|
|
self: TransactionLink.fromJson(json['_links']['self'] as Map<String, dynamic>),
|
|
|
|
transaction: json['transaction'] as String,
|
2023-07-18 21:36:26 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class TransactionLinks {
|
|
|
|
final TransactionLink? block;
|
|
|
|
final InscriptionLink? inscription;
|
|
|
|
final TransactionLink? self;
|
|
|
|
|
|
|
|
TransactionLinks({
|
|
|
|
this.block,
|
|
|
|
this.inscription,
|
|
|
|
this.self,
|
|
|
|
});
|
|
|
|
|
|
|
|
factory TransactionLinks.fromJson(Map<String, dynamic> json) {
|
|
|
|
return TransactionLinks(
|
2023-07-19 16:04:19 +00:00
|
|
|
block: TransactionLink.fromJson(json['block'] as Map<String, dynamic>),
|
|
|
|
inscription: InscriptionLink.fromJson(json['inscription'] as Map<String, dynamic>),
|
|
|
|
self: TransactionLink.fromJson(json['self'] as Map<String, dynamic>),
|
2023-07-18 21:36:26 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class TransactionLink {
|
|
|
|
final String href;
|
|
|
|
|
|
|
|
TransactionLink({required this.href});
|
|
|
|
|
|
|
|
factory TransactionLink.fromJson(Map<String, dynamic> json) {
|
2023-07-19 16:04:19 +00:00
|
|
|
return TransactionLink(href: json['href'] as String);
|
2023-07-18 21:36:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class OutputLink {
|
|
|
|
final String href;
|
|
|
|
|
|
|
|
OutputLink({required this.href});
|
|
|
|
|
|
|
|
factory OutputLink.fromJson(Map<String, dynamic> json) {
|
2023-07-19 16:04:19 +00:00
|
|
|
return OutputLink(href: json['href'] as String);
|
2023-07-18 21:36:26 +00:00
|
|
|
}
|
|
|
|
}
|