UNPKG

@btc-vision/transaction

Version:

OPNet transaction library allows you to create and sign transactions for the OPNet network.

13 lines (9 loc) 323 B
import { Consensus } from './Consensus.js'; export interface ConsensusConfig<T extends Consensus> { // The consensus type. readonly CONSENSUS: T; // The consensus name. readonly CONSENSUS_NAME: string; // The block height at which this consensus was enabled. readonly ENABLED_AT_BLOCK: bigint; }