forked from mosaicdao/mosaic.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
31 lines (28 loc) · 774 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict';
const Mosaic = require('./src/Mosaic');
const Chain = require('./src/Chain');
const AbiBinProvider = require('./src/AbiBinProvider');
const ChainSetup = require('./src/ChainSetup');
const Contracts = require('./src/Contracts');
const StakeHelper = require('./src/helpers/StakeHelper');
const TypedData = require('./src/utils/EIP712SignerExtension/TypedData');
const Facilitator = require('./src/Facilitator');
const Staker = require('./src/Staker');
const Redeemer = require('./src/Redeemer');
require('./src/utils/EIP712SignerExtension/extender')();
module.exports = {
Mosaic,
Chain,
AbiBinProvider,
ChainSetup,
Contracts,
Helpers: {
StakeHelper,
},
Utils: {
EIP712TypedData: TypedData,
},
Facilitator,
Staker,
Redeemer,
};