UNPKG

viem

Version:

TypeScript Interface for Ethereum

15 lines (11 loc) 474 B
import type { Address } from 'abitype' import type { ErrorType } from '../../errors/utils.js' import type { Account } from '../types.js' export type ParseAccountErrorType = ErrorType export function parseAccount<accountOrAddress extends Address | Account>( account: accountOrAddress, ): accountOrAddress extends Address ? Account : accountOrAddress { if (typeof account === 'string') return { address: account, type: 'json-rpc' } as any return account as any }