Skip to content

Commit 401aae1

Browse files
Merge branch 'main' into main
2 parents f7443fb + f30b210 commit 401aae1

20 files changed

+506
-216
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"tap-agent": "1.1.1",
2+
"tap-agent": "1.2.0",
33
"common": "1.1.0",
44
"config": "1.2.0",
55
"service": "1.1.1"

.sqlx/query-7a7fb81674a67e9b9dbf82a318d60dd78565765831dc4dd84777dfb751736ce6.json

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-dbdcb666214a40762607e872c680bba5c3d01bc2106abe5839f1801d1683b8f6.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/src/attestations/dispute_manager.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use std::time::Duration;
77
use thegraph_core::Address;
88
use tokio::sync::watch::{self, Receiver};
99
use tokio::time::{self, sleep};
10+
use alloy::primitives::Address;
11+
use eventuals::{timer, Eventual, EventualExt};
1012
use tracing::warn;
1113

1214
use crate::subgraph_client::SubgraphClient;

common/src/escrow_accounts.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ use std::{
77
time::Duration,
88
};
99

10-
use alloy::primitives::U256;
10+
use alloy::primitives::{Address, U256};
1111
use anyhow::{anyhow, Result};
1212
use eventuals::{timer, Eventual, EventualExt};
1313
use graphql_client::GraphQLQuery;
14-
use thegraph_core::Address;
1514
use thiserror::Error;
1615
use tokio::time::sleep;
1716
use tracing::{error, warn};

common/src/indexer_service/http/tap_receipt_header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ impl Header for TapReceipt {
6767
mod test {
6868
use std::str::FromStr;
6969

70+
use alloy::primitives::Address;
7071
use axum::http::HeaderValue;
7172
use axum_extra::headers::Header;
72-
use thegraph_core::Address;
7373

7474
use crate::test_vectors::create_signed_receipt;
7575

common/src/tap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ use crate::tap::checks::sender_balance_check::SenderBalanceCheck;
88
use crate::tap::checks::timestamp_check::TimestampCheck;
99
use crate::{escrow_accounts::EscrowAccounts, prelude::Allocation};
1010
use alloy::dyn_abi::Eip712Domain;
11+
use alloy::primitives::Address;
1112
use eventuals::Eventual;
1213
use receipt_store::{DatabaseReceipt, InnerContext};
1314
use sqlx::PgPool;
1415
use std::fmt::Debug;
1516
use std::time::Duration;
1617
use std::{collections::HashMap, sync::Arc};
1718
use tap_core::receipt::checks::ReceiptCheck;
18-
use thegraph_core::Address;
1919
use tokio::sync::mpsc::{self, Sender};
2020
use tokio_util::sync::CancellationToken;
2121
use tracing::error;

common/src/tap/checks/deny_list_check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
use crate::escrow_accounts::EscrowAccounts;
55
use alloy::dyn_abi::Eip712Domain;
6+
use alloy::primitives::Address;
67
use eventuals::Eventual;
78
use sqlx::postgres::PgListener;
89
use sqlx::PgPool;
@@ -15,7 +16,6 @@ use tap_core::receipt::{
1516
state::Checking,
1617
ReceiptWithState,
1718
};
18-
use thegraph_core::Address;
1919
use tracing::error;
2020

2121
pub struct DenyListCheck {

tap-agent/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.2.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-tap-agent-v1.1.1...indexer-tap-agent-v1.2.0) (2024-10-17)
4+
5+
6+
### Features
7+
8+
* Move backoff to to the tracker to remove errors ([#377](https://github.com/graphprotocol/indexer-rs/issues/377)) ([1bde9b4](https://github.com/graphprotocol/indexer-rs/commit/1bde9b4e660ecd175bff427fac06e04f3985a8f8))
9+
10+
11+
### Performance Improvements
12+
13+
* trigger rav request concurrently ([#381](https://github.com/graphprotocol/indexer-rs/issues/381)) ([bb7b7c6](https://github.com/graphprotocol/indexer-rs/commit/bb7b7c678cdc20bab805c3eacfd4aedf99a868b5))
14+
* use latest_rav to recalculate fees ([#379](https://github.com/graphprotocol/indexer-rs/issues/379)) ([7a45c26](https://github.com/graphprotocol/indexer-rs/commit/7a45c260c4d4961171bb67db938d446cbe5d891c))
15+
316
## [1.1.1](https://github.com/graphprotocol/indexer-rs/compare/indexer-tap-agent-v1.1.0...indexer-tap-agent-v1.1.1) (2024-10-09)
417

518

0 commit comments

Comments
 (0)