We will finally finish our DAO smart contract! So far we can vote for investment proposals, but after the voting time is over we need to actually execute the investment proposal, by sending some ether to the recipient address of the proposal. We will also use for the first time…
Read StoryIn this video, we are going to allow investors of the DAO to: create investment proposals vote on each investment proposal We will manipulate Solidity mappings a lot, including nested mappings. We will also use a storage pointer, to be able to manipulate a struct instance more easily. Any investors…
Read StoryIn this video, we are going to allow investors to cash out on their investment, in 2 ways: By redeeming their shares against Ether from the smart contract By selling their shares to other investors (outside the smart contract). In this case, the DAO smart contract will only be concerned…
Read StoryIn this video, we start to build the DAO smart contract, and implement the following features: Collect investor money in Ether Keep track of investor money in shares
Read StoryIn this new series of videos, we are going to build a DAO (Decentralized Autonomous Organization) smart contract. The DAO was a revolutionary kind of investment fund implemented as an Ethereum smart contract, where investment decisions where voted by investors. Investment decisions and executions were done in the code, without…
Read Story