1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

faster perceived loading

This commit is contained in:
Matthias Kretschmann 2019-04-12 15:50:20 +02:00
parent 5f2253a02f
commit 823281f967
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -143,8 +143,8 @@ class App extends Component<{}, AppState> {
// Provide the Ocean
//
this.setState({ message: 'Connecting to Ocean...' })
const { ocean } = await provideOcean(this.state.web3)
const { ocean } = await provideOcean(web3provider)
this.setState({ ocean, isLoading: false })
// Get accounts
const accounts = await ocean.accounts.list()
@ -153,10 +153,8 @@ class App extends Component<{}, AppState> {
const balance = await accounts[0].getBalance()
this.setState({
isLogged: true,
ocean,
balance,
account: accounts[0].getId(),
isLoading: false
account: accounts[0].getId()
})
}
} else {
@ -164,13 +162,14 @@ class App extends Component<{}, AppState> {
// No Web3 browser
//
const { ocean } = await provideOcean(this.state.web3)
this.setState({ isLoading: false })
const network = await ocean.keeper.getNetworkName()
const isNile = network === 'Nile'
this.setState({
isNile,
ocean,
network,
isLoading: false
network
})
}
} catch (e) {