Interface IUtxoContextArgs

UtxoContext constructor arguments.

interface IUtxoContextArgs {
    id?: string;
    processor: UtxoProcessor;
}

Properties

Properties

id?: string

Optional id for the UtxoContext. The id must be a valid 32-byte hex string. You can use sha256FromBinary or sha256FromText to generate a valid id.

If not provided, a random id will be generated. The IDs are deterministic, based on the order UtxoContexts are created.

processor: UtxoProcessor

Associated UtxoProcessor.

Generated using TypeDoc