This subgraph indexes and tracks CryptoPunks marketplace data for cryptopunks.eth.limo, a community-based marketplace. It provides real-time data about CryptoPunks sales, transfers, bids, and market activities on the Ethereum mainnet.
🔗 View this subgraph on The Graph Explorer
- Track CryptoPunk ownership and transfers
- Monitor marketplace activities (listings, bids, sales)
- Track floor prices and market volume
- USD price conversion for transactions
- Historical event tracking
- Market statistics and analytics
- Account: Tracks punk ownership and user activities
- Punk: Individual CryptoPunk data and current state
- Listing: Active and historical punk listings
- Bid: Bid information and history
- Event: All marketplace events
- State: Global market statistics and state
- Transfer: Token transfer records
- Install dependencies:
yarn install- Generate types:
yarn codegen- Build the subgraph:
yarn build# Create a local instance
yarn create-local
# Deploy to local node
yarn deploy-local# Deploy to The Graph Studio
yarn deploy{
punk(id: "1") {
id
owner {
id
}
wrapped
listing {
value
usd
}
bid {
value
fromAccount {
id
}
}
}
}{
events(
first: 10
orderBy: blockTimestamp
orderDirection: desc
where: { type: "SALE" }
) {
tokenId
value
usd
fromAccount {
id
}
toAccount {
id
}
blockTimestamp
}
}Contributions are welcome! Here's how you can help:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Follow the existing code style and conventions
- Add appropriate comments and documentation
- Test your changes thoroughly
- Update the schema documentation if you modify entities
- Keep the code modular and maintainable
- Network: Ethereum Mainnet
- Contract Address:
0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb - Start Block: 3914495
- Framework: The Graph Protocol
- Language: AssemblyScript
- @graphprotocol/graph-cli: ^0.87.0
- @graphprotocol/graph-ts: ^0.35.1
- matchstick-as: 0.5.0 (dev)
This project is licensed under the UNLICENSED License - see the LICENSE file for details.
For questions, issues, or support:
- Open an issue in this repository
- Join The Graph Protocol Discord
- Visit The Graph Documentation