Skip to content

Commit

Permalink
fix: correct spotlight token url
Browse files Browse the repository at this point in the history
  • Loading branch information
q20274982 committed Jan 17, 2025
1 parent b8b6535 commit 381847a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ contract SpotlightTokenIPCollection is Ownable, ERC721, ISpotlightTokenIPCollect
bool private _isTransferEnabled = false;
bool private _isMintEnabled = false;
address private _tokenFactory;
string private _tokenURI = "https://ipfs.io/ipfs/bafkreibqge4t7rsppnarffvrzlfph5rk5ajvupa4oyk4v2h3ieqccty4ye";
string private _tokenURI = "ipfs://bafkreibqge4t7rsppnarffvrzlfph5rk5ajvupa4oyk4v2h3ieqccty4ye";

constructor(address tokenFactory_) Ownable(msg.sender) ERC721("Spotlight Meme IP", "Spotlight Meme IP") {
_tokenFactory = tokenFactory_;
Expand Down
3 changes: 1 addition & 2 deletions test/SpotlightTokenIPCollectionTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ contract SpotlightTokenIPCollectionTest is Test {
SpotlightTokenIPCollection private _tokenIpCollection;
address private _tokenIpCollectionAddr;

string private originalTokenURI =
"https://ipfs.io/ipfs/bafkreibqge4t7rsppnarffvrzlfph5rk5ajvupa4oyk4v2h3ieqccty4ye";
string private originalTokenURI = "ipfs://bafkreibqge4t7rsppnarffvrzlfph5rk5ajvupa4oyk4v2h3ieqccty4ye";
string private newTokenURI = "https://example.com/new-token/";

function setUp() public {
Expand Down

0 comments on commit 381847a

Please sign in to comment.