use std::fmt::{Display, Formatter, Result};
use iota_types::{iota_serde::IotaTypeTag, object::Owner};
use move_core_types::language_storage::TypeTag;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_with::{DisplayFromStr, serde_as};
#[serde_as]
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct BalanceChange {
pub owner: Owner,
#[schemars(with = "String")]
#[serde_as(as = "IotaTypeTag")]
pub coin_type: TypeTag,
#[schemars(with = "String")]
#[serde_as(as = "DisplayFromStr")]
pub amount: i128,
}
impl Display for BalanceChange {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
write!(
f,
" ┌──\n │ Owner: {} \n │ CoinType: {} \n │ Amount: {}\n └──",
self.owner, self.coin_type, self.amount
)
}
}