├── .github ├── .env ├── file-filters.yml └── workflows │ ├── build-programs.yml │ ├── build-rust-client.yml │ ├── create-release.yml │ ├── create-solana-release.yml │ ├── create-svm-release.yml │ ├── deploy-js-client.yml │ ├── deploy-program.yml │ ├── deploy-rust-client.yml │ ├── main.yml │ ├── test-js-client.yml │ ├── test-programs.yml │ └── test-rust-client.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── clients ├── js-solita │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.js │ ├── .solitarc.js │ ├── LICENSE │ ├── README.md │ ├── idl │ │ └── bubblegum.json │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── errors.ts │ │ ├── generated │ │ │ ├── accounts │ │ │ │ ├── TreeConfig.ts │ │ │ │ ├── Voucher.ts │ │ │ │ └── index.ts │ │ │ ├── errors │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── instructions │ │ │ │ ├── burn.ts │ │ │ │ ├── cancelRedeem.ts │ │ │ │ ├── compress.ts │ │ │ │ ├── createTree.ts │ │ │ │ ├── decompressV1.ts │ │ │ │ ├── delegate.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mintToCollectionV1.ts │ │ │ │ ├── mintV1.ts │ │ │ │ ├── redeem.ts │ │ │ │ ├── setAndVerifyCollection.ts │ │ │ │ ├── setDecompressibleState.ts │ │ │ │ ├── setTreeDelegate.ts │ │ │ │ ├── transfer.ts │ │ │ │ ├── unverifyCollection.ts │ │ │ │ ├── unverifyCreator.ts │ │ │ │ ├── updateMetadata.ts │ │ │ │ ├── verifyCollection.ts │ │ │ │ └── verifyCreator.ts │ │ │ └── types │ │ │ │ ├── BubblegumEventType.ts │ │ │ │ ├── Collection.ts │ │ │ │ ├── Creator.ts │ │ │ │ ├── DecompressibleState.ts │ │ │ │ ├── LeafSchema.ts │ │ │ │ ├── MetadataArgs.ts │ │ │ │ ├── TokenProgramVersion.ts │ │ │ │ ├── TokenStandard.ts │ │ │ │ ├── UpdateArgs.ts │ │ │ │ ├── UseMethod.ts │ │ │ │ ├── Uses.ts │ │ │ │ ├── Version.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── mpl-bubblegum.ts │ ├── tests │ │ └── main.test.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── typedoc.json │ └── yarn.lock ├── js │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.json │ ├── CONTRIBUTING.md │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── canTransfer.ts │ │ ├── createTree.ts │ │ ├── errors.ts │ │ ├── flags.ts │ │ ├── generated │ │ │ ├── accounts │ │ │ │ ├── index.ts │ │ │ │ ├── treeConfig.ts │ │ │ │ └── voucher.ts │ │ │ ├── errors │ │ │ │ ├── index.ts │ │ │ │ └── mplBubblegum.ts │ │ │ ├── index.ts │ │ │ ├── instructions │ │ │ │ ├── burn.ts │ │ │ │ ├── burnV2.ts │ │ │ │ ├── cancelRedeem.ts │ │ │ │ ├── collectV2.ts │ │ │ │ ├── createTreeConfig.ts │ │ │ │ ├── createTreeConfigV2.ts │ │ │ │ ├── decompressV1.ts │ │ │ │ ├── delegate.ts │ │ │ │ ├── delegateAndFreezeV2.ts │ │ │ │ ├── delegateV2.ts │ │ │ │ ├── freezeV2.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mintToCollectionV1.ts │ │ │ │ ├── mintV1.ts │ │ │ │ ├── mintV2.ts │ │ │ │ ├── redeem.ts │ │ │ │ ├── setAndVerifyCollection.ts │ │ │ │ ├── setCollectionV2.ts │ │ │ │ ├── setDecompressibleState.ts │ │ │ │ ├── setNonTransferableV2.ts │ │ │ │ ├── setTreeDelegate.ts │ │ │ │ ├── thawAndRevokeV2.ts │ │ │ │ ├── thawV2.ts │ │ │ │ ├── transfer.ts │ │ │ │ ├── transferV2.ts │ │ │ │ ├── unverifyCollection.ts │ │ │ │ ├── unverifyCreator.ts │ │ │ │ ├── unverifyCreatorV2.ts │ │ │ │ ├── updateAssetDataV2.ts │ │ │ │ ├── updateMetadata.ts │ │ │ │ ├── updateMetadataV2.ts │ │ │ │ ├── verifyCollection.ts │ │ │ │ ├── verifyCreator.ts │ │ │ │ └── verifyCreatorV2.ts │ │ │ ├── programs │ │ │ │ ├── index.ts │ │ │ │ └── mplBubblegum.ts │ │ │ ├── shared │ │ │ │ └── index.ts │ │ │ └── types │ │ │ │ ├── assetDataSchema.ts │ │ │ │ ├── bubblegumEventType.ts │ │ │ │ ├── collection.ts │ │ │ │ ├── creator.ts │ │ │ │ ├── decompressibleState.ts │ │ │ │ ├── index.ts │ │ │ │ ├── leafSchema.ts │ │ │ │ ├── metadataArgs.ts │ │ │ │ ├── metadataArgsV2.ts │ │ │ │ ├── tokenProgramVersion.ts │ │ │ │ ├── tokenStandard.ts │ │ │ │ ├── updateArgs.ts │ │ │ │ ├── useMethod.ts │ │ │ │ ├── uses.ts │ │ │ │ └── version.ts │ │ ├── getAssetWithProof.ts │ │ ├── getCompressionProgramsForV1Ixs.ts │ │ ├── hash.ts │ │ ├── hooked │ │ │ ├── index.ts │ │ │ ├── mintAuthority.ts │ │ │ └── resolvers.ts │ │ ├── index.ts │ │ ├── leafAssetId.ts │ │ ├── merkle.ts │ │ └── plugin.ts │ ├── test │ │ ├── _setup.ts │ │ ├── burn.test.ts │ │ ├── burnV2.test.ts │ │ ├── cancelRedeem.test.ts │ │ ├── collectV2.test.ts │ │ ├── createTree.test.ts │ │ ├── createTreeV2.test.ts │ │ ├── dasApi.test.ts │ │ ├── decompressV1.test.ts │ │ ├── delegate.test.ts │ │ ├── delegateAndFreezeV2.test.ts │ │ ├── delegateV2.test.ts │ │ ├── freezeV2.test.ts │ │ ├── getProgram.test.ts │ │ ├── mintToCollectionV1.test.ts │ │ ├── mintToCollectionV1AndTransfer.test.ts │ │ ├── mintV1.test.ts │ │ ├── mintV2ToCollectionAndTransfer.test.ts │ │ ├── mintV2_only.test.ts │ │ ├── parseMintV1.test.ts │ │ ├── parseMintV2.test.ts │ │ ├── permanentBurnDelegate.test.ts │ │ ├── permanentFreezeDelegate.test.ts │ │ ├── permanentTransferDelegate.test.ts │ │ ├── redeem.test.ts │ │ ├── royalties.test.ts │ │ ├── setAndVerifyCollection.test.ts │ │ ├── setCollectionV2.test.ts │ │ ├── setNonTransferableV2.test.ts │ │ ├── setTreeDelegate.test.ts │ │ ├── thawAndRevokeV2.test.ts │ │ ├── thawV2.test.ts │ │ ├── transfer.test.ts │ │ ├── transferV2.test.ts │ │ ├── unverifyCollection.test.ts │ │ ├── unverifyCreator.test.ts │ │ ├── unverifyCreatorV2.test.ts │ │ ├── updateAssetDataV2.test.ts │ │ ├── updateMetadata.test.ts │ │ ├── updateMetadataV2.test.ts │ │ ├── verifyCollection.test.ts │ │ ├── verifyCreator.test.ts │ │ ├── verifyCreatorV2.test.ts │ │ ├── verifyLeaf.test.ts │ │ └── verifyLeafonV2Tree.test.ts │ ├── tsconfig.json │ └── typedoc.json ├── mpl-ac-js │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.json │ ├── CONTRIBUTING.md │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── generated │ │ │ ├── accounts │ │ │ │ ├── index.ts │ │ │ │ └── merkleTree.ts │ │ │ ├── errors │ │ │ │ ├── index.ts │ │ │ │ ├── mplAccountCompression.ts │ │ │ │ └── mplNoop.ts │ │ │ ├── index.ts │ │ │ ├── instructions │ │ │ │ ├── append.ts │ │ │ │ ├── appendCanopyNodes.ts │ │ │ │ ├── closeEmptyTree.ts │ │ │ │ ├── index.ts │ │ │ │ ├── initEmptyMerkleTree.ts │ │ │ │ ├── initPreparedTreeWithRoot.ts │ │ │ │ ├── insertOrAppend.ts │ │ │ │ ├── noopInstruction.ts │ │ │ │ ├── prepareBatchMerkleTree.ts │ │ │ │ ├── replaceLeaf.ts │ │ │ │ ├── transferAuthority.ts │ │ │ │ └── verifyLeaf.ts │ │ │ ├── programs │ │ │ │ ├── index.ts │ │ │ │ ├── mplAccountCompression.ts │ │ │ │ └── mplNoop.ts │ │ │ ├── shared │ │ │ │ └── index.ts │ │ │ └── types │ │ │ │ ├── accountCompressionEvent.ts │ │ │ │ ├── applicationDataEvent.ts │ │ │ │ ├── applicationDataEventV1.ts │ │ │ │ ├── changeLogEvent.ts │ │ │ │ ├── changeLogEventV1.ts │ │ │ │ ├── compressionAccountType.ts │ │ │ │ ├── concurrentMerkleTreeHeader.ts │ │ │ │ ├── concurrentMerkleTreeHeaderData.ts │ │ │ │ ├── index.ts │ │ │ │ └── pathNode.ts │ │ ├── hooked │ │ │ ├── changeLog.ts │ │ │ ├── concurrentMerkleTree.ts │ │ │ ├── index.ts │ │ │ ├── merkleTreeAccountData.ts │ │ │ └── path.ts │ │ ├── index.ts │ │ └── plugin.ts │ ├── test │ │ ├── _setup.ts │ │ └── getProgram.test.ts │ ├── tsconfig.json │ └── typedoc.json ├── rust │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── generated │ │ │ ├── accounts │ │ │ │ ├── mod.rs │ │ │ │ ├── tree_config.rs │ │ │ │ └── voucher.rs │ │ │ ├── errors │ │ │ │ ├── mod.rs │ │ │ │ └── mpl_bubblegum.rs │ │ │ ├── instructions │ │ │ │ ├── burn.rs │ │ │ │ ├── burn_v2.rs │ │ │ │ ├── cancel_redeem.rs │ │ │ │ ├── collect_v2.rs │ │ │ │ ├── create_tree_config.rs │ │ │ │ ├── create_tree_config_v2.rs │ │ │ │ ├── decompress_v1.rs │ │ │ │ ├── delegate.rs │ │ │ │ ├── delegate_and_freeze_v2.rs │ │ │ │ ├── delegate_v2.rs │ │ │ │ ├── freeze_v2.rs │ │ │ │ ├── mint_to_collection_v1.rs │ │ │ │ ├── mint_v1.rs │ │ │ │ ├── mint_v2.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── redeem.rs │ │ │ │ ├── set_and_verify_collection.rs │ │ │ │ ├── set_collection_v2.rs │ │ │ │ ├── set_decompressible_state.rs │ │ │ │ ├── set_non_transferable_v2.rs │ │ │ │ ├── set_tree_delegate.rs │ │ │ │ ├── thaw_and_revoke_v2.rs │ │ │ │ ├── thaw_v2.rs │ │ │ │ ├── transfer.rs │ │ │ │ ├── transfer_v2.rs │ │ │ │ ├── unverify_collection.rs │ │ │ │ ├── unverify_creator.rs │ │ │ │ ├── unverify_creator_v2.rs │ │ │ │ ├── update_asset_data_v2.rs │ │ │ │ ├── update_metadata.rs │ │ │ │ ├── update_metadata_v2.rs │ │ │ │ ├── verify_collection.rs │ │ │ │ ├── verify_creator.rs │ │ │ │ └── verify_creator_v2.rs │ │ │ ├── mod.rs │ │ │ ├── programs.rs │ │ │ └── types │ │ │ │ ├── asset_data_schema.rs │ │ │ │ ├── bubblegum_event_type.rs │ │ │ │ ├── collection.rs │ │ │ │ ├── creator.rs │ │ │ │ ├── decompressible_state.rs │ │ │ │ ├── leaf_schema.rs │ │ │ │ ├── metadata_args.rs │ │ │ │ ├── metadata_args_v2.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── token_program_version.rs │ │ │ │ ├── token_standard.rs │ │ │ │ ├── update_args.rs │ │ │ │ ├── use_method.rs │ │ │ │ ├── uses.rs │ │ │ │ └── version.rs │ │ ├── hash.rs │ │ ├── lib.rs │ │ ├── traits.rs │ │ └── utils.rs │ └── tests │ │ ├── burn.rs │ │ ├── mint.rs │ │ ├── setup │ │ ├── mod.rs │ │ └── tree_manager.rs │ │ └── transfer.rs └── spl-ac-js │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.json │ ├── CONTRIBUTING.md │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ ├── generated │ │ ├── accounts │ │ │ ├── index.ts │ │ │ └── merkleTree.ts │ │ ├── errors │ │ │ ├── index.ts │ │ │ ├── splAccountCompression.ts │ │ │ └── splNoop.ts │ │ ├── index.ts │ │ ├── instructions │ │ │ ├── append.ts │ │ │ ├── closeEmptyTree.ts │ │ │ ├── index.ts │ │ │ ├── initEmptyMerkleTree.ts │ │ │ ├── insertOrAppend.ts │ │ │ ├── noopInstruction.ts │ │ │ ├── replaceLeaf.ts │ │ │ ├── transferAuthority.ts │ │ │ └── verifyLeaf.ts │ │ ├── programs │ │ │ ├── index.ts │ │ │ ├── splAccountCompression.ts │ │ │ └── splNoop.ts │ │ ├── shared │ │ │ └── index.ts │ │ └── types │ │ │ ├── accountCompressionEvent.ts │ │ │ ├── applicationDataEvent.ts │ │ │ ├── applicationDataEventV1.ts │ │ │ ├── changeLogEvent.ts │ │ │ ├── changeLogEventV1.ts │ │ │ ├── compressionAccountType.ts │ │ │ ├── concurrentMerkleTreeHeader.ts │ │ │ ├── concurrentMerkleTreeHeaderData.ts │ │ │ ├── index.ts │ │ │ └── pathNode.ts │ ├── hooked │ │ ├── changeLog.ts │ │ ├── concurrentMerkleTree.ts │ │ ├── index.ts │ │ ├── merkleTreeAccountData.ts │ │ └── path.ts │ ├── index.ts │ └── plugin.ts │ ├── test │ ├── _setup.ts │ └── getProgram.test.ts │ ├── tsconfig.json │ └── typedoc.json ├── configs ├── kinobi.cjs ├── mpl-ac-kinobi.cjs ├── scripts │ ├── client │ │ ├── test-js.sh │ │ └── test-rust.sh │ └── program │ │ ├── build.sh │ │ ├── clean.sh │ │ ├── dump.sh │ │ ├── dump_devnet.sh │ │ └── test.sh ├── shank.cjs ├── spl-ac-kinobi.cjs └── validator.cjs ├── idls ├── bubblegum.json ├── mpl_account_compression.json ├── mpl_noop.json ├── spl_account_compression.json └── spl_noop.json ├── package.json ├── pnpm-lock.yaml └── programs └── bubblegum ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── program ├── Cargo.toml ├── Xargo.toml ├── src │ ├── asserts.rs │ ├── error.rs │ ├── lib.rs │ ├── processor │ │ ├── burn.rs │ │ ├── cancel_redeem.rs │ │ ├── collect.rs │ │ ├── compress.rs │ │ ├── create_tree.rs │ │ ├── decompress.rs │ │ ├── delegate.rs │ │ ├── delegate_and_freeze.rs │ │ ├── freeze.rs │ │ ├── mint.rs │ │ ├── mint_to_collection.rs │ │ ├── mod.rs │ │ ├── redeem.rs │ │ ├── set_and_verify_collection.rs │ │ ├── set_collection.rs │ │ ├── set_decompressible_state.rs │ │ ├── set_non_transferable.rs │ │ ├── set_tree_delegate.rs │ │ ├── thaw.rs │ │ ├── thaw_and_revoke.rs │ │ ├── transfer.rs │ │ ├── unverify_collection.rs │ │ ├── unverify_creator.rs │ │ ├── update_asset_data.rs │ │ ├── update_metadata.rs │ │ ├── verify_collection.rs │ │ └── verify_creator.rs │ ├── state │ │ ├── collect.rs │ │ ├── leaf_schema.rs │ │ ├── metaplex_adapter.rs │ │ ├── metaplex_anchor.rs │ │ └── mod.rs │ ├── traits.rs │ └── utils.rs └── tests │ ├── collection.rs │ ├── creators.rs │ ├── decompression.rs │ ├── simple.rs │ └── utils │ ├── context.rs │ ├── digital_asset.rs │ ├── mod.rs │ ├── tree.rs │ └── tx_builder.rs └── rustfmt.toml /.github/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/.env -------------------------------------------------------------------------------- /.github/file-filters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/file-filters.yml -------------------------------------------------------------------------------- /.github/workflows/build-programs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/build-programs.yml -------------------------------------------------------------------------------- /.github/workflows/build-rust-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/build-rust-client.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/create-solana-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/create-solana-release.yml -------------------------------------------------------------------------------- /.github/workflows/create-svm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/create-svm-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-js-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/deploy-js-client.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-program.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/deploy-program.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-rust-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/deploy-rust-client.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/test-js-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/test-js-client.yml -------------------------------------------------------------------------------- /.github/workflows/test-programs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/test-programs.yml -------------------------------------------------------------------------------- /.github/workflows/test-rust-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.github/workflows/test-rust-client.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/README.md -------------------------------------------------------------------------------- /clients/js-solita/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/.eslintrc.js -------------------------------------------------------------------------------- /clients/js-solita/.gitignore: -------------------------------------------------------------------------------- 1 | test-ledger/ -------------------------------------------------------------------------------- /clients/js-solita/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /clients/js-solita/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/.prettierrc.js -------------------------------------------------------------------------------- /clients/js-solita/.solitarc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/.solitarc.js -------------------------------------------------------------------------------- /clients/js-solita/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/LICENSE -------------------------------------------------------------------------------- /clients/js-solita/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/README.md -------------------------------------------------------------------------------- /clients/js-solita/idl/bubblegum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/idl/bubblegum.json -------------------------------------------------------------------------------- /clients/js-solita/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/jest.config.js -------------------------------------------------------------------------------- /clients/js-solita/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/package.json -------------------------------------------------------------------------------- /clients/js-solita/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/errors.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/accounts/TreeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/accounts/TreeConfig.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/accounts/Voucher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/accounts/Voucher.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/accounts/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/errors/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/burn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/burn.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/cancelRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/cancelRedeem.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/compress.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/createTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/createTree.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/decompressV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/decompressV1.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/delegate.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/mintToCollectionV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/mintToCollectionV1.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/mintV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/mintV1.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/redeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/redeem.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/setAndVerifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/setAndVerifyCollection.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/setDecompressibleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/setDecompressibleState.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/setTreeDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/setTreeDelegate.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/transfer.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/unverifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/unverifyCollection.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/unverifyCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/unverifyCreator.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/updateMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/updateMetadata.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/verifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/verifyCollection.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/instructions/verifyCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/instructions/verifyCreator.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/BubblegumEventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/BubblegumEventType.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/Collection.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/Creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/Creator.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/DecompressibleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/DecompressibleState.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/LeafSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/LeafSchema.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/MetadataArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/MetadataArgs.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/TokenProgramVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/TokenProgramVersion.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/TokenStandard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/TokenStandard.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/UpdateArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/UpdateArgs.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/UseMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/UseMethod.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/Uses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/Uses.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/Version.ts -------------------------------------------------------------------------------- /clients/js-solita/src/generated/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/generated/types/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/index.ts -------------------------------------------------------------------------------- /clients/js-solita/src/mpl-bubblegum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/src/mpl-bubblegum.ts -------------------------------------------------------------------------------- /clients/js-solita/tests/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/tests/main.test.ts -------------------------------------------------------------------------------- /clients/js-solita/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/tsconfig.build.json -------------------------------------------------------------------------------- /clients/js-solita/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/tsconfig.json -------------------------------------------------------------------------------- /clients/js-solita/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/typedoc.json -------------------------------------------------------------------------------- /clients/js-solita/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js-solita/yarn.lock -------------------------------------------------------------------------------- /clients/js/.env.example: -------------------------------------------------------------------------------- 1 | READ_API_RPC_DEVNET="..." 2 | -------------------------------------------------------------------------------- /clients/js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/.eslintrc.js -------------------------------------------------------------------------------- /clients/js/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | docs 3 | .env 4 | -------------------------------------------------------------------------------- /clients/js/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/.prettierrc.json -------------------------------------------------------------------------------- /clients/js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/CONTRIBUTING.md -------------------------------------------------------------------------------- /clients/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/README.md -------------------------------------------------------------------------------- /clients/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/package.json -------------------------------------------------------------------------------- /clients/js/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/pnpm-lock.yaml -------------------------------------------------------------------------------- /clients/js/src/canTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/canTransfer.ts -------------------------------------------------------------------------------- /clients/js/src/createTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/createTree.ts -------------------------------------------------------------------------------- /clients/js/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/errors.ts -------------------------------------------------------------------------------- /clients/js/src/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/flags.ts -------------------------------------------------------------------------------- /clients/js/src/generated/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/accounts/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/accounts/treeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/accounts/treeConfig.ts -------------------------------------------------------------------------------- /clients/js/src/generated/accounts/voucher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/accounts/voucher.ts -------------------------------------------------------------------------------- /clients/js/src/generated/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/errors/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/errors/mplBubblegum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/errors/mplBubblegum.ts -------------------------------------------------------------------------------- /clients/js/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/burn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/burn.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/burnV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/burnV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/cancelRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/cancelRedeem.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/collectV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/collectV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/createTreeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/createTreeConfig.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/createTreeConfigV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/createTreeConfigV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/decompressV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/decompressV1.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/delegate.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/delegateAndFreezeV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/delegateAndFreezeV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/delegateV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/delegateV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/freezeV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/freezeV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/mintToCollectionV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/mintToCollectionV1.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/mintV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/mintV1.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/mintV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/mintV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/redeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/redeem.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/setAndVerifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/setAndVerifyCollection.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/setCollectionV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/setCollectionV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/setDecompressibleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/setDecompressibleState.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/setNonTransferableV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/setNonTransferableV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/setTreeDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/setTreeDelegate.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/thawAndRevokeV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/thawAndRevokeV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/thawV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/thawV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/transfer.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/transferV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/transferV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/unverifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/unverifyCollection.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/unverifyCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/unverifyCreator.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/unverifyCreatorV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/unverifyCreatorV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/updateAssetDataV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/updateAssetDataV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/updateMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/updateMetadata.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/updateMetadataV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/updateMetadataV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/verifyCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/verifyCollection.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/verifyCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/verifyCreator.ts -------------------------------------------------------------------------------- /clients/js/src/generated/instructions/verifyCreatorV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/instructions/verifyCreatorV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/programs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/programs/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/programs/mplBubblegum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/programs/mplBubblegum.ts -------------------------------------------------------------------------------- /clients/js/src/generated/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/shared/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/assetDataSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/assetDataSchema.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/bubblegumEventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/bubblegumEventType.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/collection.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/creator.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/decompressibleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/decompressibleState.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/index.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/leafSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/leafSchema.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/metadataArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/metadataArgs.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/metadataArgsV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/metadataArgsV2.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/tokenProgramVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/tokenProgramVersion.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/tokenStandard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/tokenStandard.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/updateArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/updateArgs.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/useMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/useMethod.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/uses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/uses.ts -------------------------------------------------------------------------------- /clients/js/src/generated/types/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/generated/types/version.ts -------------------------------------------------------------------------------- /clients/js/src/getAssetWithProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/getAssetWithProof.ts -------------------------------------------------------------------------------- /clients/js/src/getCompressionProgramsForV1Ixs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/getCompressionProgramsForV1Ixs.ts -------------------------------------------------------------------------------- /clients/js/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/hash.ts -------------------------------------------------------------------------------- /clients/js/src/hooked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/hooked/index.ts -------------------------------------------------------------------------------- /clients/js/src/hooked/mintAuthority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/hooked/mintAuthority.ts -------------------------------------------------------------------------------- /clients/js/src/hooked/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/hooked/resolvers.ts -------------------------------------------------------------------------------- /clients/js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/index.ts -------------------------------------------------------------------------------- /clients/js/src/leafAssetId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/leafAssetId.ts -------------------------------------------------------------------------------- /clients/js/src/merkle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/merkle.ts -------------------------------------------------------------------------------- /clients/js/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/src/plugin.ts -------------------------------------------------------------------------------- /clients/js/test/_setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/_setup.ts -------------------------------------------------------------------------------- /clients/js/test/burn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/burn.test.ts -------------------------------------------------------------------------------- /clients/js/test/burnV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/burnV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/cancelRedeem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/cancelRedeem.test.ts -------------------------------------------------------------------------------- /clients/js/test/collectV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/collectV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/createTree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/createTree.test.ts -------------------------------------------------------------------------------- /clients/js/test/createTreeV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/createTreeV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/dasApi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/dasApi.test.ts -------------------------------------------------------------------------------- /clients/js/test/decompressV1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/decompressV1.test.ts -------------------------------------------------------------------------------- /clients/js/test/delegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/delegate.test.ts -------------------------------------------------------------------------------- /clients/js/test/delegateAndFreezeV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/delegateAndFreezeV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/delegateV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/delegateV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/freezeV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/freezeV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/getProgram.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/getProgram.test.ts -------------------------------------------------------------------------------- /clients/js/test/mintToCollectionV1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/mintToCollectionV1.test.ts -------------------------------------------------------------------------------- /clients/js/test/mintToCollectionV1AndTransfer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/mintToCollectionV1AndTransfer.test.ts -------------------------------------------------------------------------------- /clients/js/test/mintV1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/mintV1.test.ts -------------------------------------------------------------------------------- /clients/js/test/mintV2ToCollectionAndTransfer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/mintV2ToCollectionAndTransfer.test.ts -------------------------------------------------------------------------------- /clients/js/test/mintV2_only.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/mintV2_only.test.ts -------------------------------------------------------------------------------- /clients/js/test/parseMintV1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/parseMintV1.test.ts -------------------------------------------------------------------------------- /clients/js/test/parseMintV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/parseMintV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/permanentBurnDelegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/permanentBurnDelegate.test.ts -------------------------------------------------------------------------------- /clients/js/test/permanentFreezeDelegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/permanentFreezeDelegate.test.ts -------------------------------------------------------------------------------- /clients/js/test/permanentTransferDelegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/permanentTransferDelegate.test.ts -------------------------------------------------------------------------------- /clients/js/test/redeem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/redeem.test.ts -------------------------------------------------------------------------------- /clients/js/test/royalties.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/royalties.test.ts -------------------------------------------------------------------------------- /clients/js/test/setAndVerifyCollection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/setAndVerifyCollection.test.ts -------------------------------------------------------------------------------- /clients/js/test/setCollectionV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/setCollectionV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/setNonTransferableV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/setNonTransferableV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/setTreeDelegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/setTreeDelegate.test.ts -------------------------------------------------------------------------------- /clients/js/test/thawAndRevokeV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/thawAndRevokeV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/thawV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/thawV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/transfer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/transfer.test.ts -------------------------------------------------------------------------------- /clients/js/test/transferV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/transferV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/unverifyCollection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/unverifyCollection.test.ts -------------------------------------------------------------------------------- /clients/js/test/unverifyCreator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/unverifyCreator.test.ts -------------------------------------------------------------------------------- /clients/js/test/unverifyCreatorV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/unverifyCreatorV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/updateAssetDataV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/updateAssetDataV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/updateMetadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/updateMetadata.test.ts -------------------------------------------------------------------------------- /clients/js/test/updateMetadataV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/updateMetadataV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/verifyCollection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/verifyCollection.test.ts -------------------------------------------------------------------------------- /clients/js/test/verifyCreator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/verifyCreator.test.ts -------------------------------------------------------------------------------- /clients/js/test/verifyCreatorV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/verifyCreatorV2.test.ts -------------------------------------------------------------------------------- /clients/js/test/verifyLeaf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/verifyLeaf.test.ts -------------------------------------------------------------------------------- /clients/js/test/verifyLeafonV2Tree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/test/verifyLeafonV2Tree.test.ts -------------------------------------------------------------------------------- /clients/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/tsconfig.json -------------------------------------------------------------------------------- /clients/js/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/js/typedoc.json -------------------------------------------------------------------------------- /clients/mpl-ac-js/.env.example: -------------------------------------------------------------------------------- 1 | READ_API_RPC_DEVNET="..." 2 | -------------------------------------------------------------------------------- /clients/mpl-ac-js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/.eslintrc.js -------------------------------------------------------------------------------- /clients/mpl-ac-js/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | docs 3 | .env 4 | -------------------------------------------------------------------------------- /clients/mpl-ac-js/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/.prettierrc.json -------------------------------------------------------------------------------- /clients/mpl-ac-js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/CONTRIBUTING.md -------------------------------------------------------------------------------- /clients/mpl-ac-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/README.md -------------------------------------------------------------------------------- /clients/mpl-ac-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/package.json -------------------------------------------------------------------------------- /clients/mpl-ac-js/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/pnpm-lock.yaml -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/accounts/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/accounts/merkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/accounts/merkleTree.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/errors/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/errors/mplAccountCompression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/errors/mplAccountCompression.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/errors/mplNoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/errors/mplNoop.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/append.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/appendCanopyNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/appendCanopyNodes.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/closeEmptyTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/closeEmptyTree.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/initEmptyMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/initEmptyMerkleTree.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/initPreparedTreeWithRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/initPreparedTreeWithRoot.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/insertOrAppend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/insertOrAppend.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/noopInstruction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/noopInstruction.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/prepareBatchMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/prepareBatchMerkleTree.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/replaceLeaf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/replaceLeaf.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/transferAuthority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/transferAuthority.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/instructions/verifyLeaf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/instructions/verifyLeaf.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/programs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/programs/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/programs/mplAccountCompression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/programs/mplAccountCompression.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/programs/mplNoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/programs/mplNoop.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/shared/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/accountCompressionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/accountCompressionEvent.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/applicationDataEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/applicationDataEvent.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/applicationDataEventV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/applicationDataEventV1.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/changeLogEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/changeLogEvent.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/changeLogEventV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/changeLogEventV1.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/compressionAccountType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/compressionAccountType.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/concurrentMerkleTreeHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/concurrentMerkleTreeHeader.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/concurrentMerkleTreeHeaderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/concurrentMerkleTreeHeaderData.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/generated/types/pathNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/generated/types/pathNode.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/hooked/changeLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/hooked/changeLog.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/hooked/concurrentMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/hooked/concurrentMerkleTree.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/hooked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/hooked/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/hooked/merkleTreeAccountData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/hooked/merkleTreeAccountData.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/hooked/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/hooked/path.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/index.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/src/plugin.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/test/_setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/test/_setup.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/test/getProgram.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/test/getProgram.test.ts -------------------------------------------------------------------------------- /clients/mpl-ac-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/tsconfig.json -------------------------------------------------------------------------------- /clients/mpl-ac-js/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/mpl-ac-js/typedoc.json -------------------------------------------------------------------------------- /clients/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/Cargo.lock -------------------------------------------------------------------------------- /clients/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/Cargo.toml -------------------------------------------------------------------------------- /clients/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/README.md -------------------------------------------------------------------------------- /clients/rust/src/generated/accounts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/accounts/mod.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/accounts/tree_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/accounts/tree_config.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/accounts/voucher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/accounts/voucher.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/errors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/errors/mod.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/errors/mpl_bubblegum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/errors/mpl_bubblegum.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/burn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/burn.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/burn_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/burn_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/cancel_redeem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/cancel_redeem.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/collect_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/collect_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/create_tree_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/create_tree_config.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/create_tree_config_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/create_tree_config_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/decompress_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/decompress_v1.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/delegate.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/delegate_and_freeze_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/delegate_and_freeze_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/delegate_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/delegate_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/freeze_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/freeze_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/mint_to_collection_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/mint_to_collection_v1.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/mint_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/mint_v1.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/mint_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/mint_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/mod.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/redeem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/redeem.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/set_and_verify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/set_and_verify_collection.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/set_collection_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/set_collection_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/set_decompressible_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/set_decompressible_state.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/set_non_transferable_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/set_non_transferable_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/set_tree_delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/set_tree_delegate.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/thaw_and_revoke_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/thaw_and_revoke_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/thaw_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/thaw_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/transfer.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/transfer_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/transfer_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/unverify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/unverify_collection.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/unverify_creator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/unverify_creator.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/unverify_creator_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/unverify_creator_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/update_asset_data_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/update_asset_data_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/update_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/update_metadata.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/update_metadata_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/update_metadata_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/verify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/verify_collection.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/verify_creator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/verify_creator.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/instructions/verify_creator_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/instructions/verify_creator_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/mod.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/programs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/programs.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/asset_data_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/asset_data_schema.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/bubblegum_event_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/bubblegum_event_type.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/collection.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/creator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/creator.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/decompressible_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/decompressible_state.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/leaf_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/leaf_schema.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/metadata_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/metadata_args.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/metadata_args_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/metadata_args_v2.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/mod.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/token_program_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/token_program_version.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/token_standard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/token_standard.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/update_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/update_args.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/use_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/use_method.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/uses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/uses.rs -------------------------------------------------------------------------------- /clients/rust/src/generated/types/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/generated/types/version.rs -------------------------------------------------------------------------------- /clients/rust/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/hash.rs -------------------------------------------------------------------------------- /clients/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/lib.rs -------------------------------------------------------------------------------- /clients/rust/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/traits.rs -------------------------------------------------------------------------------- /clients/rust/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/src/utils.rs -------------------------------------------------------------------------------- /clients/rust/tests/burn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/tests/burn.rs -------------------------------------------------------------------------------- /clients/rust/tests/mint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/tests/mint.rs -------------------------------------------------------------------------------- /clients/rust/tests/setup/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/tests/setup/mod.rs -------------------------------------------------------------------------------- /clients/rust/tests/setup/tree_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/tests/setup/tree_manager.rs -------------------------------------------------------------------------------- /clients/rust/tests/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/rust/tests/transfer.rs -------------------------------------------------------------------------------- /clients/spl-ac-js/.env.example: -------------------------------------------------------------------------------- 1 | READ_API_RPC_DEVNET="..." 2 | -------------------------------------------------------------------------------- /clients/spl-ac-js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/.eslintrc.js -------------------------------------------------------------------------------- /clients/spl-ac-js/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | docs 3 | .env 4 | -------------------------------------------------------------------------------- /clients/spl-ac-js/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/.prettierrc.json -------------------------------------------------------------------------------- /clients/spl-ac-js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/CONTRIBUTING.md -------------------------------------------------------------------------------- /clients/spl-ac-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/README.md -------------------------------------------------------------------------------- /clients/spl-ac-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/package.json -------------------------------------------------------------------------------- /clients/spl-ac-js/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/pnpm-lock.yaml -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/accounts/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/accounts/merkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/accounts/merkleTree.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/errors/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/errors/splAccountCompression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/errors/splAccountCompression.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/errors/splNoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/errors/splNoop.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/append.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/append.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/closeEmptyTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/closeEmptyTree.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/initEmptyMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/initEmptyMerkleTree.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/insertOrAppend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/insertOrAppend.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/noopInstruction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/noopInstruction.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/replaceLeaf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/replaceLeaf.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/transferAuthority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/transferAuthority.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/instructions/verifyLeaf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/instructions/verifyLeaf.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/programs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/programs/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/programs/splAccountCompression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/programs/splAccountCompression.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/programs/splNoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/programs/splNoop.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/shared/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/accountCompressionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/accountCompressionEvent.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/applicationDataEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/applicationDataEvent.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/applicationDataEventV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/applicationDataEventV1.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/changeLogEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/changeLogEvent.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/changeLogEventV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/changeLogEventV1.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/compressionAccountType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/compressionAccountType.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/concurrentMerkleTreeHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/concurrentMerkleTreeHeader.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/concurrentMerkleTreeHeaderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/concurrentMerkleTreeHeaderData.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/generated/types/pathNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/generated/types/pathNode.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/hooked/changeLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/hooked/changeLog.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/hooked/concurrentMerkleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/hooked/concurrentMerkleTree.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/hooked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/hooked/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/hooked/merkleTreeAccountData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/hooked/merkleTreeAccountData.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/hooked/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/hooked/path.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/index.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/src/plugin.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/test/_setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/test/_setup.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/test/getProgram.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/test/getProgram.test.ts -------------------------------------------------------------------------------- /clients/spl-ac-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/tsconfig.json -------------------------------------------------------------------------------- /clients/spl-ac-js/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/clients/spl-ac-js/typedoc.json -------------------------------------------------------------------------------- /configs/kinobi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/kinobi.cjs -------------------------------------------------------------------------------- /configs/mpl-ac-kinobi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/mpl-ac-kinobi.cjs -------------------------------------------------------------------------------- /configs/scripts/client/test-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/client/test-js.sh -------------------------------------------------------------------------------- /configs/scripts/client/test-rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/client/test-rust.sh -------------------------------------------------------------------------------- /configs/scripts/program/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/program/build.sh -------------------------------------------------------------------------------- /configs/scripts/program/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/program/clean.sh -------------------------------------------------------------------------------- /configs/scripts/program/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/program/dump.sh -------------------------------------------------------------------------------- /configs/scripts/program/dump_devnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/program/dump_devnet.sh -------------------------------------------------------------------------------- /configs/scripts/program/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/scripts/program/test.sh -------------------------------------------------------------------------------- /configs/shank.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/shank.cjs -------------------------------------------------------------------------------- /configs/spl-ac-kinobi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/spl-ac-kinobi.cjs -------------------------------------------------------------------------------- /configs/validator.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/configs/validator.cjs -------------------------------------------------------------------------------- /idls/bubblegum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/idls/bubblegum.json -------------------------------------------------------------------------------- /idls/mpl_account_compression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/idls/mpl_account_compression.json -------------------------------------------------------------------------------- /idls/mpl_noop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/idls/mpl_noop.json -------------------------------------------------------------------------------- /idls/spl_account_compression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/idls/spl_account_compression.json -------------------------------------------------------------------------------- /idls/spl_noop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/idls/spl_noop.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /programs/bubblegum/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/Anchor.toml -------------------------------------------------------------------------------- /programs/bubblegum/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/Cargo.lock -------------------------------------------------------------------------------- /programs/bubblegum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/Cargo.toml -------------------------------------------------------------------------------- /programs/bubblegum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/README.md -------------------------------------------------------------------------------- /programs/bubblegum/program/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/Cargo.toml -------------------------------------------------------------------------------- /programs/bubblegum/program/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/Xargo.toml -------------------------------------------------------------------------------- /programs/bubblegum/program/src/asserts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/asserts.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/error.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/lib.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/burn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/burn.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/cancel_redeem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/cancel_redeem.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/collect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/collect.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/compress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/compress.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/create_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/create_tree.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/decompress.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/delegate.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/delegate_and_freeze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/delegate_and_freeze.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/freeze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/freeze.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/mint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/mint.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/mint_to_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/mint_to_collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/mod.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/redeem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/redeem.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/set_and_verify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/set_and_verify_collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/set_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/set_collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/set_decompressible_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/set_decompressible_state.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/set_non_transferable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/set_non_transferable.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/set_tree_delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/set_tree_delegate.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/thaw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/thaw.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/thaw_and_revoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/thaw_and_revoke.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/transfer.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/unverify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/unverify_collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/unverify_creator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/unverify_creator.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/update_asset_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/update_asset_data.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/update_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/update_metadata.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/verify_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/verify_collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/processor/verify_creator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/processor/verify_creator.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/state/collect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/state/collect.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/state/leaf_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/state/leaf_schema.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/state/metaplex_adapter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/state/metaplex_adapter.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/state/metaplex_anchor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/state/metaplex_anchor.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/state/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/state/mod.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/traits.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/src/utils.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/collection.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/creators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/creators.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/decompression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/decompression.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/simple.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/utils/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/utils/context.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/utils/digital_asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/utils/digital_asset.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/utils/mod.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/utils/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/utils/tree.rs -------------------------------------------------------------------------------- /programs/bubblegum/program/tests/utils/tx_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/program/tests/utils/tx_builder.rs -------------------------------------------------------------------------------- /programs/bubblegum/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-bubblegum/HEAD/programs/bubblegum/rustfmt.toml --------------------------------------------------------------------------------