Skip to content
Open
Changes from all 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Here is an example deployment (where the contract is located in [`src/test/contr
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Number {
function setNumber(uint256) external;
Expand All @@ -62,7 +62,7 @@ For example, to deploy the contract [`src/test/contracts/Constructor.huff`](src/
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Constructor {
function getArgOne() external returns (address);
Expand Down Expand Up @@ -108,7 +108,7 @@ Let's use the huff contract [`src/test/contracts/NoConstructor.huff`](./src/test
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.7.0 <0.9.0;

import {HuffDeployer} from "foundry-huff/HuffDeployer";
import {HuffDeployer} from "foundry-huff/HuffDeployer.sol";

interface Constructor {
function getArgOne() external returns (address);
Expand Down