HelloWorld
第一个智能合约
以下展示了一个最简单的智能合约代码和测试代码
# helloworld.codon
from chain.contract import Contract
@contract(main=True)
class MyContract(Contract):
def __init__(self):
super().__init__()
@action('sayhello')
def say_hello(self):
print("Hello, World!")
测试代码:
# helloworldtest.py
import os
from ipyeos import chaintester
from ipyeos.chaintester import ChainTester
from ipyeos import log
chaintester.chain_config['contracts_console'] = True
logger = log.get_logger(__name__)
dir_name = os.path.dirname(os.path.abspath(__file__))
def init_test(contract_name):
t = ChainTester(True)
wasm_file = os.path.join(dir_name, f'{contract_name}.wasm')
with open(wasm_file, 'rb') as f:
code = f.read()
abi_file = os.path.join(dir_name, f'{contract_name}.abi')
with open(abi_file, 'r') as f:
abi = f.read()
t.deploy_contract('hello', code, abi)
t.produce_block()
return t
def test():
t = init_test('helloworld')
ret = t.push_action('hello', 'sayhello', "", {'hello': 'active'})
t.produce_block()
logger.info("++++++++++%s\n", ret['elapsed'])
编译:
python-contract build helloworld.codon
运行测试代码:
ipyeos -m pytest -s -x testhelloworld.py -k test
输出:
Hello, World!
创建一个初始项目
可以用python-contract init
命令来创建一个初始项目,例如下面的代码创建了一个mycontract
的初始项目:
python-contract init mycontract
创建完后可以用下面的命令编译合约:
cd mycontract
./build.sh
执行成功后会生成mycontract.wasm
和mycontract.abi
这两个文件
可以运行下面的命令进行测试:
./test.sh
会输出以下信息:
[(hello,sayhello)->hello]: CONSOLE OUTPUT BEGIN =====================
hello alice
[(hello,sayhello)->hello]: CONSOLE OUTPUT END =====================
确认测试成功后即可在现有的项目的基础上进行智能合约的开发。