/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; export type CandyMachineData = { uuid: string; price: beet.bignum; itemsAvailable: beet.bignum; goLiveDate: beet.COption; }; /** * @category userTypes * @category generated */ export const candyMachineDataBeet = new beet.FixableBeetArgsStruct( [ ['uuid', beet.utf8String], ['price', beet.u64], ['itemsAvailable', beet.u64], ['goLiveDate', beet.coption(beet.i64)], ], 'CandyMachineData', );