Skip to content

EthereumEx/truffle_eth_class2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Course Materials for DApp Development with Solidity

This is the official Repository for all the Code you write during our course.

The course can be found here for limited time for $15: https://www.udemy.com/blockchain-developer/?couponCode=REPO15

Scope

The scope of the Code is to show what you can achieve in Solidity, Ethereum, Web3, Truffle, Ethereum Studio, etc. In Particular:

  • demonstrate how to work with the Ethereum Blockchain
  • Web3
  • Listen and react to specific events
  • Write Test Cases
  • Deploy the DApp
  • Work with MIST
  • Work with Truffle and WebPack

Install Instructions

Developing for Ethereum is sometimes frustrating, because things change at fast pace. If something does not work as described here, please:

  1. try a google search as you are 100% not alone with your problem
  2. inform the instructors of the course so they can correct the problem
  3. if you have the time, it would be awesome if you'd make a pull-request here

Windows

  1. Download Pyhton: https://www.python.org/downloads/release/python-2712/

  2. .Net Packages https://www.microsoft.com/en-US/download/details.aspx?id=49982

https://www.microsoft.com/en-us/download/details.aspx?id=30653

  1. SSL https://slproweb.com/products/Win32OpenSSL.html

  2. and eventually you also need the Visual Studio, because of the C++ Compiler: https://www.visualstudio.com/vs/

After downloading the Visual Studio make sure to open one time a new c++ project.

  1. Install the Git-Bash as it comes with a mingw: https://git-scm.com/downloads

  2. Install NodeJS and the Node Package Manager (NPM) https://nodejs.org/en/download/

Ubuntu

  1. Install necessary packages:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install curl git vim build-essential
  1. Install NodeJS and NPM
 curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
 sudo apt-get install -y nodejs
 sudo npm install -g express

Known Issues

Error when running truffle test/migrate

If something like this pops up:

dependency_path = source.resolve_dependency_path(import_path, dependency_path);

or

/usr/lib/node_modules/truffle/node_modules/truffle-compile/profiler.js:120
        if (ancestors.length > 0) {
                     ^

TypeError: Cannot read property 'length' of undefined
    at walk_from (/usr/lib/node_modules/truffle/node_modules/truffle-compile/profiler.js:120:22)

then try to install truffle 3.1.9:

npm install -g truffle@3.1.9

Error when installing truffle

Something like

... receive errors including "MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe".

or

... node_modules\truffle\node_modules\sha3\build\sha3.vcxproj(20,3): error MSB4019: The imported project "C:\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.".

When you have installed Visual Studio, make sure you have opened a c++ project once.

Then try npm config set msvs_version 2015 --global and in addition you can try to install the ms-build tools:

npm install --global --production windows-build-tools

Geth Attach

On Windows its simply possible to do a geth attach, but on MacOS it seems that you need to provide the actual ipc file. geth --datadir /media/user/sdcard/chaindata --ipcpath $HOME/.ethereum/geth.ipc console which is a problem posed here: http://ethereum.stackexchange.com/questions/4472/port-30303-error-in-mist-when-i-run-geth-with-a-different-datadir

Private Network

The way the private network is initialized changed in the past months and seems to keep changing. For better information on it, it is advised to directly see the correct instructions on: https://github.com/ethereum/go-ethereum

Usually it should work with:

geth init path/to/genesis.json --datadir=/path/to/some/folder

Solidity Compilation Errors/Warnings

Solidity is in active maintenance and things change all the time! The code throughout the course was written for the current version (at the time this Readme was written) 0.4.8.

Any Solidity Program can be "forced" to use another compiler version (older one) by using as first line in your program pragma solidity ^0.4.0; for version 0.4.0, change it to whatever version you might need.

The code here is updated to work with solidity 0.4.8.

Contact

If you run into any problems, don't hesitate to contact us on the course-forum at any time. If you use the forum-search function, there is a high chance that you find the answer to your problem already.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 61.0%
  • HTML 34.1%
  • CSS 4.0%
  • Ruby 0.9%