itns-sidechain/lib/script/index.js
Christopher Jeffrey a03fcd1a23
pkg: rename to hsd.
2018-08-01 20:00:09 -07:00

20 lines
527 B
JavaScript

/*!
* script/index.js - handshake scripting for hsd
* Copyright (c) 2017-2018, Christopher Jeffrey (MIT License).
* https://github.com/handshake-org/hsd
*/
'use strict';
/**
* @module script
*/
exports.common = require('./common');
exports.Opcode = require('./opcode');
exports.Script = require('./script');
exports.ScriptError = require('./scripterror');
exports.ScriptNum = require('./scriptnum');
exports.sigcache = require('./sigcache');
exports.Stack = require('./stack');
exports.Witness = require('./witness');