Non-Universal scheme is more simple than a universal one, since it serves a single DAO (avatar)
It is possible to attach multiple instances of non-universal scheme to a single DAO (avatar),
For eg. In case of GenericScheme we attach an instance per external contract that the DAO can interact to.
Recommended design principle :
should include a one time called public initialize function which gets the avatar as its first parameters (This will assist with the common migration process)
You can refer to the non-universal schemes developed by the DAOstack team here
Following is another non-universal scheme example that we will also use in subgraph and client part of this tutorial.
BuyInWithRageQuitOpt: A non-universal scheme to allow people to buy reputation by donating money to the DAO and if their goals no more align with the DAO, have the ability to quit reputation at some later time and receive propotional funds back.
import"@daostack/arc/contracts/controller/ControllerInterface.sol";/** * @title BuyIn * @dev A scheme for buying in reputation in the DAO with option to rage quit */contractBuyInWithRageQuitOpt{usingSafeMathforuint256;eventbuyIn(addressindexed_avatar,addressindexed_member,uint256_amount,uint256_rep);eventrageQuit(addressindexed_avatar,addressindexed_member,uint256_amount,uint256_rep);Avatarpublicavatar;Reputationpublicreputation;functioninitialize(Avatar_avatar
)external{require(avatar==Avatar(0),"can be called only one time");require(_avatar!=Avatar(0),"avatar cannot be zero");avatar=_avatar;reputation=avatar.nativeReputation();}functiondeposit()payableexternal{// Transfer buy in amount to DAOrequire(address(avatar).send(msg.value));// Mint Equivalent Rep to the buyerrequire(ControllerInterface(avatar.owner()).mintReputation(msg.value,msg.sender,address(avatar)),"mint reputation should succeed");emitbuyIn(address(avatar),msg.sender,msg.value,msg.value);}functionquit()publicreturns(uint256){// Get current reputation of the quitteruint256rep=reputation.balanceOfAt(msg.sender,block.number);require(rep>0,"Only members can quit");// Calculate proportionate amount to refund to the quitteruint256totalSupply=reputation.totalSupplyAt(block.number);uint256amount=(address(avatar).balance).mul(rep).div(totalSupply);// burn reputationrequire(ControllerInterface(avatar.owner()).burnReputation(rep,msg.sender,address(avatar)));// transfer proportionate fundsrequire(ControllerInterface(avatar.owner()).sendEther(amount,msg.sender,avatar));emitrageQuit(address(avatar),msg.sender,amount,rep);returnrep;}}