We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50bf813 commit 948c8a7Copy full SHA for 948c8a7
src/precompiles/ArbNativeTokenManager.sol
@@ -11,6 +11,16 @@ pragma solidity >=0.4.21 <0.9.0;
11
* Available in ArbOS version 41
12
*/
13
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
24
/**
25
* @notice In case the caller is authorized,
26
* mints some amount of the native gas token for this chain to the caller.
0 commit comments