@ -5315,17 +5315,18 @@ defmodule Explorer.Chain do
[ ]
[ ]
end
end
def is_ proxy_contract?( abi ) when not is_nil ( abi ) do
def proxy_contract? ( abi ) when not is_nil ( abi ) do
implementation_method_abi =
implementation_method_abi =
abi
abi
|> Enum . find ( fn method ->
|> Enum . find ( fn method ->
Map . get ( method , " name " ) == " implementation "
Map . get ( method , " name " ) == " implementation " ||
master_copy_pattern? ( method )
end )
end )
if implementation_method_abi , do : true , else : false
if implementation_method_abi , do : true , else : false
end
end
def is_ proxy_contract?( abi ) when is_nil ( abi ) do
def proxy_contract? ( abi ) when is_nil ( abi ) do
false
false
end
end
@ -5337,10 +5338,37 @@ defmodule Explorer.Chain do
Map . get ( method , " name " ) == " implementation "
Map . get ( method , " name " ) == " implementation "
end )
end )
implementation_method_abi_state_mutability = Map . get ( implementation_method_abi , " stateMutability " )
implementation_method_abi_state_mutability =
implementation_method_abi && Map . get ( implementation_method_abi , " stateMutability " )
is_eip1967 = if implementation_method_abi_state_mutability == " nonpayable " , do : true , else : false
is_eip1967 = if implementation_method_abi_state_mutability == " nonpayable " , do : true , else : false
if is_eip1967 do
master_copy_method_abi =
abi
|> Enum . find ( fn method ->
master_copy_pattern? ( method )
end )
cond do
is_eip1967 ->
get_implementation_address_hash_eip_1967 ( proxy_address_hash )
implementation_method_abi ->
get_implementation_address_hash_basic ( proxy_address_hash , abi )
master_copy_method_abi ->
get_implementation_address_hash_from_master_copy_pattern ( proxy_address_hash )
true ->
nil
end
end
def get_implementation_address_hash ( proxy_address_hash , abi ) when is_nil ( proxy_address_hash ) or is_nil ( abi ) do
nil
end
defp get_implementation_address_hash_eip_1967 ( proxy_address_hash ) do
json_rpc_named_arguments = Application . get_env ( :explorer , :json_rpc_named_arguments )
json_rpc_named_arguments = Application . get_env ( :explorer , :json_rpc_named_arguments )
# https://eips.ethereum.org/EIPS/eip-1967
# https://eips.ethereum.org/EIPS/eip-1967
@ -5354,12 +5382,10 @@ defmodule Explorer.Chain do
json_rpc_named_arguments
json_rpc_named_arguments
)
)
if String . length ( implementation_address ) > 42 do
abi_decode_address_output ( implementation_address )
" 0x " <> String . slice ( implementation_address , - 40 , 40 )
else
implementation_address
end
end
else
defp get_implementation_address_hash_basic ( proxy_address_hash , abi ) do
# 5c60da1b = keccak256(implementation())
# 5c60da1b = keccak256(implementation())
implementation_address =
implementation_address =
case Reader . query_contract ( proxy_address_hash , abi , %{
case Reader . query_contract ( proxy_address_hash , abi , %{
@ -5369,20 +5395,62 @@ defmodule Explorer.Chain do
_ -> nil
_ -> nil
end
end
if implementation_address do
address_to_hex ( implementation_address )
if String . starts_with? ( implementation_address , " 0x " ) do
implementation_address
else
" 0x " <> Base . encode16 ( implementation_address , case : :lower )
end
end
else
nil
defp get_implementation_address_hash_from_master_copy_pattern ( proxy_address_hash ) do
json_rpc_named_arguments = Application . get_env ( :explorer , :json_rpc_named_arguments )
master_copy_storage_pointer = " 0x0 "
{ :ok , implementation_address } =
Contract . eth_get_storage_at_request (
proxy_address_hash ,
master_copy_storage_pointer ,
nil ,
json_rpc_named_arguments
)
abi_decode_address_output ( implementation_address )
end
defp master_copy_pattern? ( method ) do
Map . get ( method , " type " ) == " constructor " &&
method
|> Enum . find ( fn item ->
case item do
{ " inputs " , inputs } ->
master_copy_input? ( inputs )
_ ->
false
end
end
end )
end
end
defp master_copy_input? ( inputs ) do
inputs
|> Enum . find ( fn input ->
Map . get ( input , " name " ) == " _masterCopy "
end )
end
end
def get_implementation_address_hash ( proxy_address_hash , abi ) when is_nil ( proxy_address_hash ) or is_nil ( abi ) do
defp abi_decode_address_output ( address ) do
nil
if String . length ( address ) > 42 do
" 0x " <> String . slice ( address , - 40 , 40 )
else
address
end
end
defp address_to_hex ( address ) do
if address do
if String . starts_with? ( address , " 0x " ) do
address
else
" 0x " <> Base . encode16 ( address , case : :lower )
end
end
end
end
def get_implementation_abi ( implementation_address_hash_string ) when not is_nil ( implementation_address_hash_string ) do
def get_implementation_abi ( implementation_address_hash_string ) when not is_nil ( implementation_address_hash_string ) do