UNPKG

@pgchain/blockchain-libs

Version:
17 lines 493 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BlockchainEngine = void 0; const wallet_1 = require("./wallet"); class BlockchainEngine { constructor(config) { this.wallet = new wallet_1.WalletController(config.storage); } getWallets() { return this.wallet.getWallets(); } createWallet() { return this.wallet.createWallet(); } } exports.BlockchainEngine = BlockchainEngine; //# sourceMappingURL=engine.js.map