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
15 lines (14 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Keystore = void 0;
/**
* Abstract base class for keystore decryption.
*
* A keystore is a JSON-encrypted container for a secret (typically a private
* key or mnemonic phrase). Two formats are supported:
* - **V1 (Legacy)**
* - **V3 (Web3)**
*/
class Keystore {
}
exports.Keystore = Keystore;