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

EthereumWeb3Credentials

import type { EthereumWeb3Credentials } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";
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]