I am new to programming and I am stuck with this following problem.
I can't find a way to pass my list objects as arguments within the following function.
My goal with the function is to run through all the list objects one by one and save the data as a variable named erc20.
Link to .json file // Link to etherscan-python github
from etherscan import Etherscan
import json
with open('adress-tracker.json') as json_file:
json_data = json.load(json_file)
print(json_data)
# Here we create a result list, in which we will store our addresses
result_list = [json_dict['Address'] for json_dict in json_data]
eth = Etherscan("APIKEY") #removed my api key
erc20 = eth.get_erc20_token_transfer_events_by_address(address = result_list, startblock="0", endblock="999999999", sort='asc')
print(erc20)
This will return the following Error:
AssertionError: Error! Invalid address format -- NOTOK
When I directly add the address or link it to a variable it works just fine. However I need to find a way how to apply the functions to all addresses, as I plan to add in hundreds.
I tried changing the list to a directory and also tried to implement Keyword Arguments with (*result_list) or created a new variable called params with all needed arguments. Then used (*params). But unfortunately I can't wrap my head around how to solve this problem.
Thank you so much in advance!
This function expects single address so you have to use
for
-loop to check every address separatellyEDIT:
Minimal working code which works for me:
Result: