src/utils/types.ts 188 B raw
1
import type { Address } from "viem";
2
3
export type ResolveOptions = {
4
	input: string | Address | null;
5
	chain?: string;
6
	contenthash?: boolean;
7
	txt?: string;
8
	resolverAddress?: string;
9
};