Skip to content

Commit

Permalink
fix: remove unnecessary data
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffprestes committed Dec 4, 2024
1 parent 57742b5 commit 5262fd6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 28 deletions.
21 changes: 21 additions & 0 deletions script/ParedesNFT.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {Script, console} from "forge-std/Script.sol";
import {ParedesNFT} from "../src/ParedesNFT.sol";

contract ParedesScript is Script {
ParedesNFT public paredes;

function setUp() public {}

function run() public {
vm.startBroadcast();

paredes = new ParedesNFT(msg.sender);
paredes.mint(msg.sender, 1, 1231444, "");
paredes.setURI(1, "https://example.com/1");

vm.stopBroadcast();
}
}
28 changes: 0 additions & 28 deletions static/nft/1.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,4 @@
"description": "Location: Alto Taquari/MT/BRA"
}
}
}

{
"name": "Caminho ao Pico do Jaraguá",
"description": "Caminho ao Pico do Jaraguá or Path to Jaraguá Hights is an oil in canvas paiting. It is one of first artwork made Ismenia Coaracy. The buyer will receive the physical item and also the rights of the digital version of it.",
"image": "https://novatrixtech.github.io/paredesnft/static/ismeniacoaracy_pico-do-jaragua.jpg",
"image_low": "https://novatrixtech.github.io/paredesnft/static/ismeniacoaracy_pico-do-jaragua_small.jpg",
"external_url": "https://pt.wikipedia.org/wiki/Ism%C3%AAnia_Coaracy",
"seller_fee_basis_points": 100,
"fee_recipient": "0x7dA2547202458D2540d64513D409A1c2bA57bA3A",
"attributes": [
{
"trait_type": "Medium",
"value": "Oil in Canvas"
},
{
"trait_type": "Year",
"value": "1957"
},
{
"trait_type": "Artist",
"value": "Ismenia Coaracy"
},
{
"trait_type": "Dimensions",
"value": "44 cm x 34 cm"
}
]
}

0 comments on commit 5262fd6

Please sign in to comment.