How to use list objects as arguments inside a python function?

236 Views Asked by At

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!

1

There are 1 best solutions below

0
On

This function expects single address so you have to use for-loop to check every address separatelly

erc20 = []

for address in result_list:
    result = eth.get_erc20_token_transfer_events_by_address(address=address, 
                                                            startblock="0", 
                                                            endblock="999999999", 
                                                            sort='asc')
    erc20.append(result)
    
print(erc20)

EDIT:

Minimal working code which works for me:

import os
import json
from etherscan import Etherscan

TOKEN = os.getenv('ETHERSCAN_TOKEN')
eth = Etherscan(TOKEN)

with open('addresses.json') as json_file:
    json_data = json.load(json_file)
    #print(json_data)

erc20 = []

for item in json_data:
    print(item['Name'])
    result = eth.get_erc20_token_transfer_events_by_address(address=item['Address'],
                                                            startblock="0",
                                                            endblock="999999999",
                                                            sort='asc')
    erc20.append(result)
    print('len(result):', len(result))
    
#print(erc20)

#for item in erc20:
#    print(item)

Result:

Name 1
len(result): 44
Name 2
len(result): 1043
Name 3
len(result): 1