SharedObjectRead
The transaction accepted a shared object as input, but only to read it.
type SharedObjectRead {
  address: SuiAddress!
  version: UInt53!
  digest: String!
  object: Object
}
Fields
SharedObjectRead.address ● SuiAddress! non-null scalar
ID of the object being read.
SharedObjectRead.version ● UInt53! non-null scalar
Version of the object being read.
SharedObjectRead.digest ● String! non-null scalar
32-byte hash that identifies the object's contents at this version, encoded as a Base58 string.
SharedObjectRead.object ● Object object
The object at this version. May not be available due to pruning.
Implemented By
UnchangedSharedObject  union