UNPKG

@chorus-one/ethereum

Version:

All-in-one toolkit for building staking dApps on Ethereum network

9 lines (7 loc) 174 B
import { Hex } from 'viem' export const toHexString = (value: string): Hex => { if (value.startsWith('0x')) { return value as Hex } return ('0x' + value) as Hex }