The Fair Launch mechanism in the GoFundMeme Protocol enables decentralized, transparent, and community-driven token launches. This system ensures equitable access to presale allocations while dynamically adjusting fundraising based on demand.
With the GoFundMeme SDK, you can seamlessly:
✅ Fetch Fair Launch pool details
✅ Fund or defund a pool
✅ Claim presale allocations
✅ Claim preallocations (marketing, team, etc.)
✅ Harvest LP fees and rewards
Fetching a Fair Launch Pool
To interact with a Fair Launch pool, you must first fetch its data using the mint address of the token being launched.
import { Connection, PublicKey } from "@solana/web3.js";
import { initGoFundMemeSDK } from "@gofundmeme/sdk";
const connection = new Connection("https://api.mainnet-beta.solana.com");
(async () => {
const gfmSDK = await initGoFundMemeSDK({ connection });
// Replace with your token mint address
const mintAddress = new PublicKey("THE TOKEN MINT ADDRESS");
// Fetch the Fair Launch Pool
const pool = await gfmSDK.pools.fairLaunch.fetchFairLaunchPool({
mintB: mintAddress,
});
console.log("Fair Launch Pool Data:", pool);
})();
📊 Checking Pool Status
Once you've fetched the Fair Launch pool, you can check its status, expiration, and funding progress.
import moment from "moment";
const { poolStatus, expirationTimestamp, targetRaise, totalRaised } =
pool.poolData;
if (poolStatus.raising) {
console.log("✅ The pool is still in the raising phase.");
}
if (moment(expirationTimestamp.toNumber() * 1000).isAfter(moment())) {
console.log("⏳ The pool has not expired yet!");
}
if (targetRaise.toNumber() > totalRaised.toNumber()) {
const remainingSolToRaise =
(targetRaise.toNumber() - totalRaised.toNumber()) / LAMPORTS_PER_SOL;
console.log("⚠️ Pool is NOT fully funded yet!", { remainingSolToRaise });
}
💰 Funding the Pool
Participants can contribute SOL to the Fair Launch pool before it reaches its target.
import { Keypair, sendAndConfirmTransaction } from "@solana/web3.js";
const payer = Keypair.generate(); // Replace with your actual signer
// Create a funding transaction (1 SOL in this example)
const fundTransaction = await pool.actions.fund({
solAmount: 1,
funder: payer.publicKey,
});
// Sign and send the transaction
const fundTxid = await sendAndConfirmTransaction(connection, fundTransaction, [
payer,
]);
console.log(`🎉 Successfully funded the pool! TXID: ${fundTxid}`);
💸 Defunding (Withdrawing Contributions)
If the pool is still in the raising phase, participants can withdraw their contributions.