UNPKG

@muirglacier/jellyfish-transaction

Version:

A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance for Bitcoin

132 lines 2.77 kB
import { StaticCode } from './opcode'; /** * An empty array of bytes is pushed onto the stack. * (This is not a no-op: an item is added to the stack.) * @see OP_FALSE */ export declare class OP_0 extends StaticCode { constructor(); } /** * An empty array of bytes is pushed onto the stack. * (This is not a no-op: an item is added to the stack.) * @see OP_0 */ export declare class OP_FALSE extends OP_0 { } /** * The number -1 is pushed onto the stack. */ export declare class OP_1NEGATE extends StaticCode { constructor(); } /** * Transaction is invalid unless occuring in an unexecuted OP_IF branch. */ export declare class OP_RESERVED extends StaticCode { constructor(); } /** * The number 1 is pushed onto the stack. * @see OP_TRUE */ export declare class OP_1 extends StaticCode { constructor(); } /** * The number 1 is pushed onto the stack. * @see OP_1 */ export declare class OP_TRUE extends OP_1 { } /** * The number 2 is pushed onto the stack. */ export declare class OP_2 extends StaticCode { constructor(); } /** * The number 3 is pushed onto the stack. */ export declare class OP_3 extends StaticCode { constructor(); } /** * The number 4 is pushed onto the stack. */ export declare class OP_4 extends StaticCode { constructor(); } /** * The number 5 is pushed onto the stack. */ export declare class OP_5 extends StaticCode { constructor(); } /** * The number 6 is pushed onto the stack. */ export declare class OP_6 extends StaticCode { constructor(); } /** * The number 7 is pushed onto the stack. */ export declare class OP_7 extends StaticCode { constructor(); } /** * The number 8 is pushed onto the stack. */ export declare class OP_8 extends StaticCode { constructor(); } /** * The number 9 is pushed onto the stack. */ export declare class OP_9 extends StaticCode { constructor(); } /** * The number 10 is pushed onto the stack. */ export declare class OP_10 extends StaticCode { constructor(); } /** * The number 11 is pushed onto the stack. */ export declare class OP_11 extends StaticCode { constructor(); } /** * The number 12 is pushed onto the stack. */ export declare class OP_12 extends StaticCode { constructor(); } /** * The number 13 is pushed onto the stack. */ export declare class OP_13 extends StaticCode { constructor(); } /** * The number 14 is pushed onto the stack. */ export declare class OP_14 extends StaticCode { constructor(); } /** * The number 15 is pushed onto the stack. */ export declare class OP_15 extends StaticCode { constructor(); } /** * The number 16 is pushed onto the stack. */ export declare class OP_16 extends StaticCode { constructor(); } //# sourceMappingURL=constants.d.ts.map