player.getBalance(player), or use await getBalance(player) in Chrome v62. Access other utility functions with help().ethernaut in the console to explore the game's main smart contract.ethernaut.owner() (or await ethernaut.owner() in Chrome v62) to check the contract owner.contract variable.contract.info(). Complete it within the contract and submit using the button.NOTE:
These steps ensure that you're working on a specific level instance and that your progress is correctly tracked and validated.

Use help()
| (index) | Value |
|---|---|
| player | 'current player address' |
| ethernaut | 'main game contract' |
| level | 'current level contract address' |
| contract | 'current level contract instance (if created)' |
| instance | 'current level instance contract address (if created)' |
| version | 'current game version' |
| getBalance(address) | 'gets balance of address in ether' |
| getBlockNumber() | 'gets current network block number' |
| sendTransaction({options}) | 'send transaction util' |
| getNetworkId() | 'get ethereum network id' |
| toWei(ether) | 'convert ether units to wei' |
| fromWei(wei) | 'convert wei units to ether' |
| deployAllContracts() | 'Deploy all the remaining contracts on the current network.' |
To start:
await contract.info()