@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
12 lines (11 loc) • 440 B
TypeScript
import { Consensus } from './Consensus.js';
export interface ConsensusConfig<T extends Consensus> {
readonly CONSENSUS: T;
readonly CONSENSUS_NAME: string;
readonly ENABLED_AT_BLOCK: bigint;
}
export declare const OPNetConsensusConfig: {
[key in Consensus]?: ConsensusConfig<key>;
};
export declare const currentConsensus = Consensus.Roswell;
export declare const currentConsensusConfig: ConsensusConfig<Consensus.Roswell>;