Skip to content

Commit

Permalink
Merge pull request #173 from bosonprotocol/unit-tests-upgrade-6_erc11…
Browse files Browse the repository at this point in the history
…55721.ts

Bring 6_erc1155721.ts up to current standards
  • Loading branch information
bidyut-arianelabs authored Oct 18, 2021
2 parents 043d930 + b4edeeb commit cd15b87
Show file tree
Hide file tree
Showing 5 changed files with 1,413 additions and 217 deletions.
9 changes: 9 additions & 0 deletions contracts/mocks/MockERC1155Receiver.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
pragma solidity 0.7.6;

import "@openzeppelin/contracts/token/ERC1155/ERC1155Holder.sol";

// solhint-disable-next-line no-empty-blocks
contract MockERC1155Receiver is ERC1155Holder {

}
9 changes: 9 additions & 0 deletions contracts/mocks/MockERC721Receiver.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
pragma solidity 0.7.6;

import "@openzeppelin/contracts/token/ERC721/ERC721Holder.sol";

// solhint-disable-next-line no-empty-blocks
contract MockERC721Receiver is ERC721Holder {

}
Loading

0 comments on commit cd15b87

Please sign in to comment.