UNPKG

maia-core-sdk

Version:

⚒️ An SDK for building applications on top of Maia DAO Ecosytem

11 lines (10 loc) 289 B
import { SupportedChainId } from '../constants'; export interface IProtocolAddresses { [contractName: string]: string; } export declare type chainIdMap = { [chainId: number]: number; }; export declare type ProtocolAddressesType<T> = { [K in SupportedChainId]?: T; };