@yubing744/rooch-sdk
Version:
31 lines (30 loc) • 887 B
TypeScript
import type { PublicKeyInitData } from '../../crypto/publickey';
import { PublicKey } from '../../crypto/publickey';
/**
* An Ed25519 public key
*/
export declare class Ed25519PublicKey extends PublicKey {
static SIZE: number;
private data;
/**
* Create a new Ed25519PublicKey object
* @param value ed25519 public key as buffer or base-64 encoded string
*/
constructor(value: PublicKeyInitData);
/**
* Checks if two Ed25519 public keys are equal
*/
equals(publicKey: Ed25519PublicKey): boolean;
/**
* Return the byte array representation of the Ed25519 public key
*/
toBytes(): Uint8Array;
/**
* Return the Rooch address associated with this Ed25519 public key
*/
toRoochAddress(): string;
/**
* Return the Rooch address associated with this Ed25519 public key
*/
flag(): number;
}