en
Feedback
My Airdrop Family 🍵🍵

My Airdrop Family 🍵🍵

Open in Telegram

My Airdrop Family. Kill all airdrop, or airdrop kill you 😵😵😵 @CryptoAirdropTalkz Join all airdrop. Rich soon 🤑🤑🤑 Join chanell discussion https://t.me/CryptoAirdropTalkz

Show more
1 035
Subscribers
No data24 hours
-57 days
-1130 days
Posts Archive
🪼 Plaza Deposits are live on Base mainnet! Deposit assets into the Plaza Deposit Program to receive Plaza Points, liquid staking and liquid restaking yield, and potential airdrops from other projects! https://deposit.plaza.finance/rewards/teF7FOaB0BAl NOTE : you can withdraw your assets at any time during the pre-deposit period. There are no lockup periods or withdrawal restrictions.

🪼 Claimed my Early Badge from Incentiv_net. Testnet is Coming Soon https://social.incentiv.net?ref=4445
🪼 Claimed my Early Badge from Incentiv_net. Testnet is Coming Soon https://social.incentiv.net?ref=4445

🪼 Join to win Share of 100,000 Berries https://app.galxe.com/quest/yala/GCwt7t1sBP Quiz Answers: A, D, D, B, C, B, C, B, C,
🪼 Join to win Share of 100,000 Berries https://app.galxe.com/quest/yala/GCwt7t1sBP Quiz Answers: A, D, D, B, C, B, C, B, C, D

🪼 Mereo ‘Mereo OG’ Badge for future benefits Register : https://app.mereo.xyz/ (No referral) - Download APP - Sign up with E
🪼 Mereo ‘Mereo OG’ Badge for future benefits Register : https://app.mereo.xyz/ (No referral) - Download APP - Sign up with Email - Complete "Welcome to Mereo" Quest - Backed by Aptos. Incubated by OKX

🪼 Follow https://warpcast.com/l--o--l to get 1000 whitelist Free Ships soon

Cek wallet nil distri sell on market done

Sogni Testnet - Save your PK https://nft.sogni.ai --- login with account artist --- click my earning --- click export private key --- save Untuk NFT diabaikan saja karena itu khusus worker (sejenis mining sogni)

Yang ngerti ae

Auto Mint Gachaman
const fs = require('fs');
const { bech32 } = require('@scure/base');
const { Ed25519Keypair } = require('@mysten/sui.js/keypairs/ed25519');
const { SuiClient } = require('@mysten/sui.js/client');

const SUI_RPC_URL = 'https://fullnode.mainnet.sui.io:443';
const MINT_API_URL = 'https://coj-gdc2025-api.cmsd.dev/mint';

async function processSuiWallet(privateKey, client) {
    try {
        const decoded = bech32.decode(privateKey);
        const bytes = new Uint8Array(bech32.fromWords(decoded.words));
        
        if (bytes.length !== 33) {
            throw new Error(`Invalid key length: ${bytes.length} bytes`);
        }
        const rawPrivateKey = bytes.slice(1);
        
        const keypair = Ed25519Keypair.fromSecretKey(rawPrivateKey);
        const address = keypair.toSuiAddress();

        // Check balance
        const balance = await client.getBalance({ owner: address });
        const suiAmount = balance.totalBalance / 1e9;
        console.log(`\n${address}: ${suiAmount.toFixed(2)} SUI (${balance.totalBalance} MIST)`);

        // Sign message
        const message = `The wallet address ${address} is currently doing free minting now which has no gas fees or costs..`;
        const messageBytes = new TextEncoder().encode(message);
        const signature = await keypair.sign(messageBytes);
        const signatureBase64 = Buffer.from(signature).toString('base64');

        // Send mint request
        const response = await fetch(MINT_API_URL, {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({
                address: address,
                signature: signatureBase64,
                message: message,
                network: "mainnet"
            })
        });

        if (!response.ok) {
            throw new Error(`API request failed: ${response.status} ${response.statusText}`);
        }

        const responseData = await response.json();
        console.log('Mint request successful:');
        console.log('Status:', responseData.status);
        console.log('Message:', responseData.message);
        console.log('Request Hash:', responseData.requestHash);
        console.log('Queue Position:', responseData.queuePosition);

    } catch (error) {
        console.error(`Error processing key ${privateKey}: ${error.message}`);
    }
}

async function checkSuiBalancesAndMint() {
    const privateKeys = fs.readFileSync('private_keys.txt', 'utf-8')
        .split('\n')
        .map(line => line.trim())
        .filter(line => line.startsWith('suiprivkey1'));

    if (privateKeys.length === 0) {
        console.log('No valid private keys found in private_keys.txt');
        return;
    }

    const client = new SuiClient({ url: SUI_RPC_URL });

    for (const privateKey of privateKeys) {
        await processSuiWallet(privateKey, client);
    }
}

checkSuiBalancesAndMint().catch(console.error);
Install Module
npm install @mysten/sui.js @scure/base
create file private_keys.txt, one private key per line run : node index.js

Auto Mint Gachaman const fs = require('fs'); const { bech32 } = require('@scure/base'); const { Ed25519Keypair } = require('@mysten/sui.js/keypairs/ed25519'); const { SuiClient } = require('@mysten/sui.js/client'); const SUI_RPC_URL = 'https://fullnode.mainnet.sui.io:443'; const MINT_API_URL = 'https://coj-gdc2025-api.cmsd.dev/mint'; async function processSuiWallet(privateKey, client) { try { const decoded = bech32.decode(privateKey); const bytes = new Uint8Array(bech32.fromWords(decoded.words)); if (bytes.length !== 33) { throw new Error(Invalid key length: ${bytes.length} bytes); } const rawPrivateKey = bytes.slice(1); const keypair = Ed25519Keypair.fromSecretKey(rawPrivateKey); const address = keypair.toSuiAddress(); // Check balance const balance = await client.getBalance({ owner: address }); const suiAmount = balance.totalBalance / 1e9; console.log(\n${address}: ${suiAmount.toFixed(2)} SUI (${balance.totalBalance} MIST)); // Sign message const message = The wallet address ${address} is currently doing free minting now which has no gas fees or costs..; const messageBytes = new TextEncoder().encode(message); const signature = await keypair.sign(messageBytes); const signatureBase64 = Buffer.from(signature).toString('base64'); // Send mint request const response = await fetch(MINT_API_URL, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ address: address, signature: signatureBase64, message: message, network: "mainnet" }) }); if (!response.ok) { throw new Error(API request failed: ${response.status} ${response.statusText}); } const responseData = await response.json(); console.log('Mint request successful:'); console.log('Status:', responseData.status); console.log('Message:', responseData.message); console.log('Request Hash:', responseData.requestHash); console.log('Queue Position:', responseData.queuePosition); } catch (error) { console.error(Error processing key ${privateKey}: ${error.message}); } } async function checkSuiBalancesAndMint() { const privateKeys = fs.readFileSync('private_keys.txt', 'utf-8') .split('\n') .map(line => line.trim()) .filter(line => line.startsWith('suiprivkey1')); if (privateKeys.length === 0) { console.log('No valid private keys found in private_keys.txt'); return; } const client = new SuiClient({ url: SUI_RPC_URL }); for (const privateKey of privateKeys) { await processSuiWallet(privateKey, client); } } checkSuiBalancesAndMint().catch(console.error); Install Module npm install @mysten/sui.js @scure/base create file private_keys.txt, one private key per line run : node index.js

[Free Mint] Gatchaman The legendary Gatchaman is officially entering Web3! Mint your exclusive NFT on Sui and own a piece of
[Free Mint] Gatchaman The legendary Gatchaman is officially entering Web3! Mint your exclusive NFT on Sui and own a piece of anime history. Free mint available until March 27, 2025 at 7:00 AM UTC Mint NFT https://lp.projectj-tcg.com/ - Connect with SUI Wallet - Click Free Mint

🪼 Ekiden Waitlist https://ekiden.fi/
🪼 Ekiden Waitlist https://ekiden.fi/

🪼 EXTSY WAITLIST https://extsy.com/

🪼 CrossCurve Final Push 2000 USDT https://taskon.xyz/quest/700660295

🪼 Oreva Airdrop Limited Time only 72 Hours Reward Pool : 50k $OREVA Join Now: https://orevaapp.com/orevaapp-form ➖ Complete
🪼 Oreva Airdrop Limited Time only 72 Hours Reward Pool : 50k $OREVA Join Now: https://orevaapp.com/orevaapp-form ➖ Complete Another Task ➖ Submit TON Address ➖ Done

🪼 Cek Email TITAN DEX
🪼 Cek Email TITAN DEX

🪼 Bebop Testnet ( MegaETH Testnet ) Register Testnet : https://bebop.xyz/trade?network=megaeth
🪼 Bebop Testnet ( MegaETH Testnet ) Register Testnet : https://bebop.xyz/trade?network=megaeth

🪼 DynastyArcher AirdropBot Rondom 1000 Join Now: https://t.me/DynastyArcherAirdropBot?start=2121421003 ➖ Complete Another Ta
🪼 DynastyArcher AirdropBot Rondom 1000 Join Now: https://t.me/DynastyArcherAirdropBot?start=2121421003 ➖ Complete Another Task ➖ Submit BSC Address ➖ Done

🪼 DTEC AIRDROP waitlist https://airdrop.dtec.space/

🪼 Halliday Early Access https://halliday.xyz/earlyaccess Tesnet Soon
🪼 Halliday Early Access https://halliday.xyz/earlyaccess Tesnet Soon