Skip to content

Commit 948c8a7

Browse files
authored
feat: ArbNativeTokenManager events (#349)
* feat: ArbNativeTokenManager events * fix: address comments
1 parent 50bf813 commit 948c8a7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/precompiles/ArbNativeTokenManager.sol

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ pragma solidity >=0.4.21 <0.9.0;
1111
* Available in ArbOS version 41
1212
*/
1313
interface ArbNativeTokenManager {
14+
/**
15+
* @notice Emitted when some amount of the native gas token is minted to a NativeTokenOwner.
16+
*/
17+
event NativeTokenMinted(address indexed to, uint256 amount);
18+
19+
/**
20+
* @notice Emitted when some amount of the native gas token is burned from a NativeTokenOwner.
21+
*/
22+
event NativeTokenBurned(address indexed from, uint256 amount);
23+
1424
/**
1525
* @notice In case the caller is authorized,
1626
* mints some amount of the native gas token for this chain to the caller.

0 commit comments

Comments
 (0)