Python智能合约开发?看这一篇就够了
黄河347
发表于 2023-1-9 03:05:36
164
0
0
在之前的技术视点文章中,我们介绍了目前本体主网支持的智能合约体系以及相应的智能合约开发工具 SmartX。很多小伙伴都想上手练一练。在本期的本体技术视点中,我们将正式开始讲述智能合约语法部分。9 [' l, N5 O& ~( |( ?2 a
本体的智能合约 API 分为7个模块,分别是 Blockchain & Block API、Runtime API、Storage API、Native API、Upgrade API、Execution Engine API 以及 Static & Dynamic Call API。本期我们将介绍 Blockchain & Block API,这是本体智能合约体系中最基础的部分。其中,Blockchain API 支持基本的区块链查询操作,如获取当前块高等;Block API 支持基本的区块查询操作,如查询指定区块交易数等。同时,文末将提供视频讲解。
在这之前,小伙伴们可以在本体智能合约开发工具 SmartX 中新建一个合约,跟着我们进行操作。% ]- p2 t3 }7 m- c+ G$ C
02 Blockchain API 使用方法4 Y# j% \1 P# s H! S2 O0 F
智能合约函数的引用与 Python 的引用如出一辙。开发者可以根据需要引入相应的函数。例如,下面语句引入了获取当前最新块高函数 GetHeight 和获取区块头函数 GetHeader。( a3 L3 b- n1 m) q0 b+ K" c
from ontology.interop.System.Blockchain import GetHeight, GetHeader/ A8 `/ X* s) H2 d! ?4 H; S* W5 @
2.1 GetHeight+ h2 a) f" K8 r+ d3 Y
开发者可以使用 GetHeight 来获取当前最新块高,具体例子如下。在后面的例子中,为了节省空间,我们将省略 Main 函数,小伙伴在练习的时候可以根据需要加入。/ }2 L/ H) A! J3 B3 ?) x: k7 k
from ontology.interop.System.Runtime import Notify1 c) W6 g7 f. i) a
from ontology.interop.System.Blockchain import GetHeight
def Main(operation):
if operation == 'demo':
return demo()
return False9 q% `, q* J& V
def demo():
height=GetHeight()
Notify(height) # 打印height
return height #在函数运行结束后返回height# i: |+ _! U1 |! I+ b
2.2 GetHeader0 L! K" R5 N2 [) z: X5 D
开发者可以使用 GetHeader 来获取区块头,参数是某个块的块高。具体例子如下:. q/ X! N4 k" K, f: r# @. p+ x, i
from ontology.interop.System.Runtime import Notify
from ontology.interop.System.Blockchain import GetHeader
def demo():+ I E y* n* I8 q6 a6 Y
block_height=10$ d) J2 Y. e! z: O- t$ _3 X
header=GetHeader(block_height) 8 N" b" R' Z( D* z7 e
Notify(header)
return header4 K! s! J' y& S! L u I |
2.3 GetTransactionByHash0 I' p- K; [, T( @3 \) L
开发者可以使用 GetTransactionByHash 函数通过交易哈希获取交易。交易哈希以 bytearray 的格式,作为参数传入 GetTransactionByHash。这个函数的关键在于如何转换将十六进制格式的交易哈希转变为 bytearray 格式的交易哈希。
我们以16进制格式的交易哈希为例,实现将十六进制格式的交易哈希转变为 bytearray 格式的交易哈希。示例哈希如下:
9f270aa3a4c13c46891ff0e1a2bdb3ea0525669d414994aadf2606734d0c89c1. T) U& W6 a' V! U( d
首先,将该交易哈希反序得到:& }' N+ v: u1 O7 W* B
c1890c4d730626dfaa9449419d662505eab3bda2e1f01f89463cc1a4a30a279
开发者可以通过 SmartX 提供的转换工具 Hex Number(little endian) Number 实现这一步。6 T/ H0 ~ L0 O7 G8 x
然后,将其转成 bytearray 格式:
{0xc1,0x89,0x0c,0x4d,0x73,0x06,0x26,0xdf,0xaa,0x94,0x49,0x41,0x9d,0x66,0x25,0x05,0xea,0xb3,0xbd,0xa2,0xe1,0xf0,0x1f,0x89,0x46,0x3c,0xc1,0xa4,0xa3,0x0a,0x27,0x9f}% q1 J5 z+ q; p2 H4 l! s# o
开发者可以通过 SmartX 提供的转换工具 String Byte Array 实现这一步。
最后,将得到的 bytearray 转换成相应的字符串:
\xc1\x89\x0c\x4d\x73\x06\x26\xdf\xaa\x94\x49\x41\x9d\x66\x25\x05\xea\xb3\xbd\xa2\xe1\xf0\x1f\x89\x46\x3c\xc1\xa4\xa3\x0a\x27\x9f
GetTransactionByHash 函数通过交易哈希获取交易的例子如下:6 R( t$ I1 o! A! m4 }& [6 q
from ontology.interop.System.Blockchain import GetTransactionByHash, i# l, d/ y- `
def demo():
# tx_hash="9f270aa3a4c13c46891ff0e1a2bdb3ea0525669d414994aadf2606734d0c89c1" ( D1 q6 k; h7 p" D' b9 a& N R: X
tx_hash=bytearray(b"\xc1\x89\x0c\x4d\x73\x06\x26\xdf\xaa\x94\x49\x41\x9d\x66\x25\x05\xea\xb3\xbd\xa2\xe1\xf0\x1f\x89\x46\x3c\xc1\xa4\xa3\x0a\x27\x9f")
tx=GetTransactionByHash(tx_hash) f% [" t0 T8 t2 `
return tx5 U$ j* ~5 F7 |+ w: h+ @
2.4 GetTransactionHeight0 w( ] S3 E/ S
开发者可以使用 GetTransactionHeight 函数通过交易哈希获取交易高度。我们还是以上个例子中的哈希为例:
from ontology.interop.System.Blockchain import GetTransactionHeight% h. ~: `" t, N3 }
def demo():
# tx_hash="9f270aa3a4c13c46891ff0e1a2bdb3ea0525669d414994aadf2606734d0c89c1"
tx_hash=bytearray(b"\xc1\x89\x0c\x4d\x73\x06\x26\xdf\xaa\x94\x49\x41\x9d\x66\x25\x05\xea\xb3\xbd\xa2\xe1\xf0\x1f\x89\x46\x3c\xc1\xa4\xa3\x0a\x27\x9f")
height=GetTransactionHeight(tx_hash); W% L3 X3 |/ X" n) e" q7 E+ v
return height
2.5 GetContract& E- n% @ s$ R9 y8 Z$ c- h
开发者可以使用 GetContract 函数通过合约哈希获取合约。其中,合约哈希的转换过程与上面讲到的交易哈希转换过程一致。7 I' b: f( ^. S3 G
from ontology.interop.System.Blockchain import GetContract
def demo():
# contract_hash="d81a75a5ff9b95effa91239ff0bb3232219698fa"
contract_hash=bytearray(b"\xfa\x98\x96\x21\x32\x32\xbb\xf0\x9f\x23\x91\xfa\xef\x95\x9b\xff\xa5\x75\x1a\xd8")- p+ K) j1 N# C4 b" r
contract=GetContract(contract_hash)
return contract
2.6 GetBlock) u! y% I% l2 t% Y
开发者可以使用 GetBlock 函数获取区块。有两种方法可以获取指定区块:( v) R7 A2 v: R8 b! w% Q
通过块高获取区块:( f, o1 V* Q% C" ]! c! D
from ontology.interop.System.Blockchain import GetBlock1 I' g' J6 S" r: b" b# @0 v
def demo():6 z- x- W+ f l" r% V
block=GetBlock(1408)
return block& `7 ]) A: t( B4 g9 n
2. 通过区块哈希获取区块:) L' M$ S _& A. _, S
from ontology.interop.System.Blockchain import GetBlock% f# F$ H% s: C. B- f: Z6 c% T2 O
def demo(): 5 |; ^" w7 x+ M- d+ u) {8 b- [
block_hash=bytearray(b'\x16\xe0\xc5\x40\x82\x79\x77\x30\x44\xea\x66\xc8\xc4\x5d\x17\xf7\x17\x73\x92\x33\x6d\x54\xe3\x48\x46\x0b\xc3\x2f\xe2\x15\x03\xe4')
block=GetBlock(block_hash)
03 Block API 使用方法: T2 ]: V" y1 }) T6 o. M
Block API 中可供引用的函数有三个,它们分别是 GetTransactions、GetTransactionCount 和 GetTransactionByIndex。我们依次介绍下这三个函数。
3.1 GetTransactionCount
开发者可以使用 GetTransactionCount 函数获取指定区块的交易数量。% J8 K' n9 }3 X
from ontology.interop.System.Block import GetTransactionCount
def demo():
block=GetBlock(1408)
count=GetTransactionCount(block)
return count* @( ?3 ~* g9 f: J1 N
**5 Q5 N) ~- Z' o- s
3.2 GetTransactions**' h! {% ~' F0 w. \7 ]) k: a
开发者可以使用 GetTransactions 函数获取获取指定区块的所有交易。2 @0 f- u# d" Q8 d& l# F
from ontology.interop.System.Blockchain import GetBlock
from ontology.interop.System.Block import GetTransactions
def demo():
block=GetBlock(1408)
txs=GetTransactions(block)
return txs
3.3 GetTransactionByIndex3 M9 l5 B; D; O. z% Q; s
开发者可以使用 GetTransactionByIndex 函数获取指定区块的指定交易。
from ontology.interop.System.Blockchain import GetBlock$ J+ T. ^+ [2 t
from ontology.interop.System.Block import GetTransactionByIndex3 V! E& O; r, u" v
def demo():
block=GetBlock(1408). U" N9 n. r- m1 v, L, G. K' B
tx=GetTransactionByIndex(block,0) # index starts from 0.
return tx( W: y/ M [/ o1 x ]2 ^
04 后记* {" w- n9 g4 w( U. \
Blockchain & Block API 在智能合约中起到查询区块链数据和区块数据的作用,是智能合约最不可缺少的一部分。在后面的技术视点中,我们将讨论如何使用其它 API,探讨它们和本体区块链的交互。、
成为第一个吐槽的人