UNPKG

@broxus/js-core

Version:

MobX-based JavaScript Core library

487 lines (486 loc) 19.3 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.VoteEscrowProposal = void 0; const js_utils_1 = require("@broxus/js-utils"); const mobx_1 = require("mobx"); const console_1 = require("../../console"); const core_1 = require("../../core"); const VoteEscrowProposalUtils_1 = require("../../models/vote-escrow-proposal/VoteEscrowProposalUtils"); const utils_1 = require("../../utils"); class VoteEscrowProposal extends core_1.SmartContractModel { _connection; options; _provider; static Utils = VoteEscrowProposalUtils_1.VoteEscrowProposalUtils; /** * @param {ProviderRpcClient} _connection * Standalone RPC client that doesn't require connection to the TVM wallet provider * @param {Address | string} address * VoteEscrowProposal root address * @param {Readonly<VoteEscrowProposalCtorParams>} [options] * VoteEscrowProposal Smart Contract Model options * @param {ProviderRpcClient} [_provider] * RPC provider that require connection to the TVM wallet */ constructor(_connection, address, options, _provider) { super(_connection, address); this._connection = _connection; this.options = options; this._provider = _provider; this.setData(() => ({ evmActions: [], tvmActions: [], })); (0, mobx_1.makeObservable)(this); } /** * @param {ProviderRpcClient} connection * Standalone RPC client that doesn't require connection to the TVM wallet provider * @param {Address | string} address * VoteEscrowProposal root address * @param {Readonly<VoteEscrowProposalCreateOptions>} [options] * VoteEscrowProposal Smart Contract Model options * @param {ProviderRpcClient} [provider] * RPC provider that require connection to the TVM wallet */ static async create(connection, address, options, provider) { const { sync = true, watch, watchCallback, ...restOptions } = { ...options }; const proposal = new VoteEscrowProposal(connection, address, restOptions, provider); if (sync) { await proposal.sync({ force: false }); } if (watch) { await proposal.watch(watchCallback); } return proposal; } async sync(options) { if (!options?.force && this.isSyncing) { return; } try { this.setState('isSyncing', !options?.silent); const state = await this.syncContractState({ force: options?.force || !this.contractState }); if (!this.isDeployed) { (0, js_utils_1.throwException)('VoteEscrowProposal is not deployed'); } const [actions, configs, overview] = await Promise.all([ VoteEscrowProposal.Utils.getActions(this._connection, this.address, state), VoteEscrowProposal.Utils.getConfig(this._connection, this.address, state), VoteEscrowProposal.Utils.getOverview(this._connection, this.address, state), ]); this.setData({ ...actions, ...configs, ...overview }); } catch (e) { if (process.env.NODE_ENV !== 'production') { const state = await this._connection.getProviderState(); (0, utils_1.syncErrorMessage)(this.constructor.name, this.address, e, state.networkId.toString()); } } finally { this.setState('isSyncing', false); } } async watch(callback) { try { this.contractSubscriber = new this._connection.Subscriber(); await this.contractSubscriber.states(this.address).delayed(stream => { if (process.env.NODE_ENV !== 'production') { (0, utils_1.subscribeDebugMessage)(this.constructor.name, this.address); } return stream.on((0, js_utils_1.debounce)(async (event) => { if (process.env.NODE_ENV !== 'production') { const state = await this._connection.getProviderState(); (0, utils_1.contractStateChangeDebugMessage)(this.constructor.name, this.address, event, state.networkId.toString()); } if ((0, utils_1.areAddressesEqual)(event.address, this.address)) { await this.sync({ force: !this.isSyncing, silent: true }); callback?.(...this.toJSON(true)); return; } await this.unwatch(); }, this.options?.watchDebounceDelay ?? 3000)); }); return this.contractSubscriber; } catch (e) { await this.unwatch(); throw e; } } async unwatch() { if (this.contractSubscriber === undefined) { return; } try { await this.contractSubscriber?.unsubscribe(); this.contractSubscriber = undefined; if (process.env.NODE_ENV !== 'production') { (0, utils_1.unsubscribeDebugMessage)(this.constructor.name, this.address); } } catch (e) { if (process.env.NODE_ENV !== 'production') { const state = await this._connection.getProviderState(); (0, utils_1.unsubscribeErrorMessage)(this.constructor.name, this.address, e, state.networkId.toString()); } } } async cancel(params, args) { if (!this._provider) { throw new utils_1.ProviderNotDefinedError(this.constructor.name); } const callId = params.callId ?? (0, utils_1.getRandomInt)(); const subscriber = new this._connection.Subscriber(); let transaction; try { const message = await VoteEscrowProposal.Utils.cancel(this._provider, this.address, args); await params.onSend?.(message, { callId }); transaction = await message.transaction; await params.onTransactionSent?.({ callId, transaction }); const stream = await subscriber .trace(transaction) .filterMap(async (tx) => { if (!(0, utils_1.areAddressesEqual)(tx.account, this.address)) { return undefined; } const events = await this.decodeTransactionEvents(tx); if (events.length === 0) { return undefined; } const event = events.find(e => e.event === 'Canceled'); if (!event) { return undefined; } if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c %cCanceled%c event was captured`, console_1.successLabelStyle, console_1.inheritTextStyle, console_1.successTextStyle, console_1.inheritTextStyle, event); } await params.onTransactionSuccess?.({ callId, input: undefined, transaction: tx, }); return event; }) .delayed(s => s.first()); await stream(); return transaction; } catch (e) { params.onTransactionFailure?.({ callId, error: e, transaction, }); throw e; } finally { if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c Unsubscribed from the proposal canceling stream`, console_1.warningLabelStyle, console_1.inheritTextStyle); } await subscriber?.unsubscribe(); } } async execute(params, args) { if (!this._provider) { throw new utils_1.ProviderNotDefinedError(this.constructor.name); } const callId = params.callId ?? (0, utils_1.getRandomInt)(); const subscriber = new this._connection.Subscriber(); let transaction; try { const message = await VoteEscrowProposal.Utils.execute(this._provider, this.address, args); await params.onSend?.(message, { callId }); transaction = await message.transaction; await params.onTransactionSent?.({ callId, transaction }); const stream = await subscriber .trace(transaction) .filterMap(async (tx) => { if (!(0, utils_1.areAddressesEqual)(tx.account, this.address)) { return undefined; } const events = await this.decodeTransactionEvents(tx); if (events.length === 0) { return undefined; } const event = events.find(e => e.event === 'Executed'); if (!event) { return undefined; } if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c %cExecuted%c event was captured`, console_1.successLabelStyle, console_1.inheritTextStyle, console_1.successTextStyle, console_1.inheritTextStyle, event); } await params.onTransactionSuccess?.({ callId, input: undefined, transaction: tx, }); return event; }) .delayed(s => s.first()); await stream(); return transaction; } catch (e) { params.onTransactionFailure?.({ callId, error: e, transaction, }); throw e; } finally { if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c Unsubscribed from the proposal executing stream`, console_1.warningLabelStyle, console_1.inheritTextStyle); } await subscriber?.unsubscribe(); } } async queue(params, args) { if (!this._provider) { throw new utils_1.ProviderNotDefinedError(this.constructor.name); } const callId = params.callId ?? (0, utils_1.getRandomInt)(); const subscriber = new this._connection.Subscriber(); let transaction; try { const message = await VoteEscrowProposal.Utils.queue(this._provider, this.address, args); await params.onSend?.(message, { callId }); transaction = await message.transaction; await params.onTransactionSent?.({ callId, transaction }); const stream = await subscriber .trace(transaction) .filterMap(async (tx) => { if (!(0, utils_1.areAddressesEqual)(tx.account, this.address)) { return undefined; } const events = await this.decodeTransactionEvents(tx); if (events.length === 0) { return undefined; } const event = events.find(e => e.event === 'Queued'); if (!event) { return undefined; } if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c %cQueued%c event was captured`, console_1.successLabelStyle, console_1.inheritTextStyle, console_1.successTextStyle, console_1.inheritTextStyle, event); } await params.onTransactionSuccess?.({ callId, input: { executionTime: Number(event.data.executionTime) }, transaction: tx, }); return event; }) .delayed(s => s.first()); await stream(); return transaction; } catch (e) { params.onTransactionFailure?.({ callId, error: e, transaction, }); throw e; } finally { if (process.env.NODE_ENV !== 'production') { (0, js_utils_1.debug)(`%c${this.constructor.name}%c Unsubscribed from the proposal queueing stream`, console_1.warningLabelStyle, console_1.inheritTextStyle); } await subscriber?.unsubscribe(); } } get evmActions() { return this._data.evmActions; } get tvmActions() { return this._data.tvmActions; } get gracePeriod() { return this._data.gracePeriod; } get quorumVotes() { return this._data.quorumVotes; } get threshold() { return this._data.threshold; } get timeLock() { return this._data.timeLock; } get votingDelay() { return this._data.votingDelay; } get votingPeriod() { return this._data.votingPeriod; } get againstVotes() { return this._data.againstVotes; } get description() { return this._data.description; } get endTime() { return this._data.endTime; } get executionTime() { return this._data.executionTime; } get forVotes() { return this._data.forVotes; } get proposer() { return this._data.proposer; } get startTime() { return this._data.startTime; } get state() { return this._data.state; } decodeTransaction(args) { return VoteEscrowProposal.Utils.decodeTransaction(this._connection, this.address, args); } decodeTransactionEvents(transaction) { return VoteEscrowProposal.Utils.decodeTransactionEvents(this._connection, this.address, transaction); } } exports.VoteEscrowProposal = VoteEscrowProposal; __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "sync", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Function]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "watch", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", []), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "unwatch", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object, Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "cancel", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object, Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "execute", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object, Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "queue", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "evmActions", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "tvmActions", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "gracePeriod", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "quorumVotes", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "threshold", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "timeLock", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "votingDelay", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "votingPeriod", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "againstVotes", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "description", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "endTime", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "executionTime", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "forVotes", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "proposer", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "startTime", null); __decorate([ mobx_1.computed, __metadata("design:type", Object), __metadata("design:paramtypes", []) ], VoteEscrowProposal.prototype, "state", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "decodeTransaction", null); __decorate([ mobx_1.action.bound, __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", Promise) ], VoteEscrowProposal.prototype, "decodeTransactionEvents", null);