βΌοΈTrouble shooting
Transaction is too large error
This means you are including too many accounts in your transaction, to make it work you will need to add lookup tables to your config. The bot provides a build in cli to do so, see Address lookup table
Too many open files
Run this before running the bot
ulimit -n 65535
Wrap WSOL
For example wrapping 0.1 SOL to WSOL
./smb-onchain wrap-sol config.toml 100000000
Transaction is too large
If you just add one mint and two pools, you usually won't see this error. But if you add either more mints or more pools, you will run into this without a proper lookup tables.
To understand what is a lookup table, read the official documents here. The easiest way to resolve this is to create a lookup table based on your config. The bot provide a cli command to do so:
./smb-onchain create-lookup-table config.toml
Or you can extend a table you created previously by using extend-lookup-table
instead. To see what other commands are supported see Address lookup table
Another way is to find lookup tables created by others and use it, but you need to find the correct ones to use otherwise it wont work.
Last updated