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

SolanaSignInInput

Input for signing in.

interface SolanaSignInInput {
readonly address?: string;
readonly chainId?: string;
readonly domain?: string;
readonly expirationTime?: string;
readonly issuedAt?: string;
readonly nonce?: string;
readonly notBefore?: string;
readonly requestId?: string;
readonly resources?: readonly string[];
readonly statement?: string;
readonly uri?: string;
readonly version?: string;
}

§Properties

§
readonly address?: string
[src]

Optional EIP-4361 Address. If not provided, the wallet must determine the Address to include in the message.

§
readonly chainId?: string
[src]

Optional EIP-4361 Chain ID. If not provided, the wallet must not include Chain ID in the message.

§
readonly domain?: string
[src]

Optional EIP-4361 Domain. If not provided, the wallet must determine the Domain to include in the message.

§
readonly expirationTime?: string
[src]

Optional EIP-4361 Expiration Time. If not provided, the wallet must not include Expiration Time in the message.

§
readonly issuedAt?: string
[src]

Optional EIP-4361 Issued At. If not provided, the wallet must not include Issued At in the message.

§
readonly nonce?: string
[src]

Optional EIP-4361 Nonce. If not provided, the wallet must not include Nonce in the message.

§
readonly notBefore?: string
[src]

Optional EIP-4361 Not Before. If not provided, the wallet must not include Not Before in the message.

§
readonly requestId?: string
[src]

Optional EIP-4361 Request ID. If not provided, the wallet must not include Request ID in the message.

§
readonly resources?: readonly string[]
[src]

Optional EIP-4361 Resources. If not provided, the wallet must not include Resources in the message.

§
readonly statement?: string
[src]

Optional EIP-4361 Statement. If not provided, the wallet must not include Statement in the message.

§
readonly uri?: string
[src]

Optional EIP-4361 URI. If not provided, the wallet must not include URI in the message.

§
readonly version?: string
[src]

Optional EIP-4361 Version. If not provided, the wallet must not include Version in the message.