Skip to content

Latest commit

 

History

History
178 lines (124 loc) · 7.91 KB

README.md

File metadata and controls

178 lines (124 loc) · 7.91 KB

Traitforge audit details

  • Total Prize Pool: $28,000 in USDC
    • HM awards: $22,300 in USDC
    • QA awards: $900 in USDC
    • Judge awards: $2,600 in USDC
    • Validator awards: $1,700 USDC
    • Scout awards: $500 in USDC
  • Join C4 Discord to register
  • Submit findings using the C4 form
  • Read our guidelines for more details
  • Starts July 29, 2024 20:00 UTC
  • Ends August 6, 2024 20:00 UTC

Automated Findings

The 4naly3er report can be found here.

Note for C4 wardens: Anything included in this Automated Findings section is considered a publicly known issue and is ineligible for awards.

Overview

TraitForge Overview - ManPeach

TraitForge is a competitive and collaborative breeding game with a nuke function. Each NFT (Entity), has set Traits, created and calculated before mint, by indexing the entropy slots. Each digit or total entropy, gives the NFT its unqique traits, that are determined but completely dispursed/random. Players can forge (breed), by either listing a forger, or paying a forger and receiving the new NFT. Nuking is a function where players burn their NFT, in return claim a portion of ETH from the nuke-fund, in proportion to the 'nuke factor' of the entity, which increases overtime.

Players compete in every aspect of the game, whether its minting the best NFT's available, trading or listing for forging in a competitive market or nuking when the time is right.

Resources


TraitForge: The NFT Honeypot Game

Abstract

TraitForge revolutionizes NFT gaming by integrating strategic, value-driven gameplay around a central honeypot, designed to scale and captivate participants across the NFT ecosystem.

Introduction

TraitForge offers an enduring game experience, transcending the typical NFT model by providing a dynamic, strategic environment focused on a central honeypot, facilitating continuous engagement and value creation.

Core Mechanics

  • Entities: NFTs with unique traits and parameters impacting the game.
  • Generations & Minting: Starting with Gen 1 entities, the game evolves through a breeding mechanism, expanding the ecosystem.
  • Honeypot/Nuke Fund: Central economic feature where players can claim shares by "nuking" their entities.
  • Entropy System: A unique mechanism dictating entity traits and strategic parameters.

Strategic Gameplay

Involves managing entities through aging, forging, and strategic decisions impacting the honeypot's dynamics and player's potential gains.

Development and Community

Built with Next.js, Hardhat, and Wagmi/Viem.

TraitForge is not just a game; it's an evolving NFT ecosystem designed for strategic depth, community involvement, and sustainable value growth.

Scoping Q & A

General questions

Question Answer
ERC20 used by the protocol None
Test coverage 69.6%
ERC721 used by the protocol TraitforgeNFT
ERC777 used by the protocol None
ERC1155 used by the protocol None
Chains the protocol will be deployed on Base

External integrations (e.g., Uniswap) behavior in scope

Question Answer
Enabling/disabling fees (e.g. Blur disables/enables fees) No
Pausability (e.g. Uniswap pool gets paused) No
Upgradeability (e.g. Uniswap gets upgraded) No

EIP compliance checklist

N/A

Additional context

Main invariants

Most things won’t change aside from settable variables (eg: max generations)

Attack ideas (where to focus for bugs)

  • Possibly re-entry to NukeFund
  • Inefficient/fragile mappings (especially with tokens and listings)

All trusted roles in the protocol

Role Description
Contract Owner

Describe any novel or unique curve logic or mathematical models implemented in the contracts

Bit stuffing for entropy generator. 770 UINT256’s, each UINT = 78 digits /13 = 13 x 6 digit entropies

Running tests

git clone --recurse https://github.com/code-423n4/2024-07-traitforge.git
cd 2024-07-traitforge
yarn
cp .env.example .env

Fill the .env file and then:

yarn compile
yarn test

To run code coverage

npx hardhat coverage

Scope

See scope.txt

Files in scope

File Logic Contracts Interfaces nSLOC Purpose Libraries used
/contracts/DevFund/DevFund.sol 1 **** 77 @openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/security/Pausable.sol
/contracts/EntityForging/EntityForging.sol 1 **** 152 @openzeppelin/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/Pausable.sol
/contracts/EntityTrading/EntityTrading.sol 1 **** 82 @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol
@openzeppelin/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/Pausable.sol
/contracts/EntropyGenerator/EntropyGenerator.sol 1 **** 147 @openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/Pausable.sol
/contracts/NukeFund/NukeFund.sol 1 **** 150 @openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/security/Pausable.sol
/contracts/TraitForgeNft/TraitForgeNft.sol 1 **** 272 @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
@openzeppelin/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/access/Ownable.sol
@openzeppelin/contracts/security/Pausable.sol
@openzeppelin/contracts/utils/cryptography/MerkleProof.sol
Totals 6 **** 880

Files out of scope

See out_of_scope.txt

File
./contracts/Airdrop/Airdrop.sol
./contracts/Airdrop/IAirdrop.sol
./contracts/DAOFund/DAOFund.sol
./contracts/DAOFund/IDAOFund.sol
./contracts/DAOFund/IUniswapV2Router.sol
./contracts/DevFund/IDevFund.sol
./contracts/EntityForging/IEntityForging.sol
./contracts/EntityTrading/IEntityTrading.sol
./contracts/EntropyGenerator/IEntropyGenerator.sol
./contracts/NukeFund/INukeFund.sol
./contracts/Trait/ITrait.sol
./contracts/Trait/Trait.sol
./contracts/TraitForgeNft/ITraitForgeNft.sol
./contracts/test/TestERC721.sol
Totals: 14

Miscellaneous

Employees of TraitForge and employees' family members are ineligible to participate in this audit.