TempoAddress.parse
Parses a Tempo address string into a raw Ethereum address.
Imports
Named
import { TempoAddress } from 'ox/tempo'Examples
import { TempoAddress } from 'ox/tempo'
const result = TempoAddress.parse(
'tempox0x742d35cc6634c0532925a3b844bc9e7595f2bd28',
)
{ address: '0x742d35CC6634c0532925a3B844bc9e7595F2Bd28' }Definition
function parse(
tempoAddress: string,
): parse.ReturnTypeSource: src/tempo/TempoAddress.ts
Parameters
tempoAddress
- Type:
string
The Tempo address string to parse.
Return Type
The parsed raw address.
parse.ReturnType

