wallet/create
This API has been deprecated. Please use wallet/createAccount instead.
Creates a new account in the wallet with the given name and optionally sets it as the default account.
Request
{
name: string
default?: boolean
}
Response
{
name: string;
publicAddress: string;
isDefaultAccount: boolean;
}