mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
|
const ConnectGelatoABI = require("../../../pre-compiles/ConnectGelato.json")
|
||
|
.abi;
|
||
|
const ConnectAuthABI = require("../../../pre-compiles/ConnectAuth.json").abi;
|
||
|
|
||
|
function getABI() {
|
||
|
return {
|
||
|
ConnectGelatoABI: ConnectGelatoABI,
|
||
|
ConnectAuthABI: ConnectAuthABI,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = getABI;
|