Documentation
    Preparing search index...

    Type Alias RequiredSignMessageFeature

    Filter for the wallet's SignMessage capability. Same shape as RequiredSendTransactionFeature; checked against the wallet's SignMessage feature entry.

    type RequiredSignMessageFeature = {
        extraCurrencyRequired?: boolean;
        itemTypes?: StructuredItemType[];
        minMessages?: number;
    }
    Index

    Properties

    extraCurrencyRequired?: boolean

    Require extraCurrencySupported: true on the SignMessage feature.

    itemTypes?: StructuredItemType[]

    Every requested type must appear in the wallet's SignMessage.itemTypes.

    minMessages?: number

    Wallet's maxMessages must be greater than or equal to this value.