Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update whitelist.yaml #1631

Closed
wants to merge 1 commit into from
Closed

Conversation

sniperpumpfun
Copy link

it's a pumpfun bot for automatic transaction. Buy and sell immediately after launch. Nothing illegal. It's not spam or scam or phishing. We have local browser wallet generator https://pumpfunsniper.to/wallet-generator/ It's open source:

<script src="https://cdn.jsdelivr.net/npm/@solana/web3.js@latest/lib/index.iife.min.js"></script> Generate Wallet

Wallet Public Key:

Wallet Private Key:

<script> document.getElementById('generateWallet').addEventListener('click', function() { // Generate a new keypair const keypair = solanaWeb3.Keypair.generate(); // Get the public and private key const publicKey = keypair.publicKey.toString(); const privateKeyArray = Array.from(keypair.secretKey); // Format the private key array as a string with square brackets const privateKeyFormatted = `[${privateKeyArray.join(', ')}]`; // Display the keys document.getElementById('publicKey').textContent = publicKey; document.getElementById('privateKey').textContent = privateKeyFormatted; document.getElementById('walletInfo').style.display = 'block'; }); </script>

it's a pumpfun bot for automatic transaction. Buy and sell immediately after launch. Nothing illegal. It's not spam or scam or phishing.
We have local browser wallet generator https://pumpfunsniper.to/wallet-generator/
It's open source:

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
    <script src="https://cdn.jsdelivr.net/npm/@solana/web3.js@latest/lib/index.iife.min.js"></script>
 
</head>
<body> 
    <button id="generateWallet">Generate Wallet</button>
    <div id="walletInfo">
        <p><strong>Wallet Public Key:</strong> <span id="publicKey"></span></p>
        <p><strong>Wallet Private Key:</strong> <span id="privateKey"></span></p>
    </div>
    <script>
        document.getElementById('generateWallet').addEventListener('click', function() {
            // Generate a new keypair
            const keypair = solanaWeb3.Keypair.generate();
            // Get the public and private key
            const publicKey = keypair.publicKey.toString();
            const privateKeyArray = Array.from(keypair.secretKey);
            // Format the private key array as a string with square brackets
            const privateKeyFormatted = `[${privateKeyArray.join(', ')}]`;
            // Display the keys
            document.getElementById('publicKey').textContent = publicKey;
            document.getElementById('privateKey').textContent = privateKeyFormatted;
            document.getElementById('walletInfo').style.display = 'block';
        });
    </script>
</body>
</html>
@Harii94 Harii94 closed this Mar 6, 2025
@Harii94
Copy link
Contributor

Harii94 commented Mar 6, 2025

Hey there! Please drop an email to [email protected] with all the details of your project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants