gleeth/ethereum/contract
Values
pub fn build_call_data(
function_name: String,
parameters: List(#(types.AbiType, types.AbiValue)),
) -> Result(String, types.GleethError)
pub fn encode_parameters(
parameters: List(#(types.AbiType, types.AbiValue)),
) -> Result(String, types.GleethError)
pub fn generate_function_selector(
function_name: String,
param_types: List(types.AbiType),
) -> Result(String, types.GleethError)
pub fn parse_parameter(
param_str: String,
) -> Result(#(types.AbiType, types.AbiValue), types.GleethError)