Skip to content

Commit

Permalink
♻️ Refactor From-Parent-Directory Imports (#194)
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio authored Jan 13, 2024
1 parent e4f19d1 commit f716a5c
Show file tree
Hide file tree
Showing 9 changed files with 131 additions and 131 deletions.
218 changes: 109 additions & 109 deletions .gas-snapshot

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/create-util
2 changes: 1 addition & 1 deletion lib/solady
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
"@openzeppelin/merkle-tree": "^1.0.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.9.2",
"ethers": "^6.10.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.11",
"prettier": "^3.1.1",
"prettier": "^3.2.1",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1"
}
Expand Down
26 changes: 13 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/extensions/ERC4626.vy
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ implements: ERC20Detailed
# @dev We import and implement the `IERC20Permit`
# interface, which is written using standard Vyper
# syntax.
from ..tokens.interfaces.IERC20Permit import IERC20Permit
from ..tokens.interfaces import IERC20Permit
implements: IERC20Permit


Expand All @@ -77,7 +77,7 @@ implements: ERC4626

# @dev We import and implement the `IERC5267` interface,
# which is written using standard Vyper syntax.
from ..utils.interfaces.IERC5267 import IERC5267
from ..utils.interfaces import IERC5267
implements: IERC5267


Expand Down
2 changes: 1 addition & 1 deletion src/tokens/ERC20.vy
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ implements: IERC20Permit

# @dev We import and implement the `IERC5267` interface,
# which is written using standard Vyper syntax.
from ..utils.interfaces.IERC5267 import IERC5267
from ..utils.interfaces import IERC5267
implements: IERC5267


Expand Down
2 changes: 1 addition & 1 deletion src/tokens/ERC721.vy
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ implements: IERC4906

# @dev We import and implement the `IERC5267` interface,
# which is written using standard Vyper syntax.
from ..utils.interfaces.IERC5267 import IERC5267
from ..utils.interfaces import IERC5267
implements: IERC5267


Expand Down

0 comments on commit f716a5c

Please sign in to comment.