Class StorageChange

java.lang.Object
com.hedera.hashgraph.sdk.StorageChange

@Deprecated public class StorageChange extends Object
Deprecated.
- User mirror nodes for contract traceability instead A storage slot change description. See Hedera Documentation
  • Field Details

    • slot

      public final BigInteger slot
      Deprecated.
      The storage slot changed. Up to 32 bytes, big-endian, zero bytes left trimmed
    • valueRead

      public final BigInteger valueRead
      Deprecated.
      The value read from the storage slot. Up to 32 bytes, big-endian, zero bytes left trimmed. Because of the way SSTORE operations are charged the slot is always read before being written to
    • valueWritten

      @Nullable public final BigInteger valueWritten
      Deprecated.
      The new value written to the slot. Up to 32 bytes, big-endian, zero bytes left trimmed. If a value of zero is written the valueWritten will be present but the inner value will be absent. If a value was read and not written this value will not be present.
  • Constructor Details

    • StorageChange

      StorageChange(BigInteger slot, BigInteger valueRead, @Nullable BigInteger valueWritten)
      Deprecated.
      Constructor.
      Parameters:
      slot - the storage slot charged
      valueRead - the value read
      valueWritten - the value written