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