import { Signer } from 'ethers';
import type { ExternalProvider } from '@ethersproject/providers';
export type PrivateKey = string;
export type AccountAddress = `0x${string}`;
export type SignerLike = Signer | ExternalProvider | PrivateKey;
