@polkadot/api
Version:
Promise and RxJS wrappers around the Polkadot JS RPC
81 lines (80 loc) • 2.75 kB
JavaScript
const recordIdentity = (record) => record;
function filterAndApply(events, section, methods, onFound) {
return events
.filter(({ event }) => section === event.section &&
methods.includes(event.method))
.map((record) => onFound(record));
}
function getDispatchError({ event: { data: [dispatchError] } }) {
return dispatchError;
}
function getDispatchInfo({ event: { data, method } }) {
return method === 'ExtrinsicSuccess'
? data[0]
: data[1];
}
function extractError(events = []) {
return filterAndApply(events, 'system', ['ExtrinsicFailed'], getDispatchError)[0];
}
function extractInfo(events = []) {
return filterAndApply(events, 'system', ['ExtrinsicFailed', 'ExtrinsicSuccess'], getDispatchInfo)[0];
}
export class SubmittableResult {
dispatchError;
dispatchInfo;
internalError;
events;
status;
txHash;
txIndex;
blockNumber;
constructor({ blockNumber, dispatchError, dispatchInfo, events, internalError, status, txHash, txIndex }) {
this.dispatchError = dispatchError || extractError(events);
this.dispatchInfo = dispatchInfo || extractInfo(events);
this.events = events || [];
this.internalError = internalError;
this.status = status;
this.txHash = txHash;
this.txIndex = txIndex;
this.blockNumber = blockNumber;
}
get isCompleted() {
return this.isError || this.status.isInBlock || this.status.isFinalized;
}
get isError() {
return this.status.isDropped || this.status.isFinalityTimeout || this.status.isInvalid || this.status.isUsurped;
}
get isFinalized() {
return this.status.isFinalized;
}
get isInBlock() {
return this.status.isInBlock;
}
get isWarning() {
return this.status.isRetracted;
}
/**
* @description Filters EventRecords for the specified method & section (there could be multiple)
*/
filterRecords(section, method) {
return filterAndApply(this.events, section, Array.isArray(method) ? method : [method], recordIdentity);
}
/**
* @description Finds an EventRecord for the specified method & section
*/
findRecord(section, method) {
return this.filterRecords(section, method)[0];
}
/**
* @description Creates a human representation of the output
*/
toHuman(isExtended) {
return {
dispatchError: this.dispatchError?.toHuman(),
dispatchInfo: this.dispatchInfo?.toHuman(),
events: this.events.map((e) => e.toHuman(isExtended)),
internalError: this.internalError?.message.toString(),
status: this.status.toHuman(isExtended)
};
}
}