mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
9 lines
180 B
JavaScript
9 lines
180 B
JavaScript
const hre = require("hardhat");
|
|
const {ethers} = hre;
|
|
|
|
async function getMockGelato() {
|
|
return await ethers.getContract("MockGelatoExecutor");
|
|
}
|
|
|
|
module.exports = getMockGelato;
|