@xyo-network/xl1-protocol-sdk 1.20.1 → 1.20.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4015,6 +4015,7 @@ var SimpleBlockValidationViewer = class extends AbstractCreatableProvider {
4015
4015
  async doValidateProtocol(blocks, chainIdAtBlockNumber) {
4016
4016
  return (await Promise.all(blocks.map(async (block) => {
4017
4017
  return await this.params.protocol(
4018
+ this.context,
4018
4019
  block,
4019
4020
  chainIdAtBlockNumber
4020
4021
  );
@@ -4030,6 +4031,7 @@ var SimpleBlockValidationViewer = class extends AbstractCreatableProvider {
4030
4031
  }
4031
4032
  return (await Promise.all(uncles[0].map(async (block) => {
4032
4033
  return await this.params.state(
4034
+ this.context,
4033
4035
  block,
4034
4036
  chainIdAtBlockNumber,
4035
4037
  { accountBalance: this._accountBalanceViewer }