├── .github └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── .tool-versions ├── LICENSE ├── README.md ├── Scarb.toml ├── src ├── erc7496 │ ├── erc7496.cairo │ └── interface.cairo ├── lib.cairo └── presets │ └── erc721_dynamic_traits.cairo └── tests ├── erc721_dynamic_traits.cairo ├── lib.cairo └── utils.cairo /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | scarb 2.6.4 2 | starknet-foundry 0.24.0 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/README.md -------------------------------------------------------------------------------- /Scarb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/Scarb.toml -------------------------------------------------------------------------------- /src/erc7496/erc7496.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/src/erc7496/erc7496.cairo -------------------------------------------------------------------------------- /src/erc7496/interface.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/src/erc7496/interface.cairo -------------------------------------------------------------------------------- /src/lib.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/src/lib.cairo -------------------------------------------------------------------------------- /src/presets/erc721_dynamic_traits.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/src/presets/erc721_dynamic_traits.cairo -------------------------------------------------------------------------------- /tests/erc721_dynamic_traits.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/tests/erc721_dynamic_traits.cairo -------------------------------------------------------------------------------- /tests/lib.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/tests/lib.cairo -------------------------------------------------------------------------------- /tests/utils.cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carbonable-labs/cairo-erc-7496/HEAD/tests/utils.cairo --------------------------------------------------------------------------------