From 7050f5c2eb067dc9b278b7414d47c4772c900d86 Mon Sep 17 00:00:00 2001 From: soham Date: Wed, 8 May 2024 11:32:26 +0530 Subject: [PATCH] Fix import line in the README example code --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a461b9..3d965b4 100644 --- a/README.md +++ b/README.md @@ -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; @@ -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); @@ -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);