@muirglacier/jellyfish-transaction
Version:
A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance for Bitcoin
82 lines • 2.18 kB
TypeScript
import { StaticCode } from './opcode';
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP1 extends StaticCode {
constructor();
}
/**
* This instruction allows a transaction output to be made unspendable until some point in the future.
*/
export declare class OP_CHECKLOCKTIMEVERIFY extends StaticCode {
constructor();
}
/**
* This instruction allows a transaction output to be made unspendable until some point in the future.
* @See OP_CHECKLOCKTIMEVERIFY
*/
export declare class OP_NOP2 extends OP_CHECKLOCKTIMEVERIFY {
}
/**
* This instruction allows execution pathways of a script to be restricted based on the age of the output being spent.
*/
export declare class OP_CHECKSEQUENCEVERIFY extends StaticCode {
constructor();
}
/**
* This instruction allows execution pathways of a script to be restricted based on the age of the output being spent.
* @See OP_CHECKSEQUENCEVERIFY
*/
export declare class OP_NOP3 extends OP_CHECKSEQUENCEVERIFY {
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP4 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP5 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP6 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP7 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP8 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP9 extends StaticCode {
constructor();
}
/**
* This instruction performs no operation.
* No items are added to the stack.
*/
export declare class OP_NOP10 extends StaticCode {
constructor();
}
//# sourceMappingURL=expansion.d.ts.map