3. Allocation and Distribution

Once a round closes, AutoCap determines DataCap (DC) allocations based on the economic activity observed during that round.

Allocation is driven entirely by eligible FIL burns. Only FIL that was burned as a result of finalized Filecoin Pay settlement events, originating from registered Participant Burn Addresses and occurring within the round window, is taken into account. No off-chain inputs, manual adjustments, or discretionary decisions play any role in this process.

Formally, AutoCap applies a proportional allocation rule. Each participant’s share of the round’s DataCap pool is equal to their share of the total eligible FIL burned during the round.

The Formula

Let:

  • DCpool be the total DataCap available for distribution in the round

  • Btotal​ be the total eligible FIL burned by all participants during the round

  • Bi be the eligible FIL burned by i-th participant

The DC allocation that the i-th participant receives is given by:

DCi=DCpool×BiBtotal\text{DC}_i = \text{DC}_{\text{pool}} \times \frac{B_i}{B_{\text{total}}}

This formula is applied once, at round close, using the finalized on-chain data recorded during the round.

circle-info

Example

  • Round has 10 TiB of DC to distribute

  • Total FIL burned by all participants: 100 FIL

  • Alice burned 10 FIL (10% of total) from the Burn Address

  • Alice receives 1 TiB (10% of total DC) in the DataCap Recipient Address

circle-exclamation

Minimum Allocation is 1 MiB (1,048,576 bytes)

Allocation Properties

This mechanism ensures:

  • Fairness: allocations are strictly proportional to contribution;

  • Transparency: all inputs are on-chain and publicly verifiable;

  • Determinism: the outcome depends only on observed data, not discretion

Finality and Edge Cases

If no eligible FIL is burned during a round, no DataCap is allocated for that round.

Each round is evaluated independently. Allocation results are final once computed and are never adjusted retroactively based on future activity.

DataCap is issued to the DataCap Recipient Address specified by each participant at registration.

Last updated