├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── data.json ├── docker-compose.https.yml ├── docker-compose.yml ├── main.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── src ├── __init__.py ├── api │ ├── __init__.py │ ├── backtesting.py │ ├── strategy_optimizer.py │ └── updater.py ├── automation │ ├── __init__.py │ ├── automation.py │ └── bases │ │ ├── __init__.py │ │ ├── abstract_action.py │ │ ├── abstract_condition.py │ │ ├── abstract_trigger_event.py │ │ └── automation_step.py ├── backtesting │ ├── __init__.py │ ├── abstract_backtesting_test.py │ ├── independent_backtesting.py │ └── octobot_backtesting.py ├── channels │ ├── __init__.py │ └── octobot_channel.py ├── cli.py ├── commands.py ├── community │ ├── __init__.py │ ├── authentication.py │ ├── community_analysis.py │ ├── community_manager.py │ ├── errors.py │ ├── errors_upload │ │ ├── __init__.py │ │ ├── error_model.py │ │ ├── errors_uploader.py │ │ ├── initializer.py │ │ └── sentry_aiohttp_transport.py │ ├── feeds │ │ ├── __init__.py │ │ ├── abstract_feed.py │ │ ├── community_mqtt_feed.py │ │ ├── community_supabase_feed.py │ │ ├── community_ws_feed.py │ │ └── feed_factory.py │ ├── graphql_requests.py │ ├── identifiers_provider.py │ ├── models │ │ ├── __init__.py │ │ ├── community_donation.py │ │ ├── community_fields.py │ │ ├── community_public_data.py │ │ ├── community_supports.py │ │ ├── community_tentacles_package.py │ │ ├── community_user_account.py │ │ ├── formatters.py │ │ ├── startup_info.py │ │ └── strategy_data.py │ ├── supabase_backend │ │ ├── __init__.py │ │ ├── community_supabase_client.py │ │ ├── configuration_storage.py │ │ ├── enums.py │ │ ├── postgres_functions.py │ │ ├── supabase_client.py │ │ ├── supabase_realtime_channel.py │ │ ├── supabase_realtime_client.py │ │ └── supabase_realtime_socket.py │ └── tentacles_packages.py ├── config │ ├── config_schema.json │ ├── default_config.json │ ├── logging_config.ini │ └── profile_schema.json ├── configuration_manager.py ├── constants.py ├── databases_util.py ├── disclaimer.py ├── enums.py ├── errors.py ├── initializer.py ├── limits.py ├── logger.py ├── producers │ ├── __init__.py │ ├── evaluator_producer.py │ ├── exchange_producer.py │ ├── interface_producer.py │ └── service_feed_producer.py ├── sniperbot.py ├── sniperbot_api.py ├── sniperbot_backtesting_factory.py ├── sniperbot_channel_consumer.py ├── storage │ ├── __init__.py │ ├── db_databases_pruning.py │ └── trading_metadata.py ├── strategy_optimizer │ ├── __init__.py │ ├── fitness_parameter.py │ ├── optimizer_constraint.py │ ├── optimizer_data_files │ │ ├── AbstractExchangeHistoryCollector_1581774950.9324272.data │ │ ├── AbstractExchangeHistoryCollector_1581774962.1269426.data │ │ ├── AbstractExchangeHistoryCollector_1581774974.669779.data │ │ ├── AbstractExchangeHistoryCollector_1581774982.726014.data │ │ ├── AbstractExchangeHistoryCollector_1581774988.7215023.data │ │ ├── AbstractExchangeHistoryCollector_1581774995.2311237.data │ │ ├── AbstractExchangeHistoryCollector_1581775018.2658834.data │ │ ├── AbstractExchangeHistoryCollector_1581775026.9255266.data │ │ ├── AbstractExchangeHistoryCollector_1581775117.1713624.data │ │ ├── AbstractExchangeHistoryCollector_1581775133.1533682.data │ │ ├── AbstractExchangeHistoryCollector_1581775139.0332782.data │ │ ├── AbstractExchangeHistoryCollector_1581775144.480404.data │ │ ├── AbstractExchangeHistoryCollector_1581775149.6372743.data │ │ ├── AbstractExchangeHistoryCollector_1581775154.2598503.data │ │ ├── AbstractExchangeHistoryCollector_1581776404.9679003.data │ │ ├── AbstractExchangeHistoryCollector_1581776676.5721796.data │ │ └── ExchangeHistoryDataCollector_1711122002.311132.data │ ├── optimizer_filter.py │ ├── optimizer_settings.py │ ├── scored_run_result.py │ ├── strategy_design_optimizer.py │ ├── strategy_design_optimizer_factory.py │ ├── strategy_optimizer.py │ ├── strategy_test_suite.py │ └── test_suite_result.py ├── task_manager.py └── updater │ ├── __init__.py │ ├── binary_updater.py │ ├── python_updater.py │ ├── updater.py │ └── updater_factory.py ├── standard.rc ├── static ├── fonts │ ├── cascadia-code-pl-regular.otf │ ├── cascadia_code_pl_regular.eot │ ├── cascadia_code_pl_regular.svg │ ├── cascadia_code_pl_regular.ttf │ ├── cascadia_code_pl_regular.woff │ └── cascadia_code_pl_regular.woff2 ├── img │ ├── $.svg │ ├── another_crypto.svg │ ├── arrow.svg │ ├── arrow_down.svg │ ├── bank_logo.svg │ ├── bnbbsc_331e969a6b.svg │ ├── btc.svg │ ├── burger.svg │ ├── card.svg │ ├── card_blue.svg │ ├── close.svg │ ├── copy.svg │ ├── copy2.svg │ ├── crypto_logo.svg │ ├── eth.svg │ ├── flags.png │ ├── flags@2x.png │ ├── iban_logo.svg │ ├── id_card.png │ ├── language.svg │ ├── loader.svg │ ├── loader_gray.svg │ ├── logo.svg │ ├── logo2.svg │ ├── logo_big.svg │ ├── logo_gray.svg │ ├── logo_white.svg │ ├── main_logo.svg │ ├── matic_token_f9906e3f5d.svg │ ├── payments │ │ ├── banxa.png │ │ ├── banxa2.png │ │ ├── bitpay.png │ │ ├── changelly.png │ │ ├── changelly2.png │ │ ├── changenow.png │ │ ├── changenow2.png │ │ ├── coingate.png │ │ ├── coingate2.png │ │ ├── mercuryo.png │ │ ├── mercuryo2.png │ │ ├── moonpay.jpg │ │ ├── moonpay2.png │ │ ├── phemex.png │ │ ├── phemex2.png │ │ ├── ramp.png │ │ ├── ramp2.png │ │ ├── simplex.png │ │ ├── simplex2.png │ │ ├── transak.png │ │ └── transak2.png │ ├── profile.svg │ ├── qr.svg │ ├── search.svg │ ├── search2.svg │ ├── search_gray.svg │ ├── select.svg │ ├── settings.svg │ ├── sol.png │ ├── sol_logo.svg │ ├── sol_small.svg │ ├── statistics.svg │ ├── stats_user.svg │ ├── success.svg │ ├── support.svg │ ├── swipe.svg │ ├── ton_e0f171f660.svg │ ├── trading.svg │ ├── traiding_pairs_icon.svg │ ├── transactions_logo.svg │ ├── trx_f14430166e.svg │ ├── upload.png │ ├── usd.svg │ ├── usd_tx.svg │ ├── usdcerc20_acd5759c8c.svg │ ├── usdtbsc_b8f3d8f316.svg │ ├── usdterc20_5ae21618aa.svg │ ├── usdttrc20_87164a7b35.svg │ ├── users.svg │ ├── wallet.svg │ ├── warning.svg │ ├── working_bot.svg │ └── xrp_3b5212fd4a.svg ├── index.html ├── profile.html ├── register.html ├── screenshot.png ├── statistics.html └── styles │ ├── blocks │ ├── center.less │ ├── container.less │ ├── header.less │ ├── left.less │ ├── modal.less │ ├── profile.less │ ├── register.less │ └── right.less │ ├── style.css │ ├── style.less │ └── vars.less └── tokendata.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docker-compose.https.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/docker-compose.https.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/api/__init__.py -------------------------------------------------------------------------------- /src/api/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/api/backtesting.py -------------------------------------------------------------------------------- /src/api/strategy_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/api/strategy_optimizer.py -------------------------------------------------------------------------------- /src/api/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/api/updater.py -------------------------------------------------------------------------------- /src/automation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/__init__.py -------------------------------------------------------------------------------- /src/automation/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/automation.py -------------------------------------------------------------------------------- /src/automation/bases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/bases/__init__.py -------------------------------------------------------------------------------- /src/automation/bases/abstract_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/bases/abstract_action.py -------------------------------------------------------------------------------- /src/automation/bases/abstract_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/bases/abstract_condition.py -------------------------------------------------------------------------------- /src/automation/bases/abstract_trigger_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/bases/abstract_trigger_event.py -------------------------------------------------------------------------------- /src/automation/bases/automation_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/automation/bases/automation_step.py -------------------------------------------------------------------------------- /src/backtesting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/backtesting/__init__.py -------------------------------------------------------------------------------- /src/backtesting/abstract_backtesting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/backtesting/abstract_backtesting_test.py -------------------------------------------------------------------------------- /src/backtesting/independent_backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/backtesting/independent_backtesting.py -------------------------------------------------------------------------------- /src/backtesting/octobot_backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/backtesting/octobot_backtesting.py -------------------------------------------------------------------------------- /src/channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/channels/__init__.py -------------------------------------------------------------------------------- /src/channels/octobot_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/channels/octobot_channel.py -------------------------------------------------------------------------------- /src/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/cli.py -------------------------------------------------------------------------------- /src/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/commands.py -------------------------------------------------------------------------------- /src/community/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/__init__.py -------------------------------------------------------------------------------- /src/community/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/authentication.py -------------------------------------------------------------------------------- /src/community/community_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/community_analysis.py -------------------------------------------------------------------------------- /src/community/community_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/community_manager.py -------------------------------------------------------------------------------- /src/community/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors.py -------------------------------------------------------------------------------- /src/community/errors_upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors_upload/__init__.py -------------------------------------------------------------------------------- /src/community/errors_upload/error_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors_upload/error_model.py -------------------------------------------------------------------------------- /src/community/errors_upload/errors_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors_upload/errors_uploader.py -------------------------------------------------------------------------------- /src/community/errors_upload/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors_upload/initializer.py -------------------------------------------------------------------------------- /src/community/errors_upload/sentry_aiohttp_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/errors_upload/sentry_aiohttp_transport.py -------------------------------------------------------------------------------- /src/community/feeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/__init__.py -------------------------------------------------------------------------------- /src/community/feeds/abstract_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/abstract_feed.py -------------------------------------------------------------------------------- /src/community/feeds/community_mqtt_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/community_mqtt_feed.py -------------------------------------------------------------------------------- /src/community/feeds/community_supabase_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/community_supabase_feed.py -------------------------------------------------------------------------------- /src/community/feeds/community_ws_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/community_ws_feed.py -------------------------------------------------------------------------------- /src/community/feeds/feed_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/feeds/feed_factory.py -------------------------------------------------------------------------------- /src/community/graphql_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/graphql_requests.py -------------------------------------------------------------------------------- /src/community/identifiers_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/identifiers_provider.py -------------------------------------------------------------------------------- /src/community/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/__init__.py -------------------------------------------------------------------------------- /src/community/models/community_donation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_donation.py -------------------------------------------------------------------------------- /src/community/models/community_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_fields.py -------------------------------------------------------------------------------- /src/community/models/community_public_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_public_data.py -------------------------------------------------------------------------------- /src/community/models/community_supports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_supports.py -------------------------------------------------------------------------------- /src/community/models/community_tentacles_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_tentacles_package.py -------------------------------------------------------------------------------- /src/community/models/community_user_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/community_user_account.py -------------------------------------------------------------------------------- /src/community/models/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/formatters.py -------------------------------------------------------------------------------- /src/community/models/startup_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/startup_info.py -------------------------------------------------------------------------------- /src/community/models/strategy_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/models/strategy_data.py -------------------------------------------------------------------------------- /src/community/supabase_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/__init__.py -------------------------------------------------------------------------------- /src/community/supabase_backend/community_supabase_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/community_supabase_client.py -------------------------------------------------------------------------------- /src/community/supabase_backend/configuration_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/configuration_storage.py -------------------------------------------------------------------------------- /src/community/supabase_backend/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/enums.py -------------------------------------------------------------------------------- /src/community/supabase_backend/postgres_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/postgres_functions.py -------------------------------------------------------------------------------- /src/community/supabase_backend/supabase_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/supabase_client.py -------------------------------------------------------------------------------- /src/community/supabase_backend/supabase_realtime_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/supabase_realtime_channel.py -------------------------------------------------------------------------------- /src/community/supabase_backend/supabase_realtime_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/supabase_realtime_client.py -------------------------------------------------------------------------------- /src/community/supabase_backend/supabase_realtime_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/supabase_backend/supabase_realtime_socket.py -------------------------------------------------------------------------------- /src/community/tentacles_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/community/tentacles_packages.py -------------------------------------------------------------------------------- /src/config/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/config/config_schema.json -------------------------------------------------------------------------------- /src/config/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/config/default_config.json -------------------------------------------------------------------------------- /src/config/logging_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/config/logging_config.ini -------------------------------------------------------------------------------- /src/config/profile_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/config/profile_schema.json -------------------------------------------------------------------------------- /src/configuration_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/configuration_manager.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/databases_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/databases_util.py -------------------------------------------------------------------------------- /src/disclaimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/disclaimer.py -------------------------------------------------------------------------------- /src/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/enums.py -------------------------------------------------------------------------------- /src/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/errors.py -------------------------------------------------------------------------------- /src/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/initializer.py -------------------------------------------------------------------------------- /src/limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/limits.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/producers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/producers/__init__.py -------------------------------------------------------------------------------- /src/producers/evaluator_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/producers/evaluator_producer.py -------------------------------------------------------------------------------- /src/producers/exchange_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/producers/exchange_producer.py -------------------------------------------------------------------------------- /src/producers/interface_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/producers/interface_producer.py -------------------------------------------------------------------------------- /src/producers/service_feed_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/producers/service_feed_producer.py -------------------------------------------------------------------------------- /src/sniperbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/sniperbot.py -------------------------------------------------------------------------------- /src/sniperbot_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/sniperbot_api.py -------------------------------------------------------------------------------- /src/sniperbot_backtesting_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/sniperbot_backtesting_factory.py -------------------------------------------------------------------------------- /src/sniperbot_channel_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/sniperbot_channel_consumer.py -------------------------------------------------------------------------------- /src/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/storage/__init__.py -------------------------------------------------------------------------------- /src/storage/db_databases_pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/storage/db_databases_pruning.py -------------------------------------------------------------------------------- /src/storage/trading_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/storage/trading_metadata.py -------------------------------------------------------------------------------- /src/strategy_optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/__init__.py -------------------------------------------------------------------------------- /src/strategy_optimizer/fitness_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/fitness_parameter.py -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_constraint.py -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774950.9324272.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774950.9324272.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774962.1269426.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774962.1269426.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774974.669779.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774974.669779.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774982.726014.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774982.726014.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774988.7215023.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774988.7215023.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774995.2311237.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581774995.2311237.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775018.2658834.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775018.2658834.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775026.9255266.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775026.9255266.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775117.1713624.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775117.1713624.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775133.1533682.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775133.1533682.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775139.0332782.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775139.0332782.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775144.480404.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775144.480404.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775149.6372743.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775149.6372743.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775154.2598503.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581775154.2598503.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581776404.9679003.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581776404.9679003.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581776676.5721796.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/AbstractExchangeHistoryCollector_1581776676.5721796.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_data_files/ExchangeHistoryDataCollector_1711122002.311132.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_data_files/ExchangeHistoryDataCollector_1711122002.311132.data -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_filter.py -------------------------------------------------------------------------------- /src/strategy_optimizer/optimizer_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/optimizer_settings.py -------------------------------------------------------------------------------- /src/strategy_optimizer/scored_run_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/scored_run_result.py -------------------------------------------------------------------------------- /src/strategy_optimizer/strategy_design_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/strategy_design_optimizer.py -------------------------------------------------------------------------------- /src/strategy_optimizer/strategy_design_optimizer_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/strategy_design_optimizer_factory.py -------------------------------------------------------------------------------- /src/strategy_optimizer/strategy_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/strategy_optimizer.py -------------------------------------------------------------------------------- /src/strategy_optimizer/strategy_test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/strategy_test_suite.py -------------------------------------------------------------------------------- /src/strategy_optimizer/test_suite_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/strategy_optimizer/test_suite_result.py -------------------------------------------------------------------------------- /src/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/task_manager.py -------------------------------------------------------------------------------- /src/updater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/updater/__init__.py -------------------------------------------------------------------------------- /src/updater/binary_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/updater/binary_updater.py -------------------------------------------------------------------------------- /src/updater/python_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/updater/python_updater.py -------------------------------------------------------------------------------- /src/updater/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/updater/updater.py -------------------------------------------------------------------------------- /src/updater/updater_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/src/updater/updater_factory.py -------------------------------------------------------------------------------- /standard.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/standard.rc -------------------------------------------------------------------------------- /static/fonts/cascadia-code-pl-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/fonts/cascadia-code-pl-regular.otf -------------------------------------------------------------------------------- /static/fonts/cascadia_code_pl_regular.eot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/cascadia_code_pl_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/fonts/cascadia_code_pl_regular.svg -------------------------------------------------------------------------------- /static/fonts/cascadia_code_pl_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/fonts/cascadia_code_pl_regular.ttf -------------------------------------------------------------------------------- /static/fonts/cascadia_code_pl_regular.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/cascadia_code_pl_regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/fonts/cascadia_code_pl_regular.woff2 -------------------------------------------------------------------------------- /static/img/$.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/$.svg -------------------------------------------------------------------------------- /static/img/another_crypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/another_crypto.svg -------------------------------------------------------------------------------- /static/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/arrow.svg -------------------------------------------------------------------------------- /static/img/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/arrow_down.svg -------------------------------------------------------------------------------- /static/img/bank_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/bank_logo.svg -------------------------------------------------------------------------------- /static/img/bnbbsc_331e969a6b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/bnbbsc_331e969a6b.svg -------------------------------------------------------------------------------- /static/img/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/btc.svg -------------------------------------------------------------------------------- /static/img/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/burger.svg -------------------------------------------------------------------------------- /static/img/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/card.svg -------------------------------------------------------------------------------- /static/img/card_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/card_blue.svg -------------------------------------------------------------------------------- /static/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/close.svg -------------------------------------------------------------------------------- /static/img/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/copy.svg -------------------------------------------------------------------------------- /static/img/copy2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/copy2.svg -------------------------------------------------------------------------------- /static/img/crypto_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/crypto_logo.svg -------------------------------------------------------------------------------- /static/img/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/eth.svg -------------------------------------------------------------------------------- /static/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/flags.png -------------------------------------------------------------------------------- /static/img/flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/flags@2x.png -------------------------------------------------------------------------------- /static/img/iban_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/iban_logo.svg -------------------------------------------------------------------------------- /static/img/id_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/id_card.png -------------------------------------------------------------------------------- /static/img/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/language.svg -------------------------------------------------------------------------------- /static/img/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/loader.svg -------------------------------------------------------------------------------- /static/img/loader_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/loader_gray.svg -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/logo2.svg -------------------------------------------------------------------------------- /static/img/logo_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/logo_big.svg -------------------------------------------------------------------------------- /static/img/logo_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/logo_gray.svg -------------------------------------------------------------------------------- /static/img/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/logo_white.svg -------------------------------------------------------------------------------- /static/img/main_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/main_logo.svg -------------------------------------------------------------------------------- /static/img/matic_token_f9906e3f5d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/matic_token_f9906e3f5d.svg -------------------------------------------------------------------------------- /static/img/payments/banxa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/banxa.png -------------------------------------------------------------------------------- /static/img/payments/banxa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/banxa2.png -------------------------------------------------------------------------------- /static/img/payments/bitpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/bitpay.png -------------------------------------------------------------------------------- /static/img/payments/changelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/changelly.png -------------------------------------------------------------------------------- /static/img/payments/changelly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/changelly2.png -------------------------------------------------------------------------------- /static/img/payments/changenow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/changenow.png -------------------------------------------------------------------------------- /static/img/payments/changenow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/changenow2.png -------------------------------------------------------------------------------- /static/img/payments/coingate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/coingate.png -------------------------------------------------------------------------------- /static/img/payments/coingate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/coingate2.png -------------------------------------------------------------------------------- /static/img/payments/mercuryo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/mercuryo.png -------------------------------------------------------------------------------- /static/img/payments/mercuryo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/mercuryo2.png -------------------------------------------------------------------------------- /static/img/payments/moonpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/moonpay.jpg -------------------------------------------------------------------------------- /static/img/payments/moonpay2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/moonpay2.png -------------------------------------------------------------------------------- /static/img/payments/phemex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/phemex.png -------------------------------------------------------------------------------- /static/img/payments/phemex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/phemex2.png -------------------------------------------------------------------------------- /static/img/payments/ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/ramp.png -------------------------------------------------------------------------------- /static/img/payments/ramp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/ramp2.png -------------------------------------------------------------------------------- /static/img/payments/simplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/simplex.png -------------------------------------------------------------------------------- /static/img/payments/simplex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/simplex2.png -------------------------------------------------------------------------------- /static/img/payments/transak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/transak.png -------------------------------------------------------------------------------- /static/img/payments/transak2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/payments/transak2.png -------------------------------------------------------------------------------- /static/img/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/profile.svg -------------------------------------------------------------------------------- /static/img/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/qr.svg -------------------------------------------------------------------------------- /static/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/search.svg -------------------------------------------------------------------------------- /static/img/search2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/search2.svg -------------------------------------------------------------------------------- /static/img/search_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/search_gray.svg -------------------------------------------------------------------------------- /static/img/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/select.svg -------------------------------------------------------------------------------- /static/img/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/settings.svg -------------------------------------------------------------------------------- /static/img/sol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/sol.png -------------------------------------------------------------------------------- /static/img/sol_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/sol_logo.svg -------------------------------------------------------------------------------- /static/img/sol_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/sol_small.svg -------------------------------------------------------------------------------- /static/img/statistics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/statistics.svg -------------------------------------------------------------------------------- /static/img/stats_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/stats_user.svg -------------------------------------------------------------------------------- /static/img/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/success.svg -------------------------------------------------------------------------------- /static/img/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/support.svg -------------------------------------------------------------------------------- /static/img/swipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/swipe.svg -------------------------------------------------------------------------------- /static/img/ton_e0f171f660.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/ton_e0f171f660.svg -------------------------------------------------------------------------------- /static/img/trading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/trading.svg -------------------------------------------------------------------------------- /static/img/traiding_pairs_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/traiding_pairs_icon.svg -------------------------------------------------------------------------------- /static/img/transactions_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/transactions_logo.svg -------------------------------------------------------------------------------- /static/img/trx_f14430166e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/trx_f14430166e.svg -------------------------------------------------------------------------------- /static/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/upload.png -------------------------------------------------------------------------------- /static/img/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usd.svg -------------------------------------------------------------------------------- /static/img/usd_tx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usd_tx.svg -------------------------------------------------------------------------------- /static/img/usdcerc20_acd5759c8c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usdcerc20_acd5759c8c.svg -------------------------------------------------------------------------------- /static/img/usdtbsc_b8f3d8f316.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usdtbsc_b8f3d8f316.svg -------------------------------------------------------------------------------- /static/img/usdterc20_5ae21618aa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usdterc20_5ae21618aa.svg -------------------------------------------------------------------------------- /static/img/usdttrc20_87164a7b35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/usdttrc20_87164a7b35.svg -------------------------------------------------------------------------------- /static/img/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/users.svg -------------------------------------------------------------------------------- /static/img/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/wallet.svg -------------------------------------------------------------------------------- /static/img/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/warning.svg -------------------------------------------------------------------------------- /static/img/working_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/working_bot.svg -------------------------------------------------------------------------------- /static/img/xrp_3b5212fd4a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/img/xrp_3b5212fd4a.svg -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/index.html -------------------------------------------------------------------------------- /static/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/profile.html -------------------------------------------------------------------------------- /static/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/register.html -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /static/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/statistics.html -------------------------------------------------------------------------------- /static/styles/blocks/center.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/center.less -------------------------------------------------------------------------------- /static/styles/blocks/container.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/container.less -------------------------------------------------------------------------------- /static/styles/blocks/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/header.less -------------------------------------------------------------------------------- /static/styles/blocks/left.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/left.less -------------------------------------------------------------------------------- /static/styles/blocks/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/modal.less -------------------------------------------------------------------------------- /static/styles/blocks/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/profile.less -------------------------------------------------------------------------------- /static/styles/blocks/register.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/register.less -------------------------------------------------------------------------------- /static/styles/blocks/right.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/blocks/right.less -------------------------------------------------------------------------------- /static/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/style.css -------------------------------------------------------------------------------- /static/styles/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/style.less -------------------------------------------------------------------------------- /static/styles/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/static/styles/vars.less -------------------------------------------------------------------------------- /tokendata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-EthanSOL/Sniper-Calls-Bot/HEAD/tokendata.json --------------------------------------------------------------------------------