View Source StellarBase.XDR.InvokeContractArgs (Elixir Stellar Base v0.16.0)

Automatically generated by xdrgen DO NOT EDIT or your changes may be overwritten

Target implementation: elixir_xdr at https://hex.pm/packages/elixir_xdr

Representation of Stellar InvokeContractArgs type.

Summary

Types

@type args_type() :: StellarBase.XDR.SCValList.t()
Link to this type

contract_address_type()

View Source
@type contract_address_type() :: StellarBase.XDR.SCAddress.t()
@type function_name_type() :: StellarBase.XDR.SCSymbol.t()
@type t() :: %StellarBase.XDR.InvokeContractArgs{
  args: args_type(),
  contract_address: contract_address_type(),
  function_name: function_name_type()
}

Functions

Link to this function

new(contract_address, function_name, args)

View Source
@spec new(
  contract_address :: contract_address_type(),
  function_name :: function_name_type(),
  args :: args_type()
) :: t()