Skip to content

Commit

Permalink
feat: update lib
Browse files Browse the repository at this point in the history
  • Loading branch information
fxp3 committed Apr 23, 2024
1 parent 2296754 commit 22f5446
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"editor.formatOnSave": true,
"solidity.linter.type": "solhint",
"solidity.test.executeOnSave": false,
"solidity.test.executeOnSave": true,
"solidity.compiler.version.remote": "v0.8.25+commit.b61c2a91",
"solidity.compiler.outDir": "build/vsc",
"solidity.compiler.location": "Extension",
Expand Down
2 changes: 1 addition & 1 deletion lib/kresko-foundry-helpers
2 changes: 2 additions & 0 deletions src/contracts/core/common/interfaces/IERC1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ interface IERC1155 {
function mint(address _to, uint256 _tokenId, uint256 _amount, bytes memory) external;

function mint(address _to, uint256 _tokenId, uint256 _amount) external;

function burn(address _to, uint256 _tokenId, uint256 _amount) external;
}

0 comments on commit 22f5446

Please sign in to comment.