来源 | [vitalik.ca](https://vitalik.ca/general/2021/08/16/voting3.html)
特别感谢 Karl Floersch、Dan Robinson 和 Tina Zhen 的反馈和校对。推荐阅读我早期的文章:*[Notes on Blockchain Governance](https://vitalik.ca/general/2017/12/17/voting.html)、[Governance, Part 2: Pluto...
... price;
}
// in every transaction, price will go rise $20
public fun transfer(owner: address, recipient: &signer) acquires FootBallStar {
assert!(exists(owner), STAR_NOT_EXISTS); // is owner hold it ?
let card = move_from(owner);
...