@vitriollabs/huff-deployer
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Huff-Deployer

A Hardhat Plugin To Test Huff Contracts

Installation

npm install huff-deployer --save-dev

Requirements

You need to have the Huff compiler (Rust version) installed in your machine. To install the compiler go to: https://github.com/huff-language/huff-rs

Usage

Add the following to your hardhat.config.js file:

require("huff-deployer");

If you are using TypeScript, add the following to your hardhat.config.ts file:

import "huff-deployer";

Then on your test file, import huffDeployer and deploy your Huff contract:

import { expect } from "chai";
import { ethers } from "hardhat";

import { huffDeployer } from "hardhat";

describe("Owned", () => {
  it("should change the owner", async () => {
    const [owner, newOwner] = await ethers.getSigners();

    const owned = await huffDeployer.deploy("Owned", false,
    [owner.address]); // <--- Deploy the contract
    expect(await owned.owner()).to.equal(owner.address);

    await owned.setOwner(newOwner.address);
    expect(await owned.owner()).to.equal(newOwner.address);
  });
});

huffDeployer.deploy accepts 3 arguments:

  1. targetContract: The name of the Huff contract.
  2. generateSolidityInterface (optional): Optionally generates a Solidity interface.
  3. constructorArgs (optional): The constructor arguments.
  4. signer (optional): It will default to Hardhat's signer 0.

Check the examples folder for a more comprehensive view.

License

MIT

Package Sidebar

Install

npm i @vitriollabs/huff-deployer

Weekly Downloads

0

Version

1.1.2

License

MIT

Unpacked Size

30.4 kB

Total Files

22

Last publish

Collaborators

  • slvrfn