Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3676f17 commit 3cd8bfbCopy full SHA for 3cd8bfb
etherscan/modules/accounts.py
@@ -43,22 +43,6 @@ def get_eth_balance_multiple(wallets: List[WalletAddress]) -> str:
43
# r = requests.get(url)
44
# return [conversions.to_ticker_unit(r["balance"]) for r in parser.get_result(r)]
45
46
- @staticmethod
47
- def get_hist_eth_balance_by_block(wallet: WalletAddress, block: int) -> str:
48
- # throttled to 2 calls/sec
49
- # BUG: returns 'Error! Missing Or invalid Action name'
50
- url = (
51
- f"{fields.MODULE}"
52
- f"{modules.ACCOUNT}"
53
- f"{fields.ACTION}"
54
- f"{actions.BALANCE_HISTORY}"
55
- f"{fields.ADDRESS}"
56
- f"{wallet}"
57
- f"{fields.BLOCKNO}"
58
- f"{str(block)}"
59
- )
60
- return url
61
-
62
@staticmethod
63
def get_normal_txs_by_address(
64
wallet: WalletAddress,
test/configs/stable.json
0 commit comments