@tokenz/tokens-smartcontract-sdk
Version:
Smart Contract SDK for Tokenz STO platform
26 lines (18 loc) • 729 B
JavaScript
const Core = require('./Core');
const Governance = require('./governance');
const kyc = require('./KYC');
const STOFactory = require('./STOFactory');
const STOIssuance = require('./STOIssuance');
const STODividentFactory = require('./STODividentFactory');
class TokenzSDK {
constructor(){
window.Sentry.init({ dsn: 'https://d402520b8a0f45249125c1139d15410d@sentry.io/1729218' });
this.Governance = new Governance();
this.kyc = new kyc()
this.STOFactory = new STOFactory();
this.STOIssuance = new STOIssuance();
this.STODividentFactory = new STODividentFactory();
}
}
module.exports = TokenzSDK;