Variable CreateAccountResponseStructConst
CreateAccountResponseStruct: Struct<{
address: string;
id: string;
methods: string[];
options: Record<string, Json>;
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh";
}, {
address: Struct<string, null>;
id: Struct<string, null>;
methods: Struct<string[], Struct<string, null>>;
options: Struct<Record<string, Json>, null>;
type: Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh", {
bip122:p2wpkh: "bip122:p2wpkh";
eip155:eoa: "eip155:eoa";
eip155:erc4337: "eip155:erc4337";
}>;
}> = KeyringAccountStruct
Type declaration
address: string
id: string
methods: string[]
options: Record<string, Json>
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh"
Type declaration
address: Struct<string, null>
id: Struct<string, null>
methods: Struct<string[], Struct<string, null>>
options: Struct<Record<string, Json>, null>
type: Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh", {
bip122:p2wpkh: "bip122:p2wpkh";
eip155:eoa: "eip155:eoa";
eip155:erc4337: "eip155:erc4337";
}>
Account main address.