# redeemables **Repository Path**: ProjectOpenSea/redeemables ## Basic Information - **Project Name**: redeemables - **Description**: EVM smart contracts for redeemables and dynamic traits - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-20 - **Last Updated**: 2025-06-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Redeemables EVM smart contracts for redeemables and dynamic traits. ## Foundry To install Foundry (assuming a Linux or macOS system): ```bash curl -L https://foundry.paradigm.xyz | bash ``` This will download foundryup. To start Foundry, run: ```bash foundryup ``` To install dependencies: ``` forge install ``` To run tests: ``` forge test ``` To run format: ``` forge fmt ``` The following modifiers are also available: - Level 2 (-vv): Logs emitted during tests are also displayed. - Level 3 (-vvv): Stack traces for failing tests are also displayed. - Level 4 (-vvvv): Stack traces for all tests are displayed, and setup traces for failing tests are displayed. - Level 5 (-vvvvv): Stack traces and setup traces are always displayed. ```bash forge test -vv ``` For more information on foundry testing and use, see [Foundry Book installation instructions](https://book.getfoundry.sh/getting-started/installation). ## Contributing Contributions are welcome by anyone interested in writing more tests, improving readability, optimizing for gas efficiency, or extending the protocol with new features. When making a pull request, ensure that: - All tests pass. - Code coverage remains at 100% (coverage tests must currently be written in hardhat). - All new code adheres to the style guide: - All lint checks pass. - Code is thoroughly commented with natspec where relevant. - If making a change to the contracts: - Gas snapshots are provided and demonstrate an improvement (or an acceptable deficit given other improvements). - Reference contracts are modified correspondingly if relevant. - New tests (ideally via foundry) are included for all new features or code paths. - If making a modification to third-party dependencies, `yarn audit` passes. - A descriptive summary of the PR has been provided. ## License [MIT](LICENSE) Copyright 2023 Ozone Networks, Inc.