diff --git a/src/mappings/helpers/helpers.ts b/src/mappings/helpers/helpers.ts index 6d0b53a6..15074fcd 100644 --- a/src/mappings/helpers/helpers.ts +++ b/src/mappings/helpers/helpers.ts @@ -500,6 +500,8 @@ export function createOrLoadGraphNetwork( graphNetwork.delegationUnbondingPeriod = 0 graphNetwork.delegationTaxPercentage = 0 graphNetwork.rebateRatio = BigDecimal.fromString('0') + graphNetwork.rebateAlpha = BigDecimal.fromString('0') + graphNetwork.rebateLambda = BigDecimal.fromString('0') graphNetwork.totalTokensStakedTransferredToL2 = BigInt.fromI32(0) graphNetwork.totalDelegatedTokensTransferredToL2 = BigInt.fromI32(0) diff --git a/src/mappings/staking.ts b/src/mappings/staking.ts index 7e9bfc06..db5cd22f 100644 --- a/src/mappings/staking.ts +++ b/src/mappings/staking.ts @@ -358,6 +358,7 @@ export function handleAllocationCreated(event: AllocationCreated): void { ).toI32() allocation.queryFeesCollected = BigInt.fromI32(0) allocation.queryFeeRebates = BigInt.fromI32(0) + allocation.distributedRebates = BigInt.fromI32(0) allocation.curatorRewards = BigInt.fromI32(0) allocation.indexingRewards = BigInt.fromI32(0) allocation.indexingIndexerRewards = BigInt.fromI32(0)