Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 1.22 KB

custodian.md

File metadata and controls

36 lines (32 loc) · 1.22 KB

Custodian

A custodian is the entity that is responsible for the tally of a proposal's votes. A proposal must have a custodian assigned to it. A registered custodian is responsible for tracking when they are assigned to a proposal and is also responsible for counting the vote according to the RMRKDAO standard.

{
  "proposalFee": {
    "type": "string",
    "value": "the amount of Planck KSM (1 Planck KSM = 10^-12 KSM) required for a collection issuer to pay a custodian to assign a proposal to that custodian. For example: 100000000000 is equal to 0.1 KSM."
  },
  "voteFee": {
    "type": "string",
    "value": "the amount of Planck KSM required for a voter to pay a custodian to ensure their vote is counted. For example 10000000000 = is equal to 0.01 KSM."
  },
  "recertifyFee": {
    "type": "string",
    "value": "the amount of Planck KSM required for a collection issuer to pay a custodian to recertify a count."
  },
  "maxOptions": {
    "type": "number",
    "value": "the maximum number of options the custodian is willing to accept in a proposal."
  }
}

Example

{
  "proposalFee": "110000000000",
  "voteFee": "50000000000",
  "recertifyFee": "1000000000000",
  "maxOptions": 100
}