{"id":18490503,"url":"https://github.com/axsaucedo/ethereum-blockchain-dev","last_synced_at":"2025-07-03T01:36:32.654Z","repository":{"id":150594402,"uuid":"94013623","full_name":"axsaucedo/ethereum-blockchain-dev","owner":"axsaucedo","description":"Ethereum Solidity Development Overview","archived":false,"fork":false,"pushed_at":"2017-06-21T15:20:10.000Z","size":2203,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-23T18:11:18.893Z","etag":null,"topics":["bitcoin","blockchain","contracts","cryptocurrency","ethereum","ethereum-contracts","notebook","solidity","solidity-contracts"],"latest_commit_sha":null,"homepage":"https://axsauze.github.io/ethereum-blockchain-dev/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/axsaucedo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-11T15:28:23.000Z","updated_at":"2024-06-05T10:40:36.000Z","dependencies_parsed_at":"2023-04-29T13:00:41.197Z","dependency_job_id":null,"html_url":"https://github.com/axsaucedo/ethereum-blockchain-dev","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axsaucedo%2Fethereum-blockchain-dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axsaucedo%2Fethereum-blockchain-dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axsaucedo%2Fethereum-blockchain-dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axsaucedo%2Fethereum-blockchain-dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/axsaucedo","download_url":"https://codeload.github.com/axsaucedo/ethereum-blockchain-dev/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247931142,"owners_count":21020177,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","blockchain","contracts","cryptocurrency","ethereum","ethereum-contracts","notebook","solidity","solidity-contracts"],"created_at":"2024-11-06T12:59:49.886Z","updated_at":"2025-07-03T01:36:32.642Z","avatar_url":"https://github.com/axsaucedo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nThese are the complete notes, practice exercises, installation, etc for the Hands on Solidity Ethereium udemy course.\n\nThe live notebook can be found at [axsauze.github.io/ethereum-blockchain-dev](https://axsauze.github.io/ethereum-blockchain-dev/)\n\nList of contents:\n\n# Summary\n\n* [Introduction](README.md)\n* Section 1\n    - [1 - Introduction of Course](section-1/1.md)\n    - [2 - Quickstart - HelloWorld Solidity](section-1/2.md)\n    - [3 - Setup Mist Wallet](section-1/3.md)\n    - [4 - Create own private blockchain](section-1/4.md)\n    - [5 - Deploying first contract](section-1/5.md)\n    - [6 - Software required](section-1/6.md)\n* Section 2\n    - [1 - Why learn in blockchain technology?](section-2/1.md)\n    - [2 - Why is blockchain such a revolutionary tech](section-2/2.md)\n    - [3 - Breaking down and understanding the blockchain](section-2/3.md)\n* Section 3\n    - [1 - Types of blockchain](section-3/1.md)\n    - [2 - Potential use cases for blockchain technology](section-3/2.md)\n    - [3 - Projects in Ethereum](section-3/3.md)\n* Section 4\n    - [1 - What are smart contracts](section-4/1.md)\n    - [2 - Contracts advantages/disadrantages](section-4/2.md)\n* Section 5\n    - [1 - Mist](section-5/1.md)\n    - [2 - Configure \u0026 run geth](section-5/2.md)\n    - [3 - Compile \u0026 Deploy contracts](section-5/3.md)\n    - [4 - Ethereum TestRPC](section-5/4.md)\n    - [5 - Ethereum Name Service \u0026 Oraclize](section-5/5.md)\n* Section 6\n    - [1 - Different Phases of Development](section-6/1.md)\n    - [2 - How to interact with contracts](section-6/2.md)\n    - [3 - Setup a Private Network](section-6/3.md)\n    - [4 - The genesis file explained](section-6/4.md)\n* Section 7\n    - [1 - Decentralisation](section-7/1.md)\n* Section 8\n    - [1 - Hands on Solidity](section-8/1.md)\n    - [2 - General layout](section-8/2.md)\n    - [3 - Constructor, setters, etc](section-8/3.md)\n    - [4 - Testing contract](section-8/4.md)\n    - [5 - Global Msg Object](section-8/5.md)\n    - [6 - Killing contracts + Modifiers](section-8/6.md)\n    - [7 - Extending / Importing contracts](section-8/7.md)\n    - [8 - Structs, arrays, etc](section-8/8.md)\n    - [9 - Events](section-8/9.md)\n* Section 9\n    - [1 - Web3 Connecting your browser](section-9/1.md)\n    - [2 - Web3 In Vanilla JS](section-9/2.md)\n    - [3 - Web3 Interact with Contract](section-9/3.md)\n    - [4 - Web3 use non-constant functions](section-9/4.md)\n    - [5 - Compile and deploy contract](section-9/5.md)\n    - [6 - Web3 and Events/Filtering](section-9/6.md)\n* Section 10\n    - [1 - Intro Truffle, EthereumJS, etc](section-10/1.md)\n    - [2 - Different versions of Truffle](section-10/2.md)\n    - [3 - Truffle Webpack Folder Structure](section-10/3.md)\n    - [4 - Let's implement our shared wallet](section-10/4.md)\n    - [5 - Taking a loot at the multiwallet](section-10/5.md)\n    - [6 - Testing our wallet](section-10/6.md)\n    - [7 - Implementing FrontEnd for Web3](section-10/7.md)\n    - [8 - Finalising frontend](section-10/8.md)\n    - [9 - Listening to events](section-10/9.md)\n    - [10 - Ethereum Studio](section-10/10.md)\n    - [11 - ](section-10/11.md)\n    - [12 - What Eth Studio can do for us](section-10/12.md)\n    - [13 - Deploying Contract to Real Chain](section-10/13.md)\n* Section 11\n    - [1 - Building your CV in the blockchain](section-11/1.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxsaucedo%2Fethereum-blockchain-dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxsaucedo%2Fethereum-blockchain-dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxsaucedo%2Fethereum-blockchain-dev/lists"}