Skip to content

Commit

Permalink
修正注解
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnQiang1 committed Sep 30, 2022
1 parent f850646 commit d9057c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 50_MultisigWallet/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Gnosis Safe多签钱包是以太坊最流行的多签钱包,管理近400亿美

```solidity
address[] public owners; // 多签持有人数组
mapping(address => bool) public isOwner; // 记录一个地址是否为多签
mapping(address => bool) public isOwner; // 记录一个地址是否为多签持有人
uint256 public ownerCount; // 多签持有人数量
uint256 public threshold; // 多签执行门槛,交易至少有n个多签人签名才能被执行。
uint256 public nonce; // nonce,防止签名重放攻击
Expand Down Expand Up @@ -299,4 +299,4 @@ Gnosis Safe多签钱包是以太坊最流行的多签钱包,管理近400亿美

这一讲,我们介绍了多签钱包,并写了一个极简版的多签钱包合约,仅有不到150行代码。

我与多签钱包很有缘分,2021年因为PeopleDAO创建国库而学习了Gnosis Safe并写了中英文的[使用教程](https://peopledao.mirror.xyz/nFCBXda8B5ZxQVqSbbDOn2frFDpTxNVtdqVBXGIjj0s),之后很幸运的做了3个国库的多签人维护资产安全,现在又成为了Safe的守护者深度参与治理。希望大家的资产都更加安全。
我与多签钱包很有缘分,2021年因为PeopleDAO创建国库而学习了Gnosis Safe并写了中英文的[使用教程](https://peopledao.mirror.xyz/nFCBXda8B5ZxQVqSbbDOn2frFDpTxNVtdqVBXGIjj0s),之后很幸运的做了3个国库的多签人维护资产安全,现在又成为了Safe的守护者深度参与治理。希望大家的资产都更加安全。

0 comments on commit d9057c6

Please sign in to comment.