mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 23:29:58 -07:00
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
use super::{AddressData, Amount, Price};
|
|
|
|
#[derive(Debug)]
|
|
pub struct AddressRealizedData {
|
|
pub initial_address_data: AddressData,
|
|
pub received: Amount,
|
|
pub sent: Amount,
|
|
pub profit: Price,
|
|
pub loss: Price,
|
|
pub value_created: Price,
|
|
pub value_destroyed: Price,
|
|
pub utxos_created: u32,
|
|
pub utxos_destroyed: u32,
|
|
}
|
|
|
|
impl AddressRealizedData {
|
|
pub fn default(initial_address_data: &AddressData) -> Self {
|
|
Self {
|
|
received: Amount::ZERO,
|
|
sent: Amount::ZERO,
|
|
profit: Price::ZERO,
|
|
loss: Price::ZERO,
|
|
utxos_created: 0,
|
|
utxos_destroyed: 0,
|
|
value_created: Price::ZERO,
|
|
value_destroyed: Price::ZERO,
|
|
initial_address_data: *initial_address_data,
|
|
}
|
|
}
|
|
|
|
pub fn receive(&mut self, amount: Amount) {
|
|
self.received += amount;
|
|
self.utxos_created += 1;
|
|
}
|
|
|
|
pub fn send(&mut self, amount: Amount, current_price: Price, previous_price: Price) {
|
|
self.sent += amount;
|
|
|
|
self.utxos_destroyed += 1;
|
|
|
|
let current_value = current_price * amount;
|
|
let previous_value = previous_price * amount;
|
|
|
|
self.value_created += current_value;
|
|
self.value_destroyed += previous_value;
|
|
|
|
if current_value >= previous_value {
|
|
self.profit += current_value - previous_value;
|
|
} else {
|
|
self.loss += previous_value - current_value;
|
|
}
|
|
}
|
|
}
|