Lossback Protocol logo
Lossback ProtocolHourly fee redistribution
Live on BNB Chain · Flap launch flow

Fees go back to the holders who took the largest hit.

Lossback Protocol launches tokens through Flap with a custom factory, captures trading fees, ranks holder losses every hour, and redistributes the pool to the top 10 loss-ranked wallets.

BNBexecution layer
Flaplaunch rail
1hepoch cadence
Top 10lossback wallets
Core mechanism

An hourly redistribution engine built into every launch.

The protocol turns trading activity into a recurring lossback stream: fees enter the vault, an epoch closes, losses are ranked, and the payout goes to the wallets carrying the deepest drawdown.

01

Trades generate protocol fees

Buy and sell flow routes a configured fee into the Lossback vault.

Fee capture
02

The epoch closes every hour

The distributor freezes the hourly pool and reads the latest eligible holder set.

Epoch close
03

Losses are ranked by wallet

Tracked cost basis and current value produce the loss leaderboard.

Ranking
04

Top 10 wallets receive the pool

The hourly fee pool is distributed proportionally across the highest-loss active holders.

Payout
Protocol architecture

Factory, token, vault, distributor — separated cleanly.

Each component has one job. The factory standardizes launches, the token captures fees, the vault holds value, and the distributor executes hourly lossback.

01

LossbackFactory

Creates Flap-compatible tokens with standardized fee routing, launch parameters and protocol registration.

02

LossbackToken

BEP-20 token module that routes trading fees to the vault and emits the events used by the loss engine.

03

FeeVault

Custodies BNB, WBNB or the configured payout asset until the authorized distributor closes an epoch.

04

HourlyDistributor

Executes ranked payouts, rolls empty epochs forward and exposes public epoch state for verification.

Distribution model

The deepest losses get the strongest fee flow.

Every epoch calculates eligible wallets, ranks tracked loss and pays the top 10 proportionally. Minimum balance and hold-time filters reduce dust-wallet farming.

// Production epoch logic
hourlyPool = feesCollected(epoch)
eligible = holders.filter(balance > minBalance && holdTime > minHold)
ranked = sortByTrackedLossDesc(eligible)
winners = ranked.slice(0, 10)

for holder in winners:
  weight = holder.loss / sum(winners.loss)
  payout = hourlyPool * weight
ParameterLive value
Epoch cadence1 hour
Winner setTop 10 loss-ranked holders
Loss metricCost basis vs current value
Anti-sybilMinimum size + minimum hold time
Empty epochPool rolls forward
Documentation

Operational docs for Lossback launches.

Use this section as the protocol map: launch path, modules, payout rules and holder-facing behavior.

Overview

What Lossback does

Lossback Protocol captures token fees and redistributes them hourly to the holders with the largest tracked losses. The system makes downside participation visible and turns holder pain into an on-chain reward loop.

Launch flow

Flap-native token creation

Projects launch through the LossbackFactory, which configures token parameters, fee routing, vault custody and distributor permissions before the token enters the Flap launch path.

Modules

Composable protocol stack

The stack is split into LossbackFactory, LossbackToken, FeeVault, HourlyDistributor and the loss indexer/proof engine. This keeps launches standardized while allowing each module to be monitored independently.

Is this a rebase?

No. Holder balances are not rebased. The protocol distributes accumulated fees to eligible wallets.

Who receives the payout?

The top 10 eligible holders by tracked loss receive the hourly pool, weighted by each wallet's loss share.

What prevents farming?

Minimum balance, minimum hold-time and wallet-behavior filters reduce sybil and dust-wallet abuse.

What if there are no fees?

The epoch closes with no payout and the pool rolls forward to the next distribution window.

Launch with a built-in comeback mechanic.

Lossback gives every Flap-launched token a fee stream that rewards the holders who stayed through the deepest drawdown.

Back to top