UNPKG

chaingate

Version:

Multi-chain cryptocurrency SDK for TypeScript — unified API for Bitcoin, Ethereum, Litecoin, Dogecoin, Bitcoin Cash, Polygon, Arbitrum, and any EVM-compatible chain. Create wallets, query balances, send transactions, and manage tokens and NFTs across UTXO

8 lines (7 loc) 310 B
import { Wallet } from '../Wallet'; import type { WalletSerialized } from '../WalletSerialized'; /** Base class for read-only wallets. No private keys, no encryption. */ export declare abstract class ViewOnlyWallet extends Wallet { /** @inheritdoc */ abstract serialize(): Promise<WalletSerialized>; }