ObitCC
  • Obit: Community Cloud
  • For Research
    • Creating your first Workload
    • Workload Types
      • WebLLM
      • WGSL
      • Transformers
      • ONNX Training
      • More ONNX Workloads
    • Entitlements
  • For server owners
    • Setting Up
    • Creating a Shop
    • Profit Sharing
    • FAQ
Powered by GitBook
On this page
  • Understanding Pricing
  • Making your Shop
  • Processing Rewards
  1. For server owners

Creating a Shop

To create a shop on ObitCC, you just need a JSON file of prices, images, titles and descriptions of your products.

Understanding Pricing

For each minute a user computes for, they get one "credit". Users need to be active to get credits. A few calculations to base your pricing on:

  • A user computing all day, every day, for a month straight would receive 1,440 credits per day and 43,200 credits per month

  • The average user, who only computes when they are on their computer actively (assuming 3-6 hours per day), would receive 180-360 credits per day, and 5,400-10,800 credits per month.

  • Currently the GPU that a user has does not factor into how much they receive (as they should average out). This may change in the future.

General recommended pricing structure:

  • "Common" items like crate keys should be priced around 100 credits

  • "Rare" items like kits, armor, better crate keys, should be priced around 350-400 credits

  • "Super Rare" items like ranks should be priced around 5000 credits

Making your Shop

Making a shop on ObitCC is simple. Just follow this example structure:

{
    "name": "ExampleGN",
    "discord": "https://discord.gg/examplegn",
    "items": [
        {
            "name": "$5 Gift Card",
            "price": 5,
            "description": "$5 ExampleGN Store Giftcard",
            "image": "https://via.placeholder.com/150"
        },
        {
            "name": "$10 Gift Card",
            "price": 10,
            "description": "$10 ExampleGN Store Giftcard",
            "image": "https://via.placeholder.com/150"
        }
    ]
}

Simply replace the name, discord and items with your own server's rewards. We will run it through a JSON checker and fix any errors in the formatting if there are any.

Processing Rewards

After purchasing an item from your shop, users will see a dialog like the one above, with a redeem ID. Follow this process to make sure IDs are authentic:

  1. Go to the Obit Dashboard

  2. Replace the part that says /dashboard with /lookup in the search bar

  3. Enter the user's redeem ID into the "Lookup receipt by ID" section

  4. You should see a dialog similar to the one below:

  1. Give the user their product through a bot or command that you have set up

  2. Save the redeem ID in a channel or spreadsheet to make sure the user does not redeem it again on the same server

PreviousSetting UpNextProfit Sharing

Last updated 10 months ago