UNPKG

@molecularlabs/nucleus-frontend

Version:
12 lines (9 loc) 272 B
import { ChainId } from './vault-config.mjs'; import 'viem/chains'; import '../vaults/config.mjs'; import 'viem'; interface GetEthPriceProps { chainId: ChainId; } declare function getEthPrice({ chainId, }: GetEthPriceProps): Promise<bigint>; export { getEthPrice };