diff --git a/README.md b/README.md index 9e9e0a9..380ebd6 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,7 @@ curl -k -X GET "http://localhost:3000/ethtxs?and=(or(txfrom.eq.0xFBb1b73C4f0BDa4 # License -Copyright © 2020-2022 ADAMANT Foundation +Copyright © 2020-2024 ADAMANT Foundation Copyright © 2017-2020 ADAMANT TECH LABS LP This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. diff --git a/create_tables.sql b/create_tables.sql index e8a3574..a2c5d0d 100644 --- a/create_tables.sql +++ b/create_tables.sql @@ -17,5 +17,5 @@ CREATE TABLE public.ethtxs CREATE VIEW max_block as SELECT MAX(block), - '2.4.0' as version + '2.4.1' as version FROM public.ethtxs; diff --git a/ethsync.py b/ethsync.py index 257fcc7..f303980 100644 --- a/ethsync.py +++ b/ethsync.py @@ -1,12 +1,13 @@ # Indexer for Ethereum to get transaction list by ETH address # https://github.com/Adamant-im/ETH-transactions-storage -# Contributions: +# Contributors: +# v2.4.1 +# 2022-2024 ADAMANT Foundation (devs@adamant.im), @twhitehead00, Tyvan Cheng (tyvancheng@gmail.com) # 2021-2022 ADAMANT Foundation (devs@adamant.im), Francesco Bonanno (mibofra@parrotsec.org), # Guénolé de Cadoudal (guenoledc@yahoo.fr), Drew Wells (drew.wells00@gmail.com) # 2020-2021 ADAMANT Foundation (devs@adamant.im): Aleksei Lebedev # 2017-2020 ADAMANT TECH LABS LP (pr@adamant.im): Artem Brunov, Aleksei Lebedev -# v2.4 from os import environ from web3 import Web3