Julia Docs

Arithmetic Agent Plugin

Overview

arithmetic_agent is a mock economic modeler that forecasts token supply given initial supply, burn rate, and inflation rate.


Endpoint

POST /api/arithmetic-agent

Input Parameters

FieldTypeDescription
initialSupplyfloatStarting supply of the token
burnRatefloatBurn percentage (e.g., 0.01 = 1%)
inflationRatefloatAnnual inflation rate

Example Request

{
  "initialSupply": 69000000,
  "burnRate": 0.042,
  "inflationRate": 0.017
}

Example Response

{
  "final_supply_projection": 72145253,
  "commentary": "Sustainable inflation detected. Token is mildly expansionary.",
  "model": "ArithmeticAgent v0.3"
}

Notes

  • Good for tokenomics simulators or governance dashboards.

On this page