View Source Stellar.TxBuild.InvokeHostFunction (Elixir Stellar SDK v0.15.1)

Performs the following operations:

  • Invokes contract functions.
  • Upload WASM of the new contracts.
  • Deploys new contracts using the uploaded WASM or built-in implementations.

Link to this section Summary

Link to this section Types

@type functions() :: [Stellar.TxBuild.HostFunction.t()]
@type t() :: %Stellar.TxBuild.InvokeHostFunction{
  functions: functions(),
  source_account: Stellar.TxBuild.OptionalAccount.t()
}
@type validation() :: {:ok, any()} | {:error, atom()}