Interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs

Arguments for creating a SingleKeyAccount using an Ed25519PrivateKey. The legacy property must be set to false to utilize the SingleKey authentication scheme.

The Ed25519 private key used for account creation.

Optional account address input.

Must be false to enable the SingleKey authentication scheme.

interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy: false;
    privateKey: Ed25519PrivateKey;
}

Properties

legacy
privateKey: Ed25519PrivateKey