@silasdavis/legacy-contracts
Version:
Library with javascript bindings for Solidity contracts.
29 lines (24 loc) • 405 B
JavaScript
/**
* @file pipes.js
* @fileOverview Base class for the pipe.
* @author Andreas Olofsson
* @module pipe/pipes
*/
var devPipe = require('./dev_pipe')
var lsPipe = require('./local_signer_pipe')
var pipe = require('./pipe')
/**
* @constructor
*/
exports.DevPipe = devPipe
/**
*
* @constructor
*/
exports.LocalSignerPipe = lsPipe
/**
*
* @constructor
*/
exports.PipeBase = pipe