ethereum.forks.berlin.vm.precompiled_contracts.mappingethereum.forks.london.vm.precompiled_contracts.mapping

Precompiled Contract Addresses.

.. contents:: Table of Contents :backlinks: none :local:

Introduction

Mapping of precompiled contracts to their implementations.

PRE_COMPILED_CONTRACTS

37
PRE_COMPILED_CONTRACTS: Dict[Address, Callable] = {
38
    ECRECOVER_ADDRESS: ecrecover,
39
    SHA256_ADDRESS: sha256,
40
    RIPEMD160_ADDRESS: ripemd160,
41
    IDENTITY_ADDRESS: identity,
42
    MODEXP_ADDRESS: modexp,
43
    ALT_BN128_ADD_ADDRESS: alt_bn128_add,
44
    ALT_BN128_MUL_ADDRESS: alt_bn128_mul,
45
    ALT_BN128_PAIRING_CHECK_ADDRESS: alt_bn128_pairing_check,
46
    BLAKE2F_ADDRESS: blake2f,
47
}