ethereum.forks.homestead.vm.precompiled_contracts
Precompiled Contract Addresses.
.. contents:: Table of Contents :backlinks: none :local:
Introduction
Addresses of precompiled contracts and mappings to their implementations.
__all__
| 17 | __all__ = ( |
|---|---|
| 18 | "ECRECOVER_ADDRESS", |
| 19 | "SHA256_ADDRESS", |
| 20 | "RIPEMD160_ADDRESS", |
| 21 | "IDENTITY_ADDRESS", |
| 22 | ) |
ECRECOVER_ADDRESS
| 24 | ECRECOVER_ADDRESS = hex_to_address("0x01") |
|---|
SHA256_ADDRESS
| 25 | SHA256_ADDRESS = hex_to_address("0x02") |
|---|
RIPEMD160_ADDRESS
| 26 | RIPEMD160_ADDRESS = hex_to_address("0x03") |
|---|
IDENTITY_ADDRESS
| 27 | IDENTITY_ADDRESS = hex_to_address("0x04") |
|---|