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
9 lines (8 loc) • 312 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ViewOnlyWallet = void 0;
const Wallet_1 = require("../Wallet");
/** Base class for read-only wallets. No private keys, no encryption. */
class ViewOnlyWallet extends Wallet_1.Wallet {
}
exports.ViewOnlyWallet = ViewOnlyWallet;