Emiliano Fraticelli

Results 4 issues of Emiliano Fraticelli

hi! I'm new to this package... ``` from etherscan import Etherscan eth = Etherscan('MY API KEY') # key in quotation marks block_number_start=eth.get_block_number_by_timestamp(timestamp="1609490044", closest="before") block_number_end=eth.get_block_number_by_timestamp(timestamp="1637224444", closest="before") erc_20_transactions = eth.get_erc20_token_transfer_events_by_address(address='0xd8Fa365f358729Af1D62206BdDaD84cBb2BEFB7d',startblock=block_number_start,endblock=block_number_end,sort='asc') erc_721_transactions =...

thanks for this guide it has been very useful and following it I was able to start the full node on a dedicated hetzener server. Now the fact is that...

Hi! I tried using both python 3.9 and 3.11 but I always get the same error: ``` r, s = sign(self.hash, int(private_key_hex, 16)) ^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: int() can't convert non-string with...

hi! if I try to use the polygon chain I've an error....it's not implemented yet! from python_1inch import OneInchExchange #eth_exchange = OneInchExchange('Some_eth_address') polygon_exchange = OneInchExchange('0xcf32822ff397ef82425153a9dcb726e5ff61dca7', chain='polygon') polygon_exchange.health_check() # 'OK' #...