Skip to content

Commit b7d6d84

Browse files
committed
formatting
1 parent c7fd7a3 commit b7d6d84

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

src/interfaces/IERC6909.sol

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ interface IERC6909 is IERC165 {
1313

1414
/// @dev Emitted when `amount` tokens of type `id` are moved from `sender` to `receiver` initiated by `caller`.
1515
event Transfer(
16-
address caller,
17-
address indexed sender,
18-
address indexed receiver,
19-
uint256 indexed id,
20-
uint256 amount
16+
address caller, address indexed sender, address indexed receiver, uint256 indexed id, uint256 amount
2117
);
2218

2319
///@dev Returns the amount of tokens of type `id` owned by `owner`.
@@ -47,7 +43,6 @@ interface IERC6909 is IERC165 {
4743
function transferFrom(address sender, address receiver, uint256 id, uint256 amount) external returns (bool);
4844
}
4945

50-
5146
/// @dev Optional extension of {IERC6909} that adds metadata functions.
5247
interface IERC6909Metadata is IERC6909 {
5348
/// @dev Returns the name of the token of type `id`.
@@ -73,4 +68,4 @@ interface IERC6909ContentURI is IERC6909 {
7368
interface IERC6909TokenSupply is IERC6909 {
7469
/// @dev Returns the total supply of the token of type `id`.
7570
function totalSupply(uint256 id) external view returns (uint256);
76-
}
71+
}

0 commit comments

Comments
 (0)