1
This commit is contained in:
parent
128b7ac3cb
commit
8ecf7394d8
@ -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,
|
||||
|
@ -29,6 +29,7 @@ class CancelOrder extends BaseEventProcess {
|
||||
'orderId': orderId,
|
||||
'nftToken': nftToken,
|
||||
'tokenId': tokenId,
|
||||
'net_id': this.getNetId()
|
||||
};
|
||||
|
||||
await this.callGameApi
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user