View Source StellarBase.XDR.SorobanResources (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 SorobanResources type.

Summary

Types

@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{
  footprint: footprint_type(),
  instructions: instructions_type(),
  read_bytes: read_bytes_type(),
  write_bytes: write_bytes_type()
}
@type write_bytes_type() :: StellarBase.XDR.UInt32.t()

Functions

Link to this function

new(footprint, instructions, read_bytes, write_bytes)

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