Skip to content

cofoundit/getting-started-eth-development

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Hello! 🐕

This is the code for the "Getting started with Ethereum development" post on blog.cofound.it.

To get this code running, first do:

$ npm install

Then, go to the my-truffle-project directory and compile the contract:

$ cd my-truffle-project
$ npx truffle compile

Make sure that Ganache is running on 127.0.0.1:7545 and then deploy the contract:

$ npx truffle migrate

Once that's done, you can run the console to interact with your contract.

$ npx truffle console

To get the contract instance, do Billboard.deployed().then(x => billboard = x). The billboard variable will hold your contract instance.

About

The sample code for the Getting started with Ethereum development on blog.cofound.it

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published