The game uses the main contract Ethernaut.sol
to manage player progress and delegate interaction with Level.sol
implementations. Each level contract emits instances for players to manipulate, break, destroy, fix, etc. The player requests an instance, manipulates it and returns it to the game for evaluation of level completion. Both requesting instances and submitting instances back to the game are done with the buttons in the user interface in each level. When this app retrieves an instance from Ethernaut.sol
, it wraps it in a TruffleContract
object and exposes it in the browser's console. See the first level for a full tutorial on how to play the game.
Most game interaction is via the browser's console: Dev Tools -> Console
. Open the console and enter the command:
help()
to see a list of objects and functions injected by the game to the console.
Since most interactions are asynchronous, we recommend using Chrome v62 which enables the async
/await
keywords in the console, so instead of writting:
getBalance(player)
> PROMISE
and opening the promise.
With await/async, you can write:
await getBalance(player)
> "1.11002387"
Some levels will require working outside of the browser console. That is, writing solidity code and deploying it in the network to attack the level's instance contract with another contract. This can be done in multiple ways, for example:
Sometimes (a) the app state or (b) the MetaMask plugin state can become a bit messed up, specially after switching networks, unlocking, etc. If what you're seeing doesn't make much sense, try refreshing the app, hard-refreshing it, disabling and re-enabling your metamask plugin or even restarting your browser. If you find issues, please let us know at ethernaut@zeppelin.solutions