├── .github └── workflows │ ├── release-artifacts.yml │ └── test.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Developing.md ├── Importing.md ├── LICENSE ├── Publishing.md ├── README.md ├── contracts └── collectxyz-nft-contract │ ├── .cargo │ └── config │ ├── Cargo.toml │ ├── examples │ └── schema.rs │ ├── schema │ ├── execute_msg.json │ ├── instantiate_msg.json │ ├── move_params_response.json │ ├── query_msg.json │ └── xyz_tokens_response.json │ └── src │ ├── contract.rs │ ├── contract_tests.rs │ ├── error.rs │ ├── execute.rs │ ├── lib.rs │ ├── query.rs │ └── state.rs ├── packages └── collectxyz │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── nft.rs ├── rustfmt.toml └── stubs └── getrandom ├── Cargo.lock ├── Cargo.toml └── src ├── error.rs └── lib.rs /.github/workflows/release-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/.github/workflows/release-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/Developing.md -------------------------------------------------------------------------------- /Importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/Importing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/LICENSE -------------------------------------------------------------------------------- /Publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/Publishing.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/.cargo/config -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/Cargo.toml -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/examples/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/examples/schema.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/schema/execute_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/schema/execute_msg.json -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/schema/instantiate_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/schema/instantiate_msg.json -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/schema/move_params_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/schema/move_params_response.json -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/schema/query_msg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/schema/query_msg.json -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/schema/xyz_tokens_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/schema/xyz_tokens_response.json -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/contract.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/contract_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/contract_tests.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/error.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/execute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/execute.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/lib.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/query.rs -------------------------------------------------------------------------------- /contracts/collectxyz-nft-contract/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/contracts/collectxyz-nft-contract/src/state.rs -------------------------------------------------------------------------------- /packages/collectxyz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/packages/collectxyz/Cargo.toml -------------------------------------------------------------------------------- /packages/collectxyz/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod nft; 2 | -------------------------------------------------------------------------------- /packages/collectxyz/src/nft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/packages/collectxyz/src/nft.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /stubs/getrandom/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/stubs/getrandom/Cargo.lock -------------------------------------------------------------------------------- /stubs/getrandom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/stubs/getrandom/Cargo.toml -------------------------------------------------------------------------------- /stubs/getrandom/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/stubs/getrandom/src/error.rs -------------------------------------------------------------------------------- /stubs/getrandom/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collectxyz/collectxyz-nft-contract/HEAD/stubs/getrandom/src/lib.rs --------------------------------------------------------------------------------