Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SolanaSignInOutput

Output of signing in.

interface SolanaSignInOutput {
readonly account: WalletAccount;
readonly signature: Uint8Array;
readonly signatureType?: "ed25519";
readonly signedMessage: Uint8Array;
}

§Properties

§
readonly account: WalletAccount
[src]

Account that was signed in. The address of the account may be different from the provided input Address.

§
readonly signature: Uint8Array
[src]

Message signature produced. If the signature type is provided, the signature must be Ed25519.

§
readonly signatureType?: "ed25519"
[src]

Optional type of the message signature produced. If not provided, the signature must be Ed25519.

§
readonly signedMessage: Uint8Array
[src]

Message bytes that were signed. The wallet may prefix or otherwise modify the message before signing it.