# conference **Repository Path**: sloot/conference ## Basic Information - **Project Name**: conference - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-05 - **Last Updated**: 2021-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Conference A simple Ethereum smart contract and lightwallet example. For noobs! There might be bugs here. ### Updates Current code uses *Truffle v2.0.4* ### Install Install [testrpc] (or use geth) ``` $ npm install -g ethereumjs-testrpc ``` Install [truffle](https://github.com/consensys/truffle): ``` $ npm install -g truffle ``` If you don't have solc you can get it [here](https://github.com/ethereum/go-ethereum/wiki/Contract-Tutorial#using-an-online-compiler) ### Run Run testrpc in one console window: ``` $ testrpc ``` In another console window run truffle from project root directory: ``` $ truffle compile $ truffle migrate $ truffle test $ truffle serve // server at localhost:8080 ```