Class SorobanResources

java.lang.Object
org.stellar.sdk.xdr.SorobanResources

public class SorobanResources extends Object
SorobanResources's original definition in the XDR file is:
 struct SorobanResources
 {
     // The ledger footprint of the transaction.
     LedgerFootprint footprint;
     // The maximum number of instructions this transaction can use
     uint32 instructions;

     // The maximum number of bytes this transaction can read from ledger
     uint32 readBytes;
     // The maximum number of bytes this transaction can write to ledger
     uint32 writeBytes;
 };