Securing Wallet Private Key
NotArb comes with a secure way of protecting your keypair in case your server becomes compromised.
Inside your bot-config.toml under the [bot_misc] section, you have an option for protect_keypair=true
[bot_misc] # required
keypair_path="mysuperprivatekeywif42069solana.json"
protect_keypair=true
swap_threads=0
jito_threads=0
spam_threads=0
This will overwrite your keypair file with a file that's only readable by the bot. Although it's not a 100% foolproof way to protect your keypair, it adds a second layer of security.
Last updated