File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ pragma solidity >=0.4.21 <0.9.0;
1212 */
1313interface ArbNativeTokenManager {
1414 /**
15- * @notice Emitted when some amount of the native gas token is minted by a NativeTokenOwner.
15+ * @notice Emitted when some amount of the native gas token is minted to a NativeTokenOwner.
1616 */
17- event NativeTokenMinted (address indexed minter , address indexed to , uint256 amount );
17+ event NativeTokenMinted (address indexed to , uint256 amount );
1818
1919 /**
20- * @notice Emitted when some amount of the native gas token is burned by a NativeTokenOwner.
20+ * @notice Emitted when some amount of the native gas token is burned from a NativeTokenOwner.
2121 */
22- event NativeTokenBurned (address indexed burner , address indexed to , uint256 amount );
22+ event NativeTokenBurned (address indexed from , uint256 amount );
2323
2424 /**
2525 * @notice In case the caller is authorized,
You can’t perform that action at this time.
0 commit comments