Newer
Older
import { ApiDecoration } from '@polkadot/api/types';
import { extractAuthor } from '@polkadot/api-derive/type/util';
import { Compact, GenericCall, Struct, u128, Vec } from '@polkadot/types';
import { AnyJson, Codec, Registry } from '@polkadot/types/types';
import { AbstractInt } from '@polkadot/types-codec';
import { u8aToHex } from '@polkadot/util';
import { blake2AsU8a } from '@polkadot/util-crypto';
import { CalcFee } from '@substrate/calc';
Tarik Gul
committed
import { BadRequest, InternalServerError } from 'http-errors';
Tarik Gul
committed
import {
IPerClass,
isExtBaseWeightValue,
isPerClassValue,
Tarik Gul
committed
WeightValue,
} from '../../types/chains-config';
ICalcFee,
IExtrinsicIndex,
isFrameMethod,
Tarik Gul
committed
import { IOption } from '../../types/util';
import { isPaysFee } from '../../types/util';
import { AbstractService } from '../AbstractService';
/**
* Types for fetchBlock's options
* @field eventDocs
* @field extrinsicDocs
* @field checkFinalized Option to reduce rpc calls. Equals true when blockId is a hash.
* @field queryFinalizedHead Option to reduce rpc calls. Equals true when finalized head has not been queried.
* @field omitFinalizedTag Option to omit the finalized tag, and return it as undefined.
*/
interface FetchBlockOptions {
eventDocs: boolean;
extrinsicDocs: boolean;
checkFinalized: boolean;
queryFinalizedHead: boolean;
omitFinalizedTag: boolean;
}
/**
* Event methods that we check for.
*/
enum Event {
success = 'ExtrinsicSuccess',
failure = 'ExtrinsicFailed',
}
export class BlocksService extends AbstractService {
Tarik Gul
committed
constructor(
api: ApiPromise,
private minCalcFeeRuntime: IOption<number>,
Tarik Gul
committed
) {
super(api);
}
* Fetch a block augmented with derived values.
*
* @param hash `BlockHash` of the block to fetch.
Tarik Gul
committed
* @param FetchBlockOptions options for additonal information.
async fetchBlock(
hash: BlockHash,
historicApi: ApiDecoration<'promise'>,
{
eventDocs,
extrinsicDocs,
checkFinalized,
queryFinalizedHead,
omitFinalizedTag,
}: FetchBlockOptions
): Promise<IBlock> {
// Before making any api calls check the cache if the queried block exists
const isBlockCached = this.blockStore.get(hash.toString());
if (isBlockCached) {
return isBlockCached;
}
const [{ block }, validators, events, finalizedHead] = await Promise.all([
api.rpc.chain.getBlock(hash),
this.fetchValidators(historicApi),
this.fetchEvents(historicApi),
Zeke Mostov
committed
queryFinalizedHead
? api.rpc.chain.getFinalizedHead()
: Promise.resolve(hash),
]);
if (block === undefined) {
Zeke Mostov
committed
throw new InternalServerError('Error querying for block');
const { parentHash, number, stateRoot, extrinsicsRoot, digest } =
block.header;
const authorId = extractAuthor(digest, validators);
Zeke Mostov
committed
const logs = digest.logs.map(({ type, index, value }) => {
const nonSanitizedExtrinsics = this.extractExtrinsics(
block,
events,
extrinsicDocs
);
const { extrinsics, onInitialize, onFinalize } = this.sanitizeEvents(
events,
nonSanitizedExtrinsics,
hash,
eventDocs
let finalized = undefined;
if (!omitFinalizedTag) {
// Check if the requested block is finalized
finalized = await this.isFinalizedBlock(
api,
number,
hash,
finalizedHead,
checkFinalized
);
}
// The genesis block is a special case with little information associated with it.
if (parentHash.every((byte) => !byte)) {
return {
number,
hash,
parentHash,
stateRoot,
extrinsicsRoot,
authorId,
logs,
onInitialize,
extrinsics,
onFinalize,
let calcFee, specName, specVersion, weights;
Tarik Gul
committed
if (this.minCalcFeeRuntime === null) {
// Don't bother with trying to create calcFee for a runtime where fee calcs are not supported
specVersion = -1;
specName = 'ERROR';
calcFee = undefined;
} else {
// This runtime supports fee calc
const createCalcFee = await this.createCalcFee(
api,
historicApi,
parentHash,
block
);
Tarik Gul
committed
calcFee = createCalcFee.calcFee;
specName = createCalcFee.specName;
specVersion = createCalcFee.specVersion;
Tarik Gul
committed
}
for (let idx = 0; idx < block.extrinsics.length; ++idx) {
if (!extrinsics[idx].paysFee || !block.extrinsics[idx].isSigned) {
continue;
}
Tarik Gul
committed
if (this.minCalcFeeRuntime === null) {
extrinsics[idx].info = {
error: `Fee calculation not supported for this network`,
};
continue;
}
if (calcFee === null || calcFee === undefined) {
extrinsics[idx].info = {
Tarik Gul
committed
error: `Fee calculation not supported for ${specVersion}#${specName}`,
Tarik Gul
committed
const xtEvents = extrinsics[idx].events;
const completedEvent = xtEvents.find(
({ method }) =>
isFrameMethod(method) &&
(method.method === Event.success || method.method === Event.failure)
);
Tarik Gul
committed
if (!completedEvent) {
extrinsics[idx].info = {
error: 'Unable to find success or failure event for extrinsic',
};
Tarik Gul
committed
continue;
}
Tarik Gul
committed
const completedData = completedEvent.data;
if (!completedData) {
extrinsics[idx].info = {
error:
'Success or failure event for extrinsic does not contain expected data',
};
Tarik Gul
committed
continue;
}
Tarik Gul
committed
// both ExtrinsicSuccess and ExtrinsicFailed events have DispatchInfo
// types as their final arg
const weightInfo = completedData[
completedData.length - 1
] as DispatchInfo;
if (!weightInfo.weight) {
extrinsics[idx].info = {
error:
'Success or failure event for extrinsic does not specify weight',
};
Tarik Gul
committed
continue;
}
Tarik Gul
committed
// The Dispatch class used to key into `blockWeights.perClass`
// We set default to be normal.
let weightInfoClass: keyof IPerClass = 'normal';
if (weightInfo.class.isMandatory) {
weightInfoClass = 'mandatory';
} else if (weightInfo.class.isOperational) {
weightInfoClass = 'operational';
}
Tarik Gul
committed
/**
* `extrinsicBaseWeight` changed from using system.extrinsicBaseWeight => system.blockWeights.perClass[weightInfoClass].baseExtrinsic
* in polkadot v0.8.27 due to this pr: https://github.com/paritytech/substrate/pull/6629 .
* https://github.com/paritytech/substrate-api-sidecar/issues/393 .
* https://github.com/polkadot-js/api/issues/2365
*/
// This makes the compiler happy for below type guards
Tarik Gul
committed
let extrinsicBaseWeight;
if (isExtBaseWeightValue(weights)) {
extrinsicBaseWeight = weights.extrinsicBaseWeight;
} else if (isPerClassValue(weights)) {
extrinsicBaseWeight = weights.perClass[weightInfoClass]?.baseExtrinsic;
Tarik Gul
committed
}
Tarik Gul
committed
if (!extrinsicBaseWeight) {
throw new InternalServerError('Could not find extrinsicBaseWeight');
Tarik Gul
committed
const len = block.extrinsics[idx].encodedLength;
const weight = weightInfo.weight;
const partialFee = calcFee.calc_fee(
BigInt(weight.toString()),
len,
extrinsicBaseWeight
);
extrinsics[idx].info = api.createType('RuntimeDispatchInfo', {
weight,
class: weightInfo.class,
partialFee: partialFee,
});
number,
hash,
parentHash,
stateRoot,
extrinsicsRoot,
authorId,
logs,
onInitialize,
extrinsics,
onFinalize,
// Store the block in the cache
this.blockStore.set(hash.toString(), response);
return response;
/**
* Return the header of a block
*
* @param hash When no hash is inputted the header of the chain will be queried.
*/
async fetchBlockHeader(hash?: BlockHash): Promise<Header> {
const { api } = this;
const header = hash
? await api.rpc.chain.getHeader(hash)
: await api.rpc.chain.getHeader();
return header;
}
/**
*
* @param block Takes in a block which is the result of `BlocksService.fetchBlock`
* @param extrinsicIndex Parameter passed into the request
*/
fetchExtrinsicByIndex(
block: IBlock,
extrinsicIndex: number
): IExtrinsicIndex {
if (extrinsicIndex > block.extrinsics.length - 1) {
throw new BadRequest('Requested `extrinsicIndex` does not exist');
}
const { hash, number } = block;
const height = number.unwrap().toString(10);
return {
at: {
height,
hash,
},
extrinsics: block.extrinsics[extrinsicIndex],
};
}
/**
* Extract extrinsics from a block.
*
* @param block Block
* @param events events fetched by `fetchEvents`
* @param regsitry The corresponding blocks runtime registry
* @param extrinsicDocs To include the extrinsic docs or not
private extractExtrinsics(
block: Block,
Zeke Mostov
committed
events: Vec<EventRecord> | string,
extrinsicDocs: boolean
): IExtrinsic[] {
const defaultSuccess = typeof events === 'string' ? events : false;
return block.extrinsics.map((extrinsic) => {
const { method, nonce, signature, signer, isSigned, tip, era } =
extrinsic;
const hash = u8aToHex(blake2AsU8a(extrinsic.toU8a(), 256));
Zeke Mostov
committed
const call = registry.createType('Call', method);
pallet: method.section,
method: method.method,
},
signature: isSigned ? { signature, signer } : null,
nonce: isSigned ? nonce : null,
Zeke Mostov
committed
args: this.parseGenericCall(call, registry).args,
tip: isSigned ? tip : null,
events: [] as ISanitizedEvent[],
success: defaultSuccess,
// paysFee overrides to bool if `system.ExtrinsicSuccess|ExtrinsicFailed` event is present
// we set to false if !isSigned because unsigned never pays a fee
paysFee: isSigned ? null : false,
docs: extrinsicDocs
? this.sanitizeDocs(extrinsic.meta.docs)
};
});
}
/**
* Sanitize events and attribute them to an extrinsic, onInitialize, or
* onFinalize.
*
* @param events events from `fetchEvents`
* @param extrinsics extrinsics from
* @param hash hash of the block the events are from
*/
private sanitizeEvents(
events: EventRecord[] | string,
extrinsics: IExtrinsic[],
hash: BlockHash,
eventDocs: boolean
) {
const onInitialize = { events: [] as ISanitizedEvent[] };
const onFinalize = { events: [] as ISanitizedEvent[] };
if (Array.isArray(events)) {
for (const record of events) {
const { event, phase } = record;
method: {
pallet: event.section,
},
docs: eventDocs ? this.sanitizeDocs(event.data.meta.docs) : undefined,
};
if (phase.isApplyExtrinsic) {
const extrinsicIdx = phase.asApplyExtrinsic.toNumber();
const extrinsic = extrinsics[extrinsicIdx];
if (!extrinsic) {
throw new Error(
`Missing extrinsic ${extrinsicIdx} in block ${hash.toString()}`
);
}
if (event.method === Event.success) {
if (
event.method === Event.success ||
event.method === Event.failure
) {
const sanitizedData = event.data.toJSON() as AnyJson[];
for (const data of sanitizedData) {
if (extrinsic.signature && isPaysFee(data)) {
data.paysFee === true || data.paysFee === 'Yes';
break;
}
}
}
extrinsic.events.push(sanitizedEvent);
} else if (phase.isFinalization) {
onFinalize.events.push(sanitizedEvent);
} else if (phase.isInitialization) {
onInitialize.events.push(sanitizedEvent);
}
}
}
return {
extrinsics,
onInitialize,
onFinalize,
};
}
/**
* Create calcFee from params or return `null` if calcFee cannot be created.
* @param historicApi ApiDecoration to use for runtime specific querying
* @param parentHash Hash of the parent block
* @param block Block which the extrinsic is from
*/
private async createCalcFee(
api: ApiPromise,
historicApi: ApiDecoration<'promise'>,
): Promise<ICalcFee> {
Tarik Gul
committed
const parentParentHash: Hash = await this.getParentParentHash(
api,
parentHash,
block
);
const version = await api.rpc.state.getRuntimeVersion(parentParentHash);
Tarik Gul
committed
const specName = version.specName.toString();
const specVersion = version.specVersion.toNumber();
if (this.minCalcFeeRuntime && specVersion < this.minCalcFeeRuntime) {
return {
specVersion,
specName,
};
}
/**
* This will remain using the original api.query.*.*.at to retrieve the multiplier
* of the `parentHash` block.
*/
const multiplier =
await api.query.transactionPayment?.nextFeeMultiplier?.at(parentHash);
const perByte = this.getPerByte(historicApi);
historicApi.consts.system.extrinsicBaseWeight ||
historicApi.consts.system.blockWeights.perClass.normal.baseExtrinsic;
const { weightToFee } = historicApi.consts.transactionPayment;
if (!perByte || !extrinsicBaseWeightExists || !multiplier || !weightToFee) {
Tarik Gul
committed
// This particular runtime version is not supported with fee calcs or
// does not have the necessay materials to build calcFee
return {
specVersion,
Tarik Gul
committed
};
}
Zeke Mostov
committed
const coefficients = weightToFee.map((c) => {
return {
// Anything that could overflow Number.MAX_SAFE_INTEGER needs to be serialized
// to BigInt or string.
coeffInteger: c.coeffInteger.toString(10),
coeffFrac: c.coeffFrac.toNumber(),
degree: c.degree.toNumber(),
negative: c.negative,
};
});
const weights = this.getWeight(historicApi);
Tarik Gul
committed
const calcFee = CalcFee.from_params(
coefficients,
multiplier.toString(10),
perByte.toString(10),
specName,
specVersion
);
return {
calcFee,
Tarik Gul
committed
/**
* Retrieve the PerByte integer used to calculate fees.
* TransactionByteFee has been replaced with LengthToFee via runtime 9190.
* https://github.com/paritytech/polkadot/pull/5028
*
* @param historicApi ApiDecoration to use for runtime specific querying
*/
private getPerByte(
historicApi: ApiDecoration<'promise'>
): Balance | u128 | null {
const { transactionPayment } = historicApi.consts;
if (transactionPayment?.transactionByteFee) {
return transactionPayment?.transactionByteFee as Balance;
}
if (transactionPayment?.lengthToFee) {
return transactionPayment?.lengthToFee.toArray()[0].coeffInteger;
}
return null;
}
/**
* Get a formatted weight constant for the runtime corresponding to the given block hash.
Tarik Gul
committed
*
* @param api ApiPromise
* @param blockHash Hash of a block in the runtime to get the extrinsic base weight(s) for
*/
private getWeight(historicApi: ApiDecoration<'promise'>): WeightValue {
Tarik Gul
committed
const {
consts: { system },
} = historicApi;
Tarik Gul
committed
let weightValue;
if (system.blockWeights?.perClass) {
const { normal, operational, mandatory } = system.blockWeights?.perClass;
Tarik Gul
committed
const perClass = {
normal: {
baseExtrinsic: normal.baseExtrinsic.toBigInt(),
},
operational: {
baseExtrinsic: operational.baseExtrinsic.toBigInt(),
},
mandatory: {
baseExtrinsic: mandatory.baseExtrinsic.toBigInt(),
},
};
weightValue = { perClass };
} else if (system.extrinsicBaseWeight) {
weightValue = {
extrinsicBaseWeight: (
system.extrinsicBaseWeight as unknown as AbstractInt
).toBigInt(),
Tarik Gul
committed
};
} else {
throw new InternalServerError(
'Could not find a extrinsic base weight in metadata'
);
}
return weightValue;
}
/**
* The block where the runtime is deployed falsely proclaims it would
* be already using the new runtime. This workaround therefore uses the
* parent of the parent in order to determine the correct runtime under which
* this block was produced.
*
* @param api ApiPromise to use for rpc call
* @param parentHash Used to identify the runtime in a block
* @param block Used to make sure we dont
*/
private async getParentParentHash(
api: ApiPromise,
parentHash: Hash,
block: Block
): Promise<Hash> {
let parentParentHash: Hash;
if (block.header.number.toNumber() > 1) {
parentParentHash = (await api.rpc.chain.getHeader(parentHash)).parentHash;
} else {
parentParentHash = parentHash;
}
return parentParentHash;
}
/**
* Fetch events for the specified block.
*
* @param historicApi ApiDecoration to use for the query
historicApi: ApiDecoration<'promise'>
Zeke Mostov
committed
): Promise<Vec<EventRecord> | string> {
return await historicApi.query.system.events();
} catch {
return 'Unable to fetch Events, cannot confirm extrinsic status. Check pruning settings on the node.';
}
}
/**
* Checks to see if the current chain has the session module, then retrieve all
* validators.
*
* @param historicApi ApiDecoration to use for the query
*/
private async fetchValidators(
historicApi: ApiDecoration<'promise'>
): Promise<Vec<AccountId32>> {
return historicApi.query.session
? await historicApi.query.session.validators()
: ([] as unknown as Vec<AccountId32>);
}
/**
* Helper function for `parseGenericCall`.
*
* @param argsArray array of `Codec` values
* @param registry type registry of the block the call belongs to
argsArray: Codec[],
registry: Registry
): (Codec | ISanitizedCall)[] {
return argsArray.map((argument) => {
if (argument instanceof GenericCall) {
return this.parseGenericCall(argument, registry);
}
return argument;
});
}
/**
* Recursively parse a `GenericCall` in order to label its arguments with
* their param names and give a human friendly method name (opposed to just a
* call index). Parses `GenericCall`s that are nested as arguments.
*
* @param genericCall `GenericCall`
* @param registry type registry of the block the call belongs to
private parseGenericCall(
genericCall: GenericCall,
registry: Registry
): ISanitizedCall {
const newArgs = {};
// Pull out the struct of arguments to this call
const callArgs = genericCall.get('args') as Struct;
// Make sure callArgs exists and we can access its keys
if (callArgs && callArgs.defKeys) {
// paramName is a string
for (const paramName of callArgs.defKeys) {
const argument = callArgs.get(paramName);
if (Array.isArray(argument)) {
newArgs[paramName] = this.parseArrayGenericCalls(argument, registry);
newArgs[paramName] = this.parseGenericCall(argument, registry);
Tarik Gul
committed
} else if (
argument &&
paramName === 'call' &&
['Bytes', 'WrapperKeepOpaque<Call>', 'WrapperOpaque<Call>'].includes(
argument?.toRawType()
)
) {
// multiSig.asMulti.args.call is either an OpaqueCall (Vec<u8>),
// WrapperKeepOpaque<Call>, or WrapperOpaque<Call> that we
// serialize to a polkadot-js Call and parse so it is not a hex blob.
const call = registry.createType('Call', argument.toHex());
newArgs[paramName] = this.parseGenericCall(call, registry);
} catch {
newArgs[paramName] = argument;
}
} else {
newArgs[paramName] = argument;
}
}
}
return {
method: {
pallet: genericCall.section,
method: genericCall.method,
},
Zeke Mostov
committed
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/**
* When querying a block this will immediately inform the request whether
* or not the queried block is considered finalized at the time of querying.
*
* @param api ApiPromise to use for query
* @param blockNumber Queried block number
* @param queriedHash Hash of user queried block
* @param finalizedHead Finalized head for our chain
* @param checkFinalized If the passed in blockId is a hash
*/
private async isFinalizedBlock(
api: ApiPromise,
blockNumber: Compact<BlockNumber>,
queriedHash: BlockHash,
finalizedHead: BlockHash,
checkFinalized: boolean
): Promise<boolean> {
if (checkFinalized) {
// The blockId url param is a hash
const [finalizedHeadBlock, canonHash] = await Promise.all([
// Returns the header of the most recently finalized block
api.rpc.chain.getHeader(finalizedHead),
// Fetch the hash of the block with equal height on the canon chain.
// N.B. We assume when we query by number <= finalized head height,
// we will always get a block on the finalized, canonical chain.
api.rpc.chain.getBlockHash(blockNumber.unwrap()),
]);
// If queried by hash this is the original request param
const hash = queriedHash.toHex();
// If this conditional is satisfied, the queried hash is on a fork,
// and is not on the canonical chain and therefore not finalized
if (canonHash.toHex() !== hash) {
return false;
}
// Retreive the finalized head blockNumber
const finalizedHeadBlockNumber = finalizedHeadBlock?.number;
// If the finalized head blockNumber is undefined return false
if (!finalizedHeadBlockNumber) {
return false;
}
// Check if the user's block is less than or equal to the finalized head.
// If so, the user's block is finalized.
return blockNumber.unwrap().lte(finalizedHeadBlockNumber.unwrap());
} else {
// The blockId url param is an integer
// Returns the header of the most recently finalized block
const finalizedHeadBlock = await api.rpc.chain.getHeader(finalizedHead);
// Retreive the finalized head blockNumber
const finalizedHeadBlockNumber = finalizedHeadBlock?.number;
// If the finalized head blockNumber is undefined return false
if (!finalizedHeadBlockNumber) {
return false;
}
// Check if the user's block is less than or equal to the finalized head.
// If so, the user's block is finalized.
return blockNumber.unwrap().lte(finalizedHeadBlockNumber.unwrap());
}
}