Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaryash90 committed Mar 25, 2024
2 parents ea526c3 + 494edf8 commit d364ddc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pragma solidity ^0.8.0;

import "../../../../../eip/interface/IERC20.sol";
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { Address } from "../../../../../lib/Address.sol";

/**
* @title SafeERC20
Expand Down
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thirdweb-dev/contracts",
"description": "Collection of smart contracts deployable via the thirdweb SDK, dashboard and CLI",
"version": "3.12.0",
"version": "3.13.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@thirdweb-dev/dynamic-contracts": "^1.2.4",
"@thirdweb-dev/merkletree": "^0.2.2",
"@typechain/ethers-v5": "^10.2.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/test/mocks/MockRoyaltyEngineV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.0;

import "contracts/extension/interface/IRoyaltyEngineV1.sol";
import { IERC2981 } from "contracts/eip/interface/IERC2981.sol";
import { ERC165, IERC165 } from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import { ERC165 } from "contracts/eip/ERC165.sol";

contract MockRoyaltyEngineV1 is ERC165, IRoyaltyEngineV1 {
address payable[] public mockRecipients;
Expand Down

0 comments on commit d364ddc

Please sign in to comment.