2017-02-27 17:35:23 -05:00
|
|
|
'use strict';
|
|
|
|
|
2017-02-24 15:10:28 -05:00
|
|
|
var Contract = require('./contract.js');
|
|
|
|
var Interface = require('./interface.js');
|
2016-07-25 03:55:16 -04:00
|
|
|
|
2017-02-24 15:10:28 -05:00
|
|
|
module.exports = {
|
2017-03-01 02:34:52 -05:00
|
|
|
Contract: Contract,
|
2017-02-24 15:10:28 -05:00
|
|
|
Interface: Interface,
|
2016-07-21 04:21:44 -04:00
|
|
|
}
|
2017-02-27 17:35:23 -05:00
|
|
|
|
|
|
|
require('ethers-utils/standalone.js')(module.exports);
|
|
|
|
|