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
14 lines (13 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Connector = void 0;
/** Base class for network connectors. */
class Connector {
/** @internal */
constructor(wallet, explorer, network) {
this.wallet = wallet;
this.explorer = explorer;
this.network = network;
}
}
exports.Connector = Connector;