Interface GenerateSingleKeyAccountArgs

Arguments for generating a SingleKeyAccount using a supported private key other than Ed25519PrivateKey. The legacy argument is optional and defaults to false, and cannot be set to true.

The signing scheme to use for the account.

Indicates whether to use legacy account generation (defaults to false).

interface GenerateSingleKeyAccountArgs {
    legacy?: false;
    scheme: Secp256k1Ecdsa;
}

Properties

Properties

legacy