@muirglacier/jellyfish-transaction
Version:
A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance for Bitcoin
26 lines • 1.01 kB
TypeScript
/// <reference types="node" />
/**
* Operation code, script words, opcodes, commands and functions there are many names to this.
* This is essentially things to be pushed into the DeFi scripting stack.
*
* Like bitcoin, it uses a scripting system for transactions.
* Script is simple, stack-based, and processed from left to right.
* It is intentionally none Turing-complete, with no loops.
*
* In jellyfish-transaction, this stack scripting is implemented as class for first class type support.
* This allows instanceof assertions and wraps all data to be pushed into a stack as a an instantiatable object.
*/
export declare abstract class OPCode {
readonly type: string;
protected constructor(type: string);
abstract asBuffer(): Buffer;
}
/**
* Statically mapped code of OPCode
*/
export declare abstract class StaticCode extends OPCode {
readonly code: number;
protected constructor(code: number, type: string);
asBuffer(): Buffer;
}
//# sourceMappingURL=opcode.d.ts.map