diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46326fa42..b8dd1dc74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: run: make lint smart-contracts: - name: smart-contracts + name: Build Smart Contracts runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/contracts/src/tokens/ERC20.sol b/contracts/src/tokens/ERC20.sol index 88a80f1c7..0e20477fb 100644 --- a/contracts/src/tokens/ERC20.sol +++ b/contracts/src/tokens/ERC20.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.21; -import {ERC20 as OZ_ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol" ; +import {ERC20 as OZ_ERC20} from "@openzeppelin/token/ERC20/ERC20.sol" ; contract ERC20 is OZ_ERC20 { constructor() OZ_ERC20("MyToken", "MTK") { diff --git a/contracts/src/tokens/ERC721.sol b/contracts/src/tokens/ERC721.sol index 88e0d84f8..3b42f9f14 100644 --- a/contracts/src/tokens/ERC721.sol +++ b/contracts/src/tokens/ERC721.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.21; -import {ERC721 as OZ_ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; +import {ERC721 as OZ_ERC721} from "@openzeppelin/token/ERC721/ERC721.sol"; contract ERC721 is OZ_ERC721 { uint256 public currentTokenId = 0;