使用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 中
原文地址:https://blog.51cto.com/5249302/2425286
时间: 2024-11-07 03:56:48