26 lines
716 B
Python
26 lines
716 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class OutAppPlanet(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'buy',
|
|
'desc': '购买星球',
|
|
'group': 'OutAppPlanet',
|
|
'url': 'webapp/index.php?c=OutAppPlanet&a=buy',
|
|
'params': [
|
|
['net_id', '', '链id'],
|
|
['address', '', '钱包地址'],
|
|
['num', 0, '数量'],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['trans_id', '', '事务id'],
|
|
['!params', [''], '合约参数列表'],
|
|
]
|
|
},
|
|
]
|