You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
class FixtureConfigs:
|
|
in_mem_new_pass_configs = [
|
|
{"prompt": "Enter your new password >>> ", "input": "a"},
|
|
{"prompt": "Please reenter your password >>> ", "input": "a"},
|
|
{"prompt": "Import previous configs or create a new config file? (import/create) >>> ", "input": "create"}
|
|
]
|
|
|
|
pure_mm_basic_responses = {
|
|
"exchange": "binance",
|
|
"market": "LINK-ETH",
|
|
"bid_spread": "1",
|
|
"ask_spread": "1",
|
|
"order_refresh_time": "",
|
|
"order_amount": "4",
|
|
"advanced_mode": "Hell No!"
|
|
}
|
|
|
|
global_binance_config = {
|
|
"binance_api_key": "",
|
|
"binance_api_secret": "",
|
|
"kill_switch_enabled": "no",
|
|
"send_error_logs": "no"
|
|
}
|
|
|
|
in_mem_existing_pass_import_configs = [
|
|
{"prompt": "Import previous configs or create a new config file? (import/create) >>> ", "input": "import"}
|
|
]
|
|
|
|
in_mem_existing_pass_create_configs = [
|
|
{"prompt": "Import previous configs or create a new config file? (import/create) >>> ", "input": "create"}
|
|
]
|
|
|