Interface SlotValueOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
SlotValue, SlotValue.Builder

@Generated public interface SlotValueOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    * The word of the next key in this contract's storage list (if any).
    com.google.protobuf.ByteString
    * The word of the previous key in this contract's storage list (if any).
    com.google.protobuf.ByteString
    * The EVM value in this slot, left-padded with zeros to form a 256-bit word.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • getValue

      com.google.protobuf.ByteString getValue()
       *
       The EVM value in this slot, left-padded with zeros to form a 256-bit word.
       
      bytes value = 1;
      Returns:
      The value.
    • getPreviousKey

      com.google.protobuf.ByteString getPreviousKey()
       *
       The word of the previous key in this contract's storage list (if any).
       
      bytes previous_key = 2;
      Returns:
      The previousKey.
    • getNextKey

      com.google.protobuf.ByteString getNextKey()
       *
       The word of the next key in this contract's storage list (if any).
       
      bytes next_key = 3;
      Returns:
      The nextKey.