Launching on Funroll Soon!

Token Utility

We're capturing the value generated by the platform and distributing it directly to holders with a fair launch ensuring equal access.

Overview

The PortPilot token is the economic backbone of the PortPilot ecosystem. It captures value generated by the platform and distributes it directly to token holders.

Every application generated through PortPilot produces value that flows back to the network participants supporting the infrastructure.

Fee Allocation

100% of generation fees are routed directly to PortPilot token holders. When builders use the platform to generate web applications, fees are distributed proportionally among all token holders. This creates a direct economic relationship between platform usage and token value.

struct TokenHolder {
    balance: u64,
    share_of_fees: fn(total_supply) -> u64,
}

impl TokenHolder {
    fn receive_platform_value(&mut self, total_fees: u64) {
        let my_share = (self.balance / TOTAL_SUPPLY) * total_fees;
        self.balance += my_share;
    }
}

// Every app generated triggers value distribution

Token holders receive priority access to new features and generation capabilities. Early participants and those holding larger positions gain expedited onboarding. Direct collaboration with the core team becomes available. The token creates hierarchy within the access model because the platform needs committed participants who understand what's being built.

PortPilot tokens remain liquid at all times. Holders can freely trade, transfer, or utilize their tokens. The token is designed for circulation within the Cardano ecosystem.

Governance Participation (Planned)

Governance mechanisms will eventually allow token holders to influence how the platform develops. Development priorities respond to the community building on the infrastructure. Feature roadmaps adjust based on what holders need. Ecosystem initiatives emerge from the participants most invested in PortPilot's success. The network evolves in alignment with those who have the most stake in its future.

Last updated

Was this helpful?