pub trait WalletAccount: StandardFeatures {
// Required methods
fn address(&self) -> &str;
fn public_key(&self) -> &Byte32Array;
fn icon(&self) -> Option<WalletStandardIcon>;
fn label(&self) -> Option<&str>;
}pub trait WalletAccount: StandardFeatures {
// Required methods
fn address(&self) -> &str;
fn public_key(&self) -> &Byte32Array;
fn icon(&self) -> Option<WalletStandardIcon>;
fn label(&self) -> Option<&str>;
}