-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francesco Cosentino
committed
Jan 6, 2024
1 parent
e0b6f0b
commit 4c5af4d
Showing
8 changed files
with
339 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
TELEGRAM_TOKEN=your_token | ||
ETHERSCAN_API_KEY=your_api_key | ||
INFURA_API_KEY=your_key | ||
AWS_ACCESS_KEY_ID=your_key_id | ||
AWS_SECRET_ACCESS_KEY=your_access_key | ||
UPDATE_THRESHOLD=5 | ||
LOG_LEVEL=DEBUG | ||
LOG_FORMAT="%(asctime)s %(levelprefix)s %(message)s" | ||
LOG_DATE_FORMAT="%Y-%m-%d %H:%M:%S" | ||
CLOUD_PROVIDER=AWS | ||
AWS_ACCESS_KEY_ID=your_access_key | ||
AWS_SECRET_ACCESS_KEY=your_secret_key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ | |
|
||
__metaclass__ = type # pylint: disable=invalid-name | ||
|
||
__version__ = "0.2.2" | ||
__version__ = "0.2.3" | ||
__author__ = "F." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"""ETHEREUM module.""" | ||
|
||
try: | ||
from .gas_tracker import GasTracker | ||
from .wallet_tracker import WalletTracker | ||
from .wallet_tracker_storage import WalletTrackerStorage | ||
except ImportError as ex: | ||
raise ex |
File renamed without changes.
Oops, something went wrong.