1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

use promise function of getId

This commit is contained in:
Sebastian Gerske 2018-10-05 10:59:48 +02:00
parent 84c5796dc0
commit 543af59cf3

View File

@ -34,14 +34,10 @@ export default class Web3Helper {
}
public async getNetworkName(): Promise<string> {
return new Promise<string>((resolve, reject) => {
let network: string = "unknown"
return this.web3.eth.net.getId()
.then((networkId) => {
let network: string = "unknown"
this.web3.eth.net.getId((err, networkId) => {
if (err) {
reject(err)
throw err
}
switch (networkId) {
case 1:
network = "Main"
@ -61,9 +57,8 @@ export default class Web3Helper {
default:
network = "development"
}
resolve(network)
return network
})
})
}
// web3 wrappers