美文网首页
Ethereum 众筹合约简单demo

Ethereum 众筹合约简单demo

作者: 彼海姆的流浪 | 来源:发表于2018-07-03 19:43 被阅读0次

    废话不多说,先上众筹合约代码

    pragma solidity ^0.4.16;
    /**
     * 一个简单的代币合约。
     */
     contract token {
    
         string public standard = 'https://mshk.top';
         string public name; //代币名称
         string public symbol; //代币符号比如'$'
         uint8 public decimals = 2;  //代币单位,展示的小数点后面多少个0,和以太币一样后面是是18个0
         uint256 public totalSupply; //代币总量
         /* This creates an array with all balances */
         mapping (address => uint256) public balanceOf;
    
         event Transfer(address indexed from, address indexed to, uint256 value);  //转帐通知事件
    
    
         /* 初始化合约,并且把初始的所有代币都给这合约的创建者
          * @param _owned 合约的管理者
          * @param tokenName 代币名称
          * @param tokenSymbol 代币符号
          */
         function token(address _owned, string tokenName, string tokenSymbol) public {
             //合约的管理者获得的代币总量
             balanceOf[_owned] = totalSupply;
    
             name = tokenName;
             symbol = tokenSymbol;
    
         }
    
         /**
          * 转帐,具体可以根据自己的需求来实现
          * @param  _to address 接受代币的地址
          * @param  _value uint256 接受代币的数量
          */
         function transfer(address _to, uint256 _value) public{
           //从发送者减掉发送额
           balanceOf[msg.sender] -= _value;
    
           //给接收者加上相同的量
           balanceOf[_to] += _value;
    
           //通知任何监听该交易的客户端
           emit Transfer(msg.sender, _to, _value);
         }
    
         /**
          * 增加代币,并将代币发送给捐赠新用户
          * @param  _to address 接受代币的地址
          * @param  _amount uint256 接受代币的数量
          */
         function issue(address _to, uint256 _amount) public{
             totalSupply = totalSupply + _amount;
             balanceOf[_to] += _amount;
    
             //通知任何监听该交易的客户端
              emit Transfer(this, _to, _amount);
         }
      }
    
    /**
     * 众筹合约
     */
    contract Crowdsale is token {
        address public beneficiary = msg.sender; //受益人地址,测试时为合约创建者
        uint public fundingGoal;  //众筹目标,单位是ether
        uint public amountRaised; //已筹集金额数量, 单位是wei
        uint public deadline; //截止时间
        uint public price;  //代币价格
        bool public fundingGoalReached = false;  //达成众筹目标
        bool public crowdsaleClosed = false; //众筹关闭
    
    
        mapping(address => uint256) public balance; //保存众筹地址
    
        //记录已接收的ether通知
        event GoalReached(address _beneficiary, uint _amountRaised);
    
        //转帐通知
        event FundTransfer(address _backer, uint _amount, bool _isContribution);
    
        /**
         * 初始化构造函数
         *
         * @param fundingGoalInEthers 众筹以太币总量
         * @param durationInMinutes 众筹截止,单位是分钟
         * @param tokenName 代币名称
         * @param tokenSymbol 代币符号
         */
        function Crowdsale(
            uint fundingGoalInEthers,
            uint durationInMinutes,
            string tokenName,
            string tokenSymbol
        ) public token(this, tokenName, tokenSymbol){
            fundingGoal = fundingGoalInEthers * 1 ether;
            deadline = now + durationInMinutes * 1 minutes;
            price = 500 finney; //1个以太币可以买 2 个代币
        }
    
    
        /**
         * 默认函数
         *
         * 默认函数,可以向合约直接打款
         */
        function () public payable {
    
            //判断是否关闭众筹
            require(!crowdsaleClosed);
            uint amount = msg.value;
    
            //捐款人的金额累加
            balance[msg.sender] += amount;
    
            //捐款总额累加
            amountRaised += amount;
    
            //转帐操作,转多少代币给捐款人
            issue(msg.sender, amount / price * 10 ** uint256(decimals));
            emit FundTransfer(msg.sender, amount, true);
        }
    
        /**
         * 判断是否已经过了众筹截止限期
         */
        modifier afterDeadline() { if (now >= deadline) _; }
    
        /**
         * 检测众筹目标是否已经达到
         */
        function checkGoalReached()  public afterDeadline {
            if (amountRaised >= fundingGoal){
                //达成众筹目标
                fundingGoalReached = true;
                emit GoalReached(beneficiary, amountRaised);
            }
    
            //关闭众筹
            crowdsaleClosed = true;
        }
    
    
        /**
         * 收回资金
         *
         * 检查是否达到了目标或时间限制,如果有,并且达到了资金目标,
         * 将全部金额发送给受益人。如果没有达到目标,每个贡献者都可以退出
         * 他们贡献的金额
         */
        function safeWithdrawal()  public afterDeadline {
    
            //如果没有达成众筹目标
            if (!fundingGoalReached) {
                //获取合约调用者已捐款余额
                uint amount = balance[msg.sender];
    
                if (amount > 0) {
                    //返回合约发起者所有余额
                    msg.sender.transfer(amount);
                    emit FundTransfer(msg.sender, amount, false);
                    balance[msg.sender] = 0;
                }
            }
    
            //如果达成众筹目标,并且合约调用者是受益人
            if (fundingGoalReached && beneficiary == msg.sender) {
    
                //将所有捐款从合约中给受益人
                beneficiary.transfer(amountRaised);
    
                emit FundTransfer(beneficiary, amount, false);
            }
        }
    }
    

    我们首先启动geth私有链进入测试环境并打开Ethereum Wallet Dapp

    启动截图

    使用Dapp创建3个测试账号,Bob(张三),Cathy(李四)和David(王五)并从主账号分别给3人转账100 Ethers

    转账记录

    然后我们通过部署合约界面,使用Bob(张三)账号创建众筹合约:

    1.在SOURCE CODE那里复制粘贴最上面的合约代码
    2.完成编译后在右侧选择Crowdsale
    3.这里我们设置Funding goal in ethers 众筹目标为100 (以太币)
    4.Duration in minutes 众筹周期设置20(分钟),即该众筹合约将从创建时间开始的20分钟后过期失效
    5.Token name 和 Token symbol 设置为Solarie和emoji表情🌞
    特别说明的是,我们的合约规则规定每1 ether= 2 🌞 代币


    部署合约

    等待合约部署完毕之后,我们将能在合约里找到我们创建的SOLARIE众筹合约

    在合约的详细信息里,我们能看到一些相关信息,比如过期时间
    比如合约当前的激活状态,以及是否达到众筹目标(Funding goal reached,这里我们的目标是100ether)



    之后我们使用合约界面右上角的transfer Ether& Tokens功能

    分别使用Cathy(李四)和David(王五)向众筹合约转账70ether 和 50ether,之后回到Wallet首页耐心等待几秒后可以看到转账完成的信息。稍后便能看到账号概览Cathy(李四)和David(王五)的账号分别被标记了两个小太阳标志,表示众筹合约已经如约向两人转账相对应的🌞 代币


    转账信息
    Cathy(李四)依约获得140🌞 (70ehter*2)
    David(王五)依约获得100🌞 (50ehter*2)

    然后便是漫长的12分钟等待,直到众筹合约设置的最后期限过期

    1.过期之后,我们重新回到之前进入的众筹合约的操作界面,我们在右侧的select function处选择并执行check goal reached函数,记得使用创建该合约也是合约拥有者的Bob(张三)进行操作,否则会报错。
    2.执行函数并完成操作后,我们再一次返回操作界面。我们可以看到原先被标记为No的Crowdsale closed和Funding goal reached两个属性被重新标记为yes,也就是说该众筹合约完成了目标众筹金额并已经过期。
    3.之后我们边可以对Bob(张三)合约拥有者账户执行safe withdrawal函数


    达到合约要求
    向合约拥有者转账

    转账完成前后对比

    合约被执行前
    合约被执行后,可以看到众筹合约里的来自Cathy(李四)和David(王五)的120ether被成功转入Bob(张三)的账户

    顺便一提

    如若该合约没有满足基本的Crowdsale closed和Funding goal reached或者其他附加条件,合约将会在过期后自动判定为失效,任何参与众筹的用户,在合约到期后,在我们的实例里是Cathy(李四)和David(王五)均可以通过safe withdrawal函数取回自己参与众筹的ether资金

    FIN

    相关文章

      网友评论

          本文标题:Ethereum 众筹合约简单demo

          本文链接:https://www.haomeiwen.com/subject/kupjuftx.html