Community-Driven Meme Token

The Meme Token for ML Enthusiasts

Join the HuggingFace DAO community and be part of the AI revolution with $HFT - where memes meet machine learning.

$HFT Token
Emoji
Emoji
🚨 Pre-Launch Alert 🚨

We're Not Live Yet... But You Can Be Early

We're building the cutest, most community-powered meme token on-chain. No presale. No VCs. Just hugs, memes & pure DAO energy.

Launch Countdown

Launch Countdown

29
Days
23
Hours
59
Minutes
59
Seconds
Community Goal:420 / 1000 Members

When we hit 1K fam, we go live!

Join our Telegram community now to be notified when we launch and get early access to $HFT token!

Why $HFT?

  • Meme-Powered

    Meme-Powered, Community-Driven

    Built by the community, for the community. No VCs, no pre-sales, just pure meme energy.

  • Chill-to-Earn

    Chill-to-Earn Vibes

    Earn rewards just for being part of our vibrant community and spreading positive vibes.

  • New Meta

    Hugging + Pumping = New Meta

    We're combining the best of ML community with meme coin energy for a whole new crypto experience.

  • DAO Utility

    DAO Utility Coming Soon

    We're building real utility for $HFT holders with governance, staking, and exclusive access to ML resources.

Help Us Spread the Word

Share $HFT with your friends and help us reach our launch goal of 1,000 community members!

🚨 Pre-Launch Alert: HuggingFace DAO | $HFT 🤗 We're not live yet… but you can be early. We're building the cutest, most community-powered meme token on-chain. No presale. No VCs. Just hugs, memes & pure DAO energy. Launch Goal: 1,000 👍🦄 Telegram Members When we hit 1K fam, we go live. Why $HFT? 🤗 • Meme-Powered, Community-Driven • Chill-to-Earn Vibes • Hugging + Pumping = New Meta • DAO Utility Coming Soon Join the Movement: https://t.me/HuggingFaceDAO #HFT #HuggingFaceDAO #MemeCoin #CryptoCommunity #DeFiVibes
Share

Why Sharing Matters

  • Help us reach our goal of 1,000 community members faster

  • Early supporters will receive special benefits and rewards

  • Build a stronger, more engaged community from day one

  • Increase visibility and momentum before we even launch

Current Community Members: 420

42% of our 1,000 member goal

$HFT Token Stats

Real-time statistics for the $HFT token (simulated pre-launch data).

These stats are simulated for demonstration purposes. Real token statistics will be available after launch when we reach our community goal of 1,000 members.

Price

$0.000420

12.50%
Connecting...

Market Cap

$420,000

Fully diluted valuation

Community

420

Growing community

24h Volume

$68,000

Trading volume (24h)

Join Our Vibrant Community

$HFT is more than just a token - it's a community of ML enthusiasts, meme lovers, and crypto pioneers.

HFT Community

Why Join the HuggingFace DAO?

  • Community-Driven

    Join thousands of like-minded individuals passionate about ML and crypto.

  • Active Discussions

    Engage in discussions about AI, machine learning, and the future of crypto.

  • Exclusive Benefits

    Get early access to new features, events, and community initiatives.

  • Collaborative Projects

    Participate in community-driven projects and shape the future of $HFT.

Community

Telegram Group

Join our active Telegram group for real-time discussions and updates.

Twitter

Twitter/X

Follow us on Twitter for the latest news, memes, and community highlights.

HuggingFace

HuggingFace

Visit the HuggingFace website to explore ML models and resources.

Tokenomics

$HFT is designed with a fair distribution model and strong utility to ensure long-term value for holders.

Token Allocation

Community (50%)
Liquidity (30%)
Development (15%)
Marketing (5%)

Token Details

Token NameHuggingFace Token
Token Symbol$HFT
Total Supply1,000,000,000 $HFT
BlockchainSolana
Token TypeSPL Token
Initial Price$0.00042

$HFT has a fair distribution model with no team tokens and no pre-sale. 50% of tokens are allocated to the community, ensuring a truly decentralized project.

Roadmap

Our journey to build the ultimate community-driven meme token for ML enthusiasts.

Phase 1: Launch

  • Token creation and launch
  • Website launch
  • Community building
  • Initial marketing push
  • Listing on DEXs
Completed

Phase 2: Growth

  • Community expansion
  • Partnership announcements
  • Enhanced tokenomics features
  • Marketing campaigns
  • CEX listings
In Progress

Phase 3: Utility

  • Staking platform launch
  • Governance system implementation
  • Integration with HuggingFace ecosystem
  • Mobile app development
  • Cross-chain expansion
Coming Soon

Phase 4: Ecosystem

  • NFT collection launch
  • DAO treasury establishment
  • Developer grants program
  • Strategic partnerships
  • Global community events
Coming Soon

PumpPortal API Integration

Connect to real-time trading and token creation data with the PumpPortal WebSocket API.

WebSocket Methods

Subscribe Methods

  • subscribeNewToken - For token creation events
  • subscribeTokenTrade - For trades on specific tokens
  • subscribeAccountTrade - For trades by specific accounts
  • subscribeMigration - For token migration events

Unsubscribe Methods

  • unsubscribeNewToken
  • unsubscribeTokenTrade
  • unsubscribeAccountTrade
  • unsubscribeMigration

Important Note

Please use only ONE WebSocket connection at a time. Do NOT open a new connection for every token or account you subscribe to. Instead, send new subscribe messages to the same connection. Clients that repeatedly attempt to open many connections may be blacklisted.

API Integration

Code Examples

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 import WebSocket from 'ws'; const ws = new WebSocket('wss://pumpportal.fun/api/data'); ws.on('open', function open() { // Subscribing to token creation events let payload = { method: "subscribeNewToken", } ws.send(JSON.stringify(payload)); // Subscribing to migration events payload = { method: "subscribeMigration", } ws.send(JSON.stringify(payload)); // Subscribing to trades made by accounts payload = { method: "subscribeAccountTrade", keys: ["AArPXm8JatJiuyEffuC1un2Sc835SULa4uQqDcaGpAjV"] // array of accounts to watch } ws.send(JSON.stringify(payload)); // Subscribing to trades on tokens payload = { method: "subscribeTokenTrade", keys: ["91WNez8D22NwBssQbkzjy4s2ipFrzpmn5hfvWVe2aY5p"] // array of token CAs to watch } ws.send(JSON.stringify(payload)); }); ws.on('message', function message(data) { console.log(JSON.parse(data)); }); // Unsubscribe example // setTimeout(() => { // ws.send(JSON.stringify({ // method: "unsubscribeTokenTrade", // keys: ["91WNez8D22NwBssQbkzjy4s2ipFrzpmn5hfvWVe2aY5p"] // })); // }, 10000);

Usage Tips

  • Always handle WebSocket connection errors and implement reconnection logic.
  • Unsubscribe from data streams when they are no longer needed to reduce server load.
  • Use a single WebSocket connection and add/remove subscriptions as needed.
  • Implement proper error handling for parsing received JSON data.

Lightning Wallet & API Key

Generate a Lightning Wallet and API key to interact with the $HFT token and PumpPortal services.

Step 1: Generate a Lightning Wallet & API Key

To interact with the $HFT token and PumpPortal services, you'll need a Lightning Wallet and API key. Here's a sample wallet that's been generated for demonstration purposes:

9cY4Kjyf6pgBqckGhCkU9vSVYCE99gJrut4Wzywh76Gr
376PVrVi8CoknZMcjKZBuW3JJ3Dm6ivHRzDjfpFxip8pNd3u5yzsaZzLctsrW9jKU1euZktzKABvZf6mYR47msZL
envjpru38drqmebn6tu68maf90nq6mjde55pwpku99vn2kapa9v72jb19dpm2vbu89kqjbujb977mxvua9t76ujnaxgqgttq6t33eyjq915njxbh6t2qethr8xbmet9h9hn68k1ha4ykub17p2ctfa9rkjpjaawwkehk45c9tjkadtb89634cun610mwrttedw4pwthdxvkuf8

Important Security Notice

  • SECURELY SAVE YOUR PRIVATE KEY: You can restore your wallet at any time via your private key and withdraw funds. Anyone with access to your private key can do the same.
  • SECURELY SAVE YOUR API KEY: Anyone with your API key can trade using the funds in your wallet.
  • KEYS CAN NOT BE RECOVERED IF LOST. Your keys will disappear upon navigating away from this page OR clicking the button again to create a new API key and wallet.

Step 2: Fund Your Wallet

Just send any amount of SOL to the address (public key) of the wallet you created above. That's it! You can now trade with the funds in your wallet using the API.

Wallet

Getting Started Tips

  • 1
    Create Your Wallet

    Generate a new wallet and API key for your trading activities.

  • 2
    Fund Your Wallet

    Send SOL to your wallet address to start trading.

  • 3
    Integrate with API

    Use your API key to interact with PumpPortal services.

  • 4
    Start Trading

    Buy, sell, and trade $HFT tokens and other assets.

Trade $HFT

Buy, sell, and trade $HFT tokens on your favorite exchanges.

How to Buy $HFT

  1. 1

    Create a Wallet

    Set up a Solana-compatible wallet like Phantom or Solflare.

  2. 2

    Get SOL

    Purchase SOL from an exchange and transfer it to your wallet.

  3. 3

    Connect to DEX

    Visit a decentralized exchange like Raydium or Jupiter and connect your wallet.

  4. 4

    Swap for $HFT

    Swap your SOL for $HFT tokens and enjoy being part of our community!

Token Address:$HFT_TOKEN_ADDRESS
SOL
$HFT
This is a simulation. Please use a DEX to make actual trades.
Trading