Skip to content

Commit 721a41d

Browse files
committed
update .env.example + better logs for sync
1 parent 1459104 commit 721a41d

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ SAVINGS_MODULE_ABI_FILENAME="abi/SavingsModule.json"
44
SAVINGS_MODULE_ADDRESS="0xF5402dDA4C904AbfF40Bc2A7A133980785F59780"
55
IDEFI_MODULE_ABI_FILENAME="abi/IDefiProtocol.json"
66
ARCHIVE_NODE="https://api.archivenode.io/fsdsd"
7-
PYTHONPATH="./delphi_api" #this stops vs code about complaining about unresolved imports
7+
PYTHONPATH="./delphi_api" #this stops vs code about complaining about unresolved imports
8+
BQ_STORAGE_URL="path/to/data"

delphi_api/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# from .api import *
2+
# from .bqSync import *
23
from .listen import *
34

45

delphi_api/bqSync.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414

1515
def main(get_bq_data, test):
16+
print("BigQuery Sync + Redis Storage Populate")
17+
print(f"Grab BQ Data: {get_bq_data}")
18+
print(f"TestRun: {test}")
1619
# connect to web3
1720
eth = EthClient()
1821
eth.setup()

0 commit comments

Comments
 (0)