use crate::{
icrc::model::{IcrcAllowanceReport, IcrcBalanceReport, IcrcIndexReport, IcrcTokenReport},
table::{ColumnAlign, render_table},
token_amount::base_units_decimal_text,
token_metadata_text::{
optional_text, token_metadata_value_text as metadata_value_text, truncate_text_value,
},
};
const ICRC_TOKEN_METADATA_TEXT_VALUE_LIMIT: usize = 160;
#[must_use]
pub(in crate::icrc) fn icrc_token_report_text(report: &IcrcTokenReport) -> String {
let mut lines = vec![
format!("ledger_canister_id: {}", report.ledger_canister_id),
format!("token_name: {}", report.token_name),
format!("token_symbol: {}", report.token_symbol),
format!("decimals: {}", report.decimals),
format!(
"transfer_fee: {}",
base_units_decimal_text(&report.transfer_fee, report.decimals)
),
format!(
"total_supply: {}",
base_units_decimal_text(&report.total_supply, report.decimals)
),
format!(
"minting_account_owner: {}",
optional_text(report.minting_account_owner.as_ref())
),
format!(
"minting_account_subaccount_hex: {}",
optional_text(report.minting_account_subaccount_hex.as_ref())
),
format!("fetched_at: {}", report.fetched_at),
format!("source_endpoint: {}", report.source_endpoint),
];
if !report.supported_standards.is_empty() {
lines.push(String::new());
lines.push(render_table(
&["STANDARD", "URL"],
&report
.supported_standards
.iter()
.map(|standard| [standard.name.clone(), standard.url.clone()])
.collect::<Vec<_>>(),
&[ColumnAlign::Left, ColumnAlign::Left],
));
}
if !report.metadata.is_empty() {
lines.push(String::new());
lines.push(render_table(
&["METADATA", "TYPE", "VALUE"],
&report
.metadata
.iter()
.map(|row| {
[
row.key.clone(),
row.value_type.clone(),
truncate_text_value(
&metadata_value_text(&row.key, &row.value, report.decimals),
ICRC_TOKEN_METADATA_TEXT_VALUE_LIMIT,
),
]
})
.collect::<Vec<_>>(),
&[ColumnAlign::Left, ColumnAlign::Left, ColumnAlign::Left],
));
}
lines.join("\n")
}
#[must_use]
pub(in crate::icrc) fn icrc_balance_report_text(report: &IcrcBalanceReport) -> String {
[
format!("ledger_canister_id: {}", report.ledger_canister_id),
format!("account_owner: {}", report.account_owner),
format!(
"subaccount_hex: {}",
optional_text(report.subaccount_hex.as_ref())
),
format!("token_symbol: {}", report.token_symbol),
format!("decimals: {}", report.decimals),
format!(
"balance: {} {}",
base_units_decimal_text(&report.balance, report.decimals),
report.token_symbol
),
format!("balance_base_units: {}", report.balance),
format!("fetched_at: {}", report.fetched_at),
format!("source_endpoint: {}", report.source_endpoint),
]
.join("\n")
}
#[must_use]
pub(in crate::icrc) fn icrc_allowance_report_text(report: &IcrcAllowanceReport) -> String {
[
format!("ledger_canister_id: {}", report.ledger_canister_id),
format!("account_owner: {}", report.account_owner),
format!(
"account_subaccount_hex: {}",
optional_text(report.account_subaccount_hex.as_ref())
),
format!("spender_owner: {}", report.spender_owner),
format!(
"spender_subaccount_hex: {}",
optional_text(report.spender_subaccount_hex.as_ref())
),
format!("token_symbol: {}", report.token_symbol),
format!("decimals: {}", report.decimals),
format!(
"allowance: {} {}",
base_units_decimal_text(&report.allowance, report.decimals),
report.token_symbol
),
format!("allowance_base_units: {}", report.allowance),
format!(
"expires_at_unix_nanos: {}",
optional_text(report.expires_at_unix_nanos.as_ref())
),
format!("fetched_at: {}", report.fetched_at),
format!("source_endpoint: {}", report.source_endpoint),
]
.join("\n")
}
#[must_use]
pub(in crate::icrc) fn icrc_index_report_text(report: &IcrcIndexReport) -> String {
let mut lines = vec![
format!("ledger_canister_id: {}", report.ledger_canister_id),
format!(
"index_canister_id: {}",
optional_text(report.index_canister_id.as_ref())
),
format!("fetched_at: {}", report.fetched_at),
format!("source_endpoint: {}", report.source_endpoint),
];
if let Some(error) = report.index_error.as_deref() {
lines.push(format!("index_error: {error}"));
}
lines.join("\n")
}