Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1e04210

Browse files
author
Kotsias, Panagiotis-Christos
committed
Added four modules
1 parent 1848af5 commit 1e04210

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

etherscan/enums/modules_enum.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from dataclass import dataclass
2+
3+
4+
@dataclass(frozen=True)
5+
class ModulesEnum:
6+
ACCOUNT: str = "account"
7+
CONTRACT: str = "contract"
8+
TRANSACTION: str = "transaction"
9+
TOKEN: str = "token"
10+

0 commit comments

Comments
 (0)