cipher-ethereum
Version:
An Ethereum library used by Cipher Browser, a mobile Ethereum client
14 lines (13 loc) • 394 B
TypeScript
/// <reference types="node" />
export declare class Address {
private _publicKey;
private _rawAddress?;
private _address?;
private constructor();
static from(publicKey: Buffer): Address;
static checksumAddress(address: string): string;
static isValid(address: string): boolean;
get publicKey(): Buffer;
get rawAddress(): Buffer;
get address(): string;
}