UNPKG

@volare.finance/utils.js

Version:
12 lines (11 loc) 284 B
/** * @file index.ts * @author astra <astra@volare.finance> * @date 2022 */ import { Provider } from '../provider'; import { Address } from '../type'; export declare class ENS extends Provider { constructor(endpoint: string); getAddress(name: string): Promise<Address>; }