CityCoins
  • Introduction
  • About CityCoins
    • What are CityCoins?
    • How do I get started?
  • CityCoins Resources
    • General
    • MineCityCoins.com
  • Core Protocol
    • Registration and Activation
    • Mining CityCoins
    • Stacking CityCoins
    • Token Configuration
  • Developer Resources
    • General
    • API
    • Code Examples
      • Get Account Transactions
      • Activation
      • Mining
      • Mining Claims
      • Stacking
    • Contracts
    • Integrations
      • Supporting Stacks
      • Supporting CityCoins
      • Stacks Transactions
      • Additional Info
  • Contract Functions
    • Activation
    • Mining
    • Mining Claims
    • Stacking
    • Stacking Claims
    • Token
Powered by GitBook
On this page
  • Overview
  • Details
  • Functions
  • API Ref: Mining Claims
  • claim-mining-reward
  • is-block-winner
  • can-claim-mining-reward

Was this helpful?

  1. Contract Functions

Mining Claims

CityCoin contract functions related to mining claims.

PreviousMiningNextStacking

Last updated 3 years ago

Was this helpful?

Overview

After miners send their STX to the contract, a winner is later calculated by a Verifiable Random Function (VRF) weighted by the individual miner's bid compared to the total miners' bids sent in that block.

Example 1: Alice sends 10 STX and Bob sends 30 STX in a block. The total spent for the block is 40 STX.

  • Alice has a 25% chance of winning (10/40 STX)

  • Bob has a 75% chance of winning (30/40 STX)

Example 2: Alice sends 20 STX, Bob sends 30 STX, Carol sends 50 STX, and Dave sends 100 STX in a block. The total spent for the block is 200 STX.

  • Alice has a 10% chance of winning (20/200)

  • Bob has a 15% chance of winning (30/200)

  • Carol has a 25% chance of winning (50/200)

  • Dave has a 50% chance of winning (100/200)

Claiming a mining reward happens by calling the function in the contract.

Details

Miners must wait for a maturity window of 100 blocks (~16 hours) before they can know the winner of a given block in order to protect the VRF seed.

After this window passes miners can claim their CityCoin block rewards at any time.

CityCoins are not minted until miners claim them, and therefore the total supply will only increase when miners claim their CityCoins.

If a user did not win the block, the transaction will fail.

Functions

claim-mining-reward

Type: Public Function

Input: minerBlockHeight as uint

Success: (ok true)

Errors:

  • ERR_USER_NOT_FOUND u1002

  • ERR_USER_ID_NOT_FOUND u1003

  • ERR_USER_DID_NOT_MINE_IN_BLOCK u1009

  • ERR_CLAIMED_BEFORE_MATURITY u1010

  • ERR_NO_MINERS_AT_BLOCK u1011

  • ERR_REWARD_ALREADY_CLAIMED u1012

  • ERR_MINER_DID_NOT_WIN u1013

  • ERR_NO_VRF_SEED_FOUND u1014

  • ERR_CLAIM_IN_WRONG_CONTRACT u1020

Claiming mining rewards happens through calling the claim-mining-reward function in the contract, which accepts the block height the miner mined in, and checks if the VRF value is between the lowValue and highValue for the miner.

is-block-winner

Type: Read-only Function

Input: user as principal and minerBlockHeight as uint

Returns: true or false

Returns a boolean value indicating if the user's principal won at a given block height.

Note: this function will always return false if the token maturity window of 100 blocks did not pass.

can-claim-mining-reward

Type: Read-only Function

Input: user as principal and minerBlockHeight as uint

Returns: true or false

Returns a boolean value indicating if the user's principal won and is eligible to claim the block reward at a given block height.

Note: this function will always return false if the token maturity window of 100 blocks did not pass.

If the user won the block, the transaction will succeed and mint them the block reward per the .

Optionally, a user can call the and functions to see if their address can claim a given block before submitting the claim transaction.

If the miner won the block, then the coinbase is minted for them based on block height of the claim and the .

API Ref: Mining Claims
claim-mining-reward
is-block-winner
can-claim-mining-reward
Emissions Schedule
emissions schedule