We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401c276 commit 5a27f7dCopy full SHA for 5a27f7d
crates/tap-agent/src/agent/sender_account.rs
@@ -989,9 +989,10 @@ impl Actor for SenderAccount {
989
.collect();
990
991
if !collection_ids.is_empty() {
992
- // For V2, use the indexer address as the data service since the indexer
993
- // is providing the data service for the queries
994
- let data_service = config.indexer_address;
+ // For V2/Horizon: data_service must be the SubgraphService address to match
+ // on-chain RAV lookups (service_provider is the indexer address)
+ let data_service =
995
+ config.tap_mode.require_subgraph_service_address();
996
997
match escrow_subgraph
998
.query::<LatestRavs, _>(latest_ravs_v2::Variables {
0 commit comments