Carlos V

Results 8 issues of Carlos V

I ran this query https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum-sepolia/graphql?query=query+MyQuery+%7B%0A++allocations%28where%3A+%7Bid%3A+%220x9b83a26cf9866c4832572325bfdbe9c15c383142%22%7D%29+%7B%0A++++id%0A++++closedAt%0A++++status%0A++++createdAtBlockNumber%0A++++closedAtBlockNumber%0A++++closedAtEpoch%0A++%7D%0A%7D Which returned this data: ``` { "data": { "allocations": [ { "id": "0x9b83a26cf9866c4832572325bfdbe9c15c383142", "closedAt": 1712870496, "status": "Closed", "createdAtBlockNumber": 5635607, "closedAtBlockNumber": 5677434, "closedAtEpoch": 2208 } ]...

This PR should merge to main after PR #869 is merged

A continuation of PR [831](https://github.com/graphprotocol/indexer/pull/831) Were we fix redeeming for ravs, collection of allocations, unit tests, migrations among others

Add more unit tests to rav processing

Migrations from the [indexer-rs](https://github.com/graphprotocol/indexer-rs/blob/ead4ac2afa4de1740de0eb395cb8168ef2b8a74b/migrations/20230912220523_tap_receipts.up.sql#L9-L10) side are using the correct value at `scalar_tap_ravs > value_aggregate` since it uses unsigned 128bits numbers (39 digits) We had at first in mind 64 (therefore...

bug
TAP

WE currently have a `scalar_tap_receipts_invalid` table, but it lacks further purpose other than just having the invalid receipts listed without further information, so we are adding an extra column where...

Reason for this PR. tl;dr: needed for TAP cost model checks We currently have an issue where when a cost model just got updated the indexer-service takes some time to...

TAP