-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EVM bytecode decompiler (Experimental) #114
Comments
-``` Palkeoramix decompiler.const decimals = 18 def storage: def totalSupply() payable: def balanceOf(address _owner) payable: def owner() payable: def allowance(address _owner, address _spender) payable: Regular functionsdef _fallback() payable: # default function def renounceOwnership() payable: def transferOwnership(address _newOwner) payable: def mint(address _to, uint256 _amount) payable: def approve(address _spender, uint256 _value) payable: def burn(address _guy, uint256 _wad) payable: def transfer(address _to, uint256 _value) payable: def increaseAllowance(address _spender, uint256 _addedValue) payable: def decreaseAllowance(address _spender, uint256 _subtractedValue) payable: def transferFrom(address _from, address _to, uint256 _value) payable: def airdrop(address[] _participants, uint256 _totalAmount) payable: def name() payable: def symbol() payable:
|
The text was updated successfully, but these errors were encountered: