Interface CreateEd25519AccountFromPrivateKeyArgs

Arguments for creating an Ed25519Account from an Ed25519PrivateKey. This is the default input type when passing an Ed25519PrivateKey. In order to use the SingleKey authentication scheme, legacy needs to be explicitly set to false.

interface CreateEd25519AccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy?: true;
    privateKey: Ed25519PrivateKey;
}

Properties

legacy?: true
privateKey: Ed25519PrivateKey

Generated using TypeDoc