GenArtInfo

Git Source

Struct of generative art information

  • minter Address of initial token owner
  • seed Hash of randomly generated seed
  • fxParams Random sequence of fixed-length bytes used as token input
struct GenArtInfo {
    address minter;
    bytes32 seed;
    bytes fxParams;
}