Pocket Network · Schema
pocket.tokenomics.Params
Params defines the parameters for the tokenomics module.
BlockchainRPCDecentralizedWeb3EthereumEVMInfrastructure
Properties
| Name | Type | Description |
|---|---|---|
| dao_reward_address | string | dao_reward_address is where the DAO's portion of claims submitted are distributed. Bech32 cosmos address |
| global_inflation_per_claim | number | global_inflation_per_claim is the percentage of a claim's claimable uPOKT amount to be minted on settlement. GlobalMintTLM: Only used by the GlobalMintTLM at the end of claim settlement. |
| mint_allocation_percentages | object | mint_allocation_percentages represents the distribution of newly minted tokens. GlobalMintTLM: Only used by the GlobalMintTLM at the end of claim settlement. |
| mint_equals_burn_claim_distribution | object | mint_equals_burn_claim_distribution controls how the settlement amount is distributed when global inflation is disabled (global_inflation_per_claim = 0). MintEqualsBurnTLM: Only used by the MintEquals |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/pokt/main/json-schema/pocket_tokenomics_Params.json",
"title": "pocket.tokenomics.Params",
"description": "Params defines the parameters for the tokenomics module.",
"type": "object",
"properties": {
"dao_reward_address": {
"description": "dao_reward_address is where the DAO's portion of claims submitted are distributed.\n\nBech32 cosmos address",
"type": "string"
},
"global_inflation_per_claim": {
"description": "global_inflation_per_claim is the percentage of a claim's claimable uPOKT amount to be minted on settlement.\nGlobalMintTLM: Only used by the GlobalMintTLM at the end of claim settlement.",
"type": "number",
"format": "double"
},
"mint_allocation_percentages": {
"description": "mint_allocation_percentages represents the distribution of newly minted tokens.\nGlobalMintTLM: Only used by the GlobalMintTLM at the end of claim settlement.",
"$ref": "#/definitions/pocket.tokenomics.MintAllocationPercentages"
},
"mint_equals_burn_claim_distribution": {
"description": "mint_equals_burn_claim_distribution controls how the settlement amount is distributed\nwhen global inflation is disabled (global_inflation_per_claim = 0).\nMintEqualsBurnTLM: Only used by the MintEqualsBurnTLM at the end of claim settlement.",
"$ref": "#/definitions/pocket.tokenomics.MintEqualsBurnClaimDistribution"
}
}
}