array(4) { [0]=> string(49) "learn-solidity-master\10 - Operators - Arithmatic" [1]=> string(18) " Logical & Bitwise" [2]=> string(2) " 0" [3]=> string(21) " 2018-05-08 17:47:4 " } array(4) { [0]=> string(49) "learn-solidity-master\10 - Operators - Arithmatic" [1]=> string(32) " Logical & Bitwise\Operators.sol" [2]=> string(5) " 1609" [3]=> string(21) " 2018-05-08 17:47:4 " } learn-solidity 联合开发网 - pudn.com
learn-solidity

所属分类:区块链开发
开发工具:JavaScript
文件大小:34KB
下载次数:0
上传日期:2018-10-13 18:25:54
上 传 者sh-1993
说明:  学习solidity,Tosh Academy&Blockchain“学习solidity:以太坊智能合约编程语言”课程的代码库...
(Code base for "Learn Solidity: Programming Language for Ethereum Smart Contracts" course in Tosh Academy & Blockchain Council)

文件列表:
11 - Control Structures (0, 2018-05-08)
11 - Control Structures\.DS_Store (6148, 2018-05-08)
11 - Control Structures\ControlStructure.sol (963, 2018-05-08)
12 - Scoping & Declaration (0, 2018-05-08)
12 - Scoping & Declaration\.DS_Store (6148, 2018-05-08)
12 - Scoping & Declaration\Scoping.sol (935, 2018-05-08)
13 - Input & Output Parameters (0, 2018-05-08)
13 - Input & Output Parameters\InputAndOutputParameters.sol (1026, 2018-05-08)
14 - Function Calls (0, 2018-05-08)
14 - Function Calls\FunctionCall.sol (1106, 2018-05-08)
15 - Function Modifiers (0, 2018-05-08)
15 - Function Modifiers\.DS_Store (6148, 2018-05-08)
15 - Function Modifiers\FunctionModifiers.sol (516, 2018-05-08)
16 - Fallback Function (0, 2018-05-08)
16 - Fallback Function\fallback.sol (910, 2018-05-08)
17 - Abstract Contracts (0, 2018-05-08)
17 - Abstract Contracts\AbstractContracts.sol (196, 2018-05-08)
18 - Creating Contracts via new Operator (0, 2018-05-08)
18 - Creating Contracts via new Operator\new.sol (595, 2018-05-08)
19 - Inheriting Smart Contratcs (0, 2018-05-08)
19 - Inheriting Smart Contratcs\Inheritance.sol (527, 2018-05-08)
20 - Importing Smart Contracts (0, 2018-05-08)
20 - Importing Smart Contracts\Import.sol (608, 2018-05-08)
20 - Importing Smart Contracts\owned.sol (114, 2018-05-08)
21 - Events & Logging (0, 2018-05-08)
21 - Events & Logging\.DS_Store (6148, 2018-05-08)
21 - Events & Logging\Coin.sol (1506, 2018-05-08)
22 - Exceptions (0, 2018-05-08)
22 - Exceptions\.DS_Store (6148, 2018-05-08)
22 - Exceptions\Exceptions.sol (1925, 2018-05-08)
23 - Complete Example - CrowdFunder Smart Contract (0, 2018-05-08)
23 - Complete Example - CrowdFunder Smart Contract\.DS_Store (6148, 2018-05-08)
23 - Complete Example - CrowdFunder Smart Contract\CrowdFunder.sol (4569, 2018-05-08)
23 - Complete Example - CrowdFunder Smart Contract\ethpm.json (265, 2018-05-08)
23 - Complete Example - CrowdFunder Smart Contract\package.json (998, 2018-05-08)
... ...

# Learn-solidity- Course Resources This code base is a part of the code templates of different modules in the e-learning course [Learn Solidity: Programing Language for Ethereum Smart Contracts](https://www.toshacademy.com/courses/best-solidity-programing-language-tutorial-for-ethereum-smart-contracts?utm_source=github&utm_medium=voting-ballot-repo) hosted at [Tosh Academy](https://www.toshacademy.com/collections/blockchain?utm_source=github&utm_medium=voting-ballot-repo). Learn to build smart contracts using Solidity. ## Getting Started These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. ### Prerequisites * [node](https://nodejs.org/en/download/) Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. The Node.js package ecosystem, npm, is the largest ecosystem of open source libraries in the world. * [npm](https://www.npmjs.com/package/npm) npm makes it easy for JavaScript developers to share and reuse code, and it makes it easy to update the code that you're sharing.npm is a way to reuse code from other developers, and also a way to share your code with them, and it makes it easy to manage the different versions of code. * [truffle](https://www.npmjs.com/package/truffle/tutorial) Truffle is a development environment, testing framework and asset pipeline for Ethereum, aiming to make life as an Ethereum developer easier. With Truffle, you get: >Built-in smart contract compilation, linking, deployment and binary management. >Automated contract testing with Mocha and Chai. >Configurable build pipeline with support for custom build processes. >Scriptable deployment & migrations framework. >Network management for deploying to many public & private networks. >Interactive console for direct contract communication. >Instant rebuilding of assets during development. >External script runner that executes scripts within a Truffle environment. * Rpc client preferrably [testrpc](https://www.npmjs.com/package/ethereumjs-testrpc/tutorial) ### Setting up the environment * Installing Node.js [node](https://nodejs.org/en/download/) If you're using OS X or Windows, the best way to install Node.js is to use one of the installers from the Node.js download page.If you're using Linux, you can use the installer, or you can check NodeSource's binary distributions to see whether or not there's a more recent version that works with your system. ``` $ sudo apt-get install nodejs ``` Test: Run node -v. To check the version the of installed nodejs. * Install [npm](https://www.npmjs.com/package/npm) Node comes with npm installed so you should have a version of npm. However, npm gets updated more frequently than Node does, so you'll want to make sure it's the latest version. ``` $ npm install npm@latest -g ``` Test: Run npm -v. To check the version the of installed npm. ## Getting started(Quick Usage) * Clone the repository on your local machine. ``` $ git clone https://github.com/blockchain-council/build-decentralized-democracy-dao-in-ethereum-solidity.git ``` * "cd" into the cloned repository from command line. ``` $ cd learn-solidity ``` * Then run the below command which lets the dependencies from package.json gets installed locally for this particular project. The major requirements are truffle, testrpc, babel-register and babel-polyfill. ``` $ npm install ``` * Then run the below command to start compling the contract: ``` $ truffle compile ``` You can also run truffle migrate and truffle test to compile your contracts, deploy those contracts to the network, and run their associated unit tests. Be sure you're connected to an ethereum client before running these commands. If you're new, install testrpc to run a local blockchain RPC server. After that, simply run testrpc in a new tab. ## Authors [**Toshendra Sharma**](https://www.udemy.com/user/toshendrasharma2/) Toshendra Sharma is the founder & CEO of [RecordsKeeper](https://recordskeeper.co), a Blockchain-based record keeping solution for businesses & also the founder of [Toshblocks](https://www.toshblocks.com), A Blockchain Consulting & Development. Toshendra also founded [Blockchain Council](https://www.blockchain-council.org) to bring elite Blockchain experts together on a single platform. Earlier, he founded Appvigil (Wegilant) in Nov 2011 while pursuing my Masters in Application Security from IIT Bombay, India. Appvigil is the Mobile App Vulnerability Scanner on Cloud. He was heading the team as CEO. The company has won many awards & accolades under his leadership. Toshendra has worked on many Ethereum based projects for many companies & individuals for their coins & Initial Coin Offering (ICO). He is a well-known instructor & speaker in Blockchain space and taught more than 12,000 students worldwide spread in 148+ countries. He is also the part of Forbes India 30Under30 List of 2016 in Technology space. You can find him on: * [Facebook](https://www.facebook.com/toshendra11) * [LinkedIn](https://linkedin.com/in/toshendra) * [Twitter](https://www.twitter.com/toshendrasharma) * [Tosh Academy](https://www.toshacademy.com) * [Toshblocks](https://www.toshblocks.com/) * [Udemy](https://www.udemy.com/user/toshendrasharma2/) * [Podacasts](http://www.buzzsprout.com/134***5) License ------------- [GPL v3](https://www.gnu.org/licenses/gpl-3.0.txt)

近期下载者

相关文件


收藏者