This commit is contained in:
aozhiwei 2023-08-08 13:16:23 +08:00
parent 128b7ac3cb
commit 8ecf7394d8
4 changed files with 7 additions and 3 deletions

View File

@ -43,7 +43,8 @@ class BuyOrder extends BaseEventProcess {
'seller': seller, 'seller': seller,
'buyer': buyer, 'buyer': buyer,
'erc20': erc20, 'erc20': erc20,
'price': price 'price': price,
'net_id': this.getNetId()
}; };
await this.callGameApi await this.callGameApi
(params, (params,

View File

@ -29,6 +29,7 @@ class CancelOrder extends BaseEventProcess {
'orderId': orderId, 'orderId': orderId,
'nftToken': nftToken, 'nftToken': nftToken,
'tokenId': tokenId, 'tokenId': tokenId,
'net_id': this.getNetId()
}; };
await this.callGameApi await this.callGameApi

View File

@ -34,7 +34,8 @@ class PriceUpdate extends BaseEventProcess {
'nftToken': nftToken, 'nftToken': nftToken,
'tokenId': tokenId, 'tokenId': tokenId,
'priceOld': priceOld, 'priceOld': priceOld,
'price': price 'price': price,
'net_id': this.getNetId()
}; };
await this.callGameApi await this.callGameApi
(params, (params,

View File

@ -40,7 +40,8 @@ class SellOrder extends BaseEventProcess {
'amount': amount, 'amount': amount,
'orderId': orderId, 'orderId': orderId,
'currency': currency, 'currency': currency,
'price': price 'price': price,
'net_id': this.getNetId()
}; };
await this.callGameApi await this.callGameApi
(params, (params,