Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Jan 29, 2024
1 parent 702b7a3 commit bb6dcef
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions blockbuster/src/programs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@ pub mod token_account;
pub mod token_metadata;

// Note: `ProgramParseResult` used to contain the following variants that have been deprecated and
// removed from blockbuster since the `version-1.16` tag of blockbuster:
// removed from blockbuster since the `version-1.16` tag:
// CandyGuard(&'a CandyGuardAccountData),
// CandyMachine(&'a CandyMachineAccountData),
// CandyMachineCore(&'a CandyMachineCoreAccountData),
//
// The reason Candy Machine V3 parsing was removed was because Candy Guard (`mpl-candy-guard`) and
// Candy Machine V3 (`mpl-candy-machine-core`) were dependent upon a specific Solana version (1.16)
// at the time, there was no Candy Machine parsing in DAS (`digital-asset-rpc-infrastructure`), and
// we wanted to use the Rust clients for Token Metadata and Bubblegum so that going forward we could
// more easily update blockbuster to new Solana versions going forward.
// Candy Machine V3 parsing was removed was because Candy Guard (`mpl-candy-guard`) and
// Candy Machine V3 (`mpl-candy-machine-core`) were dependent upon a specific Solana
// version (1.16), there was no Candy Machine parsing in DAS (`digital-asset-rpc-infrastructure`),
// and we wanted to use the Rust clients for Token Metadata and Bubblegum so that going forward we
// could more easily update blockbuster to new Solana versions.
//
// Candy Machine V2 (`mpl-candy-machine`) parsing did not depend on the `mpl-candy-machine` crate
// as its types were copied, but we removed V2 parsing at the same time as V3 parsing as it was not
// being used.
// Candy Machine V2 (`mpl-candy-machine`) parsing was removed at the same time as V3 because even
// though it did not depend on the `mpl-candy-machine` crate, it was also not being used by DAS.
pub enum ProgramParseResult<'a> {
Bubblegum(&'a BubblegumInstruction),
TokenMetadata(&'a TokenMetadataAccountState),
Expand Down

0 comments on commit bb6dcef

Please sign in to comment.