Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea
.DS_Store

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"cytoolz>=0.9.0,<1.0.0;implementation_name=='cpython'",

"eth-abi>=2.0.0b6,<3.0.0",
"eth-account==0.4.0",
"eth-account==0.5.9",
"eth-utils>=1.3.0,<2.0.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",

Expand Down
2 changes: 1 addition & 1 deletion tronapi/common/encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
from typing import Union

from eth_account.datastructures import AttributeDict
from tronapi.common.datastructures import AttributeDict
from hexbytes import HexBytes

from eth_utils import (
Expand Down
2 changes: 1 addition & 1 deletion tronapi/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
:license: MIT License
"""

from eth_account.datastructures import AttributeDict
from tronapi.common.datastructures import AttributeDict
from urllib.parse import urlencode
from eth_utils import (
apply_to_return_value,
Expand Down