diff --git a/Cargo.lock b/Cargo.lock index fc222c8..2355251 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2168,8 +2168,9 @@ dependencies = [ [[package]] name = "mpl-bubblegum" -version = "1.0.0" -source = "git+https://github.com/metaplex-foundation/mpl-bubblegum.git?rev=c03745be2dbfe142a60abfbb3d98ccf226d2e834#c03745be2dbfe142a60abfbb3d98ccf226d2e834" +version = "1.0.1-beta.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a151b3b65fc4632bce9c9b93267e1819c15728abd7ef3db5d0174f6becc0645c" dependencies = [ "borsh 0.10.3", "kaigan", diff --git a/blockbuster/Cargo.toml b/blockbuster/Cargo.toml index e1f35b9..ba850dc 100644 --- a/blockbuster/Cargo.toml +++ b/blockbuster/Cargo.toml @@ -11,7 +11,7 @@ readme = "../README.md" [dependencies] spl-account-compression = { version = "0.2.0", features = ["no-entrypoint"] } spl-noop = { version = "0.1.3", features = ["no-entrypoint"] } -mpl-bubblegum = { git = "https://github.com/metaplex-foundation/mpl-bubblegum.git", rev = "c03745be2dbfe142a60abfbb3d98ccf226d2e834" } +mpl-bubblegum = "1.0.1-beta.1" mpl-candy-guard = { version="2.0.0", features = ["no-entrypoint"] } mpl-candy-machine-core = { version = "2.0.0", features = ["no-entrypoint"] } mpl-token-metadata = { version = "2.0.0-beta.1", features = ["no-entrypoint", "serde-feature"] } diff --git a/blockbuster/src/programs/bubblegum/mod.rs b/blockbuster/src/programs/bubblegum/mod.rs index 9471652..97fe1fa 100644 --- a/blockbuster/src/programs/bubblegum/mod.rs +++ b/blockbuster/src/programs/bubblegum/mod.rs @@ -204,7 +204,6 @@ impl ProgramParser for BubblegumParser { let update_args = args.update_args; b_inst.payload = Some(Payload::UpdateMetadata { update_args }); } - InstructionName::Unknown | InstructionName::SetDecompressibleState => {} _ => {} }; }