For the complete documentation index, see llms.txt. This page is also available as Markdown.

Treasury Operations

Meta Signals operates a discretionary treasury process that may, from time to time, use a portion of platform operating revenue to acquire MSIG from the open market for protocol-utility purposes — such as funding ecosystem rewards, supporting governance reserves, and managing circulating supply for operational reasons. Whether, when, and how much of this activity occurs is determined by the protocol's operational parameters and governance, and may be paused, modified, or terminated at any time.

This page describes how the mechanism is designed to function if and when it is operated. It does not describe outcomes, returns, or commitments.

How the Treasury Process Is Designed to Work

A portion of platform operating revenue — drawn from sources such as autotrading operations, subscription products, and exchange-commission arrangements — may be routed into a stablecoin-denominated Operations Treasury. The size of any such allocation is set by operational parameters and may change.

When the treasury holds a balance, the protocol may execute open-market purchases of MSIG on a periodic basis. The intent of this design is to spread any purchasing activity over time rather than concentrate it, for operational predictability. There is no guaranteed cadence, size, or floor for such activity.

Revenue Routing (Illustrative)

When operating revenue is recognized across the platform's various business lines, a portion may be converted into stablecoins and credited to the Operations Treasury. The portions routed in this way are operational parameters and are not fixed or promised.

Treasury Deployment (Illustrative)

If and when the treasury is deployed, the protocol is designed to compute a daily deployment amount using a smoothed signal, an operational deploy rate, and a runway constraint, and then take the most conservative result. This is a process description only; no daily deployment is promised.

The smoothed treasury balance is intended to be a 90-day exponential moving average of the raw treasury balance:

smoothed_treasury=EMA90(treasury_balance)\text{smoothed\_treasury} = \text{EMA}_{90}(\text{treasury\_balance})

The EMA target is the smoothed balance multiplied by an operational deploy rate:

ema_target=smoothed_treasury×deploy_rate\text{ema\_target} = \text{smoothed\_treasury} \times \text{deploy\_rate}

The runway cap is intended to divide the current treasury balance by the number of days remaining until the next operational settlement, plus a buffer, so the treasury is not depleted prematurely:

runway_cap=treasury_balancedays_to_next_settlement+buffer\text{runway\_cap} = \frac{\text{treasury\_balance}}{\text{days\_to\_next\_settlement} + \text{buffer}}

The daily amount, if any, is intended to be the lesser of the two:

daily_amount=min(ema_target, runway_cap)\text{daily\_amount} = \min(\text{ema\_target},\ \text{runway\_cap})

In the reference implementation, this amount is also capped at the available treasury balance as a final safety check.

Variable definitions:

  • treasury_balance — current stablecoin balance held in the Operations Treasury

  • EMA_90 — 90-day exponential moving average, used to smooth deposit spikes

  • smoothed_treasury — the EMA-smoothed balance

  • deploy_rate — an operational parameter expressing how much of the smoothed balance the protocol may deploy in a day

  • ema_target — the EMA-derived daily figure

  • days_to_next_settlement — calendar days until the next operational settlement window

  • buffer — additional days of operating runway retained as a safety margin

  • runway_cap — the maximum daily figure consistent with preserving runway through the next settlement

  • daily_amount — the resulting daily figure, if the mechanism is operated on a given day

Smoothing rationale. When a settlement deposits a larger balance into the treasury, the EMA is intended to ramp gradually, so any associated activity is operationally smooth rather than lumpy.

Illustrative Worked Example

The values below are illustrative only. They are not targets, projections, forecasts, or commitments.

  • Treasury balance: $100,000

  • Smoothed treasury (EMA90): $80,000

  • Deploy rate: an example operational rate

  • Days to next settlement: 45

  • Buffer: 30 days

Under these example inputs, the runway cap would be the binding constraint, illustrating how the design preserves treasury through a settlement window. Earlier in a cycle, the runway cap is tighter; closer to settlement, the EMA target may become the binding input.

All numbers above are example inputs to illustrate the formula. Operational parameters are set by the protocol, are not disclosed as fixed figures, and may change at any time.

How Acquired Tokens May Be Used

Any MSIG acquired through this process is intended to be directed toward protocol-utility purposes, which may include:

  • Permanent removal from circulation for supply-management reasons tied to operational design

  • Funding of ecosystem rewards for participants who stake MSIG to access platform utility, including governance participation

  • Allocation to a governance-controlled reserve used to fund protocol operations, ecosystem development, integrations, security, liquidity operations, and other operational needs as directed by governance

The relative weighting among these uses is an operational parameter set by the protocol and governance. It is not fixed, is not a commitment, and may be changed or suspended at any time. Holders should not expect any particular allocation, distribution, reward, or supply outcome.

Why MSIG Has Utility

MSIG is designed to be useful inside the Meta Signals platform — for example, to access platform features, participate in governance over operational parameters, and engage with ecosystem programs. The treasury process described above is an operational tool that supports the protocol's functioning. It is not a yield product, revenue share, dividend, distribution, or investment return, and should not be acquired, held, or evaluated as one.

For information on the platform's revenue-generating activities, see Ecosystem-Driven Treasury. To explore how different operational assumptions interact with the formulas above, see the Revenue Simulation tool — outputs of which are illustrative only and are not forecasts.

Last updated