Skip to content

Commit

Permalink
add devtools dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Goulding <[email protected]>
  • Loading branch information
ryandgoulding committed Oct 31, 2024
1 parent 4839793 commit 2a49073
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/onft721/contracts/mocks/MyONFT721Mock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ contract MyONFT721Mock is MyONFT721 {
address _delegate
) MyONFT721(_name, _symbol, _lzEndpoint, _delegate) {}

function mint(address _to, uint256 _amount) public {
_mint(_to, _amount);
function mint(address _to, uint256 _id) public {
_mint(_to, _id);
}
}
4 changes: 1 addition & 3 deletions examples/onft721/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1"
},
"dependencies": {
"@layerzerolabs/devtools": "0.3.24"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@layerzerolabs/devtools": "^0.3.28",
"@layerzerolabs/eslint-config-next": "~2.3.39",
"@layerzerolabs/lz-definitions": "^2.3.39",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.39",
Expand Down
7 changes: 3 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2a49073

Please sign in to comment.