Security Tips

To use our bots, you need to enter your private key in a configuration file

DISCLAIMER : of course TEAM DOES NOT HAVE ACCESS to your private key, keys are only stored locally on you machine!

Don't worry, private keys are encrypted on bot launch πŸ”

Is Selenium Bot safe? πŸ”

Our Code is 100% open source you can verify, fork, or help contribute on Github

YES ! There is no virus in our code, and as said before, we're open source... "virustotal.com *link*"

Anti-bot protect A complete bypass of the anti-bot system, because. the bot is running on your computer. You will never get banned on DEFIExchange

Avoids web interfaces & Metamask and interact directly with chain nodes. Therefore, your orders go through faster than any of the web based platforms

Security tipsπŸ•΅οΈ

Once again, our app is safu and you can trust us. But a basic advice is :β€Œ

  • Create a dedicated wallet for Selenium Bot trades

  • Send the the funds you want to trade on Selenium Bot on this wallet

Why do I need to enter my private key ?😡

Selenium needs your private key to be able to create buy/sell orders.

Below is an example of how we use Web.py to send an approval TX and sign with your key:

transaction = contract.functions.approve(routerAddress, amount
).buildTransaction({
    'gasPrice': Web3.toWei(gas, 'gwei'),
    'gas': 300000,
    'from': Web3.toChecksumAddress(settings['WALLETADDRESS']),
    'nonce': client.eth.getTransactionCount(settings['WALLETADDRESS'])
})
signed_txn = client.eth.account.signTransaction(transaction, private_key=settings['PRIVATEKEY'])

Last updated