Documentation
    Preparing search index...

    Interface StandardEventsChangeProperties

    Properties of a "@wallet-standard/base".Wallet that changed with their new values.

    interface StandardEventsChangeProperties {
        accounts?: readonly WalletAccount[];
        chains?: IdentifierArray;
        features?: Readonly<Record<`${string}:${string}`, unknown>>;
    }
    Index

    Properties

    accounts?: readonly WalletAccount[]

    "@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.

    "@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.

    features?: Readonly<Record<`${string}:${string}`, unknown>>

    "@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.