Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collectibles -> Nfts #237

Merged
merged 1 commit into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions contracts/TestDappCollectibles.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import 'base64-sol/base64.sol';

contract TestDappCollectibles is ERC721 {
contract TestDappNFTs is ERC721 {

using Counters for Counters.Counter;
Counters.Counter private _tokenIds;

constructor() ERC721('TestDappCollectibles', 'TDC') {}
constructor() ERC721('TestDappNFTs', 'TDN') {}

function mintCollectibles(uint numberOfTokens) public {
function mintNFTs(uint numberOfTokens) public {
for(uint i = 1; i <= numberOfTokens; i++) {
_tokenIds.increment();
uint tokenId = _tokenIds.current();
Expand Down Expand Up @@ -41,9 +41,9 @@ contract TestDappCollectibles is ERC721 {

string memory json = string(
abi.encodePacked(
'{"name": "Test Dapp Collectibles #',
'{"name": "Test Dapp NFTs #',
Strings.toString(tokenId),
'", "description": "Test Dapp Collectibles for testing.", "image": "data:image/svg+xml;base64,',
'", "description": "Test Dapp NFTs for testing.", "image": "data:image/svg+xml;base64,',
Base64.encode(bytes(svg)),
'", "attributes": [{"trait_type": "Token Id", "value": "',
Strings.toString(tokenId),
Expand Down
Loading