This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Review && TODO
liuis Lee edited this page Oct 31, 2019
·
3 revisions
issue | version | priority |
---|---|---|
需要修复的问题 | P0 | |
wallet | P1 | |
合约抽象 | P2 | |
合约测试框架 | P3 |
2.conffle node 的使用考虑到有的用户使用docker 不方便,使用conffle node up 来启动single node conflux-chain ,使用conffle node down 来关闭掉当前运行的节点。conffle down -v 来清理conflux-chain的产生的数据记录(清理掉blockchain_db)。
Conffle account 现在产生的助记词,没法在我们现在的钱包中使用,因为我们的钱包现在不支持助记词导入,需要做matemask的之类的功能。钱包也需要支持链接各种RPC。
主要功能是对已经发布的合约进行实现连接,实例化封装。主要封装合约ABI和合约地址来实例化已经发布的合约。
1.truffle create <artifact_type>
主要用于migrations和测试。将自动生成migrations的编号前缀。 ArtifactName 必须是 合约的名字 artifact_type 可以是: contract, migration 或 test. 创建的文件通常像这样: contracts/ArtifactName.sol, migrations/####_artifact_name.js tests/artifact_name.js.
1.truffle debug <transaction_hash> 单步调试
2.truffle networks 显示每个网络上已经部署合约的地址