热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Solidity编程开发实例

Solidity编程开发实例Voting投票接下来的智能合约教程非常复杂,但展示了很多Solidity的特性。它实现了一个入门的投票合约。当然,电子

Solidity 编程开发实例


Voting 投票

接下来的智能合约教程非常复杂,但展示了很多Solidity的特性。它实现了一个入门的投票合约。当然,电子选举的主要问题是如何赋予投票权给准确的人,并防止操纵。我们不能解决所有的问题,但至少我们会展示如何委托投票可以同时做到投票统计是自动和完全透明。

思路是为每张选票创建一个合约,每个投票选项提供一个短名称。合约创建者作为会长将会给每个投票参与人各自的地址投票权。

地址后面的人们可以选择自己投票或者委托信任的代表人替他们投票。在投票结束后,winningProposal()将会返回获得票数最多的提案。

/// @title Voting with delegation./// @title 授权投票contract Ballot{// 这里声明了复杂类型// 将会在被后面的参数使用// 代表一个独立的投票人。struct Voter{uint weight; // 累积的权重。bool voted; // 如果为真,则表示该投票人已经投票。address delegate; // 委托的投票代表uint vote; // 投票选择的提案索引号}// 这是一个独立提案的类型struct Proposal{bytes32 name; // 短名称(32字节)uint voteCount; // 累计获得的票数}address public chairperson;//这里声明一个状态变量,保存每个独立地址的`Voter` 结构mapping(address => Voter) public voters;//一个存储`Proposal`结构的动态数组Proposal[] public proposals;// 创建一个新的投票用于选出一个提案名`proposalNames`.function Ballot(bytes32[] proposalNames){chairperson = msg.sender;voters[chairperson].weight = 1;//对提供的每一个提案名称,创建一个新的提案//对象添加到数组末尾for (uint i = 0; i //`Proposal({...})` 创建了一个临时的提案对象,//`proposal.push(...)`添加到了提案数组`proposals`末尾。proposals.push(Proposal({name: proposalNames[i],voteCount: 0}));}//给投票人`voter`参加投票的投票权,//只能由投票主持人`chairperson`调用。function giveRightToVote(address voter){if (msg.sender != chairperson || voters[voter].voted)//`throw`会终止和撤销所有的状态和以太改变。//如果函数调用无效,这通常是一个好的选择。//但是需要注意,这会消耗提供的所有gas。throw;voters[voter].weight = 1;}// 委托你的投票权到一个投票代表 `to`。function delegate(address to){// 指定引用Voter sender = voters[msg.sender];if (sender.voted)throw;//当投票代表`to`也委托给别人时,寻找到最终的投票代表while (voters[to].delegate != address(0) &&voters[to].delegate != msg.sender)to = voters[to].delegate;// 当最终投票代表等于调用者,是不被允许的。if (to == msg.sender)throw;//因为`sender`是一个引用,//这里实际修改了`voters[msg.sender].voted`sender.voted = true;sender.delegate = to;Voter delegate = voters[to];if (delegate.voted)//如果委托的投票代表已经投票了,直接修改票数proposals[delegate.vote].voteCount += sender.weight;else//如果投票代表还没有投票,则修改其投票权重。delegate.weight += sender.weight;}///投出你的选票(包括委托给你的选票)///给 `proposals[proposal].name`。function vote(uint proposal){Voter sender = voters[msg.sender];if (sender.voted) throw;sender.voted = true;sender.vote = proposal;//如果`proposal`索引超出了给定的提案数组范围//将会自动抛出异常,并撤销所有的改变。proposals[proposal].voteCount += sender.weight;}///@dev 根据当前所有的投票计算出当前的胜出提案function winningProposal() constantreturns (uint winningProposal){uint winningVoteCount = 0;for (uint p = 0; p if (proposals[p].voteCount > winningVoteCount){winningVoteCount = proposals[p].voteCount;winningProposal = p;}}}
}

可能的改进

现在,指派投票权到所有的投票参加者需要许多的交易。你能想出更好的方法么?


盲拍

这一节,我们将展示在以太上创建一个完整的盲拍合约是多么简单。我们从一个所有人都能看到出价的公开拍卖开始,接着扩展合约成为一个在拍卖结束以前不能看到实际出价的盲拍。


简单的公开拍卖

通常简单的公开拍卖合约,是每个人可以在拍卖期间发送他们的竞拍出价。为了实现绑定竞拍人的到他们的拍卖,竞拍包括发送金额/ether。如果产生了新的最高竞拍价,前一个最高价竞拍人将会拿回他的钱。在竞拍阶段结束后,受益人人需要手动调用合约收取他的钱 — — 合约不会激活自己。

contract SimpleAuction {// 拍卖的参数。// 时间要么为unix绝对时间戳&#xff08;自1970-01-01以来的秒数&#xff09;&#xff0c;// 或者是以秒为单位的出块时间address public beneficiary;uint public auctionStart;uint public biddingTime;//当前的拍卖状态address public highestBidder;uint public highestBid;//在结束时设置为true来拒绝任何改变bool ended;//当改变时将会触发的Eventevent HighestBidIncreased(address bidder, uint amount);event AuctionEnded(address winner, uint amount);//下面是一个叫做natspec的特殊注释&#xff0c;//由3个连续的斜杠标记&#xff0c;当询问用户确认交易事务时将显示。///创建一个简单的合约使用&#96;_biddingTime&#96;表示的竞拍时间&#xff0c;/// 地址&#96;_beneficiary&#96;.代表实际的拍卖者function SimpleAuction(uint _biddingTime,address _beneficiary) {beneficiary &#61; _beneficiary;auctionStart &#61; now;biddingTime &#61; _biddingTime;}///对拍卖的竞拍保证金会随着交易事务一起发送&#xff0c;///只有在竞拍失败的时候才会退回function bid() {//不需要任何参数&#xff0c;所有的信息已经是交易事务的一部分if (now > auctionStart &#43; biddingTime)//当竞拍结束时撤销此调用throw;if (msg.value <&#61; highestBid)//如果出价不是最高的&#xff0c;发回竞拍保证金。throw;if (highestBidder !&#61; 0)highestBidder.send(highestBid);highestBidder &#61; msg.sender;highestBid &#61; msg.value;HighestBidIncreased(msg.sender, msg.value);}///拍卖结束后发送最高的竞价到拍卖人function auctionEnd() {if (now <&#61; auctionStart &#43; biddingTime)throw; //拍卖还没有结束if (ended)throw; //这个收款函数已经被调用了AuctionEnded(highestBidder, highestBid);//发送合约拥有所有的钱&#xff0c;因为有一些保证金可能退回失败了。beneficiary.send(this.balance);ended &#61; true;}function () {//这个函数将会在发送到合约的交易事务包含无效数据//或无数据的时执行&#xff0c;这里撤销所有的发送&#xff0c;//所以没有人会在使用合约时因为意外而丢钱。throw;}
}

Blind Auction 盲拍

接下来扩展前面的公开拍卖成为一个盲拍。盲拍的特点是拍卖结束以前没有时间压力。在一个透明的计算平台上创建盲拍系统听起来可能有些矛盾&#xff0c;但是加密算法能让你脱离困境。

在拍卖阶段, 竞拍人不需要发送实际的出价&#xff0c;仅仅只需要发送一个它的散列值。因为目前几乎不可能找到两个值&#xff08;足够长&#xff09;的散列值相等&#xff0c;竞拍者提交他们的出价散列值。在拍卖结束后&#xff0c;竞拍人重新发送未加密的竞拍出价&#xff0c;合约将检查其散列值是否和拍卖阶段发送的一样。 另一个挑战是如何让拍卖同时实现绑定和致盲 &#xff1a;防止竞拍人竞拍成功后不付钱的唯一的办法是&#xff0c;在竞拍出价的同时发送保证金。但是在Ethereum上发送保证金是无法致盲&#xff0c;所有人都能看到保证金。下面的合约通过接受任何尽量大的出价来解决这个问题。当然这可以在最后的揭拍阶段进行复核&#xff0c;一些竞拍出价可能是无效的&#xff0c;这样做的目的是&#xff08;它提供一个显式的标志指出是无效的竞拍&#xff0c;同时包含高额保证金&#xff09;&#xff1a;竞拍人可以通过放置几个无效的高价和低价竞拍来混淆竞争对手。

contract BlindAuction
{struct Bid{bytes32 blindedBid;uint deposit;}address public beneficiary;uint public auctionStart;uint public biddingEnd;uint public revealEnd;bool public ended;mapping(address &#61;> Bid[]) public bids;address public highestBidder;uint public highestBid;event AuctionEnded(address winner, uint highestBid);///修饰器&#xff08;Modifier&#xff09;是一个简便的途径用来验证函数输入的有效性。///&#96;onlyBefore&#96; 应用于下面的 &#96;bid&#96;函数&#xff0c;其旧的函数体替换修饰器主体中 &#96;_&#96;后就是其新的函数体modifier onlyBefore(uint _time) { if (now >&#61; _time) throw; _ }modifier onlyAfter(uint _time) { if (now <&#61; _time) throw; _ }function BlindAuction(uint _biddingTime,uint _revealTime,address _beneficiary){beneficiary &#61; _beneficiary;auctionStart &#61; now;biddingEnd &#61; now &#43; _biddingTime;revealEnd &#61; biddingEnd &#43; _revealTime;}///放置一个盲拍出价使用&#96;_blindedBid&#96;&#61;sha3(value,fake,secret).///仅仅在竞拍结束正常揭拍后退还发送的以太。当随同发送的以太至少///等于 "value"指定的保证金并且 "fake"不为true的时候才是有效的竞拍///出价。设置 "fake"为true或发送不合适的金额将会掩没真正的竞拍出///价&#xff0c;但是仍然需要抵押保证金。同一个地址可以放置多个竞拍。function bid(bytes32 _blindedBid)onlyBefore(biddingEnd){bids[msg.sender].push(Bid({blindedBid: _blindedBid,deposit: msg.value}));}///揭开你的盲拍竞价。你将会拿回除了最高出价外的所有竞拍保证金///以及正常的无效盲拍保证金。function reveal(uint[] _values, bool[] _fake,bytes32[] _secret)onlyAfter(biddingEnd)onlyBefore(revealEnd){uint length &#61; bids[msg.sender].length;if (_values.length !&#61; length || _fake.length !&#61; length ||_secret.length !&#61; length)throw;uint refund;for (uint i &#61; 0; i var bid &#61; bids[msg.sender][i];var (value, fake, secret) &#61;(_values[i], _fake[i], _secret[i]);if (bid.blindedBid !&#61; sha3(value, fake, secret))//出价未被正常揭拍&#xff0c;不能取回保证金。continue;refund &#43;&#61; bid.deposit;if (!fake && bid.deposit >&#61; value)if (placeBid(msg.sender, value))refund -&#61; value;//保证发送者绝不可能重复取回保证金bid.blindedBid &#61; 0;}msg.sender.send(refund);}//这是一个内部 (internal)函数&#xff0c;//意味着仅仅只有合约&#xff08;或者从其继承的合约&#xff09;可以调用function placeBid(address bidder, uint value) internalreturns (bool success){if (value <&#61; highestBid)return false;if (highestBidder !&#61; 0)//退还前一个最高竞拍出价highestBidder.send(highestBid);highestBid &#61; value;highestBidder &#61; bidder;return true;}///竞拍结束后发送最高出价到竞拍人function auctionEnd()onlyAfter(revealEnd){if (ended) throw;AuctionEnded(highestBidder, highestBid);//发送合约拥有所有的钱&#xff0c;因为有一些保证金退回可能失败了。beneficiary.send(this.balance);ended &#61; true;}function () { throw; }
}
Safe Remote Purchase 安全的远程购物contract Purchase
{uint public value;address public seller;address public buyer;enum State { Created, Locked, Inactive }State public state;function Purchase(){seller &#61; msg.sender;value &#61; msg.value / 2;if (2 * value !&#61; msg.value) throw;}modifier require(bool _condition){if (!_condition) throw;_}modifier onlyBuyer(){if (msg.sender !&#61; buyer) throw;_}modifier onlySeller(){if (msg.sender !&#61; seller) throw;_}modifier inState(State _state){if (state !&#61; _state) throw;_}event aborted();event purchaseConfirmed();event itemReceived();///终止购物并收回以太。仅仅可以在合约未锁定时被卖家调用。function abort()onlySellerinState(State.Created){aborted();seller.send(this.balance);state &#61; State.Inactive;}///买家确认购买。交易包含两倍价值的&#xff08;&#96;2 * value&#96;&#xff09;以太。///这些以太会一直锁定到收货确认(confirmReceived)被调用。function confirmPurchase()inState(State.Created)require(msg.value &#61;&#61; 2 * value){purchaseConfirmed();buyer &#61; msg.sender;state &#61; State.Locked;}///确认你&#xff08;买家&#xff09;收到了货物&#xff0c;这将释放锁定的以太。function confirmReceived()onlyBuyerinState(State.Locked){itemReceived();buyer.send(value);//我们有意忽略了返回值。seller.send(this.balance);state &#61; State.Inactive;}function() { throw; }
}

小额支付通道

待补

转自:
https://github.com/twq0076262/solidity-zh/blob/master/solidity-example.md


如果你希望高效的学习以太坊DApp开发&#xff0c;可以访问汇智网提供的最热门在线互动教程&#xff1a;

  • 适合区块链新手的以太坊DApp实战入门教程
  • 区块链&#43;IPFS&#43;Node.js&#43;MongoDB&#43;Express去中心化以太坊电商应用开发实战

其他更多内容也可以访问这个以太坊博客。


推荐阅读
author-avatar
儒雅的活在当下
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有