Skip to content

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 review@phantom.com 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