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

SolanaWallet

type SolanaWallet = {
signIn?: (...inputs: SolanaSignInInput[]) => Promise<SolanaSignInOutput | SolanaSignInOutput[]>;
publicKey?: {
toBase58: () => string;
}
| null;
signMessage?: (message: Uint8Array, encoding?: "utf8" | string) => Promise<Uint8Array> | undefined;
}
;

§Type

§
{
signIn?: (...inputs: SolanaSignInInput[]) => Promise<SolanaSignInOutput | SolanaSignInOutput[]>;
publicKey?: {
toBase58: () => string;
}
| null;
signMessage?: (message: Uint8Array, encoding?: "utf8" | string) => Promise<Uint8Array> | undefined;
}
[src]