@roochnetwork/rooch-sdk
Version:
14 lines (13 loc) • 527 B
TypeScript
import { Address } from './address.js';
import { BitcoinAddress, BitcoinNetowkType } from './bitcoin.js';
import { NoStrAddress } from './nostr.js';
import { RoochAddress } from './rooch.js';
import { Bytes } from '../types/index.js';
export declare class AddressView extends Address {
readonly bitcoinAddress: BitcoinAddress;
readonly noStrAddress: NoStrAddress;
readonly roochAddress: RoochAddress;
constructor(publicKey: Bytes, network?: BitcoinNetowkType);
toBytes(): Uint8Array;
toStr(): string;
}