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

develop-acp99 #30

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 10 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ server.log
# Forge documentation
docs/
coverage/

.env
broadcast/
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@
[submodule "lib/subnet-evm"]
path = lib/subnet-evm
url = https://github.com/ava-labs/subnet-evm
[submodule "lib/reward-streams"]
path = lib/reward-streams
url = https://github.com/euler-xyz/reward-streams
[submodule "lib/ethereum-vault-connector"]
path = lib/ethereum-vault-connector
url = https://github.com/euler-xyz/ethereum-vault-connector
[submodule "lib/openzeppelin-foundry-upgrades"]
path = lib/openzeppelin-foundry-upgrades
url = https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades
19 changes: 19 additions & 0 deletions contracts/mocks/ExampleERC721.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// SPDX-License-Identifier: Ecosystem
pragma solidity 0.8.25;

import {ERC721} from "@openzeppelin/contracts@5.0.2/token/ERC721/ERC721.sol";

contract ExampleERC721 is ERC721 {
constructor() ERC721("Example NFT", "ENFT") {
_mint(msg.sender, 1);
_mint(msg.sender, 2);
_mint(msg.sender, 3);
_mint(msg.sender, 4);
_mint(msg.sender, 5);
_mint(msg.sender, 6);
}

function mint(address to, uint256 tokenId) external {
_mint(to, tokenId);
}
}
Loading
Loading