1
This commit is contained in:
parent
128b7ac3cb
commit
8ecf7394d8
@ -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,
|
||||||
|
@ -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
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user