web3x
Version:
Typescript port of web3.js
10 lines (9 loc) • 373 B
TypeScript
import { BigNumber } from './bignumber';
import { Arrayish } from './bytes';
import { Address } from '../address';
export declare function getAddress(address: string): Address;
export declare function getIcapAddress(address: string): string;
export declare function getContractAddress(transaction: {
from: string;
nonce: Arrayish | BigNumber | number;
}): Address;