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,
'buyer': buyer,
'erc20': erc20,
'price': price
'price': price,
'net_id': this.getNetId()
};
await this.callGameApi
(params,

View File

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

View File

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

View File

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