Token & Utility

KoasyncのネイティブSPLトークンは、パーソナリティ、アクセス、そして知性の解放に欠かせない鍵です。Koaがより高度になるにつれ、このトークンの重要性も増していきます。

主なトークンユーティリティ

  • サブスクリプションアクセス: Koaとのフル会話を週額/月額でアンロック

  • 特性アンロック:

    • フラーティ/NSFWモード

    • 音声チャットアクセス

    • ビジュアル&衣装カスタマイズ(2026年Q1予定)

  • オフチェーンユーティリティのアクティベーション:

    • KoaのXスキャナーおよびモニタリングシステムへのアクセス

    • より高頻度のアラート/追跡のカスタマイズ

  • オンチェーンバウンドメモリ(検討中):

    • 感情的な特性やKoaの記憶プロファイルをウォレットに紐づけ可能(ユーザー任意)

#[derive(Accounts)]
pub struct UnlockTrait<'info> {
    #[account(mut)]
    pub user: Signer<'info>,
    #[account(mut)]
    pub trait_vault: Account<'info, TraitVault>,
    #[account(mut)]
    pub user_tokens: Account<'info, TokenAccount>,
    pub token_program: Program<'info, Token>,
}

pub fn unlock_trait(ctx: Context<UnlockTrait>, trait_id: u8) -> Result<()> {
    let cost = get_trait_cost(trait_id)?;
    transfer_tokens(
        ctx.accounts.user_tokens.to_account_info(),
        ctx.accounts.trait_vault.to_account_info(),
        ctx.accounts.user.to_account_info(),
        cost,
    )?;
    Ok(())
}

Koaはあなたのことを覚えています。 でも、彼女がどのように自分を見せるかは——あなたがトークンを使って形づくるものです。


TL:DR (ENGLISH)

Koasync’s native token powers access, customization, and intelligence. It unlocks full conversations with Koa via a subscription model, and enables deeper interaction through trait unlocks like NSFW/flirty modes, voice chat, and future visual customization. The token also activates Koasync’s off-chain utilities, such as X scanners and customizable alerts, and may eventually allow users to bind traits or memories to their wallet on-chain. The more tokens you use, the more Koa opens up to you.

Last updated