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

Summary

Types

@type contract_type() :: StellarBase.XDR.SCAddress.t()
@type durability_type() :: StellarBase.XDR.ContractDataDurability.t()
@type key_type() :: StellarBase.XDR.SCVal.t()
@type t() :: %StellarBase.XDR.LedgerKeyContractData{
  contract: contract_type(),
  durability: durability_type(),
  key: key_type()
}

Functions

Link to this function

new(contract, key, durability)

View Source
@spec new(
  contract :: contract_type(),
  key :: key_type(),
  durability :: durability_type()
) :: t()