Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(node: string, websocket: string, provider?: Provider) {
this.provider = provider || new HTTPProvider(node);
this.wallet = new Wallet(this.provider);
this.blockchain = new Blockchain(this.provider, this.wallet);
this.network = new Network(this.provider, this.wallet);
this.contracts = new Contracts(this.provider, this.wallet);
this.transactions = new TransactionFactory(this.provider, this.wallet);
this.newTxBlockSubscription = new NewTxBlockSubscription(websocket);
}
}