#[program]
pub mod aigent_framework {
    use super::*;
    use crate::helpers::{pull_funds, send_to_escrow};

    const BPS_DENOM: u64 = 10_000;

    pub fn initialize_contract(
        ctx: Context,
        dao_pool: Pubkey,
        sol_fee_bps: u64,
    ) -> Result<()> {
        let config = &mut ctx.accounts.config;
        config.authority = *ctx.accounts.authority.key;
        config.dao_pool = dao_pool;
        config.sol_fee_bps = sol_fee_bps;
        Ok(())
    }

    pub fn start_escrow(
        ctx: Context,
        tx_id: Pubkey,
        rent: u64,
        deposit: u64,
        release_secs: u64,
        token_mint: Option,
    ) -> Result<()> {
        let total = rent + deposit;
        let meta = &mut ctx.accounts.transaction_metadata;
        let now = Clock::get()?.unix_timestamp;

        meta._transaction_id = tx_id;
        meta.bVbuyer = *ctx.accounts.buyer.key;
        meta.seller = *ctx.accounts.seller.key;
        meta.agent = *ctx.accounts.agent.key;
        meta.rental_amount = rent;
        meta.deposit_amount = deposit;
        meta.total_amount = total;
        meta.is_disputed = false;
        meta.is_completed = false;
        meta.release_timestamp = now + release_secs as i64;
        meta.token_mint = token_mint;
        meta.dispute_description = String::new();
        meta.deposit_release_status = DepositReleaseStatus::None;

        send_to_escrow(
            total,
            token_mint,
            &ctx.accounts.buyer,
            &ctx.accounts.central_sol_escrow,
            &ctx.accounts.token_program,
            &ctx.accounts.system_program,
            ctx.accounts.buyer_token_account.as_ref(),
            ctx.accounts.central_token_account.as_ref(),
        )?;
        Ok(())
    }
}
      

Decentralized Commerce Agents

Elevate your business with Solana-powered agents for marketplaces, rentals, and beyond.

Discover Now

Our Framework

An open-source framework on Solana empowering developers to build and monetize decentralized commerce solutions with secure, seamless peer-to-peer transactions.

Phase 1: Pump.Fun Token
Phase 2: ALF Smart Program
  - Agent Integration
  - Payment Processing
  - Escrow Services
Phase 3: DAO Governance
  - Lock tokens, share 50% fees
Phase 4: Agents & Extensions
  - Developer Monetization
Phase 5: User Flows
  - List, Pay, Release Funds

Monetize with ALF DAO

Craft, integrate, and profit—on your terms.

Telegram & Discord Bots

Engage communities with premium bots.

Monetize: Subscriptions or per-use fees.

Example: Exclusive content bot with a fee.

Betting Bots

Launch decentralized betting platforms.

Monetize: Cut of bets or fees.

Example: Crypto price betting, 2% per wager.

Marketplace Bots

Automate trading and auctions.

Monetize: Trade or listing fees.

Example: NFT auction bot with a percentage cut.

Rental Bots

Safely manage rentals by separating rent fees and safety fees.

Monetize: Rental contract fees.

Example: Virtual land rental, 5% of rent.

Payment Plugins

Enable crypto payments for stores.

Monetize: Licensing or transaction fees.

Example: Shopify plugin, 1% per sale.

Decentralized Compute Power

Pool resources to access shared compute power or APIs.

Monetize: Earn by contributing compute power or sharing APIs.

Example: Rent out your PC's idle time for AI training tasks.

Begin Crafting

Explore Our Agents

Unveil pre-built agents for decentralized commerce or create your own masterpiece.

Clone the repo: git clone https://github.com/AigentLabsFramework

Install dependencies: pip install python-telegram-bot solders anchorpy (or discord.py for Discord)

Configure: Add token, wallet, and RPC.

Run your agent: python your_agent.py

Full docs: GitHub