UNPKG

@etherna/sdk-js

Version:

Etherna SDKs for operations on the network

6 lines 454 B
import type { EnsAddress, EthAddress } from "../clients"; export declare const isEthAddress: (address: string) => address is `0x${string}`; export declare const isEnsAddress: (address: string) => address is `${string}.eth`; export declare const fetchAddressFromEns: (ensAddress: EnsAddress) => Promise<EthAddress | null>; export declare const fetchEnsFromAddress: (address: EthAddress) => Promise<EnsAddress | null>; //# sourceMappingURL=address.d.ts.map