File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Here's what our GLD token might look like.
17
17
// SPDX-License-Identifier: MIT
18
18
pragma solidity ^0.8.19;
19
19
20
- import {ERC20} "@openzeppelin/contracts/token/ERC20/ERC20.sol";
20
+ import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
21
21
22
22
contract GLDToken is ERC20 {
23
23
constructor(uint256 initialSupply) ERC20("Gold", "GLD") {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Here's what a contract for tokenized items might look like:
16
16
// SPDX-License-Identifier: MIT
17
17
pragma solidity ^0.8.19;
18
18
19
- import {ERC721URIStorage} "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
19
+ import {ERC721URIStorage} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
20
20
21
21
contract GameItem is ERC721URIStorage {
22
22
uint256 private _nextTokenId;
You can’t perform that action at this time.
0 commit comments