使用Python truffle 构建完整的智能合约
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Python truffle 构建完整的智能合约相关的知识,希望对你有一定的参考价值。
使用Python truffle 构建完整的智能合约使用solidity的truffle框架开发智能合约,使用Python调用合约。
1. 合约编写、编译和部署
- git clone https://github.com/jamess010/AIonChain
- cd ./AIonChain && cd ./master/smartcontract
- truffle develop (port: 9545)
- compile
- migrate (--reset)
2. 使用 python 调用
- 安装 web3.py 或者使用 docker web3.py
- cd ./notebook
- 将合约的 abi 编辑到 ./abis/ModelRepo.abi
- jupyter notebook
- 在 notebook 中打开 test_modelrepo.ipynb
- 更改 HTTPProvider 的地址
- 合约地址放到 contract_address 中
以上是关于使用Python truffle 构建完整的智能合约的主要内容,如果未能解决你的问题,请参考以下文章
用Solidity在Truffle上构建一个HelloWorld智能合约