ethers.js/src/utils/address.d.ts
2018-06-17 16:47:28 -04:00

9 lines
333 B
TypeScript

import { BigNumber } from './bignumber';
import { Arrayish } from './bytes';
export declare function getAddress(address: string): string;
export declare function getIcapAddress(address: string): string;
export declare function getContractAddress(transaction: {
from: string;
nonce: Arrayish | BigNumber | number;
}): string;