staticLayout property

StructLayout staticLayout
getter/setter pair

Implementation

static StructLayout staticLayout = LayoutConst.struct([
  LayoutConst.string(property: "name"),
  LayoutConst.string(property: "symbol"),
  LayoutConst.string(property: "uri"),
  LayoutConst.u16(property: "sellerFeeBasisPoints"),
  LayoutConst.boolean(property: "primarySaleHappened"),
  LayoutConst.boolean(property: "isMutable"),
  LayoutConst.optional(LayoutConst.u8(), property: "editionNonce"),
  LayoutConst.optional(LayoutConst.u8(), property: "tokenStandard"),
  LayoutConst.optional(Collection.staticLayout, property: "collection"),
  LayoutConst.optional(Uses.staticLayout, property: "uses"),
  LayoutConst.u8(property: "tokenProgramVersion"),
  LayoutConst.vec(Creator.creatorLayout, property: "creators")
], property: "metaData");