From d85bc2c9dbcfe3067563dd89643e3499cf128154 Mon Sep 17 00:00:00 2001 From: Dagur Valberg Johannsson Date: Wed, 21 Jan 2026 12:34:59 +0100 Subject: [PATCH] Update copyright headers --- contrib/api_doc_generator.py | 2 +- contrib/tvl.py | 2 +- contrib/volume.py | 2 +- linters/copyright_check.py | 21 +++++++++---------- linters/print_check.py | 2 +- linters/run_linters.py | 2 +- linters/timestamp_coalesce_check.py | 2 +- src/bcmr/bcmrdownloader.rs | 2 +- src/bcmr/mod.rs | 2 +- src/bcmr/parsedbcmr.rs | 2 +- src/bcmr/utilurl.rs | 2 +- src/bcmr/wellknowndowloader.rs | 2 +- src/cashaddr/errors.rs | 2 +- src/cashaddr/mod.rs | 2 +- src/cashaddr/utiladdr.rs | 2 +- src/chain.rs | 2 +- src/crc20/crc20fetcher.rs | 2 +- src/crc20/mod.rs | 2 +- src/db/bcmr/mod.rs | 2 +- src/db/cauldron/config.rs | 2 +- src/db/cauldron/header.rs | 2 +- src/db/cauldron/mempool.rs | 2 +- src/db/cauldron/mod.rs | 2 +- src/db/cauldron/pool.rs | 2 +- src/db/cauldron/poolvisitor.rs | 2 +- src/db/cauldron/tokenlist/db_utils.rs | 4 ++-- src/db/cauldron/tokenlist/list_cached.rs | 2 +- .../cauldron/tokenlist/list_tokens_volume.rs | 2 +- src/db/cauldron/tokenlist/metrics_cache.rs | 2 +- src/db/cauldron/tokenlist/mod.rs | 2 +- src/db/cauldron/tokenlist/test.rs | 2 +- src/db/cauldron/tokenlist/token_utils.rs | 2 +- src/db/cauldron/tx.rs | 2 +- src/db/cauldron/user.rs | 2 +- src/db/cauldron/utxo_funding.rs | 2 +- src/db/cauldron/utxo_spending.rs | 2 +- src/db/crc20/mod.rs | 2 +- src/db/init.rs | 2 +- src/db/mod.rs | 2 +- src/db/oracle/mod.rs | 2 +- src/db/search/mod.rs | 2 +- src/db/search/test.rs | 2 +- src/def.rs | 2 +- src/electrum.rs | 2 +- src/index.rs | 2 +- src/main.rs | 2 +- src/rpc/apy/apyaggregator.rs | 2 +- src/rpc/apy/mod.rs | 2 +- src/rpc/apy/poolperiod.rs | 2 +- src/rpc/bcmr.rs | 2 +- src/rpc/candlesticks.rs | 2 +- src/rpc/contract.rs | 2 +- src/rpc/err.rs | 2 +- src/rpc/mod.rs | 2 +- src/rpc/oracle.rs | 2 +- src/rpc/pool.rs | 2 +- src/rpc/price.rs | 2 +- src/rpc/response.rs | 2 +- src/rpc/tokens.rs | 2 +- src/rpc/tvl.rs | 2 +- src/rpc/tx.rs | 2 +- src/rpc/user.rs | 2 +- src/rpc/volume.rs | 2 +- src/signal.rs | 2 +- src/timeutil.rs | 2 +- src/utiltest.rs | 2 +- src/utiltoken.rs | 2 +- src/utiltx.rs | 2 +- 68 files changed, 78 insertions(+), 79 deletions(-) diff --git a/contrib/api_doc_generator.py b/contrib/api_doc_generator.py index aac13c9..87fad15 100755 --- a/contrib/api_doc_generator.py +++ b/contrib/api_doc_generator.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2025 Riften Labs AS, +# Copyright (C) 2025-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/contrib/tvl.py b/contrib/tvl.py index 0c7771c..d092d39 100644 --- a/contrib/tvl.py +++ b/contrib/tvl.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/contrib/volume.py b/contrib/volume.py index 550f570..d195bae 100644 --- a/contrib/volume.py +++ b/contrib/volume.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/linters/copyright_check.py b/linters/copyright_check.py index 32a2b74..6ac532b 100755 --- a/linters/copyright_check.py +++ b/linters/copyright_check.py @@ -1,9 +1,10 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html import os +import re import sys required_lines = [ @@ -11,22 +12,20 @@ required_lines = [ "A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html" ] -# Multiple possible copyright lines to allow both 2024 and 2025 -copyright_lines = [ - "Copyright (C) 2024 Riften Labs AS", - "Copyright (C) 2025 Riften Labs AS" -] +# Regex pattern to match copyright lines with Whiterun LLC +# Matches: "Copyright (C) 2026 Whiterun LLC" or "Copyright (C) 2024-2026 Whiterun LLC" +copyright_pattern = re.compile(r"Copyright \(C\) (\d{4}-)?\d{4} Whiterun LLC") OUR_PATH = os.path.dirname(os.path.realpath(__file__)) -def check_file_for_lines(file_path, lines, copyright_lines): - """Check if the file contains all the specified lines and at least one copyright line.""" +def check_file_for_lines(file_path, lines, copyright_pattern): + """Check if the file contains all the specified lines and a valid copyright line.""" with open(file_path, 'r', encoding='utf-8') as file: content = file.read() # Check if all required lines are present required_present = all(line in content for line in lines) - # Check if at least one copyright line is present - copyright_present = any(line in content for line in copyright_lines) + # Check if copyright pattern matches + copyright_present = bool(copyright_pattern.search(content)) return required_present and copyright_present def check_files(directories): @@ -38,7 +37,7 @@ def check_files(directories): for file in files: if file.endswith('.rs') or file.endswith('.py'): file_path = os.path.join(root, file) - if not check_file_for_lines(file_path, required_lines, copyright_lines): + if not check_file_for_lines(file_path, required_lines, copyright_pattern): print(f"{file_path}: Missing") missing += 1 diff --git a/linters/print_check.py b/linters/print_check.py index 43f3a11..a18eabe 100755 --- a/linters/print_check.py +++ b/linters/print_check.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/linters/run_linters.py b/linters/run_linters.py index d211a6b..e54372f 100755 --- a/linters/run_linters.py +++ b/linters/run_linters.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/linters/timestamp_coalesce_check.py b/linters/timestamp_coalesce_check.py index 1d08262..4c21987 100755 --- a/linters/timestamp_coalesce_check.py +++ b/linters/timestamp_coalesce_check.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2024 Riften Labs AS, +# Copyright (C) 2024-2026 Whiterun LLC, # This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later., # A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/bcmr/bcmrdownloader.rs b/src/bcmr/bcmrdownloader.rs index 021223f..93bd408 100644 --- a/src/bcmr/bcmrdownloader.rs +++ b/src/bcmr/bcmrdownloader.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/bcmr/mod.rs b/src/bcmr/mod.rs index 6cf7541..066a683 100644 --- a/src/bcmr/mod.rs +++ b/src/bcmr/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/bcmr/parsedbcmr.rs b/src/bcmr/parsedbcmr.rs index 71eaf2f..29f2042 100644 --- a/src/bcmr/parsedbcmr.rs +++ b/src/bcmr/parsedbcmr.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/bcmr/utilurl.rs b/src/bcmr/utilurl.rs index 51c22dc..c6a84ed 100644 --- a/src/bcmr/utilurl.rs +++ b/src/bcmr/utilurl.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/bcmr/wellknowndowloader.rs b/src/bcmr/wellknowndowloader.rs index d8ab70c..e13ca31 100644 --- a/src/bcmr/wellknowndowloader.rs +++ b/src/bcmr/wellknowndowloader.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/cashaddr/errors.rs b/src/cashaddr/errors.rs index 7f9c0b5..3cbc8c3 100644 --- a/src/cashaddr/errors.rs +++ b/src/cashaddr/errors.rs @@ -3,7 +3,7 @@ // // Copyright (C) 2019 Harry Barber // Copyright (C) 2022 Bitcoin Unlimited -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC use std::{error::Error, fmt}; diff --git a/src/cashaddr/mod.rs b/src/cashaddr/mod.rs index 404b55e..290883d 100644 --- a/src/cashaddr/mod.rs +++ b/src/cashaddr/mod.rs @@ -3,7 +3,7 @@ // // Copyright (C) 2019 Harry Barber // Copyright (C) 2022 Bitcoin Unlimited -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC pub mod errors; pub mod utiladdr; diff --git a/src/cashaddr/utiladdr.rs b/src/cashaddr/utiladdr.rs index c85e0d3..8daed92 100644 --- a/src/cashaddr/utiladdr.rs +++ b/src/cashaddr/utiladdr.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/chain.rs b/src/chain.rs index 120a252..25437e9 100644 --- a/src/chain.rs +++ b/src/chain.rs @@ -1,6 +1,6 @@ // Copyright (C) 2022 Roman Zeyde // Copyright (C) 2023 Bitcoin Unlimited -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/crc20/crc20fetcher.rs b/src/crc20/crc20fetcher.rs index 0bf42d0..1f9156b 100644 --- a/src/crc20/crc20fetcher.rs +++ b/src/crc20/crc20fetcher.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/crc20/mod.rs b/src/crc20/mod.rs index 0c37097..ddbf141 100644 --- a/src/crc20/mod.rs +++ b/src/crc20/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/bcmr/mod.rs b/src/db/bcmr/mod.rs index 4917852..47a43f7 100644 --- a/src/db/bcmr/mod.rs +++ b/src/db/bcmr/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/config.rs b/src/db/cauldron/config.rs index 14784b3..27a1d5f 100644 --- a/src/db/cauldron/config.rs +++ b/src/db/cauldron/config.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/header.rs b/src/db/cauldron/header.rs index f0b8c19..e3e8e51 100644 --- a/src/db/cauldron/header.rs +++ b/src/db/cauldron/header.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/mempool.rs b/src/db/cauldron/mempool.rs index b727997..e5a276a 100644 --- a/src/db/cauldron/mempool.rs +++ b/src/db/cauldron/mempool.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/mod.rs b/src/db/cauldron/mod.rs index 677bcb3..a2ab591 100644 --- a/src/db/cauldron/mod.rs +++ b/src/db/cauldron/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/pool.rs b/src/db/cauldron/pool.rs index 9106a5a..e062a29 100644 --- a/src/db/cauldron/pool.rs +++ b/src/db/cauldron/pool.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/poolvisitor.rs b/src/db/cauldron/poolvisitor.rs index c0dfab0..c859ebb 100644 --- a/src/db/cauldron/poolvisitor.rs +++ b/src/db/cauldron/poolvisitor.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/db_utils.rs b/src/db/cauldron/tokenlist/db_utils.rs index a417f81..496b080 100644 --- a/src/db/cauldron/tokenlist/db_utils.rs +++ b/src/db/cauldron/tokenlist/db_utils.rs @@ -1,10 +1,10 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html // db_utils.rs -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // AGPL-3.0-or-later use anyhow::Result; diff --git a/src/db/cauldron/tokenlist/list_cached.rs b/src/db/cauldron/tokenlist/list_cached.rs index 995c6e3..f63522e 100644 --- a/src/db/cauldron/tokenlist/list_cached.rs +++ b/src/db/cauldron/tokenlist/list_cached.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/list_tokens_volume.rs b/src/db/cauldron/tokenlist/list_tokens_volume.rs index 47175b3..d0d669e 100644 --- a/src/db/cauldron/tokenlist/list_tokens_volume.rs +++ b/src/db/cauldron/tokenlist/list_tokens_volume.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/metrics_cache.rs b/src/db/cauldron/tokenlist/metrics_cache.rs index fa8d7fb..009a084 100644 --- a/src/db/cauldron/tokenlist/metrics_cache.rs +++ b/src/db/cauldron/tokenlist/metrics_cache.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/mod.rs b/src/db/cauldron/tokenlist/mod.rs index f861fbb..5cbe052 100644 --- a/src/db/cauldron/tokenlist/mod.rs +++ b/src/db/cauldron/tokenlist/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/test.rs b/src/db/cauldron/tokenlist/test.rs index df50576..c6d1dc9 100644 --- a/src/db/cauldron/tokenlist/test.rs +++ b/src/db/cauldron/tokenlist/test.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tokenlist/token_utils.rs b/src/db/cauldron/tokenlist/token_utils.rs index b337608..63d278e 100644 --- a/src/db/cauldron/tokenlist/token_utils.rs +++ b/src/db/cauldron/tokenlist/token_utils.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/tx.rs b/src/db/cauldron/tx.rs index 015a514..44d0e2e 100644 --- a/src/db/cauldron/tx.rs +++ b/src/db/cauldron/tx.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/user.rs b/src/db/cauldron/user.rs index 9e8a4a7..6b26cd0 100644 --- a/src/db/cauldron/user.rs +++ b/src/db/cauldron/user.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/utxo_funding.rs b/src/db/cauldron/utxo_funding.rs index 173797b..e02b55d 100644 --- a/src/db/cauldron/utxo_funding.rs +++ b/src/db/cauldron/utxo_funding.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/cauldron/utxo_spending.rs b/src/db/cauldron/utxo_spending.rs index c3ef3c3..c480e23 100644 --- a/src/db/cauldron/utxo_spending.rs +++ b/src/db/cauldron/utxo_spending.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/crc20/mod.rs b/src/db/crc20/mod.rs index e98e588..754ee82 100644 --- a/src/db/crc20/mod.rs +++ b/src/db/crc20/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/init.rs b/src/db/init.rs index 79224aa..51039bb 100644 --- a/src/db/init.rs +++ b/src/db/init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/mod.rs b/src/db/mod.rs index 634037d..534e5c4 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/oracle/mod.rs b/src/db/oracle/mod.rs index bd98c67..75cb0b2 100644 --- a/src/db/oracle/mod.rs +++ b/src/db/oracle/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/search/mod.rs b/src/db/search/mod.rs index 5f0a2ba..d2ae81a 100644 --- a/src/db/search/mod.rs +++ b/src/db/search/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/db/search/test.rs b/src/db/search/test.rs index c31c355..4cbef24 100644 --- a/src/db/search/test.rs +++ b/src/db/search/test.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/def.rs b/src/def.rs index 83c6ee1..d085068 100644 --- a/src/def.rs +++ b/src/def.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/electrum.rs b/src/electrum.rs index 17a2e14..57645fc 100644 --- a/src/electrum.rs +++ b/src/electrum.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/index.rs b/src/index.rs index ac8707c..2c851f2 100644 --- a/src/index.rs +++ b/src/index.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/main.rs b/src/main.rs index 3472fb2..00b16ab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/apy/apyaggregator.rs b/src/rpc/apy/apyaggregator.rs index 5de207c..1a019a9 100644 --- a/src/rpc/apy/apyaggregator.rs +++ b/src/rpc/apy/apyaggregator.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/apy/mod.rs b/src/rpc/apy/mod.rs index 049ab19..c634a90 100644 --- a/src/rpc/apy/mod.rs +++ b/src/rpc/apy/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/apy/poolperiod.rs b/src/rpc/apy/poolperiod.rs index 25ac798..1339479 100644 --- a/src/rpc/apy/poolperiod.rs +++ b/src/rpc/apy/poolperiod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/bcmr.rs b/src/rpc/bcmr.rs index 69475c8..fecb8b1 100644 --- a/src/rpc/bcmr.rs +++ b/src/rpc/bcmr.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/candlesticks.rs b/src/rpc/candlesticks.rs index dc3d0fe..d542532 100644 --- a/src/rpc/candlesticks.rs +++ b/src/rpc/candlesticks.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/contract.rs b/src/rpc/contract.rs index 1cd0a6f..7961c86 100644 --- a/src/rpc/contract.rs +++ b/src/rpc/contract.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/err.rs b/src/rpc/err.rs index 511c321..77e04b0 100644 --- a/src/rpc/err.rs +++ b/src/rpc/err.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/mod.rs b/src/rpc/mod.rs index 09ea958..eac9cd1 100644 --- a/src/rpc/mod.rs +++ b/src/rpc/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/oracle.rs b/src/rpc/oracle.rs index ca79caa..91930ea 100644 --- a/src/rpc/oracle.rs +++ b/src/rpc/oracle.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/pool.rs b/src/rpc/pool.rs index a8af4d2..593bdb4 100644 --- a/src/rpc/pool.rs +++ b/src/rpc/pool.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/price.rs b/src/rpc/price.rs index f22c373..3570685 100644 --- a/src/rpc/price.rs +++ b/src/rpc/price.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/response.rs b/src/rpc/response.rs index 313cede..1a151a5 100644 --- a/src/rpc/response.rs +++ b/src/rpc/response.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/tokens.rs b/src/rpc/tokens.rs index ce695d7..123718b 100644 --- a/src/rpc/tokens.rs +++ b/src/rpc/tokens.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/tvl.rs b/src/rpc/tvl.rs index 9253658..747bd78 100644 --- a/src/rpc/tvl.rs +++ b/src/rpc/tvl.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/tx.rs b/src/rpc/tx.rs index d6006c3..17b6480 100644 --- a/src/rpc/tx.rs +++ b/src/rpc/tx.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/user.rs b/src/rpc/user.rs index 271849f..59fb4b9 100644 --- a/src/rpc/user.rs +++ b/src/rpc/user.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/rpc/volume.rs b/src/rpc/volume.rs index f14c907..e461150 100644 --- a/src/rpc/volume.rs +++ b/src/rpc/volume.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2025 Riften Labs AS +// Copyright (C) 2025-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/signal.rs b/src/signal.rs index 3d3583e..4968bdc 100644 --- a/src/signal.rs +++ b/src/signal.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/timeutil.rs b/src/timeutil.rs index 0cab02a..9e1fefd 100644 --- a/src/timeutil.rs +++ b/src/timeutil.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/utiltest.rs b/src/utiltest.rs index b1a5b20..5c5c682 100644 --- a/src/utiltest.rs +++ b/src/utiltest.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/utiltoken.rs b/src/utiltoken.rs index 9e0e840..1016ddd 100644 --- a/src/utiltoken.rs +++ b/src/utiltoken.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/utiltx.rs b/src/utiltx.rs index 497b52e..c3b6006 100644 --- a/src/utiltx.rs +++ b/src/utiltx.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Riften Labs AS +// Copyright (C) 2024-2026 Whiterun LLC // // This software is licensed under the GNU Affero General Public License (AGPL), version 3.0 or later. // A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/agpl-3.0.html