Skip to content

Commit

Permalink
Update README_cn.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lidangzzz authored Jun 10, 2023
1 parent cf2c487 commit bee3679
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions README_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,16 @@ By-law Script(章程语言)是一个类似于 JavaScript 语法的编程语
mint_tokens( // 铸造代币
[addr1, addr2, addr3], // 铸造代币发往的地址
[0, 0, 0], // 代币等级
[500, 300, 200]
] // 铸造代币数量
)
;
[500, 300, 200] // 铸造代币数量
);

pay_cash(100000000, 0, 1); // 支付 0.1 ETH 作为客户采购

transfer_tokens( // 转让代币
[addr1, addr2, addr3], // 代币转让的目标地址
[0, 0, 0], // 代币等级
[100, 100, 200]
] // 代币数量
)
;
[100, 100, 200] // 代币数量
);

add_withdraw_cash(10000000); // 申请 0.01 ETH 的提款

Expand Down Expand Up @@ -73,7 +69,7 @@ add_voting_rule( // 新增投票规则(序号为 5)
is_absolute_majority: true, // 绝对多数投票制(而不是相对多数制)
}
]
)
);

add_and_enable_plugins( // 新增插件并立即生效
[
Expand All @@ -88,7 +84,7 @@ add_and_enable_plugins( // 新增插件并立即生效
is_before_operation: false, // 是否在沙箱(sandbox)试运行之前检查执行:否(这个插件要求在沙箱(sandbox)试运行之后检查执行)
}
]
)
);
```

执行以上的 By-law Script 程序后,DARC VM 合约将添加一个新的插件和投票规则,并且插件将立即生效(如果存在与 add_voting_rule()
Expand Down Expand Up @@ -150,7 +146,7 @@ const anti_delutive = {

// 是否在沙箱(sandbox)试运行之前检查执行:否(这个插件要求在沙箱试运行之后检查执行)
is_before_operation: false,
}
};
```

由于这个插件需要检查代币所有权的状态,因此应该在 DARC
Expand Down Expand Up @@ -212,7 +208,7 @@ const law_1_appendix = {

// 在沙箱试运行之前检查执行:是
is_before_operation: true,
}
};
```

### 例2: 对赌协议(Bet-on Agreement,或者称为Valuation-Adjustment Mechanism(VAM) Agreement)
Expand Down Expand Up @@ -491,4 +487,4 @@ add_storage(['QmcpxHN3a5HYnPurtuDs3jDfDSg1LPDe2KVBUG4RifcSbC']);
5. 部署合约
```shell
npm run deploy
```
```

0 comments on commit bee3679

Please sign in to comment.