interface PublicKeyInstance {
    base58: string;
    bytes: ArrayBufferLike;
    hex: Lowercase<string>;
    keccak256: ArrayBufferLike;
    get address(): AddressValueInstance;
    verify(
        msg: ArrayBufferLike,
        signature: ArrayBufferLike,
    ): boolean | Promise<boolean>;
}

Hierarchy

  • EllipticKeyInstance
    • PublicKeyInstance

Properties

Accessors

Methods

Properties

base58: string
bytes: ArrayBufferLike
hex: Lowercase<string>
keccak256: ArrayBufferLike

Accessors

Methods