Skip to content

Commit 8a597a8

Browse files
committed
Refactor arb-compiler-evm and remove web3 dependency
1 parent fa8797b commit 8a597a8

File tree

19 files changed

+522
-1144
lines changed

19 files changed

+522
-1144
lines changed

.flake8

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[flake8]
2+
ignore = E203, E266, E501, W503
3+
max-line-length = 80
4+
max-complexity = 22
5+
select = B,C,E,F,W,T4,B9

packages/arb-compiler-evm/Pipfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ verify_ssl = true
66
[dev-packages]
77

88
[packages]
9-
arb-compiler-evm = {editable = true,path = "."}
9+
eth-abi = ">=2.0.0"
10+
eth-utils = "<2.0.0,>=1.2.0"
11+
networkx = "*"
12+
pycryptodome = "*"
13+
pyevmasm = "*"
1014

1115
[requires]
1216
python_version = "3.6"
13-
14-
[pipenv]
15-
allow_prereleases = true

packages/arb-compiler-evm/Pipfile.lock

Lines changed: 19 additions & 393 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/arb-compiler-evm/arbitrum/evm/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
from . import compile
1616
from . import contract
17+
from . import contract_abi
1718
from . import execution
1819

19-
__all__ = ["compile", "contract", "execution"]
20+
__all__ = ["compile", "contract", "contract_abi", "execution"]

packages/arb-compiler-evm/arbitrum/evm/constructor.py

Lines changed: 0 additions & 120 deletions
This file was deleted.

0 commit comments

Comments
 (0)