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

EthereumWeb3Credentials

type EthereumWeb3Credentials = {
chain: "ethereum";
wallet?: EthereumWallet;
statement?: string;
options?: {
url?: string;
captchaToken?: string;
signInWithEthereum?: Partial<Omit<EthereumSignInInput, "version" | "domain" | "uri" | "statement">>;
}
;
}
| {
chain: "ethereum";
message: string;
signature: Hex;
options?: {
captchaToken?: string;
}
;
}
;

§Type

§
{
chain: "ethereum";
wallet?: EthereumWallet;
statement?: string;
options?: {
url?: string;
captchaToken?: string;
signInWithEthereum?: Partial<Omit<EthereumSignInInput, "version" | "domain" | "uri" | "statement">>;
}
;
}
| {
chain: "ethereum";
message: string;
signature: Hex;
options?: {
captchaToken?: string;
}
;
}
[src]