TAGS

vyper-example-box

CREATED

UPDATED

STARS

INSTALL

...

REPOSITORY
GitHub Download
Please wait: Fetching readme...

b"Vyper Example Box\n=================\n\nThis box contains a simple `VyperStorage` contract to show the basics of using\nVyper with Truffle.\n\n## Installation\n\n1. Install Truffle globally. Make sure you have v5.0.0 or higher.\n ```\n npm install -g truffle\n ```\n\n2. Download the box. This also takes care of installing the necessary dependencies.\n ```\n truffle unbox vyper-example\n ```\n\n3. Run the development console.\n ```\n truffle develop\n ```\n\n4. Compile and migrate the smart contracts. Note inside the development console we don't preface commands with `truffle`.\n ```\n compile\n migrate\n ```\n\n5. Run the tests.\n ```\n // If inside the development console.\n test\n\n // If outside the development console..\n truffle test\n ```\n"