UNPKG

@contractjs/aave-v3

Version:

A TypeScript utility library for Aave V3 contracts.

8 lines 400 B
import { Chain } from "viem"; import { supportedChains } from "../constants/supportedChains"; type ViemChainName = keyof typeof supportedChains; type ChainIdentifier = number | ViemChainName | Chain; export declare const normalizeChainToChainId: (chain: ChainIdentifier) => number; export declare const normalizeChain: (chain: ChainIdentifier) => Chain; export {}; //# sourceMappingURL=index.d.ts.map