Interface GenerateAccountArgs

Arguments for generating an opaque Account when the input signature scheme is unknown at compile time.

The signing scheme to use for account generation.

Indicates whether to use legacy account generation methods.

interface GenerateAccountArgs {
    legacy?: boolean;
    scheme?: SigningSchemeInput;
}

Properties

Properties

legacy?: boolean