Interface SingleKeySignerConstructorArgs

Arguments required to create a single key signer.

The private key used for signing.

Optional account address associated with the signer.

interface SingleKeySignerConstructorArgs {
    address?: AccountAddressInput;
    privateKey: PrivateKey;
}

Properties

Properties

privateKey: PrivateKey