Skip to content

Commit

Permalink
v1.0.0-rc.3; Fix for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon-Becker committed May 13, 2022
1 parent ff69363 commit 2528a09
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 6 deletions.
Binary file added dist/eth_heimdall-1.0.0rc1.tar.gz
Binary file not shown.
Binary file added dist/eth_heimdall-1.0.0rc3.tar.gz
Binary file not shown.
Binary file removed dist/heimdall-1.0.0rc1.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions env/conf.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"build": {
"version": "v1.0.0-rc.2"
"version": "v1.0.0-rc.3"
},
"defaults": {

"providers": {
"local": "http://127.0.0.1:7545",
"remote": "https://mainnet.infura.io/v3/"
"remote": "https://mainnet.infura.io/v3/422705d85b5c4923b841a60ba0c01129"
}

},
Expand Down
10 changes: 10 additions & 0 deletions eth_heimdall.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Metadata-Version: 2.1
Name: eth-heimdall
Version: 1.0.0rc3
Summary: Heimdall is an advanced and modular smart-contract toolkit which aims to make dealing with smart contracts on EVM based chains easier.
Home-page: https://github.com/Jon-Becker/heimdall
Author: Jonathan Becker (jon-becker)
Author-email: [email protected]
License: MIT
Keywords: ethereum,evm,decompiler,evm decompiler,smart contract,smart contract decompiler,evm smart contract decompiler,eth contract decompiler
License-File: LICENSE
10 changes: 10 additions & 0 deletions eth_heimdall.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
LICENSE
README.md
setup.py
eth_heimdall.egg-info/PKG-INFO
eth_heimdall.egg-info/SOURCES.txt
eth_heimdall.egg-info/dependency_links.txt
eth_heimdall.egg-info/entry_points.txt
eth_heimdall.egg-info/requires.txt
eth_heimdall.egg-info/top_level.txt
heimdall/__main__.py
1 change: 1 addition & 0 deletions eth_heimdall.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions eth_heimdall.egg-info/entry_points.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[console_scripts]
heimdall = heimdall.__main__:main
8 changes: 8 additions & 0 deletions eth_heimdall.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
requests
web3
numpy
bidict
alive-progress
argparse
argcomplete
eth_abi
1 change: 1 addition & 0 deletions eth_heimdall.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
heimdall
4 changes: 2 additions & 2 deletions heimdall/lib/modules/modules.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import importlib
import traceback
import pathlib
from lib.utils.colors import colorLib

from lib.utils.logger import log
Expand All @@ -9,7 +9,7 @@ def getModules(args=None):
mods = []
max_title_length = 0
max_description_length = 0
for item in os.listdir("./heimdall/lib/modules"):
for item in os.listdir(pathlib.Path(__file__).parent.resolve()):
if item.endswith('.py') and not "modules" in item:
try:
temp = importlib.import_module(f'lib.modules.{item.replace(".py", "")}')
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import Extension
from setuptools import setup

setup(name='heimdall',
version='1.0.0-rc.1',
setup(name='eth_heimdall',
version='1.0.0-rc.3',
description='Heimdall is an advanced and modular smart-contract toolkit which aims to make dealing with smart contracts on EVM based chains easier.',
url='https://github.com/Jon-Becker/heimdall',
entry_points={'console_scripts': ['heimdall=heimdall.__main__:main']},
Expand Down

0 comments on commit 2528a09

Please sign in to comment.