Skip to content

Commit 3c005d5

Browse files
committed
fix compilation
1 parent 69d3242 commit 3c005d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/token/ERC6909/ERC6909.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pragma solidity ^0.8.20;
55

6-
import {IERC6909} from "../../interfaces/ERC6909.sol";
6+
import {IERC6909} from "../../interfaces/IERC6909.sol";
77
import {Context} from "../../utils/Context.sol";
88
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
99

contracts/token/ERC6909/extensions/ERC6909ContentURI.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pragma solidity ^0.8.20;
55

66
import {ERC6909} from "../ERC6909.sol";
7-
import {IERC6909ContentURI} from "../../../interfaces/draft-IERC6909.sol";
7+
import {IERC6909ContentURI} from "../../../interfaces/IERC6909.sol";
88

99
/**
1010
* @dev Implementation of the Content URI extension defined in ERC6909.

contracts/token/ERC6909/extensions/ERC6909Metadata.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pragma solidity ^0.8.20;
55

66
import {ERC6909} from "../ERC6909.sol";
7-
import {IERC6909Metadata} from "../../../interfaces/draft-IERC6909.sol";
7+
import {IERC6909Metadata} from "../../../interfaces/IERC6909.sol";
88

99
/**
1010
* @dev Implementation of the Metadata extension defined in ERC6909. Exposes the name, symbol, and decimals of each token id.

contracts/token/ERC6909/extensions/ERC6909TokenSupply.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pragma solidity ^0.8.20;
55

66
import {ERC6909} from "../ERC6909.sol";
7-
import {IERC6909TokenSupply} from "../../../interfaces/draft-IERC6909.sol";
7+
import {IERC6909TokenSupply} from "../../../interfaces/IERC6909.sol";
88

99
/**
1010
* @dev Implementation of the Token Supply extension defined in ERC6909.

0 commit comments

Comments
 (0)