wallet_standard_base/
wallet_account.rs

1use crate::{Byte32Array, StandardFeatures, WalletStandardIcon};
2
3pub trait WalletAccount: StandardFeatures {
4    fn address(&self) -> &str;
5
6    fn public_key(&self) -> &Byte32Array;
7
8    fn icon(&self) -> Option<WalletStandardIcon>;
9
10    fn label(&self) -> Option<&str>;
11}