ethereum-execution 2.18.0rc6.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ethereum/__init__.py +30 -0
- ethereum/assets/blocks/block_1.json +22 -0
- ethereum/assets/blocks/block_1234567.json +22 -0
- ethereum/assets/blocks/block_12964999.json +2720 -0
- ethereum/assets/cache_sizes_2048_epochs.json +329 -0
- ethereum/assets/dataset_sizes_2048_epochs.json +412 -0
- ethereum/assets/mainnet.json +26711 -0
- ethereum/crypto/__init__.py +3 -0
- ethereum/crypto/blake2.py +265 -0
- ethereum/crypto/elliptic_curve.py +170 -0
- ethereum/crypto/hash.py +56 -0
- ethereum/crypto/kzg.py +176 -0
- ethereum/ethash.py +426 -0
- ethereum/exceptions.py +75 -0
- ethereum/fork_criteria.py +205 -0
- ethereum/forks/arrow_glacier/__init__.py +33 -0
- ethereum/forks/arrow_glacier/blocks.py +326 -0
- ethereum/forks/arrow_glacier/bloom.py +87 -0
- ethereum/forks/arrow_glacier/exceptions.py +58 -0
- ethereum/forks/arrow_glacier/fork.py +954 -0
- ethereum/forks/arrow_glacier/fork_types.py +62 -0
- ethereum/forks/arrow_glacier/state.py +644 -0
- ethereum/forks/arrow_glacier/transactions.py +573 -0
- ethereum/forks/arrow_glacier/trie.py +498 -0
- ethereum/forks/arrow_glacier/utils/__init__.py +3 -0
- ethereum/forks/arrow_glacier/utils/address.py +94 -0
- ethereum/forks/arrow_glacier/utils/hexadecimal.py +55 -0
- ethereum/forks/arrow_glacier/utils/message.py +90 -0
- ethereum/forks/arrow_glacier/vm/__init__.py +195 -0
- ethereum/forks/arrow_glacier/vm/exceptions.py +131 -0
- ethereum/forks/arrow_glacier/vm/gas.py +245 -0
- ethereum/forks/arrow_glacier/vm/instructions/__init__.py +353 -0
- ethereum/forks/arrow_glacier/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/arrow_glacier/vm/instructions/bitwise.py +245 -0
- ethereum/forks/arrow_glacier/vm/instructions/block.py +212 -0
- ethereum/forks/arrow_glacier/vm/instructions/comparison.py +177 -0
- ethereum/forks/arrow_glacier/vm/instructions/control_flow.py +171 -0
- ethereum/forks/arrow_glacier/vm/instructions/environment.py +544 -0
- ethereum/forks/arrow_glacier/vm/instructions/keccak.py +63 -0
- ethereum/forks/arrow_glacier/vm/instructions/log.py +88 -0
- ethereum/forks/arrow_glacier/vm/instructions/memory.py +141 -0
- ethereum/forks/arrow_glacier/vm/instructions/stack.py +204 -0
- ethereum/forks/arrow_glacier/vm/instructions/storage.py +126 -0
- ethereum/forks/arrow_glacier/vm/instructions/system.py +694 -0
- ethereum/forks/arrow_glacier/vm/interpreter.py +312 -0
- ethereum/forks/arrow_glacier/vm/memory.py +84 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/arrow_glacier/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/arrow_glacier/vm/runtime.py +69 -0
- ethereum/forks/arrow_glacier/vm/stack.py +58 -0
- ethereum/forks/berlin/__init__.py +43 -0
- ethereum/forks/berlin/blocks.py +297 -0
- ethereum/forks/berlin/bloom.py +87 -0
- ethereum/forks/berlin/exceptions.py +24 -0
- ethereum/forks/berlin/fork.py +839 -0
- ethereum/forks/berlin/fork_types.py +62 -0
- ethereum/forks/berlin/state.py +644 -0
- ethereum/forks/berlin/transactions.py +456 -0
- ethereum/forks/berlin/trie.py +498 -0
- ethereum/forks/berlin/utils/__init__.py +3 -0
- ethereum/forks/berlin/utils/address.py +94 -0
- ethereum/forks/berlin/utils/hexadecimal.py +55 -0
- ethereum/forks/berlin/utils/message.py +90 -0
- ethereum/forks/berlin/vm/__init__.py +194 -0
- ethereum/forks/berlin/vm/exceptions.py +123 -0
- ethereum/forks/berlin/vm/gas.py +246 -0
- ethereum/forks/berlin/vm/instructions/__init__.py +351 -0
- ethereum/forks/berlin/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/berlin/vm/instructions/bitwise.py +245 -0
- ethereum/forks/berlin/vm/instructions/block.py +212 -0
- ethereum/forks/berlin/vm/instructions/comparison.py +177 -0
- ethereum/forks/berlin/vm/instructions/control_flow.py +171 -0
- ethereum/forks/berlin/vm/instructions/environment.py +521 -0
- ethereum/forks/berlin/vm/instructions/keccak.py +63 -0
- ethereum/forks/berlin/vm/instructions/log.py +88 -0
- ethereum/forks/berlin/vm/instructions/memory.py +141 -0
- ethereum/forks/berlin/vm/instructions/stack.py +204 -0
- ethereum/forks/berlin/vm/instructions/storage.py +126 -0
- ethereum/forks/berlin/vm/instructions/system.py +706 -0
- ethereum/forks/berlin/vm/interpreter.py +308 -0
- ethereum/forks/berlin/vm/memory.py +84 -0
- ethereum/forks/berlin/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/berlin/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/berlin/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/berlin/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/berlin/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/berlin/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/berlin/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/berlin/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/berlin/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/berlin/vm/runtime.py +69 -0
- ethereum/forks/berlin/vm/stack.py +58 -0
- ethereum/forks/byzantium/__init__.py +50 -0
- ethereum/forks/byzantium/blocks.py +265 -0
- ethereum/forks/byzantium/bloom.py +87 -0
- ethereum/forks/byzantium/fork.py +816 -0
- ethereum/forks/byzantium/fork_types.py +61 -0
- ethereum/forks/byzantium/state.py +583 -0
- ethereum/forks/byzantium/transactions.py +261 -0
- ethereum/forks/byzantium/trie.py +498 -0
- ethereum/forks/byzantium/utils/__init__.py +3 -0
- ethereum/forks/byzantium/utils/address.py +63 -0
- ethereum/forks/byzantium/utils/hexadecimal.py +55 -0
- ethereum/forks/byzantium/utils/message.py +80 -0
- ethereum/forks/byzantium/vm/__init__.py +186 -0
- ethereum/forks/byzantium/vm/exceptions.py +123 -0
- ethereum/forks/byzantium/vm/gas.py +245 -0
- ethereum/forks/byzantium/vm/instructions/__init__.py +337 -0
- ethereum/forks/byzantium/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/byzantium/vm/instructions/bitwise.py +153 -0
- ethereum/forks/byzantium/vm/instructions/block.py +189 -0
- ethereum/forks/byzantium/vm/instructions/comparison.py +177 -0
- ethereum/forks/byzantium/vm/instructions/control_flow.py +171 -0
- ethereum/forks/byzantium/vm/instructions/environment.py +436 -0
- ethereum/forks/byzantium/vm/instructions/keccak.py +63 -0
- ethereum/forks/byzantium/vm/instructions/log.py +88 -0
- ethereum/forks/byzantium/vm/instructions/memory.py +141 -0
- ethereum/forks/byzantium/vm/instructions/stack.py +204 -0
- ethereum/forks/byzantium/vm/instructions/storage.py +88 -0
- ethereum/forks/byzantium/vm/instructions/system.py +601 -0
- ethereum/forks/byzantium/vm/interpreter.py +299 -0
- ethereum/forks/byzantium/vm/memory.py +84 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/__init__.py +36 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/mapping.py +43 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/modexp.py +168 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/byzantium/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/byzantium/vm/runtime.py +69 -0
- ethereum/forks/byzantium/vm/stack.py +58 -0
- ethereum/forks/cancun/__init__.py +49 -0
- ethereum/forks/cancun/blocks.py +389 -0
- ethereum/forks/cancun/bloom.py +87 -0
- ethereum/forks/cancun/exceptions.py +109 -0
- ethereum/forks/cancun/fork.py +881 -0
- ethereum/forks/cancun/fork_types.py +63 -0
- ethereum/forks/cancun/state.py +667 -0
- ethereum/forks/cancun/transactions.py +721 -0
- ethereum/forks/cancun/trie.py +508 -0
- ethereum/forks/cancun/utils/__init__.py +3 -0
- ethereum/forks/cancun/utils/address.py +94 -0
- ethereum/forks/cancun/utils/hexadecimal.py +55 -0
- ethereum/forks/cancun/utils/message.py +90 -0
- ethereum/forks/cancun/vm/__init__.py +186 -0
- ethereum/forks/cancun/vm/exceptions.py +139 -0
- ethereum/forks/cancun/vm/gas.py +372 -0
- ethereum/forks/cancun/vm/instructions/__init__.py +365 -0
- ethereum/forks/cancun/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/cancun/vm/instructions/bitwise.py +245 -0
- ethereum/forks/cancun/vm/instructions/block.py +261 -0
- ethereum/forks/cancun/vm/instructions/comparison.py +177 -0
- ethereum/forks/cancun/vm/instructions/control_flow.py +171 -0
- ethereum/forks/cancun/vm/instructions/environment.py +600 -0
- ethereum/forks/cancun/vm/instructions/keccak.py +63 -0
- ethereum/forks/cancun/vm/instructions/log.py +88 -0
- ethereum/forks/cancun/vm/instructions/memory.py +177 -0
- ethereum/forks/cancun/vm/instructions/stack.py +208 -0
- ethereum/forks/cancun/vm/instructions/storage.py +188 -0
- ethereum/forks/cancun/vm/instructions/system.py +708 -0
- ethereum/forks/cancun/vm/interpreter.py +302 -0
- ethereum/forks/cancun/vm/memory.py +84 -0
- ethereum/forks/cancun/vm/precompiled_contracts/__init__.py +39 -0
- ethereum/forks/cancun/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/cancun/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/cancun/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/cancun/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/cancun/vm/precompiled_contracts/mapping.py +49 -0
- ethereum/forks/cancun/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/cancun/vm/precompiled_contracts/point_evaluation.py +72 -0
- ethereum/forks/cancun/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/cancun/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/cancun/vm/runtime.py +69 -0
- ethereum/forks/cancun/vm/stack.py +58 -0
- ethereum/forks/constantinople/__init__.py +51 -0
- ethereum/forks/constantinople/blocks.py +265 -0
- ethereum/forks/constantinople/bloom.py +87 -0
- ethereum/forks/constantinople/fork.py +816 -0
- ethereum/forks/constantinople/fork_types.py +62 -0
- ethereum/forks/constantinople/state.py +583 -0
- ethereum/forks/constantinople/transactions.py +261 -0
- ethereum/forks/constantinople/trie.py +498 -0
- ethereum/forks/constantinople/utils/__init__.py +3 -0
- ethereum/forks/constantinople/utils/address.py +93 -0
- ethereum/forks/constantinople/utils/hexadecimal.py +55 -0
- ethereum/forks/constantinople/utils/message.py +80 -0
- ethereum/forks/constantinople/vm/__init__.py +186 -0
- ethereum/forks/constantinople/vm/exceptions.py +123 -0
- ethereum/forks/constantinople/vm/gas.py +246 -0
- ethereum/forks/constantinople/vm/instructions/__init__.py +347 -0
- ethereum/forks/constantinople/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/constantinople/vm/instructions/bitwise.py +245 -0
- ethereum/forks/constantinople/vm/instructions/block.py +189 -0
- ethereum/forks/constantinople/vm/instructions/comparison.py +177 -0
- ethereum/forks/constantinople/vm/instructions/control_flow.py +171 -0
- ethereum/forks/constantinople/vm/instructions/environment.py +470 -0
- ethereum/forks/constantinople/vm/instructions/keccak.py +63 -0
- ethereum/forks/constantinople/vm/instructions/log.py +88 -0
- ethereum/forks/constantinople/vm/instructions/memory.py +141 -0
- ethereum/forks/constantinople/vm/instructions/stack.py +204 -0
- ethereum/forks/constantinople/vm/instructions/storage.py +88 -0
- ethereum/forks/constantinople/vm/instructions/system.py +673 -0
- ethereum/forks/constantinople/vm/interpreter.py +300 -0
- ethereum/forks/constantinople/vm/memory.py +84 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/__init__.py +36 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/mapping.py +43 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/modexp.py +168 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/constantinople/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/constantinople/vm/runtime.py +69 -0
- ethereum/forks/constantinople/vm/stack.py +58 -0
- ethereum/forks/dao_fork/__init__.py +29 -0
- ethereum/forks/dao_fork/blocks.py +265 -0
- ethereum/forks/dao_fork/bloom.py +87 -0
- ethereum/forks/dao_fork/dao.py +357 -0
- ethereum/forks/dao_fork/fork.py +816 -0
- ethereum/forks/dao_fork/fork_types.py +62 -0
- ethereum/forks/dao_fork/state.py +515 -0
- ethereum/forks/dao_fork/transactions.py +227 -0
- ethereum/forks/dao_fork/trie.py +498 -0
- ethereum/forks/dao_fork/utils/__init__.py +3 -0
- ethereum/forks/dao_fork/utils/address.py +62 -0
- ethereum/forks/dao_fork/utils/hexadecimal.py +55 -0
- ethereum/forks/dao_fork/utils/message.py +78 -0
- ethereum/forks/dao_fork/vm/__init__.py +163 -0
- ethereum/forks/dao_fork/vm/exceptions.py +86 -0
- ethereum/forks/dao_fork/vm/gas.py +212 -0
- ethereum/forks/dao_fork/vm/instructions/__init__.py +329 -0
- ethereum/forks/dao_fork/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/dao_fork/vm/instructions/bitwise.py +153 -0
- ethereum/forks/dao_fork/vm/instructions/block.py +189 -0
- ethereum/forks/dao_fork/vm/instructions/comparison.py +177 -0
- ethereum/forks/dao_fork/vm/instructions/control_flow.py +171 -0
- ethereum/forks/dao_fork/vm/instructions/environment.py +376 -0
- ethereum/forks/dao_fork/vm/instructions/keccak.py +63 -0
- ethereum/forks/dao_fork/vm/instructions/log.py +85 -0
- ethereum/forks/dao_fork/vm/instructions/memory.py +141 -0
- ethereum/forks/dao_fork/vm/instructions/stack.py +204 -0
- ethereum/forks/dao_fork/vm/instructions/storage.py +87 -0
- ethereum/forks/dao_fork/vm/instructions/system.py +457 -0
- ethereum/forks/dao_fork/vm/interpreter.py +274 -0
- ethereum/forks/dao_fork/vm/memory.py +84 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/__init__.py +27 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/mapping.py +33 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/dao_fork/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/dao_fork/vm/runtime.py +69 -0
- ethereum/forks/dao_fork/vm/stack.py +58 -0
- ethereum/forks/frontier/__init__.py +7 -0
- ethereum/forks/frontier/blocks.py +265 -0
- ethereum/forks/frontier/bloom.py +87 -0
- ethereum/forks/frontier/fork.py +789 -0
- ethereum/forks/frontier/fork_types.py +62 -0
- ethereum/forks/frontier/state.py +515 -0
- ethereum/forks/frontier/transactions.py +216 -0
- ethereum/forks/frontier/trie.py +499 -0
- ethereum/forks/frontier/utils/__init__.py +3 -0
- ethereum/forks/frontier/utils/address.py +62 -0
- ethereum/forks/frontier/utils/hexadecimal.py +55 -0
- ethereum/forks/frontier/utils/message.py +77 -0
- ethereum/forks/frontier/vm/__init__.py +162 -0
- ethereum/forks/frontier/vm/exceptions.py +86 -0
- ethereum/forks/frontier/vm/gas.py +212 -0
- ethereum/forks/frontier/vm/instructions/__init__.py +327 -0
- ethereum/forks/frontier/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/frontier/vm/instructions/bitwise.py +153 -0
- ethereum/forks/frontier/vm/instructions/block.py +189 -0
- ethereum/forks/frontier/vm/instructions/comparison.py +177 -0
- ethereum/forks/frontier/vm/instructions/control_flow.py +171 -0
- ethereum/forks/frontier/vm/instructions/environment.py +376 -0
- ethereum/forks/frontier/vm/instructions/keccak.py +63 -0
- ethereum/forks/frontier/vm/instructions/log.py +85 -0
- ethereum/forks/frontier/vm/instructions/memory.py +141 -0
- ethereum/forks/frontier/vm/instructions/stack.py +204 -0
- ethereum/forks/frontier/vm/instructions/storage.py +87 -0
- ethereum/forks/frontier/vm/instructions/system.py +403 -0
- ethereum/forks/frontier/vm/interpreter.py +272 -0
- ethereum/forks/frontier/vm/memory.py +84 -0
- ethereum/forks/frontier/vm/precompiled_contracts/__init__.py +27 -0
- ethereum/forks/frontier/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/frontier/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/frontier/vm/precompiled_contracts/mapping.py +33 -0
- ethereum/forks/frontier/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/frontier/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/frontier/vm/runtime.py +69 -0
- ethereum/forks/frontier/vm/stack.py +58 -0
- ethereum/forks/gray_glacier/__init__.py +34 -0
- ethereum/forks/gray_glacier/blocks.py +326 -0
- ethereum/forks/gray_glacier/bloom.py +87 -0
- ethereum/forks/gray_glacier/exceptions.py +58 -0
- ethereum/forks/gray_glacier/fork.py +954 -0
- ethereum/forks/gray_glacier/fork_types.py +62 -0
- ethereum/forks/gray_glacier/state.py +644 -0
- ethereum/forks/gray_glacier/transactions.py +573 -0
- ethereum/forks/gray_glacier/trie.py +498 -0
- ethereum/forks/gray_glacier/utils/__init__.py +3 -0
- ethereum/forks/gray_glacier/utils/address.py +94 -0
- ethereum/forks/gray_glacier/utils/hexadecimal.py +55 -0
- ethereum/forks/gray_glacier/utils/message.py +90 -0
- ethereum/forks/gray_glacier/vm/__init__.py +195 -0
- ethereum/forks/gray_glacier/vm/exceptions.py +131 -0
- ethereum/forks/gray_glacier/vm/gas.py +245 -0
- ethereum/forks/gray_glacier/vm/instructions/__init__.py +353 -0
- ethereum/forks/gray_glacier/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/gray_glacier/vm/instructions/bitwise.py +245 -0
- ethereum/forks/gray_glacier/vm/instructions/block.py +212 -0
- ethereum/forks/gray_glacier/vm/instructions/comparison.py +177 -0
- ethereum/forks/gray_glacier/vm/instructions/control_flow.py +171 -0
- ethereum/forks/gray_glacier/vm/instructions/environment.py +544 -0
- ethereum/forks/gray_glacier/vm/instructions/keccak.py +63 -0
- ethereum/forks/gray_glacier/vm/instructions/log.py +88 -0
- ethereum/forks/gray_glacier/vm/instructions/memory.py +141 -0
- ethereum/forks/gray_glacier/vm/instructions/stack.py +204 -0
- ethereum/forks/gray_glacier/vm/instructions/storage.py +126 -0
- ethereum/forks/gray_glacier/vm/instructions/system.py +694 -0
- ethereum/forks/gray_glacier/vm/interpreter.py +312 -0
- ethereum/forks/gray_glacier/vm/memory.py +84 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/gray_glacier/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/gray_glacier/vm/runtime.py +69 -0
- ethereum/forks/gray_glacier/vm/stack.py +58 -0
- ethereum/forks/homestead/__init__.py +34 -0
- ethereum/forks/homestead/blocks.py +265 -0
- ethereum/forks/homestead/bloom.py +87 -0
- ethereum/forks/homestead/fork.py +798 -0
- ethereum/forks/homestead/fork_types.py +62 -0
- ethereum/forks/homestead/state.py +515 -0
- ethereum/forks/homestead/transactions.py +227 -0
- ethereum/forks/homestead/trie.py +498 -0
- ethereum/forks/homestead/utils/__init__.py +3 -0
- ethereum/forks/homestead/utils/address.py +62 -0
- ethereum/forks/homestead/utils/hexadecimal.py +55 -0
- ethereum/forks/homestead/utils/message.py +78 -0
- ethereum/forks/homestead/vm/__init__.py +163 -0
- ethereum/forks/homestead/vm/exceptions.py +86 -0
- ethereum/forks/homestead/vm/gas.py +212 -0
- ethereum/forks/homestead/vm/instructions/__init__.py +329 -0
- ethereum/forks/homestead/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/homestead/vm/instructions/bitwise.py +153 -0
- ethereum/forks/homestead/vm/instructions/block.py +189 -0
- ethereum/forks/homestead/vm/instructions/comparison.py +177 -0
- ethereum/forks/homestead/vm/instructions/control_flow.py +171 -0
- ethereum/forks/homestead/vm/instructions/environment.py +376 -0
- ethereum/forks/homestead/vm/instructions/keccak.py +63 -0
- ethereum/forks/homestead/vm/instructions/log.py +85 -0
- ethereum/forks/homestead/vm/instructions/memory.py +141 -0
- ethereum/forks/homestead/vm/instructions/stack.py +204 -0
- ethereum/forks/homestead/vm/instructions/storage.py +87 -0
- ethereum/forks/homestead/vm/instructions/system.py +457 -0
- ethereum/forks/homestead/vm/interpreter.py +274 -0
- ethereum/forks/homestead/vm/memory.py +84 -0
- ethereum/forks/homestead/vm/precompiled_contracts/__init__.py +27 -0
- ethereum/forks/homestead/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/homestead/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/homestead/vm/precompiled_contracts/mapping.py +33 -0
- ethereum/forks/homestead/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/homestead/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/homestead/vm/runtime.py +69 -0
- ethereum/forks/homestead/vm/stack.py +58 -0
- ethereum/forks/istanbul/__init__.py +53 -0
- ethereum/forks/istanbul/blocks.py +265 -0
- ethereum/forks/istanbul/bloom.py +87 -0
- ethereum/forks/istanbul/fork.py +816 -0
- ethereum/forks/istanbul/fork_types.py +62 -0
- ethereum/forks/istanbul/state.py +644 -0
- ethereum/forks/istanbul/transactions.py +261 -0
- ethereum/forks/istanbul/trie.py +498 -0
- ethereum/forks/istanbul/utils/__init__.py +3 -0
- ethereum/forks/istanbul/utils/address.py +94 -0
- ethereum/forks/istanbul/utils/hexadecimal.py +55 -0
- ethereum/forks/istanbul/utils/message.py +80 -0
- ethereum/forks/istanbul/vm/__init__.py +186 -0
- ethereum/forks/istanbul/vm/exceptions.py +123 -0
- ethereum/forks/istanbul/vm/gas.py +248 -0
- ethereum/forks/istanbul/vm/instructions/__init__.py +351 -0
- ethereum/forks/istanbul/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/istanbul/vm/instructions/bitwise.py +245 -0
- ethereum/forks/istanbul/vm/instructions/block.py +212 -0
- ethereum/forks/istanbul/vm/instructions/comparison.py +177 -0
- ethereum/forks/istanbul/vm/instructions/control_flow.py +171 -0
- ethereum/forks/istanbul/vm/instructions/environment.py +499 -0
- ethereum/forks/istanbul/vm/instructions/keccak.py +63 -0
- ethereum/forks/istanbul/vm/instructions/log.py +88 -0
- ethereum/forks/istanbul/vm/instructions/memory.py +141 -0
- ethereum/forks/istanbul/vm/instructions/stack.py +204 -0
- ethereum/forks/istanbul/vm/instructions/storage.py +113 -0
- ethereum/forks/istanbul/vm/instructions/system.py +673 -0
- ethereum/forks/istanbul/vm/interpreter.py +306 -0
- ethereum/forks/istanbul/vm/memory.py +84 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/modexp.py +168 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/istanbul/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/istanbul/vm/runtime.py +69 -0
- ethereum/forks/istanbul/vm/stack.py +58 -0
- ethereum/forks/london/__init__.py +48 -0
- ethereum/forks/london/blocks.py +326 -0
- ethereum/forks/london/bloom.py +87 -0
- ethereum/forks/london/exceptions.py +58 -0
- ethereum/forks/london/fork.py +960 -0
- ethereum/forks/london/fork_types.py +62 -0
- ethereum/forks/london/state.py +644 -0
- ethereum/forks/london/transactions.py +573 -0
- ethereum/forks/london/trie.py +498 -0
- ethereum/forks/london/utils/__init__.py +3 -0
- ethereum/forks/london/utils/address.py +94 -0
- ethereum/forks/london/utils/hexadecimal.py +55 -0
- ethereum/forks/london/utils/message.py +90 -0
- ethereum/forks/london/vm/__init__.py +195 -0
- ethereum/forks/london/vm/exceptions.py +131 -0
- ethereum/forks/london/vm/gas.py +245 -0
- ethereum/forks/london/vm/instructions/__init__.py +353 -0
- ethereum/forks/london/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/london/vm/instructions/bitwise.py +245 -0
- ethereum/forks/london/vm/instructions/block.py +212 -0
- ethereum/forks/london/vm/instructions/comparison.py +177 -0
- ethereum/forks/london/vm/instructions/control_flow.py +171 -0
- ethereum/forks/london/vm/instructions/environment.py +544 -0
- ethereum/forks/london/vm/instructions/keccak.py +63 -0
- ethereum/forks/london/vm/instructions/log.py +88 -0
- ethereum/forks/london/vm/instructions/memory.py +141 -0
- ethereum/forks/london/vm/instructions/stack.py +204 -0
- ethereum/forks/london/vm/instructions/storage.py +126 -0
- ethereum/forks/london/vm/instructions/system.py +694 -0
- ethereum/forks/london/vm/interpreter.py +312 -0
- ethereum/forks/london/vm/memory.py +84 -0
- ethereum/forks/london/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/london/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/london/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/london/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/london/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/london/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/london/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/london/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/london/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/london/vm/runtime.py +69 -0
- ethereum/forks/london/vm/stack.py +58 -0
- ethereum/forks/muir_glacier/__init__.py +38 -0
- ethereum/forks/muir_glacier/blocks.py +265 -0
- ethereum/forks/muir_glacier/bloom.py +87 -0
- ethereum/forks/muir_glacier/fork.py +818 -0
- ethereum/forks/muir_glacier/fork_types.py +62 -0
- ethereum/forks/muir_glacier/state.py +644 -0
- ethereum/forks/muir_glacier/transactions.py +261 -0
- ethereum/forks/muir_glacier/trie.py +498 -0
- ethereum/forks/muir_glacier/utils/__init__.py +3 -0
- ethereum/forks/muir_glacier/utils/address.py +94 -0
- ethereum/forks/muir_glacier/utils/hexadecimal.py +55 -0
- ethereum/forks/muir_glacier/utils/message.py +80 -0
- ethereum/forks/muir_glacier/vm/__init__.py +186 -0
- ethereum/forks/muir_glacier/vm/exceptions.py +123 -0
- ethereum/forks/muir_glacier/vm/gas.py +248 -0
- ethereum/forks/muir_glacier/vm/instructions/__init__.py +351 -0
- ethereum/forks/muir_glacier/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/muir_glacier/vm/instructions/bitwise.py +245 -0
- ethereum/forks/muir_glacier/vm/instructions/block.py +212 -0
- ethereum/forks/muir_glacier/vm/instructions/comparison.py +177 -0
- ethereum/forks/muir_glacier/vm/instructions/control_flow.py +171 -0
- ethereum/forks/muir_glacier/vm/instructions/environment.py +499 -0
- ethereum/forks/muir_glacier/vm/instructions/keccak.py +63 -0
- ethereum/forks/muir_glacier/vm/instructions/log.py +88 -0
- ethereum/forks/muir_glacier/vm/instructions/memory.py +141 -0
- ethereum/forks/muir_glacier/vm/instructions/stack.py +204 -0
- ethereum/forks/muir_glacier/vm/instructions/storage.py +113 -0
- ethereum/forks/muir_glacier/vm/instructions/system.py +673 -0
- ethereum/forks/muir_glacier/vm/interpreter.py +306 -0
- ethereum/forks/muir_glacier/vm/memory.py +84 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/modexp.py +168 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/muir_glacier/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/muir_glacier/vm/runtime.py +69 -0
- ethereum/forks/muir_glacier/vm/stack.py +58 -0
- ethereum/forks/osaka/__init__.py +55 -0
- ethereum/forks/osaka/blocks.py +405 -0
- ethereum/forks/osaka/bloom.py +87 -0
- ethereum/forks/osaka/exceptions.py +131 -0
- ethereum/forks/osaka/fork.py +1059 -0
- ethereum/forks/osaka/fork_types.py +78 -0
- ethereum/forks/osaka/requests.py +191 -0
- ethereum/forks/osaka/state.py +667 -0
- ethereum/forks/osaka/transactions.py +887 -0
- ethereum/forks/osaka/trie.py +508 -0
- ethereum/forks/osaka/utils/__init__.py +3 -0
- ethereum/forks/osaka/utils/address.py +94 -0
- ethereum/forks/osaka/utils/hexadecimal.py +55 -0
- ethereum/forks/osaka/utils/message.py +90 -0
- ethereum/forks/osaka/vm/__init__.py +191 -0
- ethereum/forks/osaka/vm/eoa_delegation.py +211 -0
- ethereum/forks/osaka/vm/exceptions.py +139 -0
- ethereum/forks/osaka/vm/gas.py +396 -0
- ethereum/forks/osaka/vm/instructions/__init__.py +367 -0
- ethereum/forks/osaka/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/osaka/vm/instructions/bitwise.py +274 -0
- ethereum/forks/osaka/vm/instructions/block.py +261 -0
- ethereum/forks/osaka/vm/instructions/comparison.py +177 -0
- ethereum/forks/osaka/vm/instructions/control_flow.py +171 -0
- ethereum/forks/osaka/vm/instructions/environment.py +600 -0
- ethereum/forks/osaka/vm/instructions/keccak.py +63 -0
- ethereum/forks/osaka/vm/instructions/log.py +88 -0
- ethereum/forks/osaka/vm/instructions/memory.py +177 -0
- ethereum/forks/osaka/vm/instructions/stack.py +208 -0
- ethereum/forks/osaka/vm/instructions/storage.py +188 -0
- ethereum/forks/osaka/vm/instructions/system.py +751 -0
- ethereum/forks/osaka/vm/interpreter.py +324 -0
- ethereum/forks/osaka/vm/memory.py +83 -0
- ethereum/forks/osaka/vm/precompiled_contracts/__init__.py +55 -0
- ethereum/forks/osaka/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/osaka/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/__init__.py +622 -0
- ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g1.py +151 -0
- ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g2.py +153 -0
- ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py +69 -0
- ethereum/forks/osaka/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/osaka/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/osaka/vm/precompiled_contracts/mapping.py +77 -0
- ethereum/forks/osaka/vm/precompiled_contracts/modexp.py +175 -0
- ethereum/forks/osaka/vm/precompiled_contracts/p256verify.py +89 -0
- ethereum/forks/osaka/vm/precompiled_contracts/point_evaluation.py +72 -0
- ethereum/forks/osaka/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/osaka/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/osaka/vm/runtime.py +69 -0
- ethereum/forks/osaka/vm/stack.py +58 -0
- ethereum/forks/paris/__init__.py +43 -0
- ethereum/forks/paris/blocks.py +312 -0
- ethereum/forks/paris/bloom.py +87 -0
- ethereum/forks/paris/exceptions.py +58 -0
- ethereum/forks/paris/fork.py +651 -0
- ethereum/forks/paris/fork_types.py +62 -0
- ethereum/forks/paris/state.py +571 -0
- ethereum/forks/paris/transactions.py +573 -0
- ethereum/forks/paris/trie.py +498 -0
- ethereum/forks/paris/utils/__init__.py +3 -0
- ethereum/forks/paris/utils/address.py +94 -0
- ethereum/forks/paris/utils/hexadecimal.py +55 -0
- ethereum/forks/paris/utils/message.py +90 -0
- ethereum/forks/paris/vm/__init__.py +174 -0
- ethereum/forks/paris/vm/exceptions.py +131 -0
- ethereum/forks/paris/vm/gas.py +245 -0
- ethereum/forks/paris/vm/instructions/__init__.py +353 -0
- ethereum/forks/paris/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/paris/vm/instructions/bitwise.py +245 -0
- ethereum/forks/paris/vm/instructions/block.py +261 -0
- ethereum/forks/paris/vm/instructions/comparison.py +177 -0
- ethereum/forks/paris/vm/instructions/control_flow.py +171 -0
- ethereum/forks/paris/vm/instructions/environment.py +544 -0
- ethereum/forks/paris/vm/instructions/keccak.py +63 -0
- ethereum/forks/paris/vm/instructions/log.py +88 -0
- ethereum/forks/paris/vm/instructions/memory.py +141 -0
- ethereum/forks/paris/vm/instructions/stack.py +204 -0
- ethereum/forks/paris/vm/instructions/storage.py +126 -0
- ethereum/forks/paris/vm/instructions/system.py +689 -0
- ethereum/forks/paris/vm/interpreter.py +298 -0
- ethereum/forks/paris/vm/memory.py +84 -0
- ethereum/forks/paris/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/paris/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/paris/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/paris/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/paris/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/paris/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/paris/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/paris/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/paris/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/paris/vm/runtime.py +69 -0
- ethereum/forks/paris/vm/stack.py +58 -0
- ethereum/forks/prague/__init__.py +54 -0
- ethereum/forks/prague/blocks.py +405 -0
- ethereum/forks/prague/bloom.py +87 -0
- ethereum/forks/prague/exceptions.py +115 -0
- ethereum/forks/prague/fork.py +1044 -0
- ethereum/forks/prague/fork_types.py +78 -0
- ethereum/forks/prague/requests.py +191 -0
- ethereum/forks/prague/state.py +667 -0
- ethereum/forks/prague/transactions.py +879 -0
- ethereum/forks/prague/trie.py +508 -0
- ethereum/forks/prague/utils/__init__.py +3 -0
- ethereum/forks/prague/utils/address.py +94 -0
- ethereum/forks/prague/utils/hexadecimal.py +55 -0
- ethereum/forks/prague/utils/message.py +90 -0
- ethereum/forks/prague/vm/__init__.py +191 -0
- ethereum/forks/prague/vm/eoa_delegation.py +211 -0
- ethereum/forks/prague/vm/exceptions.py +139 -0
- ethereum/forks/prague/vm/gas.py +379 -0
- ethereum/forks/prague/vm/instructions/__init__.py +365 -0
- ethereum/forks/prague/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/prague/vm/instructions/bitwise.py +245 -0
- ethereum/forks/prague/vm/instructions/block.py +261 -0
- ethereum/forks/prague/vm/instructions/comparison.py +177 -0
- ethereum/forks/prague/vm/instructions/control_flow.py +171 -0
- ethereum/forks/prague/vm/instructions/environment.py +600 -0
- ethereum/forks/prague/vm/instructions/keccak.py +63 -0
- ethereum/forks/prague/vm/instructions/log.py +88 -0
- ethereum/forks/prague/vm/instructions/memory.py +177 -0
- ethereum/forks/prague/vm/instructions/stack.py +208 -0
- ethereum/forks/prague/vm/instructions/storage.py +188 -0
- ethereum/forks/prague/vm/instructions/system.py +751 -0
- ethereum/forks/prague/vm/interpreter.py +324 -0
- ethereum/forks/prague/vm/memory.py +83 -0
- ethereum/forks/prague/vm/precompiled_contracts/__init__.py +53 -0
- ethereum/forks/prague/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/prague/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/prague/vm/precompiled_contracts/bls12_381/__init__.py +622 -0
- ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g1.py +151 -0
- ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g2.py +153 -0
- ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py +69 -0
- ethereum/forks/prague/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/prague/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/prague/vm/precompiled_contracts/mapping.py +74 -0
- ethereum/forks/prague/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/prague/vm/precompiled_contracts/point_evaluation.py +72 -0
- ethereum/forks/prague/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/prague/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/prague/vm/runtime.py +69 -0
- ethereum/forks/prague/vm/stack.py +58 -0
- ethereum/forks/shanghai/__init__.py +47 -0
- ethereum/forks/shanghai/blocks.py +360 -0
- ethereum/forks/shanghai/bloom.py +87 -0
- ethereum/forks/shanghai/exceptions.py +64 -0
- ethereum/forks/shanghai/fork.py +686 -0
- ethereum/forks/shanghai/fork_types.py +62 -0
- ethereum/forks/shanghai/state.py +571 -0
- ethereum/forks/shanghai/transactions.py +585 -0
- ethereum/forks/shanghai/trie.py +508 -0
- ethereum/forks/shanghai/utils/__init__.py +3 -0
- ethereum/forks/shanghai/utils/address.py +94 -0
- ethereum/forks/shanghai/utils/hexadecimal.py +55 -0
- ethereum/forks/shanghai/utils/message.py +90 -0
- ethereum/forks/shanghai/vm/__init__.py +179 -0
- ethereum/forks/shanghai/vm/exceptions.py +131 -0
- ethereum/forks/shanghai/vm/gas.py +266 -0
- ethereum/forks/shanghai/vm/instructions/__init__.py +355 -0
- ethereum/forks/shanghai/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/shanghai/vm/instructions/bitwise.py +245 -0
- ethereum/forks/shanghai/vm/instructions/block.py +261 -0
- ethereum/forks/shanghai/vm/instructions/comparison.py +177 -0
- ethereum/forks/shanghai/vm/instructions/control_flow.py +171 -0
- ethereum/forks/shanghai/vm/instructions/environment.py +544 -0
- ethereum/forks/shanghai/vm/instructions/keccak.py +63 -0
- ethereum/forks/shanghai/vm/instructions/log.py +88 -0
- ethereum/forks/shanghai/vm/instructions/memory.py +141 -0
- ethereum/forks/shanghai/vm/instructions/stack.py +208 -0
- ethereum/forks/shanghai/vm/instructions/storage.py +126 -0
- ethereum/forks/shanghai/vm/instructions/system.py +709 -0
- ethereum/forks/shanghai/vm/interpreter.py +299 -0
- ethereum/forks/shanghai/vm/memory.py +84 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/__init__.py +37 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/alt_bn128.py +230 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/blake2f.py +42 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/mapping.py +46 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/modexp.py +166 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/shanghai/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/shanghai/vm/runtime.py +69 -0
- ethereum/forks/shanghai/vm/stack.py +58 -0
- ethereum/forks/spurious_dragon/__init__.py +38 -0
- ethereum/forks/spurious_dragon/blocks.py +265 -0
- ethereum/forks/spurious_dragon/bloom.py +87 -0
- ethereum/forks/spurious_dragon/fork.py +807 -0
- ethereum/forks/spurious_dragon/fork_types.py +62 -0
- ethereum/forks/spurious_dragon/state.py +583 -0
- ethereum/forks/spurious_dragon/transactions.py +261 -0
- ethereum/forks/spurious_dragon/trie.py +498 -0
- ethereum/forks/spurious_dragon/utils/__init__.py +3 -0
- ethereum/forks/spurious_dragon/utils/address.py +63 -0
- ethereum/forks/spurious_dragon/utils/hexadecimal.py +55 -0
- ethereum/forks/spurious_dragon/utils/message.py +79 -0
- ethereum/forks/spurious_dragon/vm/__init__.py +184 -0
- ethereum/forks/spurious_dragon/vm/exceptions.py +86 -0
- ethereum/forks/spurious_dragon/vm/gas.py +244 -0
- ethereum/forks/spurious_dragon/vm/instructions/__init__.py +329 -0
- ethereum/forks/spurious_dragon/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/spurious_dragon/vm/instructions/bitwise.py +153 -0
- ethereum/forks/spurious_dragon/vm/instructions/block.py +189 -0
- ethereum/forks/spurious_dragon/vm/instructions/comparison.py +177 -0
- ethereum/forks/spurious_dragon/vm/instructions/control_flow.py +171 -0
- ethereum/forks/spurious_dragon/vm/instructions/environment.py +376 -0
- ethereum/forks/spurious_dragon/vm/instructions/keccak.py +63 -0
- ethereum/forks/spurious_dragon/vm/instructions/log.py +85 -0
- ethereum/forks/spurious_dragon/vm/instructions/memory.py +141 -0
- ethereum/forks/spurious_dragon/vm/instructions/stack.py +204 -0
- ethereum/forks/spurious_dragon/vm/instructions/storage.py +87 -0
- ethereum/forks/spurious_dragon/vm/instructions/system.py +491 -0
- ethereum/forks/spurious_dragon/vm/interpreter.py +292 -0
- ethereum/forks/spurious_dragon/vm/memory.py +84 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/__init__.py +27 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/mapping.py +33 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/spurious_dragon/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/spurious_dragon/vm/runtime.py +69 -0
- ethereum/forks/spurious_dragon/vm/stack.py +58 -0
- ethereum/forks/tangerine_whistle/__init__.py +32 -0
- ethereum/forks/tangerine_whistle/blocks.py +265 -0
- ethereum/forks/tangerine_whistle/bloom.py +87 -0
- ethereum/forks/tangerine_whistle/fork.py +798 -0
- ethereum/forks/tangerine_whistle/fork_types.py +62 -0
- ethereum/forks/tangerine_whistle/state.py +515 -0
- ethereum/forks/tangerine_whistle/transactions.py +227 -0
- ethereum/forks/tangerine_whistle/trie.py +498 -0
- ethereum/forks/tangerine_whistle/utils/__init__.py +3 -0
- ethereum/forks/tangerine_whistle/utils/address.py +63 -0
- ethereum/forks/tangerine_whistle/utils/hexadecimal.py +55 -0
- ethereum/forks/tangerine_whistle/utils/message.py +79 -0
- ethereum/forks/tangerine_whistle/vm/__init__.py +163 -0
- ethereum/forks/tangerine_whistle/vm/exceptions.py +86 -0
- ethereum/forks/tangerine_whistle/vm/gas.py +244 -0
- ethereum/forks/tangerine_whistle/vm/instructions/__init__.py +329 -0
- ethereum/forks/tangerine_whistle/vm/instructions/arithmetic.py +373 -0
- ethereum/forks/tangerine_whistle/vm/instructions/bitwise.py +153 -0
- ethereum/forks/tangerine_whistle/vm/instructions/block.py +189 -0
- ethereum/forks/tangerine_whistle/vm/instructions/comparison.py +177 -0
- ethereum/forks/tangerine_whistle/vm/instructions/control_flow.py +171 -0
- ethereum/forks/tangerine_whistle/vm/instructions/environment.py +376 -0
- ethereum/forks/tangerine_whistle/vm/instructions/keccak.py +63 -0
- ethereum/forks/tangerine_whistle/vm/instructions/log.py +85 -0
- ethereum/forks/tangerine_whistle/vm/instructions/memory.py +141 -0
- ethereum/forks/tangerine_whistle/vm/instructions/stack.py +204 -0
- ethereum/forks/tangerine_whistle/vm/instructions/storage.py +87 -0
- ethereum/forks/tangerine_whistle/vm/instructions/system.py +480 -0
- ethereum/forks/tangerine_whistle/vm/interpreter.py +274 -0
- ethereum/forks/tangerine_whistle/vm/memory.py +84 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/__init__.py +27 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ecrecover.py +64 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/identity.py +39 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/mapping.py +33 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ripemd160.py +44 -0
- ethereum/forks/tangerine_whistle/vm/precompiled_contracts/sha256.py +41 -0
- ethereum/forks/tangerine_whistle/vm/runtime.py +69 -0
- ethereum/forks/tangerine_whistle/vm/stack.py +58 -0
- ethereum/genesis.py +279 -0
- ethereum/py.typed +0 -0
- ethereum/trace.py +252 -0
- ethereum/utils/__init__.py +18 -0
- ethereum/utils/byte.py +59 -0
- ethereum/utils/hexadecimal.py +221 -0
- ethereum/utils/numeric.py +208 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/METADATA +113 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/RECORD +816 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/WHEEL +5 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/entry_points.txt +17 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/licenses/LICENSE.md +35 -0
- ethereum_execution-2.18.0rc6.dev2.dist-info/top_level.txt +3 -0
- ethereum_optimized/__init__.py +78 -0
- ethereum_optimized/fork.py +72 -0
- ethereum_optimized/state_db.py +444 -0
- ethereum_optimized/utils.py +26 -0
- ethereum_spec_tools/__init__.py +6 -0
- ethereum_spec_tools/docc.py +1135 -0
- ethereum_spec_tools/evm_tools/__init__.py +119 -0
- ethereum_spec_tools/evm_tools/__main__.py +7 -0
- ethereum_spec_tools/evm_tools/b11r/__init__.py +143 -0
- ethereum_spec_tools/evm_tools/b11r/b11r_types.py +173 -0
- ethereum_spec_tools/evm_tools/daemon.py +202 -0
- ethereum_spec_tools/evm_tools/loaders/__init__.py +3 -0
- ethereum_spec_tools/evm_tools/loaders/fixture_loader.py +190 -0
- ethereum_spec_tools/evm_tools/loaders/fork_loader.py +320 -0
- ethereum_spec_tools/evm_tools/loaders/transaction_loader.py +208 -0
- ethereum_spec_tools/evm_tools/statetest/__init__.py +291 -0
- ethereum_spec_tools/evm_tools/t8n/__init__.py +402 -0
- ethereum_spec_tools/evm_tools/t8n/env.py +320 -0
- ethereum_spec_tools/evm_tools/t8n/evm_trace/__init__.py +5 -0
- ethereum_spec_tools/evm_tools/t8n/evm_trace/count.py +47 -0
- ethereum_spec_tools/evm_tools/t8n/evm_trace/eip3155.py +333 -0
- ethereum_spec_tools/evm_tools/t8n/evm_trace/group.py +39 -0
- ethereum_spec_tools/evm_tools/t8n/evm_trace/protocols.py +54 -0
- ethereum_spec_tools/evm_tools/t8n/t8n_types.py +393 -0
- ethereum_spec_tools/evm_tools/utils.py +187 -0
- ethereum_spec_tools/forks.py +302 -0
- ethereum_spec_tools/lint/__init__.py +195 -0
- ethereum_spec_tools/lint/__main__.py +11 -0
- ethereum_spec_tools/lint/lints/glacier_forks_hygiene.py +273 -0
- ethereum_spec_tools/lint/lints/import_hygiene.py +145 -0
- ethereum_spec_tools/lint/lints/patch_hygiene.py +161 -0
- ethereum_spec_tools/new_fork/__init__.py +4 -0
- ethereum_spec_tools/new_fork/builder.py +430 -0
- ethereum_spec_tools/new_fork/cli.py +216 -0
- ethereum_spec_tools/new_fork/codemod/__init__.py +3 -0
- ethereum_spec_tools/new_fork/codemod/comment.py +79 -0
- ethereum_spec_tools/new_fork/codemod/constant.py +141 -0
- ethereum_spec_tools/new_fork/codemod/string.py +79 -0
- ethereum_spec_tools/patch_tool.py +78 -0
- ethereum_spec_tools/py.typed +0 -0
- ethereum_spec_tools/sync.py +1016 -0
|
@@ -0,0 +1,816 @@
|
|
|
1
|
+
ethereum/__init__.py,sha256=SM_uPDNpk86iIpVKdaUVFDiW8w7Wlu8g6aCHpjJtsQE,1017
|
|
2
|
+
ethereum/ethash.py,sha256=D1OTUqgQSXK_PxIc9-6lJiU3wpqHoFVxv8hkIAell3g,14533
|
|
3
|
+
ethereum/exceptions.py,sha256=8OiDgOJLHJj3zHkIzqT2DHIxvPirlQJQhvYusTcE-cI,1620
|
|
4
|
+
ethereum/fork_criteria.py,sha256=0SVPi0lZJwDXK-RYFPwg7jr3HmIdQfIuG32CK_X4264,6384
|
|
5
|
+
ethereum/genesis.py,sha256=5pIO9lS-fX74ImqmMp5hgq3m8DIsghxNPonWqIAiF3M,8992
|
|
6
|
+
ethereum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
ethereum/trace.py,sha256=AofdKD40dLkTguV29vOdPoafR__D_XW3Sttzp7TmdgI,5675
|
|
8
|
+
ethereum/assets/cache_sizes_2048_epochs.json,sha256=Gju9ptZzmikcSoJ7pIEzNk20BD6cnuVxGdLLIoUy3i0,22225
|
|
9
|
+
ethereum/assets/dataset_sizes_2048_epochs.json,sha256=5Y1Vj1qim0wYZqHAp3EgXtdq2cW25c7lvzMrq83qRzs,25974
|
|
10
|
+
ethereum/assets/mainnet.json,sha256=SLtzgG9O2PDk-GnLC8e6Lh5XJM6wjJ7AeRcN_WMELWU,1005416
|
|
11
|
+
ethereum/assets/blocks/block_1.json,sha256=5bQC8Eh-F3eOlZecK_-3jCznFNsZx6tcUIbPCCsWUWM,1552
|
|
12
|
+
ethereum/assets/blocks/block_1234567.json,sha256=HkkAl4_ld_H2Bqlvm-oroUyK2yjbFtpKCAa5MuHx3qw,1567
|
|
13
|
+
ethereum/assets/blocks/block_12964999.json,sha256=kjJ1z0f_dN7pBA89QiFL_IrASvKEGMkKM_Duc4bJ_b8,252740
|
|
14
|
+
ethereum/crypto/__init__.py,sha256=Kkw_72NYawjHEhvfw4s02s_fOL1t-EpsyBuAfyqb20Y,51
|
|
15
|
+
ethereum/crypto/blake2.py,sha256=TpIvB-hliSE-0TGuSwZhy8ADblhHHlfkV4dUlRfEz8s,7645
|
|
16
|
+
ethereum/crypto/elliptic_curve.py,sha256=IWZzynF7a2_LxNEQCe1-USbtn-ZQIYNJYLaBR_ZgSAs,4323
|
|
17
|
+
ethereum/crypto/hash.py,sha256=qRBE7DFHdULf7ql8lIBFYUYzKsZMwKm1FQJk4Zu2RAs,1075
|
|
18
|
+
ethereum/crypto/kzg.py,sha256=d0XncitS6ivE9S049julEQlaCdGjEcO_xyL_ehzdvC0,4885
|
|
19
|
+
ethereum/forks/arrow_glacier/__init__.py,sha256=i_GYgBUtYObfGF6cZl9PHzqki7c418M4odmwydOUNhM,1056
|
|
20
|
+
ethereum/forks/arrow_glacier/blocks.py,sha256=e8H-u9ZhFdZuX3h_7SNdm3lTJNwaj90dya0L4omvfns,10492
|
|
21
|
+
ethereum/forks/arrow_glacier/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
22
|
+
ethereum/forks/arrow_glacier/exceptions.py,sha256=VuRriu1tzhV9PN9ZJFjBY4yeEAN1uaseHvVwWd-Mbf0,1537
|
|
23
|
+
ethereum/forks/arrow_glacier/fork.py,sha256=U2pc28Le2N-V4bKfW_ZHKK0eujwf_9rPtXbezuGjS40,30565
|
|
24
|
+
ethereum/forks/arrow_glacier/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
25
|
+
ethereum/forks/arrow_glacier/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
26
|
+
ethereum/forks/arrow_glacier/transactions.py,sha256=-VlSw527PqRFv23kppPc9vUnfA4T1ZrOjT20XxWGqRc,16027
|
|
27
|
+
ethereum/forks/arrow_glacier/trie.py,sha256=892j8n84_I7SQ6GM_ZOGHNPpbq94hc0tGkL4Bjxjjqc,12083
|
|
28
|
+
ethereum/forks/arrow_glacier/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
29
|
+
ethereum/forks/arrow_glacier/utils/address.py,sha256=b0WOf63uQUO570Sx8TAiKjiVW-bt4Sab0VB3oozoOXc,2413
|
|
30
|
+
ethereum/forks/arrow_glacier/utils/hexadecimal.py,sha256=J--BFlrGyLVZl4fMgEw9cYoGfZ6Apo8DFLQ39UMM9cA,1161
|
|
31
|
+
ethereum/forks/arrow_glacier/utils/message.py,sha256=DgrmAMJXsoqQ2ARqpFUVELXnXQiZRDru7Dv0Xwg-efI,2470
|
|
32
|
+
ethereum/forks/arrow_glacier/vm/__init__.py,sha256=st2MHS7pqb4kkxh4DW7nbZxRs4CMwSG8BgrTxIm0PcY,5624
|
|
33
|
+
ethereum/forks/arrow_glacier/vm/exceptions.py,sha256=qPEmV5elT5Dm1xGlaqPDhqAYC1TEGSRb2--Kx9Z_gcg,2510
|
|
34
|
+
ethereum/forks/arrow_glacier/vm/gas.py,sha256=zDNL8b7k9P9jvT-N5KKfur9nic_1quaWlAu0DW8RMC8,6243
|
|
35
|
+
ethereum/forks/arrow_glacier/vm/interpreter.py,sha256=fumI0i0juCSiZ2UadbDjqhC0qWtM4OOS99yPFWdVWrk,8722
|
|
36
|
+
ethereum/forks/arrow_glacier/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
37
|
+
ethereum/forks/arrow_glacier/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
38
|
+
ethereum/forks/arrow_glacier/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
39
|
+
ethereum/forks/arrow_glacier/vm/instructions/__init__.py,sha256=bMnz2fvsWC2DQXN5eoR62ZaWfHUAqYldWsdVQHrrdDY,10231
|
|
40
|
+
ethereum/forks/arrow_glacier/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
41
|
+
ethereum/forks/arrow_glacier/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
42
|
+
ethereum/forks/arrow_glacier/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
43
|
+
ethereum/forks/arrow_glacier/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
44
|
+
ethereum/forks/arrow_glacier/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
45
|
+
ethereum/forks/arrow_glacier/vm/instructions/environment.py,sha256=uxX9FGjmqqHATw-Pw5Mnt2TIN2E1UjXRAKCPfGNnuNQ,11226
|
|
46
|
+
ethereum/forks/arrow_glacier/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
47
|
+
ethereum/forks/arrow_glacier/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
48
|
+
ethereum/forks/arrow_glacier/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
49
|
+
ethereum/forks/arrow_glacier/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
50
|
+
ethereum/forks/arrow_glacier/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
51
|
+
ethereum/forks/arrow_glacier/vm/instructions/system.py,sha256=06Js5x1hN68IGmxZU9IFD4rGuvqgaHuzr5fMXhAlyVY,18178
|
|
52
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
53
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
54
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
55
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
56
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
57
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
58
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
59
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
60
|
+
ethereum/forks/arrow_glacier/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
61
|
+
ethereum/forks/berlin/__init__.py,sha256=ZccZYdKSDpvz_RCrh-UxOkLonmNfvBFL3sGsww-GlvA,1656
|
|
62
|
+
ethereum/forks/berlin/blocks.py,sha256=VnLF8pyrZvojA1VuJIuS6u5BodjpHbnmE0tMpO55LMc,9259
|
|
63
|
+
ethereum/forks/berlin/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
64
|
+
ethereum/forks/berlin/exceptions.py,sha256=3dBl4JP6sEym9y0mAnPS-MWtEsAy0NF7u8a6yWgZTmQ,571
|
|
65
|
+
ethereum/forks/berlin/fork.py,sha256=dH2ueOjJeNUzgs3jCbprNoarqqsaXx1mIg7F2EnprT4,26661
|
|
66
|
+
ethereum/forks/berlin/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
67
|
+
ethereum/forks/berlin/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
68
|
+
ethereum/forks/berlin/transactions.py,sha256=gpeOFwk5P6_e6S8nOBxBwJLiRZPL0kQo7OwenP0nd6E,13039
|
|
69
|
+
ethereum/forks/berlin/trie.py,sha256=t0CofrJPhTwVNeCzRtvScEtOwspLeVunmdV26uWMTZs,12097
|
|
70
|
+
ethereum/forks/berlin/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
71
|
+
ethereum/forks/berlin/utils/address.py,sha256=gtg9QB39ztt_FQEUsPEwLYVlSentrmfSKOoQ5GqBDTI,2399
|
|
72
|
+
ethereum/forks/berlin/utils/hexadecimal.py,sha256=2F9cU66yBHAn7avePHTPjXH6_Fnsa2Un2Jn6Rg37w2E,1154
|
|
73
|
+
ethereum/forks/berlin/utils/message.py,sha256=-ErkiXWxUviwx8HTREVLTF1FremaEF0H55H2JcM56GI,2456
|
|
74
|
+
ethereum/forks/berlin/vm/__init__.py,sha256=ZRZNPkP782B8orpIR7YnxAcxj44PW2OlFTr0qG7GbY0,5597
|
|
75
|
+
ethereum/forks/berlin/vm/exceptions.py,sha256=qR_QZpYD4gNYx82xg7UquLfI0RwlQ0ctqXFESelJFlQ,2380
|
|
76
|
+
ethereum/forks/berlin/vm/gas.py,sha256=loK668q9FevCE_w3MYRjvnzjF_CPZ2okEtL_up_5jz0,6273
|
|
77
|
+
ethereum/forks/berlin/vm/interpreter.py,sha256=jrbtBKvmENEMLqWglpS7M3dEuDksWi9-DOhaoRsYtXk,8549
|
|
78
|
+
ethereum/forks/berlin/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
79
|
+
ethereum/forks/berlin/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
80
|
+
ethereum/forks/berlin/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
81
|
+
ethereum/forks/berlin/vm/instructions/__init__.py,sha256=LZMKvXmqzMcsHiLd7DNq5HJCffVArfj9ndNcb2Cpsy0,10160
|
|
82
|
+
ethereum/forks/berlin/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
83
|
+
ethereum/forks/berlin/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
84
|
+
ethereum/forks/berlin/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
85
|
+
ethereum/forks/berlin/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
86
|
+
ethereum/forks/berlin/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
87
|
+
ethereum/forks/berlin/vm/instructions/environment.py,sha256=K0rL2ndRR82HWn4sEQyFsCTguPwVlCzjMySv0DdQxsA,10851
|
|
88
|
+
ethereum/forks/berlin/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
89
|
+
ethereum/forks/berlin/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
90
|
+
ethereum/forks/berlin/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
91
|
+
ethereum/forks/berlin/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
92
|
+
ethereum/forks/berlin/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
93
|
+
ethereum/forks/berlin/vm/instructions/system.py,sha256=hVW1INrhSOb2TNTMEt4pU2SHSAbZRltnGYESt3Psi-M,18582
|
|
94
|
+
ethereum/forks/berlin/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
95
|
+
ethereum/forks/berlin/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
96
|
+
ethereum/forks/berlin/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
97
|
+
ethereum/forks/berlin/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
98
|
+
ethereum/forks/berlin/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
99
|
+
ethereum/forks/berlin/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
100
|
+
ethereum/forks/berlin/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
101
|
+
ethereum/forks/berlin/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
102
|
+
ethereum/forks/berlin/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
103
|
+
ethereum/forks/byzantium/__init__.py,sha256=vyPF-eT5BbOTcc7EqZ7zi0pqokbVR4oyLEInAhGM5ME,2035
|
|
104
|
+
ethereum/forks/byzantium/blocks.py,sha256=4d3hmgbAyp8NPdgGsAK-5kuT7D1ME3RrbprPIXIYyeo,8183
|
|
105
|
+
ethereum/forks/byzantium/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
106
|
+
ethereum/forks/byzantium/fork.py,sha256=bE1mJdqBqKAaWLulS3wCx6UzPG-CaSsbJm-Dv2RnxHE,25878
|
|
107
|
+
ethereum/forks/byzantium/fork_types.py,sha256=7YCgRhm4wcPUIthbAHXALA6Kws8Suo23sfMIVb4o_sE,1198
|
|
108
|
+
ethereum/forks/byzantium/state.py,sha256=UN-D0VdQJ4EvkjG10Qa_z34dwpFOmWj7VaWVa5iWIp4,13218
|
|
109
|
+
ethereum/forks/byzantium/transactions.py,sha256=DSG1YQ2yOLcexQ3J5GEhAMiXUCzfiWqykQcMjlsw9Q4,7732
|
|
110
|
+
ethereum/forks/byzantium/trie.py,sha256=Hj2-6aPRbtajvWPdZp5ZieJGp2FDssb9SUus2bU6GvE,12052
|
|
111
|
+
ethereum/forks/byzantium/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
112
|
+
ethereum/forks/byzantium/utils/address.py,sha256=8QZsIgARPrqRWa0pk2bWXSR3BkklOUvj4uPQ0ijkHKk,1504
|
|
113
|
+
ethereum/forks/byzantium/utils/hexadecimal.py,sha256=n-tKTfIqyqUm_R0ukDziT9MsesblWroBtLP_6Hq4qz0,1157
|
|
114
|
+
ethereum/forks/byzantium/utils/message.py,sha256=yTLfdzPh9bNfYHmRa7ah2uvv5F0V9c1gNwAhSfB0DO8,2038
|
|
115
|
+
ethereum/forks/byzantium/vm/__init__.py,sha256=XtEjsfASxbONCmqtN27_8zpguojClBIKLcqMWnE9ZXA,5129
|
|
116
|
+
ethereum/forks/byzantium/vm/exceptions.py,sha256=qR_QZpYD4gNYx82xg7UquLfI0RwlQ0ctqXFESelJFlQ,2380
|
|
117
|
+
ethereum/forks/byzantium/vm/gas.py,sha256=qX2fRo8R5bOwx4oTSxh6fCi2jHN7H9cuBewOhE1J7o0,6217
|
|
118
|
+
ethereum/forks/byzantium/vm/interpreter.py,sha256=0g33Z7QEtpausmWrBMHDZ_YkXrk0zPJJy5-tXrKSd8Q,8137
|
|
119
|
+
ethereum/forks/byzantium/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
120
|
+
ethereum/forks/byzantium/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
121
|
+
ethereum/forks/byzantium/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
122
|
+
ethereum/forks/byzantium/vm/instructions/__init__.py,sha256=9mgU1dXBF6-male__B5E2rDyn7XkJIkWjOG7iLG1F00,9679
|
|
123
|
+
ethereum/forks/byzantium/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
124
|
+
ethereum/forks/byzantium/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
125
|
+
ethereum/forks/byzantium/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
126
|
+
ethereum/forks/byzantium/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
127
|
+
ethereum/forks/byzantium/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
128
|
+
ethereum/forks/byzantium/vm/instructions/environment.py,sha256=GduaeAeE-TV1bv-WAFmEq9YMmt8A3u54lHKxzOMQAQU,8877
|
|
129
|
+
ethereum/forks/byzantium/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
130
|
+
ethereum/forks/byzantium/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
131
|
+
ethereum/forks/byzantium/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
132
|
+
ethereum/forks/byzantium/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
133
|
+
ethereum/forks/byzantium/vm/instructions/storage.py,sha256=nvxWl8glp0r35lbpjyz7eGgPLu1KbQbbr8pB-nkhgVA,1880
|
|
134
|
+
ethereum/forks/byzantium/vm/instructions/system.py,sha256=oJtN6AptpFeFTO6LMfNDFVMCxa1qfDhspx29tpswRDk,15791
|
|
135
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/__init__.py,sha256=cUzNQj3qgvFbARupM0jjp5p1u2I5T3APx9kMuEadWKw,870
|
|
136
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/alt_bn128.py,sha256=bz8vgc5YPlv3rbQjr047bTNmV-WqpgIISjfp8W940sg,5360
|
|
137
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
138
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
139
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/mapping.py,sha256=YTZ0lIYLy-FqWFAbAUcaQ4LW_Ms7tDJxOtmfR7ib3ZI,1062
|
|
140
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/modexp.py,sha256=ngMU5qE5WdUFRGHpwvZbXP8irn9pxpyg3qaMcl08u5I,4388
|
|
141
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
142
|
+
ethereum/forks/byzantium/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
143
|
+
ethereum/forks/cancun/__init__.py,sha256=ferlQIIyobCdRw-1qi5rf1Gt02aBrl1Mcmo0LgBr2Lw,2119
|
|
144
|
+
ethereum/forks/cancun/blocks.py,sha256=ceOI_RjupAbNHl3qbUUf7lpeQAqWjL3NpnblHmYuGm0,12035
|
|
145
|
+
ethereum/forks/cancun/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
146
|
+
ethereum/forks/cancun/exceptions.py,sha256=OCZNyfqapoazMiBDJBY1_jFXjCFt4budLFxwd3ZWLqE,2730
|
|
147
|
+
ethereum/forks/cancun/fork.py,sha256=O7a4B175zUuN81bRedW1bZK5uxXR43aL8nYko6OkD24,27099
|
|
148
|
+
ethereum/forks/cancun/fork_types.py,sha256=TiZGOM5nwXMzwENo9wtbBMTQvXVUICFd_8mF2CA6Wxo,1222
|
|
149
|
+
ethereum/forks/cancun/state.py,sha256=2EYp0zSpV0-xyb4k4HjZnVaMu4Hh2KD28_9VHuPKd5M,15932
|
|
150
|
+
ethereum/forks/cancun/transactions.py,sha256=Bjcc_9a5zi8a3sYwyhFxOu0q3JoFUm9e_Jvj5hqJxSk,19803
|
|
151
|
+
ethereum/forks/cancun/trie.py,sha256=AcN2sc8YR59OHntWSuBW6rNVrb4_NegG5knDBuCKBF8,12193
|
|
152
|
+
ethereum/forks/cancun/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
153
|
+
ethereum/forks/cancun/utils/address.py,sha256=JIDpiIhK-qkTRbQuG7_3cBHash0RdwoGBMPxo-1nEcc,2399
|
|
154
|
+
ethereum/forks/cancun/utils/hexadecimal.py,sha256=U6PpJtaG-zaQyrsg8YlcFwHs5hG9SCSe2I-6DKhqdSw,1154
|
|
155
|
+
ethereum/forks/cancun/utils/message.py,sha256=KoidkZibbPU7Ai2G7y-PtfMSKL1tSxXu1B8UrBcIVKg,2456
|
|
156
|
+
ethereum/forks/cancun/vm/__init__.py,sha256=d1DSI62DjsBmOekUlQP0L5WQ7B-ng0PzVLbx1sp05w0,5005
|
|
157
|
+
ethereum/forks/cancun/vm/exceptions.py,sha256=4-SwskxbVwKmSFHSrGddHS_FJqo_GkObF9XC0ixWmgE,2646
|
|
158
|
+
ethereum/forks/cancun/vm/gas.py,sha256=nGhTfM9Sgtl-CczQSnSlZb9nOJfs79RXYeHkuC31Evc,9449
|
|
159
|
+
ethereum/forks/cancun/vm/interpreter.py,sha256=FKYsvLwf5Gf-wUplH9KERd_A1f-tu2qs40qLShD6fOg,8559
|
|
160
|
+
ethereum/forks/cancun/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
161
|
+
ethereum/forks/cancun/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
162
|
+
ethereum/forks/cancun/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
163
|
+
ethereum/forks/cancun/vm/instructions/__init__.py,sha256=aAO8fS38sDEBzFqkzy72hsU9pyRlGAI7jpfABmxbF3A,10630
|
|
164
|
+
ethereum/forks/cancun/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
165
|
+
ethereum/forks/cancun/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
166
|
+
ethereum/forks/cancun/vm/instructions/block.py,sha256=1DeSfCo1d-m5qh4_8dj4rTb-OrfBT1-4TdSaofQxqSI,6037
|
|
167
|
+
ethereum/forks/cancun/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
168
|
+
ethereum/forks/cancun/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
169
|
+
ethereum/forks/cancun/vm/instructions/environment.py,sha256=lC5VTSMbfHajCYh2SBuIP8iHWeXMKWXWM1JTuXaSvQM,12343
|
|
170
|
+
ethereum/forks/cancun/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
171
|
+
ethereum/forks/cancun/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
172
|
+
ethereum/forks/cancun/vm/instructions/memory.py,sha256=v7QZ9DdL3OQpWlCFVUOkdx2RyLgMT7sil5pH6gbwtOw,3685
|
|
173
|
+
ethereum/forks/cancun/vm/instructions/stack.py,sha256=fm35seLTtMJ5OGqb_NtCLVG7fuuRja_Cc7FqfEErwIw,5437
|
|
174
|
+
ethereum/forks/cancun/vm/instructions/storage.py,sha256=0O64vwEjYk1qVl74AnfhYinvxuAGJKCZzvc7lHKv6ts,4730
|
|
175
|
+
ethereum/forks/cancun/vm/instructions/system.py,sha256=A90MB52vKk_Z2r9fBCVUSAZG5nEyRqy2_UnJpGkQKf8,18293
|
|
176
|
+
ethereum/forks/cancun/vm/precompiled_contracts/__init__.py,sha256=_4-RqDvyYT1LWwqw1qXL6nxfCqt6Qvb1GhrdLO6Y3e4,993
|
|
177
|
+
ethereum/forks/cancun/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
178
|
+
ethereum/forks/cancun/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
179
|
+
ethereum/forks/cancun/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
180
|
+
ethereum/forks/cancun/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
181
|
+
ethereum/forks/cancun/vm/precompiled_contracts/mapping.py,sha256=_iZ4_4lC8dUyBWfdyDEaD7OnaIo0fUX_-QZ047UhNUA,1267
|
|
182
|
+
ethereum/forks/cancun/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
183
|
+
ethereum/forks/cancun/vm/precompiled_contracts/point_evaluation.py,sha256=4Q1iQewN_r6a9RUdpWIWbrQ213sTHXETXhcB0rdiWpI,1917
|
|
184
|
+
ethereum/forks/cancun/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
185
|
+
ethereum/forks/cancun/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
186
|
+
ethereum/forks/constantinople/__init__.py,sha256=9H_1jQ7cDQ8_npv1HSlMuaI3Ro5V64iUNxfBYFtapj8,1988
|
|
187
|
+
ethereum/forks/constantinople/blocks.py,sha256=xZGHxDCSKYvB37qQT5YjbRavTNmh9zlu7WGMCC6aby8,8268
|
|
188
|
+
ethereum/forks/constantinople/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
189
|
+
ethereum/forks/constantinople/fork.py,sha256=z1P13DRdpPc7E2Mo4nXOLY8gLKofymrS_nmpjaKN-kw,25878
|
|
190
|
+
ethereum/forks/constantinople/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
191
|
+
ethereum/forks/constantinople/state.py,sha256=UN-D0VdQJ4EvkjG10Qa_z34dwpFOmWj7VaWVa5iWIp4,13218
|
|
192
|
+
ethereum/forks/constantinople/transactions.py,sha256=DSG1YQ2yOLcexQ3J5GEhAMiXUCzfiWqykQcMjlsw9Q4,7732
|
|
193
|
+
ethereum/forks/constantinople/trie.py,sha256=HuNaRiHXaKH4W4vaiLNFrEMs3T-UElNanS0t8gesAzQ,12046
|
|
194
|
+
ethereum/forks/constantinople/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
195
|
+
ethereum/forks/constantinople/utils/address.py,sha256=7gPxwLf7ydRaK-k1hz7QDeSjjseukUFjF3GYOcx3D3U,2414
|
|
196
|
+
ethereum/forks/constantinople/utils/hexadecimal.py,sha256=5GwVFzX8Vjd5kV4Qx2NPmyLz2knC7UQ2Yxkq_Xa-MBs,1162
|
|
197
|
+
ethereum/forks/constantinople/utils/message.py,sha256=O7obWjSyrvtP2Dxx3wKsejqm-v9zfpm8NMV5dwXeysA,2048
|
|
198
|
+
ethereum/forks/constantinople/vm/__init__.py,sha256=XtEjsfASxbONCmqtN27_8zpguojClBIKLcqMWnE9ZXA,5129
|
|
199
|
+
ethereum/forks/constantinople/vm/exceptions.py,sha256=qR_QZpYD4gNYx82xg7UquLfI0RwlQ0ctqXFESelJFlQ,2380
|
|
200
|
+
ethereum/forks/constantinople/vm/gas.py,sha256=O0r91hzRbVueituxhVWy8n7flhcPBEE9YwjMQFoj3GU,6243
|
|
201
|
+
ethereum/forks/constantinople/vm/interpreter.py,sha256=Df4lhXKyYJACtgxey9d3KAYHcWiXQUx7XSo8ytSH1lE,8198
|
|
202
|
+
ethereum/forks/constantinople/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
203
|
+
ethereum/forks/constantinople/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
204
|
+
ethereum/forks/constantinople/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
205
|
+
ethereum/forks/constantinople/vm/instructions/__init__.py,sha256=lwASKZAC7jpwyY220FU67U4AoSqwI5_8Dw5sVDZhKpU,10012
|
|
206
|
+
ethereum/forks/constantinople/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
207
|
+
ethereum/forks/constantinople/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
208
|
+
ethereum/forks/constantinople/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
209
|
+
ethereum/forks/constantinople/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
210
|
+
ethereum/forks/constantinople/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
211
|
+
ethereum/forks/constantinople/vm/instructions/environment.py,sha256=3cDLV_xidbxX6E7sc9-efQpPCN4H9VptIYW29EZXquw,9581
|
|
212
|
+
ethereum/forks/constantinople/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
213
|
+
ethereum/forks/constantinople/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
214
|
+
ethereum/forks/constantinople/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
215
|
+
ethereum/forks/constantinople/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
216
|
+
ethereum/forks/constantinople/vm/instructions/storage.py,sha256=nvxWl8glp0r35lbpjyz7eGgPLu1KbQbbr8pB-nkhgVA,1880
|
|
217
|
+
ethereum/forks/constantinople/vm/instructions/system.py,sha256=DJdwlxZ44SesofyJdBzF8GjwsILe2ms4CcsBW4l923E,17420
|
|
218
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/__init__.py,sha256=cUzNQj3qgvFbARupM0jjp5p1u2I5T3APx9kMuEadWKw,870
|
|
219
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/alt_bn128.py,sha256=bz8vgc5YPlv3rbQjr047bTNmV-WqpgIISjfp8W940sg,5360
|
|
220
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
221
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
222
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/mapping.py,sha256=YTZ0lIYLy-FqWFAbAUcaQ4LW_Ms7tDJxOtmfR7ib3ZI,1062
|
|
223
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/modexp.py,sha256=ngMU5qE5WdUFRGHpwvZbXP8irn9pxpyg3qaMcl08u5I,4388
|
|
224
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
225
|
+
ethereum/forks/constantinople/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
226
|
+
ethereum/forks/dao_fork/__init__.py,sha256=lC0PToS5zv4xEmsIaRW3g73jLG7rU2eW_Tbf-aDEFSY,855
|
|
227
|
+
ethereum/forks/dao_fork/blocks.py,sha256=fBkLeWmkh6YIEWWNPCChIw5NkmgWt_5emxvooCnMKr8,8176
|
|
228
|
+
ethereum/forks/dao_fork/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
229
|
+
ethereum/forks/dao_fork/dao.py,sha256=M6zxF-LFdrKHJXqHYMafUx9rRTm6yZe5m2NFT8_xwug,15899
|
|
230
|
+
ethereum/forks/dao_fork/fork.py,sha256=t2YJgmdHt_TbrLnB54tCO7hX13ghkEBLYHSxnD1vLaI,25855
|
|
231
|
+
ethereum/forks/dao_fork/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
232
|
+
ethereum/forks/dao_fork/state.py,sha256=0VidxkoS2_6Q4XRhg-LOGg3g6sKOd_iRYBMgUsSaNbQ,11562
|
|
233
|
+
ethereum/forks/dao_fork/transactions.py,sha256=ATgTujWkikcJKje1g1UX_GLg8pb-DycVIm-gJNSu4lw,6890
|
|
234
|
+
ethereum/forks/dao_fork/trie.py,sha256=6I0JpdD6kpNEPnQPgAjULz6JofISfy4YiHgRIaecgRA,12046
|
|
235
|
+
ethereum/forks/dao_fork/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
236
|
+
ethereum/forks/dao_fork/utils/address.py,sha256=G48hxs34FR5f3gf516Aar-LwgbCXEQbKio0rzacZrz8,1502
|
|
237
|
+
ethereum/forks/dao_fork/utils/hexadecimal.py,sha256=Sgt46Ay2UoZSXtZwNDZX0yUJI-zRD9Wv38Q_cMLj_iE,1156
|
|
238
|
+
ethereum/forks/dao_fork/utils/message.py,sha256=-4P4vqfriEZtY0XxBtbiMeo1TeY0fEm0sOdpRUGAdTw,2011
|
|
239
|
+
ethereum/forks/dao_fork/vm/__init__.py,sha256=rUlpveuF81_FMuk2UCqyrIsqUzQ59DlO0ATraJb8tLU,3893
|
|
240
|
+
ethereum/forks/dao_fork/vm/exceptions.py,sha256=gW0BHy8gMORlzT7s164qly7rnaHtNg2aBLmJBQ-r7EM,1741
|
|
241
|
+
ethereum/forks/dao_fork/vm/gas.py,sha256=91qEay-j1JxadWxKEoMUSF89HaW2Pj1MCwaxGWQMCCo,5328
|
|
242
|
+
ethereum/forks/dao_fork/vm/interpreter.py,sha256=OO8t_9ENHU2HZ7djQgk00JjfNNZSk8FPC5CLV9pzuTY,7239
|
|
243
|
+
ethereum/forks/dao_fork/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
244
|
+
ethereum/forks/dao_fork/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
245
|
+
ethereum/forks/dao_fork/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
246
|
+
ethereum/forks/dao_fork/vm/instructions/__init__.py,sha256=qhwZb1hGZIaGQ1cjAdbOjPlgqj42sCcuSogEWgqSUbM,9361
|
|
247
|
+
ethereum/forks/dao_fork/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
248
|
+
ethereum/forks/dao_fork/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
249
|
+
ethereum/forks/dao_fork/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
250
|
+
ethereum/forks/dao_fork/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
251
|
+
ethereum/forks/dao_fork/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
252
|
+
ethereum/forks/dao_fork/vm/instructions/environment.py,sha256=9rKsbC7tBjNIvlCwww5Cz8wHTwwDk-woXdbVZxfJhY0,7480
|
|
253
|
+
ethereum/forks/dao_fork/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
254
|
+
ethereum/forks/dao_fork/vm/instructions/log.py,sha256=gzHhLj4M3oKljo_qo26gxRQTlPzLBrt9lw39xo1RKx8,1906
|
|
255
|
+
ethereum/forks/dao_fork/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
256
|
+
ethereum/forks/dao_fork/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
257
|
+
ethereum/forks/dao_fork/vm/instructions/storage.py,sha256=ozWhhgCv00bl2PEOkWMLRQPt8WjcKn9I_MWAkH7cf9U,1786
|
|
258
|
+
ethereum/forks/dao_fork/vm/instructions/system.py,sha256=THTtYSQU3SwBeuOxNYdmgvwFD8ZwTTot9DL1ZQg5Ey4,11832
|
|
259
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/__init__.py,sha256=JHImrXhAcRYSqsuFAXMdMHiviDGbKnGDrs58idl0Q1w,537
|
|
260
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
261
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
262
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/mapping.py,sha256=J6Zw7cO6b0m5odIRC0erW5hhJ6fWyg6R599pVPB1vX0,673
|
|
263
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
264
|
+
ethereum/forks/dao_fork/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
265
|
+
ethereum/forks/frontier/__init__.py,sha256=LRdDHoF64AA58gI0L6sO31Dr4USHJE7keMv64--SoUw,167
|
|
266
|
+
ethereum/forks/frontier/blocks.py,sha256=QDYoCDgS3vRQzMv1__mrjtV_U-kDPP9g_p4sqFkgje0,8176
|
|
267
|
+
ethereum/forks/frontier/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
268
|
+
ethereum/forks/frontier/fork.py,sha256=A0GA9tTr66b0CLOoXvv2U3cqaVSsfFnZb2c3B-W0WUk,24740
|
|
269
|
+
ethereum/forks/frontier/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
270
|
+
ethereum/forks/frontier/state.py,sha256=0VidxkoS2_6Q4XRhg-LOGg3g6sKOd_iRYBMgUsSaNbQ,11562
|
|
271
|
+
ethereum/forks/frontier/transactions.py,sha256=si866Rxg7KokCQdWm_LKBg4lwGTlgaOQx-sd5-v5jcg,6645
|
|
272
|
+
ethereum/forks/frontier/trie.py,sha256=lz0wtFlJF_SXVOGnWfwbYJOr86j5u13bVF357bK-UZI,12036
|
|
273
|
+
ethereum/forks/frontier/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
274
|
+
ethereum/forks/frontier/utils/address.py,sha256=ozbDZJIEutKNb3Va4-2hi0mrPf0sv6c2BzyQf8x13lA,1502
|
|
275
|
+
ethereum/forks/frontier/utils/hexadecimal.py,sha256=tpxbyHWSq3W6qmpM7QjeqH2EZcVSrP5q-Y6qup4ohZk,1156
|
|
276
|
+
ethereum/forks/frontier/utils/message.py,sha256=6FuZTkMGIbrt38as35N3vYdivkZbZT4FRFFW8dZAjIg,1975
|
|
277
|
+
ethereum/forks/frontier/vm/__init__.py,sha256=_2Zgl7pblVx9ARuoVnXxWmwBpOQ5H3XA0cmoZKfkUrg,3861
|
|
278
|
+
ethereum/forks/frontier/vm/exceptions.py,sha256=gW0BHy8gMORlzT7s164qly7rnaHtNg2aBLmJBQ-r7EM,1741
|
|
279
|
+
ethereum/forks/frontier/vm/gas.py,sha256=91qEay-j1JxadWxKEoMUSF89HaW2Pj1MCwaxGWQMCCo,5328
|
|
280
|
+
ethereum/forks/frontier/vm/interpreter.py,sha256=__AbIgLx3JywO8V0-58hVZiyUOBdP-6tgSQQhLLft_w,7116
|
|
281
|
+
ethereum/forks/frontier/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
282
|
+
ethereum/forks/frontier/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
283
|
+
ethereum/forks/frontier/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
284
|
+
ethereum/forks/frontier/vm/instructions/__init__.py,sha256=Nx6aY_FkzlH7U9qpkdtTdTNbW-BNpD3fhVV4uGo9j1M,9281
|
|
285
|
+
ethereum/forks/frontier/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
286
|
+
ethereum/forks/frontier/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
287
|
+
ethereum/forks/frontier/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
288
|
+
ethereum/forks/frontier/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
289
|
+
ethereum/forks/frontier/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
290
|
+
ethereum/forks/frontier/vm/instructions/environment.py,sha256=9rKsbC7tBjNIvlCwww5Cz8wHTwwDk-woXdbVZxfJhY0,7480
|
|
291
|
+
ethereum/forks/frontier/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
292
|
+
ethereum/forks/frontier/vm/instructions/log.py,sha256=gzHhLj4M3oKljo_qo26gxRQTlPzLBrt9lw39xo1RKx8,1906
|
|
293
|
+
ethereum/forks/frontier/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
294
|
+
ethereum/forks/frontier/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
295
|
+
ethereum/forks/frontier/vm/instructions/storage.py,sha256=ozWhhgCv00bl2PEOkWMLRQPt8WjcKn9I_MWAkH7cf9U,1786
|
|
296
|
+
ethereum/forks/frontier/vm/instructions/system.py,sha256=x3JouPzZqVwgbzK5SCV-EN0000DbOrYoU1YAsCKVKE4,10509
|
|
297
|
+
ethereum/forks/frontier/vm/precompiled_contracts/__init__.py,sha256=JHImrXhAcRYSqsuFAXMdMHiviDGbKnGDrs58idl0Q1w,537
|
|
298
|
+
ethereum/forks/frontier/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
299
|
+
ethereum/forks/frontier/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
300
|
+
ethereum/forks/frontier/vm/precompiled_contracts/mapping.py,sha256=J6Zw7cO6b0m5odIRC0erW5hhJ6fWyg6R599pVPB1vX0,673
|
|
301
|
+
ethereum/forks/frontier/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
302
|
+
ethereum/forks/frontier/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
303
|
+
ethereum/forks/gray_glacier/__init__.py,sha256=krk9QJ8TqL3vqsIhCIkJrDkjgUETV_t4ltvJtN9tg-k,1033
|
|
304
|
+
ethereum/forks/gray_glacier/blocks.py,sha256=PRG1ljdTeRwfaU4DW-8PR7cAMPOIhn_v1aMBd77BLnY,10475
|
|
305
|
+
ethereum/forks/gray_glacier/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
306
|
+
ethereum/forks/gray_glacier/exceptions.py,sha256=VuRriu1tzhV9PN9ZJFjBY4yeEAN1uaseHvVwWd-Mbf0,1537
|
|
307
|
+
ethereum/forks/gray_glacier/fork.py,sha256=nCBAkuuWEYGVmsvUIWTVpnCw0e_gYcBKYiyjdcqP2yo,30564
|
|
308
|
+
ethereum/forks/gray_glacier/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
309
|
+
ethereum/forks/gray_glacier/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
310
|
+
ethereum/forks/gray_glacier/transactions.py,sha256=-VlSw527PqRFv23kppPc9vUnfA4T1ZrOjT20XxWGqRc,16027
|
|
311
|
+
ethereum/forks/gray_glacier/trie.py,sha256=qZu-CJ84PUia5ToSd-Z_-zPz4LRuq-zPCZAUoJR8v64,12090
|
|
312
|
+
ethereum/forks/gray_glacier/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
313
|
+
ethereum/forks/gray_glacier/utils/address.py,sha256=Wvm1gXYMVDtvjpcozM7FruTV_6JD75jzmXnxisgtnlg,2411
|
|
314
|
+
ethereum/forks/gray_glacier/utils/hexadecimal.py,sha256=JJfjRGUck97xMyC9KNUfuAEre6QuJkD-CRsAHFC46-A,1160
|
|
315
|
+
ethereum/forks/gray_glacier/utils/message.py,sha256=C6Q9TIH8HPdD_-1GQGOwccg-w20sY98GfpELeM9moos,2468
|
|
316
|
+
ethereum/forks/gray_glacier/vm/__init__.py,sha256=st2MHS7pqb4kkxh4DW7nbZxRs4CMwSG8BgrTxIm0PcY,5624
|
|
317
|
+
ethereum/forks/gray_glacier/vm/exceptions.py,sha256=qPEmV5elT5Dm1xGlaqPDhqAYC1TEGSRb2--Kx9Z_gcg,2510
|
|
318
|
+
ethereum/forks/gray_glacier/vm/gas.py,sha256=zDNL8b7k9P9jvT-N5KKfur9nic_1quaWlAu0DW8RMC8,6243
|
|
319
|
+
ethereum/forks/gray_glacier/vm/interpreter.py,sha256=-BEE0Jz9raMyfG7LSB67rlL6ycSTpxi6_S9EVBGXdEE,8720
|
|
320
|
+
ethereum/forks/gray_glacier/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
321
|
+
ethereum/forks/gray_glacier/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
322
|
+
ethereum/forks/gray_glacier/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
323
|
+
ethereum/forks/gray_glacier/vm/instructions/__init__.py,sha256=bMnz2fvsWC2DQXN5eoR62ZaWfHUAqYldWsdVQHrrdDY,10231
|
|
324
|
+
ethereum/forks/gray_glacier/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
325
|
+
ethereum/forks/gray_glacier/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
326
|
+
ethereum/forks/gray_glacier/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
327
|
+
ethereum/forks/gray_glacier/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
328
|
+
ethereum/forks/gray_glacier/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
329
|
+
ethereum/forks/gray_glacier/vm/instructions/environment.py,sha256=uxX9FGjmqqHATw-Pw5Mnt2TIN2E1UjXRAKCPfGNnuNQ,11226
|
|
330
|
+
ethereum/forks/gray_glacier/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
331
|
+
ethereum/forks/gray_glacier/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
332
|
+
ethereum/forks/gray_glacier/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
333
|
+
ethereum/forks/gray_glacier/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
334
|
+
ethereum/forks/gray_glacier/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
335
|
+
ethereum/forks/gray_glacier/vm/instructions/system.py,sha256=06Js5x1hN68IGmxZU9IFD4rGuvqgaHuzr5fMXhAlyVY,18178
|
|
336
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
337
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
338
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
339
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
340
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
341
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
342
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
343
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
344
|
+
ethereum/forks/gray_glacier/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
345
|
+
ethereum/forks/homestead/__init__.py,sha256=2LbWUX9Oc1CfMim11JhzHkQAewO3NiG-j2ifIcIpvy0,1169
|
|
346
|
+
ethereum/forks/homestead/blocks.py,sha256=z4_9HlQVOzOiJJ0_T6jX4gPzg9Wz7o7tFKIbLiPndM4,8193
|
|
347
|
+
ethereum/forks/homestead/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
348
|
+
ethereum/forks/homestead/fork.py,sha256=A5cWxFh2fJfEZPUfmJ0esZL19pUs9-icLLwTK4p8ZHw,25150
|
|
349
|
+
ethereum/forks/homestead/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
350
|
+
ethereum/forks/homestead/state.py,sha256=0VidxkoS2_6Q4XRhg-LOGg3g6sKOd_iRYBMgUsSaNbQ,11562
|
|
351
|
+
ethereum/forks/homestead/transactions.py,sha256=ATgTujWkikcJKje1g1UX_GLg8pb-DycVIm-gJNSu4lw,6890
|
|
352
|
+
ethereum/forks/homestead/trie.py,sha256=79wRtOUWnK37JSZs-G37WdiuolHNYYwAA-An2I4bV9w,12045
|
|
353
|
+
ethereum/forks/homestead/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
354
|
+
ethereum/forks/homestead/utils/address.py,sha256=lIloZhAasOuwFUD5L5oF6YcP-xSh6VQXEPq0MMfYRuw,1504
|
|
355
|
+
ethereum/forks/homestead/utils/hexadecimal.py,sha256=lsTJGzLsJFtJ7kWDMbvjfOKE-khNb0BvF-xctMZFL0I,1157
|
|
356
|
+
ethereum/forks/homestead/utils/message.py,sha256=c3woNT5j4AgAR-HcltW6WOhS1Jz3bh_1mN_EIjTa_cQ,2013
|
|
357
|
+
ethereum/forks/homestead/vm/__init__.py,sha256=rUlpveuF81_FMuk2UCqyrIsqUzQ59DlO0ATraJb8tLU,3893
|
|
358
|
+
ethereum/forks/homestead/vm/exceptions.py,sha256=gW0BHy8gMORlzT7s164qly7rnaHtNg2aBLmJBQ-r7EM,1741
|
|
359
|
+
ethereum/forks/homestead/vm/gas.py,sha256=91qEay-j1JxadWxKEoMUSF89HaW2Pj1MCwaxGWQMCCo,5328
|
|
360
|
+
ethereum/forks/homestead/vm/interpreter.py,sha256=yqDf0w456svdq8n4C4NU9h-KxusMr_K0jxwvG45mw_c,7241
|
|
361
|
+
ethereum/forks/homestead/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
362
|
+
ethereum/forks/homestead/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
363
|
+
ethereum/forks/homestead/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
364
|
+
ethereum/forks/homestead/vm/instructions/__init__.py,sha256=qhwZb1hGZIaGQ1cjAdbOjPlgqj42sCcuSogEWgqSUbM,9361
|
|
365
|
+
ethereum/forks/homestead/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
366
|
+
ethereum/forks/homestead/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
367
|
+
ethereum/forks/homestead/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
368
|
+
ethereum/forks/homestead/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
369
|
+
ethereum/forks/homestead/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
370
|
+
ethereum/forks/homestead/vm/instructions/environment.py,sha256=9rKsbC7tBjNIvlCwww5Cz8wHTwwDk-woXdbVZxfJhY0,7480
|
|
371
|
+
ethereum/forks/homestead/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
372
|
+
ethereum/forks/homestead/vm/instructions/log.py,sha256=gzHhLj4M3oKljo_qo26gxRQTlPzLBrt9lw39xo1RKx8,1906
|
|
373
|
+
ethereum/forks/homestead/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
374
|
+
ethereum/forks/homestead/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
375
|
+
ethereum/forks/homestead/vm/instructions/storage.py,sha256=ozWhhgCv00bl2PEOkWMLRQPt8WjcKn9I_MWAkH7cf9U,1786
|
|
376
|
+
ethereum/forks/homestead/vm/instructions/system.py,sha256=THTtYSQU3SwBeuOxNYdmgvwFD8ZwTTot9DL1ZQg5Ey4,11832
|
|
377
|
+
ethereum/forks/homestead/vm/precompiled_contracts/__init__.py,sha256=JHImrXhAcRYSqsuFAXMdMHiviDGbKnGDrs58idl0Q1w,537
|
|
378
|
+
ethereum/forks/homestead/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
379
|
+
ethereum/forks/homestead/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
380
|
+
ethereum/forks/homestead/vm/precompiled_contracts/mapping.py,sha256=J6Zw7cO6b0m5odIRC0erW5hhJ6fWyg6R599pVPB1vX0,673
|
|
381
|
+
ethereum/forks/homestead/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
382
|
+
ethereum/forks/homestead/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
383
|
+
ethereum/forks/istanbul/__init__.py,sha256=XvlYPA0DJEURgdqpks3gQ45JouQ6ha96aRMMScmHcSM,2143
|
|
384
|
+
ethereum/forks/istanbul/blocks.py,sha256=ZfWjRxDNnKLYWdd_Be719lrSECiFh-f6GL0nh4e8VV4,8166
|
|
385
|
+
ethereum/forks/istanbul/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
386
|
+
ethereum/forks/istanbul/fork.py,sha256=z1P13DRdpPc7E2Mo4nXOLY8gLKofymrS_nmpjaKN-kw,25878
|
|
387
|
+
ethereum/forks/istanbul/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
388
|
+
ethereum/forks/istanbul/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
389
|
+
ethereum/forks/istanbul/transactions.py,sha256=sK4VYhNB567pZog2BcD6dpqdfV2MGTr3-UKhpraFmyU,7732
|
|
390
|
+
ethereum/forks/istanbul/trie.py,sha256=ksLwUHAg3WpFXyZbG1v94OitECOR0VwgpACxewXBpIU,12051
|
|
391
|
+
ethereum/forks/istanbul/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
392
|
+
ethereum/forks/istanbul/utils/address.py,sha256=jwvwXY5yt533CKC0DfmE1CcCvb63lFA_xgWeXwrtk3E,2403
|
|
393
|
+
ethereum/forks/istanbul/utils/hexadecimal.py,sha256=Yh-SuvgbgKec1QDGPnIRtr4bsHBfo8p05hMGFUwAnOw,1156
|
|
394
|
+
ethereum/forks/istanbul/utils/message.py,sha256=czcgdacZP-RTgbuYXli_HL_blvkkNpB6OXqe5WZFSyI,2036
|
|
395
|
+
ethereum/forks/istanbul/vm/__init__.py,sha256=XtEjsfASxbONCmqtN27_8zpguojClBIKLcqMWnE9ZXA,5129
|
|
396
|
+
ethereum/forks/istanbul/vm/exceptions.py,sha256=qR_QZpYD4gNYx82xg7UquLfI0RwlQ0ctqXFESelJFlQ,2380
|
|
397
|
+
ethereum/forks/istanbul/vm/gas.py,sha256=DtDfysobEZ4tPTLsYvdR_6KVDA10ypWxta_6MZoLBKk,6298
|
|
398
|
+
ethereum/forks/istanbul/vm/interpreter.py,sha256=NYbivyTVJjn0tUj03__1CogUqGQPfVBtaxL8a9yJj0Q,8437
|
|
399
|
+
ethereum/forks/istanbul/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
400
|
+
ethereum/forks/istanbul/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
401
|
+
ethereum/forks/istanbul/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
402
|
+
ethereum/forks/istanbul/vm/instructions/__init__.py,sha256=LZMKvXmqzMcsHiLd7DNq5HJCffVArfj9ndNcb2Cpsy0,10160
|
|
403
|
+
ethereum/forks/istanbul/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
404
|
+
ethereum/forks/istanbul/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
405
|
+
ethereum/forks/istanbul/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
406
|
+
ethereum/forks/istanbul/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
407
|
+
ethereum/forks/istanbul/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
408
|
+
ethereum/forks/istanbul/vm/instructions/environment.py,sha256=FtLPpThQWUkp5IYvCA21Cd6rXs3ZF9mAP_-wnhvTFMw,10126
|
|
409
|
+
ethereum/forks/istanbul/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
410
|
+
ethereum/forks/istanbul/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
411
|
+
ethereum/forks/istanbul/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
412
|
+
ethereum/forks/istanbul/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
413
|
+
ethereum/forks/istanbul/vm/instructions/storage.py,sha256=v3P7WoekLwWz7v2SNlIIU8I2f4XS95iboPDeCa2OaOw,2989
|
|
414
|
+
ethereum/forks/istanbul/vm/instructions/system.py,sha256=DJdwlxZ44SesofyJdBzF8GjwsILe2ms4CcsBW4l923E,17420
|
|
415
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
416
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
417
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
418
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
419
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
420
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
421
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/modexp.py,sha256=ngMU5qE5WdUFRGHpwvZbXP8irn9pxpyg3qaMcl08u5I,4388
|
|
422
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
423
|
+
ethereum/forks/istanbul/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
424
|
+
ethereum/forks/london/__init__.py,sha256=h8EdmRIKXFB48ekqmqZm33xWqUt-oxOuorFl5yGcB8o,1891
|
|
425
|
+
ethereum/forks/london/blocks.py,sha256=dSAdOZRT4fdvDAi1068_cOdsYZHCThnFRL1YhDHqtNo,10373
|
|
426
|
+
ethereum/forks/london/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
427
|
+
ethereum/forks/london/exceptions.py,sha256=VuRriu1tzhV9PN9ZJFjBY4yeEAN1uaseHvVwWd-Mbf0,1537
|
|
428
|
+
ethereum/forks/london/fork.py,sha256=NffuLHPROEpevWM9o7Y4bHU8IWxx3BM5lrnYV6TyilI,30852
|
|
429
|
+
ethereum/forks/london/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
430
|
+
ethereum/forks/london/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
431
|
+
ethereum/forks/london/transactions.py,sha256=-VlSw527PqRFv23kppPc9vUnfA4T1ZrOjT20XxWGqRc,16027
|
|
432
|
+
ethereum/forks/london/trie.py,sha256=12WHnRlYgMedWIyWJ5k8bBzp_1gc1r6Bl0JZb4cL_4w,12083
|
|
433
|
+
ethereum/forks/london/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
434
|
+
ethereum/forks/london/utils/address.py,sha256=0wAkqhbB3LBsxSLWQ7bmZsrU45r2Ka8Moll4FHnuy_k,2399
|
|
435
|
+
ethereum/forks/london/utils/hexadecimal.py,sha256=Tmrmyrpk1kSXupq99XlSzi6JvPMzEHf7lI8RighsjZM,1154
|
|
436
|
+
ethereum/forks/london/utils/message.py,sha256=HB7mNxwOaK_JRPnFKNIZcGnmYAZsBd4NB5f2LbEPLT8,2456
|
|
437
|
+
ethereum/forks/london/vm/__init__.py,sha256=st2MHS7pqb4kkxh4DW7nbZxRs4CMwSG8BgrTxIm0PcY,5624
|
|
438
|
+
ethereum/forks/london/vm/exceptions.py,sha256=qPEmV5elT5Dm1xGlaqPDhqAYC1TEGSRb2--Kx9Z_gcg,2510
|
|
439
|
+
ethereum/forks/london/vm/gas.py,sha256=zDNL8b7k9P9jvT-N5KKfur9nic_1quaWlAu0DW8RMC8,6243
|
|
440
|
+
ethereum/forks/london/vm/interpreter.py,sha256=hMlYi229wrO7G1N2wASYwikbKjcEC89NaCWtC362zRQ,8708
|
|
441
|
+
ethereum/forks/london/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
442
|
+
ethereum/forks/london/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
443
|
+
ethereum/forks/london/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
444
|
+
ethereum/forks/london/vm/instructions/__init__.py,sha256=bMnz2fvsWC2DQXN5eoR62ZaWfHUAqYldWsdVQHrrdDY,10231
|
|
445
|
+
ethereum/forks/london/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
446
|
+
ethereum/forks/london/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
447
|
+
ethereum/forks/london/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
448
|
+
ethereum/forks/london/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
449
|
+
ethereum/forks/london/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
450
|
+
ethereum/forks/london/vm/instructions/environment.py,sha256=uxX9FGjmqqHATw-Pw5Mnt2TIN2E1UjXRAKCPfGNnuNQ,11226
|
|
451
|
+
ethereum/forks/london/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
452
|
+
ethereum/forks/london/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
453
|
+
ethereum/forks/london/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
454
|
+
ethereum/forks/london/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
455
|
+
ethereum/forks/london/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
456
|
+
ethereum/forks/london/vm/instructions/system.py,sha256=06Js5x1hN68IGmxZU9IFD4rGuvqgaHuzr5fMXhAlyVY,18178
|
|
457
|
+
ethereum/forks/london/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
458
|
+
ethereum/forks/london/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
459
|
+
ethereum/forks/london/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
460
|
+
ethereum/forks/london/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
461
|
+
ethereum/forks/london/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
462
|
+
ethereum/forks/london/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
463
|
+
ethereum/forks/london/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
464
|
+
ethereum/forks/london/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
465
|
+
ethereum/forks/london/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
466
|
+
ethereum/forks/muir_glacier/__init__.py,sha256=5z7z69Uy9YIH9SSJXGpHCtKRI-U78Eq98ybxQp2aYeQ,1231
|
|
467
|
+
ethereum/forks/muir_glacier/blocks.py,sha256=zDEjf1pf_sBdu6kfTT20uaWGEa_tBqrmdj0tqUxtFNo,8234
|
|
468
|
+
ethereum/forks/muir_glacier/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
469
|
+
ethereum/forks/muir_glacier/fork.py,sha256=HP4Il4yutkNzi_duKJoSFrrMRd9pFwAfy2lMDnnQthA,25921
|
|
470
|
+
ethereum/forks/muir_glacier/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
471
|
+
ethereum/forks/muir_glacier/state.py,sha256=7PWSexqVXoWWtliqsw4R5UllNg8IKf_MC2SOHzL3yv0,15034
|
|
472
|
+
ethereum/forks/muir_glacier/transactions.py,sha256=sK4VYhNB567pZog2BcD6dpqdfV2MGTr3-UKhpraFmyU,7732
|
|
473
|
+
ethereum/forks/muir_glacier/trie.py,sha256=1GSSPmMAghJkRG6mO3M7DVnKCb-q8YywYY0Y0_DXHUY,12045
|
|
474
|
+
ethereum/forks/muir_glacier/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
475
|
+
ethereum/forks/muir_glacier/utils/address.py,sha256=MFJNqMGT_80V57vCPJkDUcT_P7l3G6IPE81_kbWc2Rc,2411
|
|
476
|
+
ethereum/forks/muir_glacier/utils/hexadecimal.py,sha256=JUJiMdMpX7i6HNodDtINcvNUXgMqh4CEw5P2rTaaoso,1160
|
|
477
|
+
ethereum/forks/muir_glacier/utils/message.py,sha256=uzLIqGgnAG4Ep30vpazVb11a3c7uzDV1UZT6gxpDvSE,2044
|
|
478
|
+
ethereum/forks/muir_glacier/vm/__init__.py,sha256=XtEjsfASxbONCmqtN27_8zpguojClBIKLcqMWnE9ZXA,5129
|
|
479
|
+
ethereum/forks/muir_glacier/vm/exceptions.py,sha256=qR_QZpYD4gNYx82xg7UquLfI0RwlQ0ctqXFESelJFlQ,2380
|
|
480
|
+
ethereum/forks/muir_glacier/vm/gas.py,sha256=DtDfysobEZ4tPTLsYvdR_6KVDA10ypWxta_6MZoLBKk,6298
|
|
481
|
+
ethereum/forks/muir_glacier/vm/interpreter.py,sha256=ocoHcK-ScIu02gLtXyhM9CDuGkGkqheY3k66Wvu7p8o,8445
|
|
482
|
+
ethereum/forks/muir_glacier/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
483
|
+
ethereum/forks/muir_glacier/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
484
|
+
ethereum/forks/muir_glacier/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
485
|
+
ethereum/forks/muir_glacier/vm/instructions/__init__.py,sha256=LZMKvXmqzMcsHiLd7DNq5HJCffVArfj9ndNcb2Cpsy0,10160
|
|
486
|
+
ethereum/forks/muir_glacier/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
487
|
+
ethereum/forks/muir_glacier/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
488
|
+
ethereum/forks/muir_glacier/vm/instructions/block.py,sha256=BA_rd-PmlVJDVxoj0BOIIZeMHfZoNVNGTOa0YT4w9EA,4271
|
|
489
|
+
ethereum/forks/muir_glacier/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
490
|
+
ethereum/forks/muir_glacier/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
491
|
+
ethereum/forks/muir_glacier/vm/instructions/environment.py,sha256=FtLPpThQWUkp5IYvCA21Cd6rXs3ZF9mAP_-wnhvTFMw,10126
|
|
492
|
+
ethereum/forks/muir_glacier/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
493
|
+
ethereum/forks/muir_glacier/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
494
|
+
ethereum/forks/muir_glacier/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
495
|
+
ethereum/forks/muir_glacier/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
496
|
+
ethereum/forks/muir_glacier/vm/instructions/storage.py,sha256=v3P7WoekLwWz7v2SNlIIU8I2f4XS95iboPDeCa2OaOw,2989
|
|
497
|
+
ethereum/forks/muir_glacier/vm/instructions/system.py,sha256=DJdwlxZ44SesofyJdBzF8GjwsILe2ms4CcsBW4l923E,17420
|
|
498
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
499
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
500
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
501
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
502
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
503
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
504
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/modexp.py,sha256=ngMU5qE5WdUFRGHpwvZbXP8irn9pxpyg3qaMcl08u5I,4388
|
|
505
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
506
|
+
ethereum/forks/muir_glacier/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
507
|
+
ethereum/forks/osaka/__init__.py,sha256=vER5O75sF-H52H_DcbB9QdkToTzQVuW84G9EgRX_CkE,2473
|
|
508
|
+
ethereum/forks/osaka/blocks.py,sha256=vrjL-bO9Ax8YpGFIfCzuyqq8YhLpGuIsHTIihPwXVxw,12676
|
|
509
|
+
ethereum/forks/osaka/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
510
|
+
ethereum/forks/osaka/exceptions.py,sha256=Bz3OnY-YQUdlOTpLt9m-DEqWQh1_jirB1DFr0y-sdP8,3243
|
|
511
|
+
ethereum/forks/osaka/fork.py,sha256=lb-nolAeVBT95xeTIzwzAZ9G98Xdln7m2586ahpamxE,32508
|
|
512
|
+
ethereum/forks/osaka/fork_types.py,sha256=T_IyA6wa7T7Aa7j3ZWeWaJQR1nAeOuvLWkm2mQVYLVc,1447
|
|
513
|
+
ethereum/forks/osaka/requests.py,sha256=5lOz_LaNw4-DpqBQRuYLJI6fPt7xUPmkCaC0cFXPc60,5715
|
|
514
|
+
ethereum/forks/osaka/state.py,sha256=2EYp0zSpV0-xyb4k4HjZnVaMu4Hh2KD28_9VHuPKd5M,15932
|
|
515
|
+
ethereum/forks/osaka/transactions.py,sha256=b6pSnrAya8JpDk5GsOaAphS4MSV3c7mPK0EsTGFMG0E,24335
|
|
516
|
+
ethereum/forks/osaka/trie.py,sha256=Roq094xYr26_jSaYdkf5qyAve5EsKGCekjXCLaXkMYY,12216
|
|
517
|
+
ethereum/forks/osaka/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
518
|
+
ethereum/forks/osaka/utils/address.py,sha256=-BphwdZyYdoXdYHeRgbQJJU58yTU8S4jXIKs2T_HPgQ,2397
|
|
519
|
+
ethereum/forks/osaka/utils/hexadecimal.py,sha256=8WaZEismTY355qgeKfRhBo0nw5HJBA0JkBWYI9TVwzI,1153
|
|
520
|
+
ethereum/forks/osaka/utils/message.py,sha256=j_3ekKmDW7hhJ2Ltmcvxe4e1DKOqdlKhTG_rGvEbgyI,2488
|
|
521
|
+
ethereum/forks/osaka/vm/__init__.py,sha256=y6O3UBgETqDloa0_PLA_RbzQfLVXX1iM6Vtwgy6GwbI,5222
|
|
522
|
+
ethereum/forks/osaka/vm/eoa_delegation.py,sha256=l5Xq24SQVEfsgMMEmzA5I3z5nO9Ld44Uh6iv5mGI0lw,5746
|
|
523
|
+
ethereum/forks/osaka/vm/exceptions.py,sha256=4-SwskxbVwKmSFHSrGddHS_FJqo_GkObF9XC0ixWmgE,2646
|
|
524
|
+
ethereum/forks/osaka/vm/gas.py,sha256=N8DAHWYLiJty7mICTWelnRGuZVukPFVnwGt_4Lonc70,10273
|
|
525
|
+
ethereum/forks/osaka/vm/interpreter.py,sha256=eZBnFU6CctarprOe9cpkeXdig_5TEJOh1pT_RJGghgs,9389
|
|
526
|
+
ethereum/forks/osaka/vm/memory.py,sha256=ULli0kd93K7rh9LqVgc7NpHZPqjUGrKeuLd2Bcbv75U,1787
|
|
527
|
+
ethereum/forks/osaka/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
528
|
+
ethereum/forks/osaka/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
529
|
+
ethereum/forks/osaka/vm/instructions/__init__.py,sha256=Sd1hVcdWCBGo9UbqnFopZ446PahZIW4u5Iz6yqW2NyQ,10700
|
|
530
|
+
ethereum/forks/osaka/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
531
|
+
ethereum/forks/osaka/vm/instructions/bitwise.py,sha256=GlMjhXNEr83InOVAZTYH9eEha8ZffTU39ISbExmkywk,5170
|
|
532
|
+
ethereum/forks/osaka/vm/instructions/block.py,sha256=q_sDSk2WtQEO-WUZMOtY4hCIcehAKJUVVJXO-WfLm4w,6023
|
|
533
|
+
ethereum/forks/osaka/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
534
|
+
ethereum/forks/osaka/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
535
|
+
ethereum/forks/osaka/vm/instructions/environment.py,sha256=lC5VTSMbfHajCYh2SBuIP8iHWeXMKWXWM1JTuXaSvQM,12343
|
|
536
|
+
ethereum/forks/osaka/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
537
|
+
ethereum/forks/osaka/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
538
|
+
ethereum/forks/osaka/vm/instructions/memory.py,sha256=v7QZ9DdL3OQpWlCFVUOkdx2RyLgMT7sil5pH6gbwtOw,3685
|
|
539
|
+
ethereum/forks/osaka/vm/instructions/stack.py,sha256=fm35seLTtMJ5OGqb_NtCLVG7fuuRja_Cc7FqfEErwIw,5437
|
|
540
|
+
ethereum/forks/osaka/vm/instructions/storage.py,sha256=0O64vwEjYk1qVl74AnfhYinvxuAGJKCZzvc7lHKv6ts,4730
|
|
541
|
+
ethereum/forks/osaka/vm/instructions/system.py,sha256=WlwcAs3pMzw7odQVjL0TGeNypFY4o1IBTOuPz63zoMI,19396
|
|
542
|
+
ethereum/forks/osaka/vm/precompiled_contracts/__init__.py,sha256=3sYo49JAsJEsn7M4xUcE3E1QGK9wYrtLeakJcyRTsYg,1610
|
|
543
|
+
ethereum/forks/osaka/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
544
|
+
ethereum/forks/osaka/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
545
|
+
ethereum/forks/osaka/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
546
|
+
ethereum/forks/osaka/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
547
|
+
ethereum/forks/osaka/vm/precompiled_contracts/mapping.py,sha256=2ecjqZpA6vR6WpyIEv5XTVqCllcOlVVJlKF5QqVDUR8,2122
|
|
548
|
+
ethereum/forks/osaka/vm/precompiled_contracts/modexp.py,sha256=AbL6Z1JRc__vCLnynwLuKJoGEZ5aoyHYpIhOAWUMsVc,4711
|
|
549
|
+
ethereum/forks/osaka/vm/precompiled_contracts/p256verify.py,sha256=v5ES_nO2MPchjeCnfFaIGS-C_Wq7J4XwR23S_IyByos,2331
|
|
550
|
+
ethereum/forks/osaka/vm/precompiled_contracts/point_evaluation.py,sha256=4Q1iQewN_r6a9RUdpWIWbrQ213sTHXETXhcB0rdiWpI,1917
|
|
551
|
+
ethereum/forks/osaka/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
552
|
+
ethereum/forks/osaka/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
553
|
+
ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/__init__.py,sha256=UBucprayzLNBbneqEbR1yvcowBPgpAtDzCGk-FtkhPo,10206
|
|
554
|
+
ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g1.py,sha256=cK4jOg_7gQUiXPhINR44wFjCyRJinmUrMj2pDYXaeUw,3527
|
|
555
|
+
ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g2.py,sha256=Ul9pbMDdMqvuslpSb3S4FVpkla2Sg-5YRjmWZfF3dSY,3509
|
|
556
|
+
ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py,sha256=ErU6NNPsPzyv6qtAck7XpJgM8oBzxL_4c9VwSRow7ys,1838
|
|
557
|
+
ethereum/forks/paris/__init__.py,sha256=MBgV1YwZgEYliQ1FzJU3yBxlFRAiVIhip-XDa_ZEawk,1826
|
|
558
|
+
ethereum/forks/paris/blocks.py,sha256=UDdYGGfUsHJCDo_-Z41HwIyTydaZRBldo2eWMVS6Vd4,9774
|
|
559
|
+
ethereum/forks/paris/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
560
|
+
ethereum/forks/paris/exceptions.py,sha256=VuRriu1tzhV9PN9ZJFjBY4yeEAN1uaseHvVwWd-Mbf0,1537
|
|
561
|
+
ethereum/forks/paris/fork.py,sha256=e4AovcgvR2fXSCvG4KklPacEdR25gKMUX0ucKgYi3qU,19778
|
|
562
|
+
ethereum/forks/paris/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
563
|
+
ethereum/forks/paris/state.py,sha256=7KL4uCN3V1dX2s8tRH_LoDYKvwqr7xZeUFmR5q1dBzA,13421
|
|
564
|
+
ethereum/forks/paris/transactions.py,sha256=-VlSw527PqRFv23kppPc9vUnfA4T1ZrOjT20XxWGqRc,16027
|
|
565
|
+
ethereum/forks/paris/trie.py,sha256=HlnxpepdZ2Qq1Og-A5C1t1RG31aPwrfHmi2WQ6tNU6g,12089
|
|
566
|
+
ethereum/forks/paris/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
567
|
+
ethereum/forks/paris/utils/address.py,sha256=0oAmqxR5KR1YGpCT1e9IGJzCodHCvycWeK94KU4-B5c,2397
|
|
568
|
+
ethereum/forks/paris/utils/hexadecimal.py,sha256=C2eeanVN3xeDSPbmzh8KHeNwLdZHrWsrce1YHgD8oXU,1153
|
|
569
|
+
ethereum/forks/paris/utils/message.py,sha256=kI0QN1Wzd-GFn6uybL7g4JhR1QwM_TqYNbFEvMW5btE,2454
|
|
570
|
+
ethereum/forks/paris/vm/__init__.py,sha256=eBTID6VlmAVwQrY5gk7wlL9sHQHZ0jVclMleH-vSvNk,4435
|
|
571
|
+
ethereum/forks/paris/vm/exceptions.py,sha256=qPEmV5elT5Dm1xGlaqPDhqAYC1TEGSRb2--Kx9Z_gcg,2510
|
|
572
|
+
ethereum/forks/paris/vm/gas.py,sha256=zDNL8b7k9P9jvT-N5KKfur9nic_1quaWlAu0DW8RMC8,6243
|
|
573
|
+
ethereum/forks/paris/vm/interpreter.py,sha256=bpvsmTBkWZm_mrnn0xyH4E2gN9t3VK9yGvmK-1pYwsE,8174
|
|
574
|
+
ethereum/forks/paris/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
575
|
+
ethereum/forks/paris/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
576
|
+
ethereum/forks/paris/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
577
|
+
ethereum/forks/paris/vm/instructions/__init__.py,sha256=1H-6y1a0JnzEHhqCfIsGkYC8isQqMT6BVEPAVuJn16g,10232
|
|
578
|
+
ethereum/forks/paris/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
579
|
+
ethereum/forks/paris/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
580
|
+
ethereum/forks/paris/vm/instructions/block.py,sha256=I3x9w4LSha_ZpRjaiofVZsssc7e75U2HDZmKfhrpCvc,6023
|
|
581
|
+
ethereum/forks/paris/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
582
|
+
ethereum/forks/paris/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
583
|
+
ethereum/forks/paris/vm/instructions/environment.py,sha256=uxX9FGjmqqHATw-Pw5Mnt2TIN2E1UjXRAKCPfGNnuNQ,11226
|
|
584
|
+
ethereum/forks/paris/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
585
|
+
ethereum/forks/paris/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
586
|
+
ethereum/forks/paris/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
587
|
+
ethereum/forks/paris/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
588
|
+
ethereum/forks/paris/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
589
|
+
ethereum/forks/paris/vm/instructions/system.py,sha256=dl1Xag03HXCGVEQDqQ99Ckm_5vkMBmy0d0yqHjgtfUs,17986
|
|
590
|
+
ethereum/forks/paris/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
591
|
+
ethereum/forks/paris/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
592
|
+
ethereum/forks/paris/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
593
|
+
ethereum/forks/paris/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
594
|
+
ethereum/forks/paris/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
595
|
+
ethereum/forks/paris/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
596
|
+
ethereum/forks/paris/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
597
|
+
ethereum/forks/paris/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
598
|
+
ethereum/forks/paris/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
599
|
+
ethereum/forks/prague/__init__.py,sha256=6H21lbP5LnmlJDlvMD1XIoFyz0FCA80pMNiTMoALigs,2598
|
|
600
|
+
ethereum/forks/prague/blocks.py,sha256=4VWmZLNpS_wLz3u8YVnCAZOSxdCytyOoLWQmyPNOUTw,12694
|
|
601
|
+
ethereum/forks/prague/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
602
|
+
ethereum/forks/prague/exceptions.py,sha256=I8hkK55CSF0NiEH7ilf0fPscuHGyJN9kNTZdU2ZUSc4,2859
|
|
603
|
+
ethereum/forks/prague/fork.py,sha256=P3AaB4aYWRs7IUP4Yoh1vjPksCH-L2H7hsrvgS132oc,31917
|
|
604
|
+
ethereum/forks/prague/fork_types.py,sha256=T_IyA6wa7T7Aa7j3ZWeWaJQR1nAeOuvLWkm2mQVYLVc,1447
|
|
605
|
+
ethereum/forks/prague/requests.py,sha256=hnnSr23aKVe0Y8cQs9q2gxgdd4gugtK1TzC6aEXwYlg,5713
|
|
606
|
+
ethereum/forks/prague/state.py,sha256=2EYp0zSpV0-xyb4k4HjZnVaMu4Hh2KD28_9VHuPKd5M,15932
|
|
607
|
+
ethereum/forks/prague/transactions.py,sha256=HQIXQ4-C1FOrGpeuJpNrOeOryYzsfFXugRwaXZrfdr8,24144
|
|
608
|
+
ethereum/forks/prague/trie.py,sha256=B5Cu1MhqwTf6QOa8Ee05ZE0Y0e0yoy8LcPVEn_JOgx0,12216
|
|
609
|
+
ethereum/forks/prague/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
610
|
+
ethereum/forks/prague/utils/address.py,sha256=_sGEWdvvJI4D28m-yeMITWC6UCW7WOLaz_beluquFo4,2399
|
|
611
|
+
ethereum/forks/prague/utils/hexadecimal.py,sha256=J0puRnVmNorgal8oWkg19gr1sJDmU_cNr0K43ESA7lI,1154
|
|
612
|
+
ethereum/forks/prague/utils/message.py,sha256=6cB1grXAVjaYqsDOOGafBSLMdQzi2qpZphRDwoQRzPs,2490
|
|
613
|
+
ethereum/forks/prague/vm/__init__.py,sha256=y6O3UBgETqDloa0_PLA_RbzQfLVXX1iM6Vtwgy6GwbI,5222
|
|
614
|
+
ethereum/forks/prague/vm/eoa_delegation.py,sha256=l5Xq24SQVEfsgMMEmzA5I3z5nO9Ld44Uh6iv5mGI0lw,5746
|
|
615
|
+
ethereum/forks/prague/vm/exceptions.py,sha256=4-SwskxbVwKmSFHSrGddHS_FJqo_GkObF9XC0ixWmgE,2646
|
|
616
|
+
ethereum/forks/prague/vm/gas.py,sha256=uBUkLu0Z1wF9eXS5VxZMab5rmNJmwVDXZ2fD3-UJhhg,9619
|
|
617
|
+
ethereum/forks/prague/vm/interpreter.py,sha256=oYuRWV_lR1FtAlWmHHQVuOoQqHieWq285rFoP0msUO8,9391
|
|
618
|
+
ethereum/forks/prague/vm/memory.py,sha256=ULli0kd93K7rh9LqVgc7NpHZPqjUGrKeuLd2Bcbv75U,1787
|
|
619
|
+
ethereum/forks/prague/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
620
|
+
ethereum/forks/prague/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
621
|
+
ethereum/forks/prague/vm/instructions/__init__.py,sha256=aAO8fS38sDEBzFqkzy72hsU9pyRlGAI7jpfABmxbF3A,10630
|
|
622
|
+
ethereum/forks/prague/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
623
|
+
ethereum/forks/prague/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
624
|
+
ethereum/forks/prague/vm/instructions/block.py,sha256=gK45k6o9-ffajxViGxmHNCUwFzzNdLe7raH7uTGw_0g,6037
|
|
625
|
+
ethereum/forks/prague/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
626
|
+
ethereum/forks/prague/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
627
|
+
ethereum/forks/prague/vm/instructions/environment.py,sha256=lC5VTSMbfHajCYh2SBuIP8iHWeXMKWXWM1JTuXaSvQM,12343
|
|
628
|
+
ethereum/forks/prague/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
629
|
+
ethereum/forks/prague/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
630
|
+
ethereum/forks/prague/vm/instructions/memory.py,sha256=v7QZ9DdL3OQpWlCFVUOkdx2RyLgMT7sil5pH6gbwtOw,3685
|
|
631
|
+
ethereum/forks/prague/vm/instructions/stack.py,sha256=fm35seLTtMJ5OGqb_NtCLVG7fuuRja_Cc7FqfEErwIw,5437
|
|
632
|
+
ethereum/forks/prague/vm/instructions/storage.py,sha256=0O64vwEjYk1qVl74AnfhYinvxuAGJKCZzvc7lHKv6ts,4730
|
|
633
|
+
ethereum/forks/prague/vm/instructions/system.py,sha256=WlwcAs3pMzw7odQVjL0TGeNypFY4o1IBTOuPz63zoMI,19396
|
|
634
|
+
ethereum/forks/prague/vm/precompiled_contracts/__init__.py,sha256=TZCau2iEx-vQvLr0kvy9-M3cAXoFnTZlZ5AcOUYyU3c,1539
|
|
635
|
+
ethereum/forks/prague/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
636
|
+
ethereum/forks/prague/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
637
|
+
ethereum/forks/prague/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
638
|
+
ethereum/forks/prague/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
639
|
+
ethereum/forks/prague/vm/precompiled_contracts/mapping.py,sha256=jErpgfDghurxcnwEpk1KAOfawkN42FPsBCBWAkmr-mI,2027
|
|
640
|
+
ethereum/forks/prague/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
641
|
+
ethereum/forks/prague/vm/precompiled_contracts/point_evaluation.py,sha256=4Q1iQewN_r6a9RUdpWIWbrQ213sTHXETXhcB0rdiWpI,1917
|
|
642
|
+
ethereum/forks/prague/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
643
|
+
ethereum/forks/prague/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
644
|
+
ethereum/forks/prague/vm/precompiled_contracts/bls12_381/__init__.py,sha256=UBucprayzLNBbneqEbR1yvcowBPgpAtDzCGk-FtkhPo,10206
|
|
645
|
+
ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g1.py,sha256=cK4jOg_7gQUiXPhINR44wFjCyRJinmUrMj2pDYXaeUw,3527
|
|
646
|
+
ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g2.py,sha256=Ul9pbMDdMqvuslpSb3S4FVpkla2Sg-5YRjmWZfF3dSY,3509
|
|
647
|
+
ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py,sha256=ErU6NNPsPzyv6qtAck7XpJgM8oBzxL_4c9VwSRow7ys,1838
|
|
648
|
+
ethereum/forks/shanghai/__init__.py,sha256=UsT3yIIuZxNBG88McsJHC0SbJxpCT209jRbIF16kHkU,1740
|
|
649
|
+
ethereum/forks/shanghai/blocks.py,sha256=kGUnLfWmlySMOAZGDcogcv3Ajblm3K-2Qsgi6vLYzoE,11116
|
|
650
|
+
ethereum/forks/shanghai/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
651
|
+
ethereum/forks/shanghai/exceptions.py,sha256=qnPGiTQejxpr0iMkI7RR2XcUFelb0pbY93pCQLHMWBU,1655
|
|
652
|
+
ethereum/forks/shanghai/fork.py,sha256=QPZsMlBJo2ibRHto7s1NATO8GfwViztuHUl5LRjFagA,20886
|
|
653
|
+
ethereum/forks/shanghai/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
654
|
+
ethereum/forks/shanghai/state.py,sha256=7KL4uCN3V1dX2s8tRH_LoDYKvwqr7xZeUFmR5q1dBzA,13421
|
|
655
|
+
ethereum/forks/shanghai/transactions.py,sha256=XsJFsxb-y7uLJYuXmHReRMYtt-xWtCoug6kopV8qv9Q,16540
|
|
656
|
+
ethereum/forks/shanghai/trie.py,sha256=OkAepO3GeLSdbl7_wPtFM6Awi9uCeVDd2wT52eNNCM0,12190
|
|
657
|
+
ethereum/forks/shanghai/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
658
|
+
ethereum/forks/shanghai/utils/address.py,sha256=CaLbc_9CIXaAy1vk8DJlemQFe_1IfTBKWJ6h3RIPgkk,2403
|
|
659
|
+
ethereum/forks/shanghai/utils/hexadecimal.py,sha256=ATZYu7o7vYzrnoRxwRNIe3r-mlAljUdnPTwUvGT7C_Y,1156
|
|
660
|
+
ethereum/forks/shanghai/utils/message.py,sha256=6TqgzcFY9RG8j3FxMLWXmuL51hbV5enoT_2fzeLmRu0,2460
|
|
661
|
+
ethereum/forks/shanghai/vm/__init__.py,sha256=j1LEgFajj3regSfEmUDZT6PIHexcL1_zy0CSFbWUZKg,4697
|
|
662
|
+
ethereum/forks/shanghai/vm/exceptions.py,sha256=qPEmV5elT5Dm1xGlaqPDhqAYC1TEGSRb2--Kx9Z_gcg,2510
|
|
663
|
+
ethereum/forks/shanghai/vm/gas.py,sha256=uuA9XQfRJzob9-0Tk9njuB1QU27dYK8WdPWWnD5yMC0,6797
|
|
664
|
+
ethereum/forks/shanghai/vm/interpreter.py,sha256=7-mNm11VmwDTtKFguHHkfpBaS8N6A5CIcVgcfUWM0j4,8219
|
|
665
|
+
ethereum/forks/shanghai/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
666
|
+
ethereum/forks/shanghai/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
667
|
+
ethereum/forks/shanghai/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
668
|
+
ethereum/forks/shanghai/vm/instructions/__init__.py,sha256=u6p17YhDpuAC88PKK3lglBnQiFKI7x1-IX7WZFQxAbo,10290
|
|
669
|
+
ethereum/forks/shanghai/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
670
|
+
ethereum/forks/shanghai/vm/instructions/bitwise.py,sha256=Ze8xhVDw8c2cF0pBmk5DY7AfMixUBhTkDIGVCj1f1ug,4609
|
|
671
|
+
ethereum/forks/shanghai/vm/instructions/block.py,sha256=Q0rzh7Rs4CygJuyMBmypcELzlK3YAh5IiBkvdpgNFsw,6065
|
|
672
|
+
ethereum/forks/shanghai/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
673
|
+
ethereum/forks/shanghai/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
674
|
+
ethereum/forks/shanghai/vm/instructions/environment.py,sha256=uxX9FGjmqqHATw-Pw5Mnt2TIN2E1UjXRAKCPfGNnuNQ,11226
|
|
675
|
+
ethereum/forks/shanghai/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
676
|
+
ethereum/forks/shanghai/vm/instructions/log.py,sha256=JeD-VoXaguAnQHqTc55WcA0h3Zfsm0nbeKzclmH815w,2017
|
|
677
|
+
ethereum/forks/shanghai/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
678
|
+
ethereum/forks/shanghai/vm/instructions/stack.py,sha256=fm35seLTtMJ5OGqb_NtCLVG7fuuRja_Cc7FqfEErwIw,5437
|
|
679
|
+
ethereum/forks/shanghai/vm/instructions/storage.py,sha256=vPwIqZGsMiZGWzLsdrz9kqZnSnGxTM7-h4oHPGTbmjo,3520
|
|
680
|
+
ethereum/forks/shanghai/vm/instructions/system.py,sha256=4VI_YDQhHsJvR_oXEm_Q78TsnpGZ3xamhERCiPBbjfU,18376
|
|
681
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/__init__.py,sha256=wxHKw6NZG2p-E5TupmF6lI78mVhnMB4JT07ewpJMLLI,911
|
|
682
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/alt_bn128.py,sha256=NgCYQN0781Sboh5-3T6fJxkztX-SA9oQdZ9vcVWgvpc,5358
|
|
683
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/blake2f.py,sha256=u3OyCvERVXAKOkoK--YLCDCHQKCtZktjxv9SN9SmMzI,885
|
|
684
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
685
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
686
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/mapping.py,sha256=gWPcNzh5bL32CjvwO9zE6aW85jhbLWJPf9rjAQYWQ7Q,1142
|
|
687
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/modexp.py,sha256=W_8vJk5cOFWqigS3MSzegBNBCRa5z4tsZNgomKk0xzo,4309
|
|
688
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
689
|
+
ethereum/forks/shanghai/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
690
|
+
ethereum/forks/spurious_dragon/__init__.py,sha256=uhJw7rGZRoMvW5P3H_LuQ84vj0j1MADVqlP8IMNGO7U,1335
|
|
691
|
+
ethereum/forks/spurious_dragon/blocks.py,sha256=hDmCBIvX9FN8gtMwF_I20JFijvIOx7NK-khD8ETkvTM,8295
|
|
692
|
+
ethereum/forks/spurious_dragon/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
693
|
+
ethereum/forks/spurious_dragon/fork.py,sha256=QbnCpwhnnrBWa96qVtoOV_4UaNMD7lziNGXikW_YTXw,25540
|
|
694
|
+
ethereum/forks/spurious_dragon/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
695
|
+
ethereum/forks/spurious_dragon/state.py,sha256=UN-D0VdQJ4EvkjG10Qa_z34dwpFOmWj7VaWVa5iWIp4,13218
|
|
696
|
+
ethereum/forks/spurious_dragon/transactions.py,sha256=DSG1YQ2yOLcexQ3J5GEhAMiXUCzfiWqykQcMjlsw9Q4,7732
|
|
697
|
+
ethereum/forks/spurious_dragon/trie.py,sha256=jaGOZstwwtwEX35UZ0zOSW-quyDQdiXETyaP7DZRYn0,12059
|
|
698
|
+
ethereum/forks/spurious_dragon/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
699
|
+
ethereum/forks/spurious_dragon/utils/address.py,sha256=hjQ7cXZE1pVWlOv6yjfTAzniasoujj-lSj5BgikMY9w,1516
|
|
700
|
+
ethereum/forks/spurious_dragon/utils/hexadecimal.py,sha256=AI6KB9ueHRfxllANptAj8aSOAr9ANV_kIshG7PEc17M,1163
|
|
701
|
+
ethereum/forks/spurious_dragon/utils/message.py,sha256=sOkV30K7s1N9R1Qk2ASf8LZhmnYC9cTcC0ghiBsrOqs,2025
|
|
702
|
+
ethereum/forks/spurious_dragon/vm/__init__.py,sha256=LuJzeq1l5shNizmnDMvW_E0E0BzyvyvcU0z8BQP0IFE,5086
|
|
703
|
+
ethereum/forks/spurious_dragon/vm/exceptions.py,sha256=gW0BHy8gMORlzT7s164qly7rnaHtNg2aBLmJBQ-r7EM,1741
|
|
704
|
+
ethereum/forks/spurious_dragon/vm/gas.py,sha256=UzGtCwMZghn6awJeCNMiceAvyYxdlGky3wxDAVUM6J8,6186
|
|
705
|
+
ethereum/forks/spurious_dragon/vm/interpreter.py,sha256=9_hiKammSPiS16UgKdLKDMVA1DA8_YrJkpuHRxVh7Kg,7961
|
|
706
|
+
ethereum/forks/spurious_dragon/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
707
|
+
ethereum/forks/spurious_dragon/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
708
|
+
ethereum/forks/spurious_dragon/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
709
|
+
ethereum/forks/spurious_dragon/vm/instructions/__init__.py,sha256=qhwZb1hGZIaGQ1cjAdbOjPlgqj42sCcuSogEWgqSUbM,9361
|
|
710
|
+
ethereum/forks/spurious_dragon/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
711
|
+
ethereum/forks/spurious_dragon/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
712
|
+
ethereum/forks/spurious_dragon/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
713
|
+
ethereum/forks/spurious_dragon/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
714
|
+
ethereum/forks/spurious_dragon/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
715
|
+
ethereum/forks/spurious_dragon/vm/instructions/environment.py,sha256=9rKsbC7tBjNIvlCwww5Cz8wHTwwDk-woXdbVZxfJhY0,7480
|
|
716
|
+
ethereum/forks/spurious_dragon/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
717
|
+
ethereum/forks/spurious_dragon/vm/instructions/log.py,sha256=gzHhLj4M3oKljo_qo26gxRQTlPzLBrt9lw39xo1RKx8,1906
|
|
718
|
+
ethereum/forks/spurious_dragon/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
719
|
+
ethereum/forks/spurious_dragon/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
720
|
+
ethereum/forks/spurious_dragon/vm/instructions/storage.py,sha256=ozWhhgCv00bl2PEOkWMLRQPt8WjcKn9I_MWAkH7cf9U,1786
|
|
721
|
+
ethereum/forks/spurious_dragon/vm/instructions/system.py,sha256=jxeoKGlM-zSW8QLZalDoiyxv_RIXXisqShUAQL_Nqfw,13051
|
|
722
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/__init__.py,sha256=JHImrXhAcRYSqsuFAXMdMHiviDGbKnGDrs58idl0Q1w,537
|
|
723
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
724
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
725
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/mapping.py,sha256=J6Zw7cO6b0m5odIRC0erW5hhJ6fWyg6R599pVPB1vX0,673
|
|
726
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
727
|
+
ethereum/forks/spurious_dragon/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
728
|
+
ethereum/forks/tangerine_whistle/__init__.py,sha256=mIeaP_L_XtLA4_6of9QTAl9jkeCe53XO4p1FfF4eJUA,1020
|
|
729
|
+
ethereum/forks/tangerine_whistle/blocks.py,sha256=CyxLUIKkaC46JyZd8S_RK9TJ28sDHNBecJf5Wh6xr0M,8329
|
|
730
|
+
ethereum/forks/tangerine_whistle/bloom.py,sha256=6f1Qk73yK-TUEAZGs3SORrrw7PQc0T46ORQDUWEu1y0,2510
|
|
731
|
+
ethereum/forks/tangerine_whistle/fork.py,sha256=A5cWxFh2fJfEZPUfmJ0esZL19pUs9-icLLwTK4p8ZHw,25150
|
|
732
|
+
ethereum/forks/tangerine_whistle/fork_types.py,sha256=ii3_oU05QUcmB3cdMXy9VAS3AIpGBV6ccMiJNDiBCYI,1199
|
|
733
|
+
ethereum/forks/tangerine_whistle/state.py,sha256=0VidxkoS2_6Q4XRhg-LOGg3g6sKOd_iRYBMgUsSaNbQ,11562
|
|
734
|
+
ethereum/forks/tangerine_whistle/transactions.py,sha256=ATgTujWkikcJKje1g1UX_GLg8pb-DycVIm-gJNSu4lw,6890
|
|
735
|
+
ethereum/forks/tangerine_whistle/trie.py,sha256=Z1OSaZvQB8usUasuKnWWmNNeZ9Q86D0xwp_qPeDdrcA,12050
|
|
736
|
+
ethereum/forks/tangerine_whistle/utils/__init__.py,sha256=u2Expm1_fCU6Uu1F28NviL4xpqdCMq_lB4TfM3lsSYM,58
|
|
737
|
+
ethereum/forks/tangerine_whistle/utils/address.py,sha256=Qf-_QX0gyGI3XExIzMK1RKOBrKgMiBgGl7HdTcpcGMQ,1520
|
|
738
|
+
ethereum/forks/tangerine_whistle/utils/hexadecimal.py,sha256=KMMc3AkjY0JmdI19kAdOTREraH9aP0sOTp5ETgLiT14,1165
|
|
739
|
+
ethereum/forks/tangerine_whistle/utils/message.py,sha256=oKc2qE2c1MibdM28g_lm-W-QebXs6QfV8eQ39NyTIEA,2029
|
|
740
|
+
ethereum/forks/tangerine_whistle/vm/__init__.py,sha256=rUlpveuF81_FMuk2UCqyrIsqUzQ59DlO0ATraJb8tLU,3893
|
|
741
|
+
ethereum/forks/tangerine_whistle/vm/exceptions.py,sha256=gW0BHy8gMORlzT7s164qly7rnaHtNg2aBLmJBQ-r7EM,1741
|
|
742
|
+
ethereum/forks/tangerine_whistle/vm/gas.py,sha256=EZaoOqv4w3ByuKojtzJ-zzoodn_kaIhkCNDWQBBRMfw,6186
|
|
743
|
+
ethereum/forks/tangerine_whistle/vm/interpreter.py,sha256=WfIfS46xq5RSnpwemIOO-icEA_KBL0SfLwHruyMOimk,7257
|
|
744
|
+
ethereum/forks/tangerine_whistle/vm/memory.py,sha256=1HMaUBgi8pYsfpwwXtiz_BlWzqndyLsyN1dP-LAPejw,1762
|
|
745
|
+
ethereum/forks/tangerine_whistle/vm/runtime.py,sha256=q4ZWfSz0dRSUYRpGL2hJKfsHt18VQuGrzo0_nEawi-o,1971
|
|
746
|
+
ethereum/forks/tangerine_whistle/vm/stack.py,sha256=pP1mjaeZ_TGzx-_U-xbekaXRh256bJla-TS14wxsYI4,950
|
|
747
|
+
ethereum/forks/tangerine_whistle/vm/instructions/__init__.py,sha256=qhwZb1hGZIaGQ1cjAdbOjPlgqj42sCcuSogEWgqSUbM,9361
|
|
748
|
+
ethereum/forks/tangerine_whistle/vm/instructions/arithmetic.py,sha256=tTzqxjoykEv9z9ZJOdF_-PRQpD8CfNJjpI8l27c65Jk,7168
|
|
749
|
+
ethereum/forks/tangerine_whistle/vm/instructions/bitwise.py,sha256=tDnnPLOraiUMe2WNyDM5gtElKjvaHFAZ3mfAGeUMCMc,2847
|
|
750
|
+
ethereum/forks/tangerine_whistle/vm/instructions/block.py,sha256=-lnNxs80anfneE_OmkMp-t75xq9g5ljWsgNr3uhNE2A,3928
|
|
751
|
+
ethereum/forks/tangerine_whistle/vm/instructions/comparison.py,sha256=80tZGKMa6w3mTJ4Ds5rcahs5SPXT4x_-u9NoLLLBZcQ,2994
|
|
752
|
+
ethereum/forks/tangerine_whistle/vm/instructions/control_flow.py,sha256=2CudOg2Nx3BSjCAv4uy19RhlRSKj-cYwQIxv5cLxPxk,3124
|
|
753
|
+
ethereum/forks/tangerine_whistle/vm/instructions/environment.py,sha256=9rKsbC7tBjNIvlCwww5Cz8wHTwwDk-woXdbVZxfJhY0,7480
|
|
754
|
+
ethereum/forks/tangerine_whistle/vm/instructions/keccak.py,sha256=Tx2R8jo5rgZDTY5chEm5KgDy7HZFYTxh3YtSeHYUjJY,1452
|
|
755
|
+
ethereum/forks/tangerine_whistle/vm/instructions/log.py,sha256=gzHhLj4M3oKljo_qo26gxRQTlPzLBrt9lw39xo1RKx8,1906
|
|
756
|
+
ethereum/forks/tangerine_whistle/vm/instructions/memory.py,sha256=0sJHMfH_9-kN4am_BdS998Jp9TAJyKhDkCcgk0-Ylmg,2845
|
|
757
|
+
ethereum/forks/tangerine_whistle/vm/instructions/stack.py,sha256=bCBrMKahgV4VftYYxCbw8XhJ_Ra7ZC_JUwmgsMHvQXI,5265
|
|
758
|
+
ethereum/forks/tangerine_whistle/vm/instructions/storage.py,sha256=ozWhhgCv00bl2PEOkWMLRQPt8WjcKn9I_MWAkH7cf9U,1786
|
|
759
|
+
ethereum/forks/tangerine_whistle/vm/instructions/system.py,sha256=BVvirtEloVCLXOA1zZf9zDYEDX52I2hhNIYE2FM0SYw,12727
|
|
760
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/__init__.py,sha256=JHImrXhAcRYSqsuFAXMdMHiviDGbKnGDrs58idl0Q1w,537
|
|
761
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ecrecover.py,sha256=AZ8KAqCbx5K0yTUXkJBHfiN4gBdkTt-maULxTkCVvRM,1694
|
|
762
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/identity.py,sha256=6qvxdAvurNtPwSBYSlMpxLncLubVgxhoyW6IyC1hszA,752
|
|
763
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/mapping.py,sha256=J6Zw7cO6b0m5odIRC0erW5hhJ6fWyg6R599pVPB1vX0,673
|
|
764
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ripemd160.py,sha256=N6iI5fH49v3Ki0e-meqkPNPWRywD3M0CSPywgXTFaaM,947
|
|
765
|
+
ethereum/forks/tangerine_whistle/vm/precompiled_contracts/sha256.py,sha256=Qf_hQ5hOmWvCTtfCQTRxWnK_DEfNjXkJPZTo81wtpao,778
|
|
766
|
+
ethereum/utils/__init__.py,sha256=6xrIQ50F1rmLnyR0BEK_n1Q-vBedyx0jZfir81MNmf4,380
|
|
767
|
+
ethereum/utils/byte.py,sha256=iV4Ma4C91juncS2tPOLNGJHMYY1L6NMd7LcGRiriT0M,1309
|
|
768
|
+
ethereum/utils/hexadecimal.py,sha256=O8dv3bNGPYAD2QsviSMXVHgFXJuCp_t7auSQI677Zj0,4796
|
|
769
|
+
ethereum/utils/numeric.py,sha256=yx2ztw8uSymYw-BdPcDjCKhBTxeUwPVPoxxGmKgP39U,4987
|
|
770
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/licenses/LICENSE.md,sha256=gnMMYE0Y8EDZKE0ue2eCduvgXkZF9Ay0kiqfKi8gnY0,6933
|
|
771
|
+
ethereum_optimized/__init__.py,sha256=3VNcEUsEqJJmiLu8gSyF7NCi6kOD3QppFhLGpcz-2dM,2174
|
|
772
|
+
ethereum_optimized/fork.py,sha256=BePdPCgMooawjZz2_cjCzIj8JCET6522DKb-FFsoq3U,1803
|
|
773
|
+
ethereum_optimized/state_db.py,sha256=d7Gl4UDKl1A-Gafy10Wh0AvinG81Soj8BxSd6JlU8ZM,13407
|
|
774
|
+
ethereum_optimized/utils.py,sha256=MvV6AlFI33nZllmLxydaJIVccpicH1DMKqX-1Z71yX4,436
|
|
775
|
+
ethereum_spec_tools/__init__.py,sha256=KR2QyRxYDWtk8pcI54aA2JTqKg9RkWlS1FuaY883-xg,151
|
|
776
|
+
ethereum_spec_tools/docc.py,sha256=C5i8cxVOIO3tz__hMG-MkUbxxl-xYcALoKNVeTQuF-o,36356
|
|
777
|
+
ethereum_spec_tools/forks.py,sha256=GXwiN4M5doU9cPTWmjvLc8-IJc-FFxUTRHNdrI73Auo,8867
|
|
778
|
+
ethereum_spec_tools/patch_tool.py,sha256=7qMdGFhvhhycPVV66Fp1fUsr3KnZqg_0PHDeQTPvsJQ,2177
|
|
779
|
+
ethereum_spec_tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
780
|
+
ethereum_spec_tools/sync.py,sha256=BK8yu9o3NOVWeemBk-VveTKrrek-MCfpbYBDdKJCNRA,33372
|
|
781
|
+
ethereum_spec_tools/evm_tools/__init__.py,sha256=2I6mGjNqgLi7alCdoMRXP2CcsMvjW7OiWz7sLkL288o,3334
|
|
782
|
+
ethereum_spec_tools/evm_tools/__main__.py,sha256=7VdByHvtGhAhXKX1bhSm2p7eCtri2t4KUFEtcCaXrgM,106
|
|
783
|
+
ethereum_spec_tools/evm_tools/daemon.py,sha256=fhXZys1A3NK7lsEXrYEIVuypLWFRTGFwth3hfaIF85o,6486
|
|
784
|
+
ethereum_spec_tools/evm_tools/utils.py,sha256=xp8fOMUNvtxtbxShdSSxtW5UtU_llywr2Fovvd8NzSA,5069
|
|
785
|
+
ethereum_spec_tools/evm_tools/b11r/__init__.py,sha256=Klu2WzUFmQq7qKk17EckBGM4rsnTAT_PVn-uqdGRajs,3994
|
|
786
|
+
ethereum_spec_tools/evm_tools/b11r/b11r_types.py,sha256=IYlOnVg5VfEqoCkOXWS4pTz9bQuUHVK05GohPWppx28,5577
|
|
787
|
+
ethereum_spec_tools/evm_tools/loaders/__init__.py,sha256=7rU9-adjFErGBdi58cL0c_I1BfXJWHE25KBKgJMpSd0,49
|
|
788
|
+
ethereum_spec_tools/evm_tools/loaders/fixture_loader.py,sha256=eysN3eAG9zlDgMHHSxonhd4xI20-0w6NqUijGHOcSAU,6511
|
|
789
|
+
ethereum_spec_tools/evm_tools/loaders/fork_loader.py,sha256=1UVRtsCkof382VqBrxEZMAIG8BsUQmp8AvosPpMa5LA,10027
|
|
790
|
+
ethereum_spec_tools/evm_tools/loaders/transaction_loader.py,sha256=vDO9kYH0dsD5QEMANG28ZVmznUTgqVmhXm9bRlqiL_A,7200
|
|
791
|
+
ethereum_spec_tools/evm_tools/statetest/__init__.py,sha256=7uP1EWVpFrSL5uAAsDngD4_jwTN5Cl3LVmMtUkwmODA,8012
|
|
792
|
+
ethereum_spec_tools/evm_tools/t8n/__init__.py,sha256=JUlA0Z8CNw2rjQH5jpkNF6ndyFBxqcZ9emm8ts_bV-Q,14181
|
|
793
|
+
ethereum_spec_tools/evm_tools/t8n/env.py,sha256=mmHfXeADd7BWSViw829fkU2_PIE-Apt4tOaACenmO4Y,11361
|
|
794
|
+
ethereum_spec_tools/evm_tools/t8n/t8n_types.py,sha256=4UDj1q1KlAQaZLGvXNMPfRg_b0UP4g43WOWM6RGkBq4,13509
|
|
795
|
+
ethereum_spec_tools/evm_tools/t8n/evm_trace/__init__.py,sha256=sE3msKQptn2oqDths8hoUdXKPxjYi1DNtYbN1DkZIEs,80
|
|
796
|
+
ethereum_spec_tools/evm_tools/t8n/evm_trace/count.py,sha256=6FATZyN8sbqV5S_DLwDjNkwxir4hO14SNBK91WKuoYM,1289
|
|
797
|
+
ethereum_spec_tools/evm_tools/t8n/evm_trace/eip3155.py,sha256=r5sVgprVmXihx9_QEEDABD1pZKQrzZi_WMCilFUGnVY,10244
|
|
798
|
+
ethereum_spec_tools/evm_tools/t8n/evm_trace/group.py,sha256=GeC2bSqLKSR4BWBffRPlgGsmG91RwMxvKJKkXn0ldDw,800
|
|
799
|
+
ethereum_spec_tools/evm_tools/t8n/evm_trace/protocols.py,sha256=hoysHAJtV1U7GiGxMqEK21TdjKVlwQY9QePjwB1-TEY,1066
|
|
800
|
+
ethereum_spec_tools/lint/__init__.py,sha256=qVCIwtLSSO8KDWEoSAYzQu6HKVfOuE8Hx7rB29D80j8,4861
|
|
801
|
+
ethereum_spec_tools/lint/__main__.py,sha256=F8cxAABMVgIpuBJnH0v2ZCspSfZKEqI7wE3CdqhysZc,129
|
|
802
|
+
ethereum_spec_tools/lint/lints/glacier_forks_hygiene.py,sha256=Ck6gPGlqMkx3FMk7ixkExBdfe-d5IvBjT_K49KPInL8,8038
|
|
803
|
+
ethereum_spec_tools/lint/lints/import_hygiene.py,sha256=_7_31E9jaFvzZEwXcRzohj--Is32G0qua_HPZnodLhw,4716
|
|
804
|
+
ethereum_spec_tools/lint/lints/patch_hygiene.py,sha256=zDH8zbpp8qTYghbaRSPyqW5vCKrbZ6pL1EWUvS66P70,4682
|
|
805
|
+
ethereum_spec_tools/new_fork/__init__.py,sha256=YXR1bRx5YeQ4NJ-7W7pzkUY2LPd7CfbJFczdiLIywOQ,116
|
|
806
|
+
ethereum_spec_tools/new_fork/builder.py,sha256=mlZ_8ysEFQ4JwXJn_jJRUEgoBufvy3qWDz5z7DS2DO0,12349
|
|
807
|
+
ethereum_spec_tools/new_fork/cli.py,sha256=Zp5ylNuViGJXKXy8D32WTUmyqrvniEQjanE6i0ACmGw,5810
|
|
808
|
+
ethereum_spec_tools/new_fork/codemod/__init__.py,sha256=8lLYmBcO3gFOJrzLjxAdudeMXlkpiZSwr7QXh7rjKMI,49
|
|
809
|
+
ethereum_spec_tools/new_fork/codemod/comment.py,sha256=bO1iN4kXDT1sZDXQHPjg9gAJbxJd7_fI7q-TU9IaLvE,2066
|
|
810
|
+
ethereum_spec_tools/new_fork/codemod/constant.py,sha256=95ZKUS9eLq0md6xs2efGHl5JEtUn2EOfUUiBh1o1Ctg,4256
|
|
811
|
+
ethereum_spec_tools/new_fork/codemod/string.py,sha256=WfhepbOdKfo3RfpVMsn7Dx0cW8uL5hQ1LtCMk44fmNs,2072
|
|
812
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/METADATA,sha256=_5nlY3oKRqtwn9L0tvvgvvh2mJoKMvWPCpDdfhYF9T0,11116
|
|
813
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
814
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/entry_points.txt,sha256=KtXlL7m18beCxa4jDkkGNnIxDtaR6ByJVucZ1B--H1c,895
|
|
815
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/top_level.txt,sha256=VnJm8RS8ymrOAk_hEVwCytA42PofQsrRd_m6jBL3S10,48
|
|
816
|
+
ethereum_execution-2.18.0rc6.dev2.dist-info/RECORD,,
|