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 Solyum Bot safe? 🔐

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

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 ?😵

Solyum 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