OperationConfig: {
    authenticator?: Authenticator;
    onAnchoredHandler?: OnAnchoredHandler;
    signers?: Signer[];
    skipFtSigning?: boolean;
    targetBlockchainRid?: Buffer;
}

Configuration options for an operation.

Type declaration

  • Optional authenticator?: Authenticator

    An optional authenticator instance used for the operation.

  • Optional onAnchoredHandler?: OnAnchoredHandler

    Callback function to be called when the transaction is anchored. If provided, targetBlockchainRid must also be provided.

  • Optional signers?: Signer[]

    An optional array of FtKeyStore instances that will be used to sign this operation.

  • Optional skipFtSigning?: boolean

    Determines wether operation should skip ft signing with the provided keys

  • Optional targetBlockchainRid?: Buffer

    Buffer representing the rid where this operation should be anchored. If provided, onAnchoredHandler must also be provided.