Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Dec 26, 2024
1 parent 292c92a commit 17a6847
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions contracts/nft/test/UniversalNFTCoreTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ contract UniversalNFTIntegrationTest is
)
);

// 2. Deploy the Uniswap router, specifying the factory and the "WETH-like" token (zetaToken)
// router = new UniswapV2Router02(
// address(factory),
// address(zetaToken) // WETH9-compatible token
Expand Down Expand Up @@ -109,14 +108,13 @@ contract UniversalNFTIntegrationTest is
address receiver = addr1;
address destination = address(zrc20);

// Mint an NFT for testing
UniversalNFT nftContract = new UniversalNFT();
nftContract.initialize(
address(this), // Initial owner
"TestNFT", // Name of the NFT
"TNFT", // Symbol of the NFT
payable(address(gateway)), // Gateway address (ensure it's non-zero and valid)
100000, // Gas limit
address(this),
"TestNFT",
"TNFT",
payable(address(gateway)),
100000,
0xF62849F9A0B5Bf2913b396098F7c7019b51A820a
);

Expand Down

0 comments on commit 17a6847

Please sign in to comment.