Skip to content

Commit

Permalink
Merge pull request #222 from RafaDSan/revision
Browse files Browse the repository at this point in the history
feat: Kakarot rpc and ipfs on mockerc721
  • Loading branch information
0xneves authored May 17, 2024
2 parents e1832ed + 1da56f7 commit 9f7128e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ SEPOLIA_RPC_URL=https://ethereum-sepolia.publicnode.com
MUMBAI_RPC_URL=https://polygon-mumbai-bor.publicnode.com
FUJI_RPC_URL=https://avalanche-fuji-c-chain.publicnode.com
BNB_TESTNET_RPC_URL=https://bsc-testnet.publicnode.com
KAKAROT_SEPOLIA_RPC_URL=https://sepolia-rpc.kakarot.org

# MAINNETS
ETH_RPC_URL="https://eth.llamarpc.com"
Expand Down
4 changes: 2 additions & 2 deletions contracts/mock/MockERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ contract MockERC721 is ERC721 {
function tokenURI(
uint256
) public view virtual override returns (string memory) {
return "ipfs://QmQJnHseE9VPw5qVxuEhxTiZ7avzgkCdFz69rg86UvTZdk/";
return "ipfs://QmWodCkovJk18U75g8Veg6rCnw7951vQvTjYfS7J3nMFma/";
}
}
}
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const config: HardhatUserConfig = {
* @dev Testnets
*/
kakarot: {
url: `${process.env.KAKAROT_RPC_URL}`,
url: `${process.env.KAKAROT_SEPOLIA_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
sepolia: {
Expand Down

0 comments on commit 9f7128e

Please sign in to comment.