├── .gitignore ├── .prettierignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── migrations └── deploy.ts ├── package.json ├── programs └── mpl-core-anchor-examples │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ ├── constants.rs │ ├── error.rs │ ├── instructions │ ├── add_collection_plugin_v1.rs │ ├── add_plugin_v1.rs │ ├── approve_collection_plugin_authority_v1.rs │ ├── approve_plugin_authority_v1.rs │ ├── create_collection_v1.rs │ ├── create_v1.rs │ ├── mod.rs │ ├── remove_collection_plugin_v1.rs │ ├── remove_plugin_v1.rs │ ├── revoke_collection_plugin_authority_v1.rs │ ├── revoke_plugin_authority_v1.rs │ ├── transfer_v1.rs │ ├── update_collection_plugin_v1.rs │ └── update_plugin_v1.rs │ ├── lib.rs │ └── state │ └── mod.rs ├── tests ├── mpl-core-anchor-examples.ts └── programs │ └── mpl_core.so ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/.prettierignore -------------------------------------------------------------------------------- /Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/Anchor.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/Cargo.toml -------------------------------------------------------------------------------- /migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/migrations/deploy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/package.json -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/Cargo.toml -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/Xargo.toml -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/constants.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/error.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/add_collection_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/add_collection_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/add_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/add_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/approve_collection_plugin_authority_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/approve_collection_plugin_authority_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/approve_plugin_authority_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/approve_plugin_authority_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/create_collection_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/create_collection_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/create_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/create_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/mod.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/remove_collection_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/remove_collection_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/remove_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/remove_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/revoke_collection_plugin_authority_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/revoke_collection_plugin_authority_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/revoke_plugin_authority_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/revoke_plugin_authority_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/transfer_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/transfer_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/update_collection_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/update_collection_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/instructions/update_plugin_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/instructions/update_plugin_v1.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/programs/mpl-core-anchor-examples/src/lib.rs -------------------------------------------------------------------------------- /programs/mpl-core-anchor-examples/src/state/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mpl-core-anchor-examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/tests/mpl-core-anchor-examples.ts -------------------------------------------------------------------------------- /tests/programs/mpl_core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/tests/programs/mpl_core.so -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaplex-foundation/mpl-core-anchor-examples/HEAD/yarn.lock --------------------------------------------------------------------------------