@cryptoalgebra/alm-sdk
Version:
Algebra ALM SDK
17 lines (16 loc) • 570 B
TypeScript
import { SupportedDex, SupportedChainId } from '../types';
export type AddressConfig = {
[key in SupportedDex]?: string;
};
export type SupportedDexConfig = {
depositGuardAddress: string;
vaultDeployerAddress: string;
};
export type Config = {
[key in SupportedDex]?: SupportedDexConfig;
};
export declare const VAULT_DEPOSIT_GUARD: Record<SupportedChainId, {
[key in SupportedDex]: string;
}>;
export declare const addressConfig: Record<SupportedChainId, Config>;
export declare const MULTICALL_ADDRESSES: Partial<Record<SupportedChainId, string>>;