evm-blockchain-tools
Version:
This is a collection of resuseable tools to support development for EVM-powered blockchains
7 lines (6 loc) • 441 B
TypeScript
import { APP_NETWORK } from "../common/constants";
export declare function parseAddressByNetwork(address: string, network: APP_NETWORK): string;
export declare function areAddressesSame(address1: string, address2: string): boolean;
export declare function convertAddressToBytes32(address: string): string;
export declare function isValidEvmTxFormat(txId: string): boolean;
export declare function isValidTronTxFormat(txId: string): boolean;