signMessageResultSchema: ObjectSchema<{
    signature: StringSchema<undefined>;
    messageHash: StringSchema<undefined>;
    address: StringSchema<undefined>;
    protocol: EnumSchema<typeof MessageSigningProtocols, undefined>;
}, undefined> = ...

Type declaration

  • Readonlysignature: StringSchema<undefined>

    The signature of the message.

  • ReadonlymessageHash: StringSchema<undefined>

    hash of the message.

  • Readonlyaddress: StringSchema<undefined>

    The address used for signing.

  • Readonlyprotocol: EnumSchema<typeof MessageSigningProtocols, undefined>

    The protocol to use for signing the message.