Skip to content

Commit 55eecb4

Browse files
[Protocol3.6] Add tokenId in DepositRequested event (#1636)
1 parent ed00cb8 commit 55eecb4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/loopring_v3/contracts/core/iface/IExchangeV3.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ abstract contract IExchangeV3 is IExchange
4949
event DepositRequested(
5050
address owner,
5151
address token,
52+
uint16 tokenId,
5253
uint96 amount
5354
);
5455

packages/loopring_v3/contracts/core/impl/libexchange/ExchangeDeposits.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ library ExchangeDeposits
2424
event DepositRequested(
2525
address owner,
2626
address token,
27+
uint16 tokenId,
2728
uint96 amount
2829
);
2930

@@ -62,6 +63,7 @@ library ExchangeDeposits
6263
emit DepositRequested(
6364
to,
6465
tokenAddress,
66+
tokenID,
6567
uint96(amountDeposited)
6668
);
6769
}

0 commit comments

Comments
 (0)