This repository contains tooling and data for devdao, and is free to use without credit or attribution, for any means.
Loot itself is a collection of 8,000 unique bags of adventurer gear NFTs. At release, anyone could claim loot bags for just gas, and all bags were claimed in under 4 hours. Each loot bag contains 8 items: a piece for an adventurer's chest, foot, hand, head, neck, ring, waist, and weapon.
- tokenIds
1to7778claimable by user. - tokenIds
7778to8000claimable by contract owner. - Each token has attributes:
chest,foot,hand,head,neck,ring,waist,weapon.
output/loot.jsoncontains all tokenIds and their attributes.output/occurences.jsoncontains the number of occurences by attribute.output/rare.jsoncontains a mapping oflootIdtoscore(which is the sum of number of occcrences of each child attribute for alootId), sorted ascending byscore. It also includesrarestwhich is how rare the loot bags attributes are (1==rarest,8000==least rare), based on this specific ranking mechanism.output/probability.jsoncontains a mapping oflootIdtorankby probabilistic occurence rather than rank (P(A in bag at slot 1)andP(B in bag at slot 2), thenP(A in slot 1 and B in slot 2)is the product of the 2 probabilities).output/images.jsoncontains the base64 encoded SVG of each tokenId
# Install dependencies
npm install
# Collect all Loot
npm run collect
# Parse Loot statistics
npm run parse
# Collect Loot base64 encoded images
npm run imagesTo run derivative scripts, follow the README in their subdirectory.
- forked from https://github.com/Anish-Agnihotri/dhof-loot
Loot is licensed under The Unlicense—a license with no conditions whatsoever which dedicates works to the public domain.
Unlicensed works, modifications, and larger works may be distributed under different terms and without source code.