StandardEventProperties

Trait StandardEventProperties 

Source
pub trait StandardEventProperties {
    type Features;
    type WalletAccount;

    // Required methods
    fn chains(&self) -> Option<Vec<String>>;
    fn features(&self) -> Option<Self::Features>;
    fn accounts(&self) -> Option<Vec<Self::WalletAccount>>;
}

Required Associated Types§

Required Methods§

Source

fn chains(&self) -> Option<Vec<String>>

{@link “@wallet-standard/base”.Wallet.chains | Chains} supported by the Wallet.

The Wallet should only define this field if the value of the property has changed.

The value must be the new value of the property.

Source

fn features(&self) -> Option<Self::Features>

{@link “@wallet-standard/base”.Wallet.features | Features} supported by the Wallet.

The Wallet should only define this field if the value of the property has changed.

The value must be the new value of the property.

Source

fn accounts(&self) -> Option<Vec<Self::WalletAccount>>

{@link “@wallet-standard/base”.Wallet.accounts | Accounts} that the app is authorized to use.

The Wallet should only define this field if the value of the property has changed.

The value must be the new value of the property.

Implementors§