Gelato-automations/test/helpers/services/getMockGelato.js

9 lines
180 B
JavaScript

const hre = require("hardhat");
const {ethers} = hre;
async function getMockGelato() {
return await ethers.getContract("MockGelatoExecutor");
}
module.exports = getMockGelato;