Variable CreateAccountRequestStructConst
CreateAccountRequestStruct: Struct<{
id: null | string | number;
jsonrpc: "2.0";
method: "keyring_createAccount";
params: {
options: Record<string, Json>;
};
}, {
id: Struct<null | string | number, null>;
jsonrpc: Struct<"2.0", "2.0">;
method: Struct<"keyring_createAccount", "keyring_createAccount">;
params: Struct<{
options: Record<string, Json>;
}, {
options: Struct<Record<string, Json>, null>;
}>;
}> = ...
Type declaration
id: null | string | number
jsonrpc: "2.0"
method: "keyring_createAccount"
params: {
options: Record<string, Json>;
}
options: Record<string, Json>
Type declaration
id: Struct<null | string | number, null>
jsonrpc: Struct<"2.0", "2.0">
method: Struct<"keyring_createAccount", "keyring_createAccount">
params: Struct<{
options: Record<string, Json>;
}, {
options: Struct<Record<string, Json>, null>;
}>