├── .github ├── CODEOWNERS ├── actions │ ├── setup-anchor │ │ └── action.yml │ ├── setup-solana │ │ └── action.yaml │ └── setup-ts │ │ └── action.yaml └── workflows │ └── tests.yml ├── .gitignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── migrations └── deploy.ts ├── package.json ├── programs └── collections │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ └── lib.rs ├── tests └── collections.ts ├── tsconfig.json └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ash-burnt @Peartes -------------------------------------------------------------------------------- /.github/actions/setup-anchor/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/.github/actions/setup-anchor/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-solana/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/.github/actions/setup-solana/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-ts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/.github/actions/setup-ts/action.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | -------------------------------------------------------------------------------- /Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/Anchor.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ 3 | "programs/*" 4 | ] 5 | -------------------------------------------------------------------------------- /migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/migrations/deploy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/package.json -------------------------------------------------------------------------------- /programs/collections/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/programs/collections/Cargo.toml -------------------------------------------------------------------------------- /programs/collections/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/programs/collections/Xargo.toml -------------------------------------------------------------------------------- /programs/collections/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/programs/collections/src/lib.rs -------------------------------------------------------------------------------- /tests/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/tests/collections.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burnt-labs/Collections/HEAD/yarn.lock --------------------------------------------------------------------------------