From f478dbff389022f28780422fff908e7f44958649 Mon Sep 17 00:00:00 2001
From: hopeyen <hopey1118@gmail.com>
Date: Thu, 2 Nov 2023 16:54:08 +0200
Subject: [PATCH] chore: add Edge & Node to copyright headers

---
 .github/workflows/license_headers_check.yml  | 2 +-
 common/src/allocations/mod.rs                | 2 +-
 common/src/allocations/monitor.rs            | 2 +-
 common/src/attestations/dispute_manager.rs   | 2 +-
 common/src/attestations/mod.rs               | 2 +-
 common/src/attestations/signer.rs            | 2 +-
 common/src/attestations/signers.rs           | 2 +-
 common/src/escrow_accounts.rs                | 2 +-
 common/src/graphql.rs                        | 2 +-
 common/src/lib.rs                            | 2 +-
 common/src/signature_verification.rs         | 2 +-
 common/src/subgraph_client/client.rs         | 2 +-
 common/src/subgraph_client/mod.rs            | 2 +-
 common/src/subgraph_client/monitor.rs        | 2 +-
 common/src/tap_manager.rs                    | 2 +-
 common/src/test_vectors.rs                   | 2 +-
 service/src/common/address.rs                | 2 +-
 service/src/common/database.rs               | 2 +-
 service/src/common/indexer_error.rs          | 2 +-
 service/src/common/indexer_management/mod.rs | 2 +-
 service/src/common/mod.rs                    | 2 +-
 service/src/config.rs                        | 2 +-
 service/src/graph_node.rs                    | 2 +-
 service/src/main.rs                          | 2 +-
 service/src/metrics/mod.rs                   | 2 +-
 service/src/query_processor.rs               | 2 +-
 service/src/server/mod.rs                    | 2 +-
 service/src/server/routes/basic.rs           | 2 +-
 service/src/server/routes/cost.rs            | 2 +-
 service/src/server/routes/deployment.rs      | 2 +-
 service/src/server/routes/mod.rs             | 2 +-
 service/src/server/routes/network.rs         | 2 +-
 service/src/server/routes/status.rs          | 2 +-
 service/src/server/routes/subgraphs.rs       | 2 +-
 service/src/test_vectors.rs                  | 2 +-
 service/src/util.rs                          | 2 +-
 36 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/.github/workflows/license_headers_check.yml b/.github/workflows/license_headers_check.yml
index 26fe7e96..c9e1924a 100644
--- a/.github/workflows/license_headers_check.yml
+++ b/.github/workflows/license_headers_check.yml
@@ -21,7 +21,7 @@ jobs:
         run: >
           addlicense \
             -check \
-            -c "GraphOps and Semiotic Labs." \
+            -c "Edge & Node, GraphOps, and Semiotic Labs." \
             -l "apache" \
             -s=only \
             -ignore '.github/workflows/*.yml' \
diff --git a/common/src/allocations/mod.rs b/common/src/allocations/mod.rs
index 1a3b56f1..5088e766 100644
--- a/common/src/allocations/mod.rs
+++ b/common/src/allocations/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_primitives::Address;
diff --git a/common/src/allocations/monitor.rs b/common/src/allocations/monitor.rs
index c26d08a1..7920bd26 100644
--- a/common/src/allocations/monitor.rs
+++ b/common/src/allocations/monitor.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::{collections::HashMap, time::Duration};
diff --git a/common/src/attestations/dispute_manager.rs b/common/src/attestations/dispute_manager.rs
index 5a071b6d..5113db37 100644
--- a/common/src/attestations/dispute_manager.rs
+++ b/common/src/attestations/dispute_manager.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::time::Duration;
diff --git a/common/src/attestations/mod.rs b/common/src/attestations/mod.rs
index a6d84b0b..47125228 100644
--- a/common/src/attestations/mod.rs
+++ b/common/src/attestations/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 pub mod dispute_manager;
diff --git a/common/src/attestations/signer.rs b/common/src/attestations/signer.rs
index ff13f347..972f9f25 100644
--- a/common/src/attestations/signer.rs
+++ b/common/src/attestations/signer.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_primitives::{Address, U256};
diff --git a/common/src/attestations/signers.rs b/common/src/attestations/signers.rs
index ca230e95..15acf899 100644
--- a/common/src/attestations/signers.rs
+++ b/common/src/attestations/signers.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_primitives::Address;
diff --git a/common/src/escrow_accounts.rs b/common/src/escrow_accounts.rs
index 3d91cd4d..c67f60a9 100644
--- a/common/src/escrow_accounts.rs
+++ b/common/src/escrow_accounts.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::{collections::HashMap, time::Duration};
diff --git a/common/src/graphql.rs b/common/src/graphql.rs
index 4a767b13..801cb836 100644
--- a/common/src/graphql.rs
+++ b/common/src/graphql.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::collections::HashSet;
diff --git a/common/src/lib.rs b/common/src/lib.rs
index 67c4aabe..d09b9611 100644
--- a/common/src/lib.rs
+++ b/common/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 pub mod allocations;
diff --git a/common/src/signature_verification.rs b/common/src/signature_verification.rs
index 9a4cbc60..6c63a766 100644
--- a/common/src/signature_verification.rs
+++ b/common/src/signature_verification.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_primitives::Address;
diff --git a/common/src/subgraph_client/client.rs b/common/src/subgraph_client/client.rs
index d893a6c2..e33acf6a 100644
--- a/common/src/subgraph_client/client.rs
+++ b/common/src/subgraph_client/client.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use anyhow::anyhow;
diff --git a/common/src/subgraph_client/mod.rs b/common/src/subgraph_client/mod.rs
index 36dca750..a764ecce 100644
--- a/common/src/subgraph_client/mod.rs
+++ b/common/src/subgraph_client/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 mod client;
diff --git a/common/src/subgraph_client/monitor.rs b/common/src/subgraph_client/monitor.rs
index 177d96da..73aaf2b2 100644
--- a/common/src/subgraph_client/monitor.rs
+++ b/common/src/subgraph_client/monitor.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::time::Duration;
diff --git a/common/src/tap_manager.rs b/common/src/tap_manager.rs
index ebd193dd..24c82050 100644
--- a/common/src/tap_manager.rs
+++ b/common/src/tap_manager.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_primitives::Address;
diff --git a/common/src/test_vectors.rs b/common/src/test_vectors.rs
index 19890680..613e24a4 100644
--- a/common/src/test_vectors.rs
+++ b/common/src/test_vectors.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::{collections::HashMap, str::FromStr};
diff --git a/service/src/common/address.rs b/service/src/common/address.rs
index 4e2232c7..21e78011 100644
--- a/service/src/common/address.rs
+++ b/service/src/common/address.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use ethers::signers::{
diff --git a/service/src/common/database.rs b/service/src/common/database.rs
index 5ba4707e..ad7985cd 100644
--- a/service/src/common/database.rs
+++ b/service/src/common/database.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use sqlx::{postgres::PgPoolOptions, PgPool};
diff --git a/service/src/common/indexer_error.rs b/service/src/common/indexer_error.rs
index 3e77a741..67a64b5d 100644
--- a/service/src/common/indexer_error.rs
+++ b/service/src/common/indexer_error.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::{
diff --git a/service/src/common/indexer_management/mod.rs b/service/src/common/indexer_management/mod.rs
index 32a19e12..03cbf48d 100644
--- a/service/src/common/indexer_management/mod.rs
+++ b/service/src/common/indexer_management/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::{collections::HashSet, str::FromStr};
diff --git a/service/src/common/mod.rs b/service/src/common/mod.rs
index ad3394d5..2e845a1d 100644
--- a/service/src/common/mod.rs
+++ b/service/src/common/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 pub mod address;
diff --git a/service/src/config.rs b/service/src/config.rs
index f70a738a..e936e44f 100644
--- a/service/src/config.rs
+++ b/service/src/config.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use clap::{command, Args, Parser, ValueEnum};
diff --git a/service/src/graph_node.rs b/service/src/graph_node.rs
index 7c875764..b51643c1 100644
--- a/service/src/graph_node.rs
+++ b/service/src/graph_node.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use anyhow::anyhow;
diff --git a/service/src/main.rs b/service/src/main.rs
index 31fbcd6b..639e3e44 100644
--- a/service/src/main.rs
+++ b/service/src/main.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use alloy_sol_types::eip712_domain;
diff --git a/service/src/metrics/mod.rs b/service/src/metrics/mod.rs
index 74737197..3f34689d 100644
--- a/service/src/metrics/mod.rs
+++ b/service/src/metrics/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use autometrics::{encode_global_metrics, global_metrics_exporter};
diff --git a/service/src/query_processor.rs b/service/src/query_processor.rs
index 9dd9084b..cf5ab4e4 100644
--- a/service/src/query_processor.rs
+++ b/service/src/query_processor.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::collections::HashMap;
diff --git a/service/src/server/mod.rs b/service/src/server/mod.rs
index daebfb14..006a9b1b 100644
--- a/service/src/server/mod.rs
+++ b/service/src/server/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 pub(crate) use axum::{
diff --git a/service/src/server/routes/basic.rs b/service/src/server/routes/basic.rs
index 1c0f2f8a..21f7bf57 100644
--- a/service/src/server/routes/basic.rs
+++ b/service/src/server/routes/basic.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use axum::{extract::Extension, routing::get, Router};
diff --git a/service/src/server/routes/cost.rs b/service/src/server/routes/cost.rs
index caeb39ad..75a6007d 100644
--- a/service/src/server/routes/cost.rs
+++ b/service/src/server/routes/cost.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::str::FromStr;
diff --git a/service/src/server/routes/deployment.rs b/service/src/server/routes/deployment.rs
index 708d1443..ba5887d4 100644
--- a/service/src/server/routes/deployment.rs
+++ b/service/src/server/routes/deployment.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use axum::{http::StatusCode, response::IntoResponse, Extension, Json};
diff --git a/service/src/server/routes/mod.rs b/service/src/server/routes/mod.rs
index 57d13fb4..b7ff63f0 100644
--- a/service/src/server/routes/mod.rs
+++ b/service/src/server/routes/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use crate::common::indexer_error::{IndexerError, IndexerErrorCause};
diff --git a/service/src/server/routes/network.rs b/service/src/server/routes/network.rs
index ce330c93..8e476b73 100644
--- a/service/src/server/routes/network.rs
+++ b/service/src/server/routes/network.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use axum::{
diff --git a/service/src/server/routes/status.rs b/service/src/server/routes/status.rs
index 65a0eba7..1cfabf29 100644
--- a/service/src/server/routes/status.rs
+++ b/service/src/server/routes/status.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::collections::HashSet;
diff --git a/service/src/server/routes/subgraphs.rs b/service/src/server/routes/subgraphs.rs
index 128ff9f9..065707ba 100644
--- a/service/src/server/routes/subgraphs.rs
+++ b/service/src/server/routes/subgraphs.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use axum::{
diff --git a/service/src/test_vectors.rs b/service/src/test_vectors.rs
index b21c78e7..ac89842d 100644
--- a/service/src/test_vectors.rs
+++ b/service/src/test_vectors.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use std::str::FromStr;
diff --git a/service/src/util.rs b/service/src/util.rs
index ae7e1ec4..8bf4a945 100644
--- a/service/src/util.rs
+++ b/service/src/util.rs
@@ -1,4 +1,4 @@
-// Copyright 2023-, GraphOps and Semiotic Labs.
+// Copyright 2023-, Edge & Node, GraphOps, and Semiotic Labs.
 // SPDX-License-Identifier: Apache-2.0
 
 use ethers::signers::WalletError;