@pgchain/blockchain-libs
Version:
PGWallet Blockchain Libs
17 lines • 493 B
JavaScript
;
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