UNPKG

@openocean.finance/widget-sdk

Version:

OpenOcean Any-to-Any Cross-Chain-Swap SDK

21 lines (18 loc) 518 B
import { AddressZero, AlternativeAddressZero } from '../constants.js' export const isZeroAddress = (address: string): boolean => { if (address === AddressZero || address === AlternativeAddressZero) { return true } return false } export const isNativeTokenAddress = (address: string): boolean => { if ( address === AddressZero || address === AlternativeAddressZero || // CELO native token address === '0x471ece3750da237f93b8e339c536989b8978a438' ) { return true } return false }