Socket
Book a DemoInstallSign in
Socket

@ape.swap/hardhat-test-helpers

Package Overview
Dependencies
Maintainers
8
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ape.swap/hardhat-test-helpers

Install this package to get access to deployable ApeSwap Mock Farm and DEX for testing with contracts developed with the Hardhat framework.

0.5.0
latest
Source
npmnpm
Version published
Weekly downloads
1
-92.31%
Maintainers
8
Weekly downloads
 
Created
Source

ApeSwap Hardhat Test Helper

lint & test Docs License

Install this package to get access to deployable ApeSwap Mock Farm and DEX for testing with contracts developed with the Hardhat framework.

Installation

yarn add -D @ape.swap/hardhat-test-helpers

Usage

Refer to the example code below on how to import and use these helpers.

Deploy a Mock DEX

import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'
import { dex, farm } from '@ape.swap/hardhat-test-helpers'

async function deployMockDexFixture() {
  const [owner, feeTo, alice] = await ethers.getSigners()

  const { dexFactory, dexRouter, mockWBNB, mockTokens, dexPairs } =
    await dex.deployMockDex(ethers, [owner, feeTo, alice], 5)

  return {
    accounts: { owner, feeTo, alice },
    dexFactory,
    dexRouter,
    mockWBNB,
    mockTokens,
    dexPairs,
  }
}

it("Should have the dexRouter configured properly", async function () {
  const { accounts, dexRouter, dexFactory } = await loadFixture(deployMockDexFixture);

  expect(await dexRouter.factory()).to.equal(dexFactory.address);
});

Deploy a Mock Farm

import { loadFixture } from '@nomicfoundation/hardhat-network-helpers'
import { dex, farm } from '@ape.swap/hardhat-test-helpers'

async function deployMockFarmFixture() {
  const [owner, feeTo, alice] = await ethers.getSigners()

  const { bananaToken, bananaSplitBar, masterApe } =
    await farm.deployMockFarm(ethers, [owner, feeTo], {})

  return {
    accounts: { owner, feeTo, alice },
    bananaToken,
    bananaSplitBar,
    masterApe,
  }
}

it('Should set the right owner of masterApe', async function () {
  const { accounts, masterApe } = await loadFixture(deployMockFarmFixture)
  expect(await masterApe.owner()).to.equal(accounts.owner.address)
})

FAQs

Package last updated on 02 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.