2021-07-21 20:53:46 +00:00
|
|
|
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";
|
2021-08-21 11:20:16 +00:00
|
|
|
import liquityABI from "./abi/read/liquity.json";
|
2021-10-10 10:38:19 +00:00
|
|
|
import reflexerABI from './abi/read/reflexer.json';
|
|
|
|
import bprotocolABI from './abi/read/bprotocol.json';
|
|
|
|
|
2021-07-21 20:53:46 +00:00
|
|
|
const abis = {
|
|
|
|
makerProxyRegistry: makerProxyRegistryABI,
|
|
|
|
resolver: {
|
|
|
|
aave: aaveABI,
|
|
|
|
aave_v2: aaveV2ABI,
|
|
|
|
accounts: accountsABI,
|
|
|
|
balance: balanceABI,
|
|
|
|
compound: compoundABI,
|
|
|
|
maker: makerABI,
|
|
|
|
unipool: unipoolABI,
|
2021-08-21 11:20:16 +00:00
|
|
|
liquity: liquityABI,
|
2021-10-10 10:38:19 +00:00
|
|
|
reflexer: reflexerABI,
|
|
|
|
bprotocol: bprotocolABI,
|
2021-08-21 11:20:16 +00:00
|
|
|
}
|
2021-07-21 20:53:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default abis;
|