Input for signing messages.

Wallets can still implement this method for compatibility, but this has been replaced by the sui:signPersonalMessage feature

interface SuiSignMessageInput {
    account: WalletAccount;
    message: Uint8Array;
}

Properties

Properties

account: WalletAccount
message: Uint8Array