incentive-system / README.md
bluewhale2025's picture
Initial commit: AI Tree Incentive System
8bbeb2a

A newer version of the Gradio SDK is available: 6.14.0

Upgrade
metadata
title: AI Tree Incentive System
emoji: ๐ŸŽฏ
colorFrom: blue
colorTo: green
sdk: gradio
sdk_version: 4.19.2
app_file: app.py
pinned: false
license: mit

AI Tree Incentive System

๋ธ”๋กœ๊ทธ ๊ธฐ์—ฌ๋„ ๊ธฐ๋ฐ˜์˜ ์ธ์„ผํ‹ฐ๋ธŒ ์‹œ์Šคํ…œ์ž…๋‹ˆ๋‹ค.

์ฃผ์š” ๊ธฐ๋Šฅ

  • ๐ŸŽฏ ํฌ์ธํŠธ ์‹œ์Šคํ…œ

    • ํฌ์ŠคํŠธ ์ž‘์„ฑ: 10์ 
    • ๋Œ“๊ธ€ ์ž‘์„ฑ: 5์ 
    • ๋ฆฌ๋ทฐ: 15์ 
    • ๋ฒ„๊ทธ ๋ฆฌํฌํŠธ: 20์ 
    • ๊ธฐ๋Šฅ ์ œ์•ˆ: 15์ 
    • ์ฝ”๋“œ ๊ธฐ์—ฌ: 30์ 
  • ๐Ÿ† ๊ธฐ์—ฌ๋„ ์ˆœ์œ„

    • ์‹ค์‹œ๊ฐ„ ๋ฆฌ๋”๋ณด๋“œ
    • ์ฃผ๊ฐ„/์›”๊ฐ„ ๋žญํ‚น
    • ๊ธฐ์—ฌ๋„ ๋ฐฐ์ง€
  • ๐ŸŽจ NFT ๋ฐœํ–‰

    • ํŠน๋ณ„ํ•œ ๊ธฐ์—ฌ์— ๋Œ€ํ•œ NFT ๋ณด์ƒ
    • ํฌ๊ท€๋„ ์‹œ์Šคํ…œ
    • ์ปฌ๋ ‰์…˜ ๊ฐค๋Ÿฌ๋ฆฌ

๊ธฐ์ˆ  ์Šคํƒ

  • Next.js
  • GraphQL (GraphQL Yoga)
  • TypeScript
  • WebSocket
  • Tailwind CSS

API ์‚ฌ์šฉ ์˜ˆ์‹œ

1. ์‚ฌ์šฉ์ž ์ƒ์„ฑ

mutation {
  createUser(input: {
    name: "ํ…Œ์Šคํ„ฐ"
    email: "tester@example.com"
  }) {
    id
    name
    points
  }
}

2. ๊ธฐ์—ฌ๋„ ๋“ฑ๋ก

mutation {
  createContribution(input: {
    userId: "user_id"
    type: POST_CREATION
    description: "์ฒซ ๋ฒˆ์งธ ํฌ์ŠคํŠธ ์ž‘์„ฑ"
  }) {
    id
    points
  }
}

3. NFT ๋ฐœํ–‰

mutation {
  mintNFT(input: {
    title: "์ฒซ ๊ธฐ์—ฌ NFT"
    description: "์ฒซ ํฌ์ŠคํŠธ ์ž‘์„ฑ ๊ธฐ๋…"
    imageUrl: "https://example.com/nft.png"
    category: "ACHIEVEMENT"
    rarity: "RARE"
  }) {
    id
    tokenId
  }
}

๋ผ์ด์„ ์Šค

MIT License