Interface Ed25519SignerConstructorArgs

Arguments required to create an instance of an Ed25519 signer.

The private key used for signing.

Optional account address associated with the signer.

interface Ed25519SignerConstructorArgs {
    address?: AccountAddressInput;
    privateKey: Ed25519PrivateKey;
}

Properties

Properties

privateKey: Ed25519PrivateKey