File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: GPL-2.0-or-later
22pragma solidity 0.8.26 ;
33
4- import {SafeERC20, IERC20 } from "../../lib/ openzeppelin-contracts/ contracts/token/ERC20/utils/SafeERC20.sol " ;
4+ import {SafeERC20, IERC20 } from "openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol " ;
55
66contract ERC20Helper {
77 using SafeERC20 for IERC20 ;
Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: MIT
22pragma solidity >= 0.8.21 ;
33
4- import {ERC20 } from "../../lib/ openzeppelin-contracts/ contracts/token/ERC20/ERC20.sol " ;
4+ import {ERC20 } from "openzeppelin-contracts/token/ERC20/ERC20.sol " ;
55
66contract Token0 is ERC20 {
77 constructor () ERC20 ("Token0 " , "TOK0 " ) {}
Original file line number Diff line number Diff line change 77 ERC20 ,
88 ERC4626 ,
99 Math
10- } from "../../lib/ openzeppelin-contracts/ contracts/token/ERC20/extensions/ERC4626.sol " ;
10+ } from "openzeppelin-contracts/token/ERC20/extensions/ERC4626.sol " ;
1111
1212contract VaultMock0 is ERC4626 {
1313 constructor (IERC20 asset ) ERC4626 (asset) ERC20 ("VaultMock0 " , "V0 " ) {}
Original file line number Diff line number Diff line change 77 ERC20 ,
88 ERC4626 ,
99 Math
10- } from "../../lib/ openzeppelin-contracts/ contracts/token/ERC20/extensions/ERC4626.sol " ;
10+ } from "openzeppelin-contracts/token/ERC20/extensions/ERC4626.sol " ;
1111
1212contract VaultMock1 is ERC4626 {
1313 constructor (IERC20 asset ) ERC4626 (asset) ERC20 ("VaultMock1 " , "V1 " ) {}
You can’t perform that action at this time.
0 commit comments