pub type Transaction {
Transaction(
hash: String,
timestamp: Int,
block_number: Int,
confirmations: Int,
from: String,
from_type: Int,
to: String,
to_type: Int,
value: Int,
fee: Int,
sender_data: String,
recipient_data: String,
flags: Int,
validity_start_height: Int,
network_id: Int,
proof: String,
execution_result: Bool,
size: Int,
related_addresses: List(String),
)
}
Constructors
-
Transaction(
hash: String,
timestamp: Int,
block_number: Int,
confirmations: Int,
from: String,
from_type: Int,
to: String,
to_type: Int,
value: Int,
fee: Int,
sender_data: String,
recipient_data: String,
flags: Int,
validity_start_height: Int,
network_id: Int,
proof: String,
execution_result: Bool,
size: Int,
related_addresses: List(String),
)