mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
24 lines
682 B
TypeScript
24 lines
682 B
TypeScript
import aaveABI from "./abi/read/aave.json";
|
|
import aaveV2ABI from "./abi/read/aaveV2.json";
|
|
import accountsABI from "./abi/read/accounts.json";
|
|
import balanceABI from "./abi/read/balance.json";
|
|
import compoundABI from "./abi/read/compound.json";
|
|
import makerABI from "./abi/read/maker.json";
|
|
import makerProxyRegistryABI from "./abi/makerProxyRegistry.json";
|
|
import unipoolABI from "./abi/read/unipool.json";
|
|
|
|
const abis = {
|
|
makerProxyRegistry: makerProxyRegistryABI,
|
|
resolver: {
|
|
aave: aaveABI,
|
|
aave_v2: aaveV2ABI,
|
|
accounts: accountsABI,
|
|
balance: balanceABI,
|
|
compound: compoundABI,
|
|
maker: makerABI,
|
|
unipool: unipoolABI,
|
|
},
|
|
};
|
|
|
|
export default abis;
|