Skip to content

Latest commit

 

History

History

lesson-03-initialization

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Initialization and Basic Structure

Project Initialization

    $ brownie init

Brownie Structure

  • /contracts
  • /interfaces
  • /scripts
  • /tests

Brownie Mixes

    $ brownie bake token

Basic Console

    $ brownie console
    >>> my_token = Token.deploy("Test", "TST", 18, 10e21, {'from': accounts[0]})
    >>> my_token.transfer(accounts[1], 1e10, {'from': accounts[0]})