@defichain/jellyfish-wallet-whale
Version:
A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance on Bitcoin
52 lines (51 loc) • 2.06 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.WhaleWalletAccountProvider = exports.WhaleWalletAccount = void 0;
const jellyfish_crypto_1 = require("@defichain/jellyfish-crypto");
/**
* jellyfish-api-whale implementation of WalletAccount.
* All stateless and stateful node service is provided by an ocean instance.
*/
class WhaleWalletAccount {
constructor(hdNode, network) {
this.hdNode = hdNode;
this.network = network;
}
/**
* @return {string} bech32 address
*/
getAddress() {
return __awaiter(this, void 0, void 0, function* () {
const pubKey = yield this.hdNode.publicKey();
return jellyfish_crypto_1.toBech32(pubKey, this.network.bech32.hrp);
});
}
isActive() {
return __awaiter(this, void 0, void 0, function* () {
throw new Error('to be implemented');
});
}
}
exports.WhaleWalletAccount = WhaleWalletAccount;
/**
* Provide WhaleWalletAccount with upstream to DeFi whale services.
*/
class WhaleWalletAccountProvider {
// TODO(fuxingloh): to implement after 'jellyfish-api-whale'
constructor(network) {
this.network = network;
}
provide(hdNode) {
return new WhaleWalletAccount(hdNode, this.network);
}
}
exports.WhaleWalletAccountProvider = WhaleWalletAccountProvider;