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