View Source StellarBase.XDR.SorobanResources (Elixir Stellar Base v0.12.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 SorobanResources type.

Link to this section Summary

Link to this section Types

Link to this type

extended_meta_data_size_bytes_type()

View Source
@type extended_meta_data_size_bytes_type() :: StellarBase.XDR.UInt32.t()
@type footprint_type() :: StellarBase.XDR.LedgerFootprint.t()
@type instructions_type() :: StellarBase.XDR.UInt32.t()
@type read_bytes_type() :: StellarBase.XDR.UInt32.t()
@type t() :: %StellarBase.XDR.SorobanResources{
  extended_meta_data_size_bytes: extended_meta_data_size_bytes_type(),
  footprint: footprint_type(),
  instructions: instructions_type(),
  read_bytes: read_bytes_type(),
  write_bytes: write_bytes_type()
}
@type write_bytes_type() :: StellarBase.XDR.UInt32.t()

Link to this section Functions

Link to this function

new(footprint, instructions, read_bytes, write_bytes, extended_meta_data_size_bytes)

View Source
@spec new(
  footprint :: footprint_type(),
  instructions :: instructions_type(),
  read_bytes :: read_bytes_type(),
  write_bytes :: write_bytes_type(),
  extended_meta_data_size_bytes :: extended_meta_data_size_bytes_type()
) :: t()