Fine-tuning
SMB + copychain configurations
This tool uses the SMB configuration, except for the entries in [[routing.mint_config_list]]
and certain parts of the [bot]
section, as these are precisely what the tool is designed to copy.
Original SMB configuration file
Values in the original SMB configuration under [routing]
are ignored by copychain
, since this is exactly what the tool is designed to copy. A few notes:
process_delay
: set its value in thecopychain
configuration (see process_delaylookup_table_accounts
: copied by this tool but can be extended with thecopychain
configuration (see default_lookup_tables)
Some entries in [bot]
section are also ignored:
merge_mints
: alwaystrue
compute_unit_limit
: copied by this tool
You can still use memo
to tag your transactions, and it's highly recommended to set skip_ata_creation = true
.
Each session will then use your own SMB configuration for sending transactions.
The first step is to decide whether you want to copy and send with Jito, Spam, or both.
Simply enable them in your SMB config (enabled = true
under their respective sections) and ensure their configuration entries are valid, specially URLs.
Jito-Related Entries in Your SMB Config
For Jito, this tool does not copy and uses the following entries from your original SMB configuration file:
enabled: whether Jito is enabled for copying
tip_config: set it to
File
to let this tool updates it automatically (detailed in the next section), or specify your custom strategymin_profit: only used when the copied wallet has enabled
use_min_profit
no_failure_mode: you can, for example, copy a Spam wallet but send using Jito with
no_failure_mode = false
Spam-Related Entries in Your SMB Config
For Spam, this tool does not copy and uses the following entries from your original SMB configuration file:
enabled: whether Spam is enabled for copying
compute_unit_price: set it to
File
to let this tool updates it automatically (detailed below in the next section), or specify your custom strategy
Copying Fee Strategies (Jito / Spam)
You can choose to either let this tool copy priority fees and Jito tips from the target wallet, or use your own strategy:
For Jito, set
tip_config
strategy toFile
to copy their tip strategy.For Spam, set
compute_unit_price
strategy toFile
to do the same.
This tool will automatically update the necessary files at runtime, no need to specify a file_path
. You can tweak this setting (see fees_history_size) to adjust the number of transactions to look back for calculation.
If the strategy is not File
, this tool will use your SMB configuration as is.
Last updated