Interface SlotKeyOrBuilder

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

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

    Modifier and Type
    Method
    Description
    * The Contract ID of the contract that owns (and pays for) this slot.
    com.google.protobuf.ByteString
    * The EVM key of this slot, left-padded with zeros to form a 256-bit word.
    boolean
    * The Contract ID of the contract that owns (and pays for) this slot.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasContractID

      boolean hasContractID()
       *
       The Contract ID of the contract that owns (and pays for) this slot.
       
      .proto.ContractID contractID = 1;
      Returns:
      Whether the contractID field is set.
    • getContractID

      ContractID getContractID()
       *
       The Contract ID of the contract that owns (and pays for) this slot.
       
      .proto.ContractID contractID = 1;
      Returns:
      The contractID.
    • getKey

      com.google.protobuf.ByteString getKey()
       *
       The EVM key of this slot, left-padded with zeros to form a 256-bit word.
       
      bytes key = 2;
      Returns:
      The key.