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

9 lines
182 B
JavaScript
Raw Normal View History

const hre = require("hardhat");
2020-11-16 16:55:04 +00:00
const { ethers } = hre;
async function getMockGelato() {
return await ethers.getContract("MockGelatoExecutor");
}
module.exports = getMockGelato;