March 2018
Beginner to intermediate
656 pages
20h 9m
English
Truffle also provides a console (a command-line interface) that allows interaction with the contracts. All deployed contracts are already instantiated and ready to use in the console. This is an REPL-based interface that means Read, Evaluate, and Print Loop. Similarly, in the geth client (via attach or console), REPL is used via exposing JSRE (JavaScript runtime environment). The console can be accessed by issuing the following command:
$ truffle console
This will open a command-line interface, as shown here:

Once the console is available, various methods can be run in order to query the contract. ...