This commit is contained in:
aozhiwei 2022-10-31 20:05:15 +08:00
parent 2a741eadfc
commit bd05186dcf
2 changed files with 7 additions and 10 deletions

View File

@ -39,8 +39,7 @@ class BlockChain(object):
'group': 'BlockChain', 'group': 'BlockChain',
'url': 'webapp/index.php?c=BlockChain&a=active1155Nft', 'url': 'webapp/index.php?c=BlockChain&a=active1155Nft',
'params': [ 'params': [
['type', 0, '1英雄 2枪械'], ['trans_id', '', '事务id'],
['uniid', 0, '唯一id'],
], ],
'response': [ 'response': [
_common.RspHead(), _common.RspHead(),
@ -97,7 +96,7 @@ class BlockChain(object):
'url': 'webapp/index.php?c=BlockChain&a=evolveChip', 'url': 'webapp/index.php?c=BlockChain&a=evolveChip',
'params': [ 'params': [
['token_id1', 0, 'tokenid1'], ['token_id1', 0, 'tokenid1'],
['token_id2', 0, 'tokenid2'], ['token_ids', '', 'tokenids材料id(|分割)'],
], ],
'response': [ 'response': [
_common.RspHead(), _common.RspHead(),
@ -124,8 +123,7 @@ class BlockChain(object):
'group': 'BlockChain', 'group': 'BlockChain',
'url': 'webapp/index.php?c=BlockChain&a=mintShardBatchUser', 'url': 'webapp/index.php?c=BlockChain&a=mintShardBatchUser',
'params': [ 'params': [
['token_id1', 0, 'tokenid1'], ['ids', 0, 'tokenid1'],
['token_id2', 0, 'tokenid2'],
], ],
'response': [ 'response': [
_common.RspHead(), _common.RspHead(),
@ -174,5 +172,4 @@ class BlockChain(object):
_common.RspHead(), _common.RspHead(),
] ]
}, },
] ]

View File

@ -931,8 +931,8 @@ class NftTransaction(object):
def __init__(self): def __init__(self):
self.fields = [ self.fields = [
['old_rank', 0, '战斗前段位'], ['item_id', 0, '道具id'],
['old_score', 0, '战斗前排位分'], ['action', 0, '动作'],
['new_rank', 0, '战斗后段位'], ['time', 0, '时间'],
['new_score', 0, '战斗后排位分'], ['status', 0, '1:已完成 2:等待中'],
] ]