All downloads and use of this repository (python-template) are deemed to have been read carefully and fully agree to the following terms.
- This repository is only for personal learning and communication purposes and is strictly prohibited for commercial and non-use purposes.
- The authors have the right to revoke the right to use any commercial activity or bad use.
- The risks of using the contents within this repository (python-template) will be entirely token by the users, and the repository authors will not hold any responsibility.
- The repository authors are not responsible for any accidents, negligence, contract damage, defects, copyright or other intellectual property rights infringement and any damage caused by improper use of any contents within this repository (python-template). And the repository authors will not take any legal responsibility.
- The repository (python-template) authors do not assume any responsibility for service interruption or other defects caused by force majeure or hacking attacks, communication line interruptions, etc. In addition, under the circumstances that the authors do not take any responsibility, the authors will try to reduce the loss or bad effects caused to the users.
- For issues not covered by this statement, please refer to relevant national laws and regulations. When this statement conflicts with relevant national laws and regulations, the national laws and regulations shall prevail.
- The copyright of this repository and its right of modification, renewal and final interpretation are owned by the authors of the repository (python-template).
This project aims for providing demos in python version for developing smart contract based on ontology. The following templates have been tested smoothly. The template contracts all work well and they can be used as reference when you write ONT smart contract.
- libs contain safe SafeMath, SafeCheck and Utils files
- migrate_destroyWithinContract.py
- static_call_Oep4.py
- struct_example.py
- storage_example.py
- native_asset_invoke.py
- OEP4Sample.py
- OEP5Sample.py
- OEP8Sample.py
- event_test.py
- Compare Executing Entry and Calling ScriptHash
- Dynamic Call Contract
- List and Map Sample
- UnboundWithdrawONG
For test usage, you can start ontology node and test your contract under ontology cli.
The instructions for installation of cli is given here.
The instructions for usage of cli is given here (EN, CN).
Note here that the official installation instruction is a little bit misunderstanding. Here I will give the full and correct installation guide.
2.1. Download neo-boa (ONT version)
python3 -m venv venv
cd venv/bin
activate
pip install -r requirements.txt
pip install neo-boa
2.5. You can read the docs about how to use neo-boa
Suggest you can ignore boa-test since some of the paths are configured wrongly.
Download the "python-template" zip folder and unzip it to any folder you create parallel with "boa" folder.
Open "compile_contract.py", make sure there is nothing wrong with compiling it. Then you can run this py file. Accordingly, the corresponding readable avm file will be in the corresponded folder.
Copy your avm file into your "$GOPATH/src/github.com/ontio/ontology/*" (the folder containing your ontology and wallet).
ontology --testmode --gasprice=0
Deploy smart contract in testmode. Here --code="your avm file"
./ontology contract deploy --name=xxx
--code=xxx
--author=xxx --desc=xxx --email=xxx --needstore --gaslimit=100000000
Invoke methods within your contract, please refer to the usage of ontology cli (EN, CN).