Gelato-automations/test/helpers/services/getMockGelato.js
2020-11-16 17:58:36 +01:00

9 lines
182 B
JavaScript

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