Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoherrerai committed Mar 9, 2023
1 parent 914523a commit 60447d4
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "huff-deployer",
"version": "1.0.1",
"version": "1.0.4",
"description": "Hardhat Plugin To Test Huff Contracts",
"repository": "github:rodrigoherrerai/huff-deployer",
"author": "Rodrigo Herrera I.",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions test/project.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ describe("HuffDeployer", function () {
describe("Owned", function () {
it("should correctly deploy", async function () {
const [owner] = await this.hre.ethers.getSigners();
const owned = await this.hre.huffDeployer.deploy("Owned", [
const owned = await this.hre.huffDeployer.deploy("Owned", false, [
owner.address,
]);
assert(owned.address);
});

it("should set a new owner", async function () {
const [owner] = await this.hre.ethers.getSigners();
const owned = await this.hre.huffDeployer.deploy("Owned", [
const owned = await this.hre.huffDeployer.deploy("Owned", false, [
owner.address,
]);

Expand Down

0 comments on commit 60447d4

Please sign in to comment.