Add kaigen debit credit for backtest

This commit is contained in:
2025-07-15 10:31:21 +07:00
parent f1c7259bc6
commit 11778aa2a4
7 changed files with 326 additions and 13 deletions

View File

@@ -100,6 +100,7 @@ public static class ApiBootstrap
services.AddTransient<IWebhookService, WebhookService>();
services.AddTransient<ISynthPredictionService, SynthPredictionService>();
services.AddTransient<ISynthApiClient, SynthApiClient>();
services.AddTransient<IKaigenService, KaigenService>();
return services;
}
@@ -118,6 +119,8 @@ public static class ApiBootstrap
services.AddSingleton<IPrivySettings>(sp =>
sp.GetRequiredService<IOptions<PrivySettings>>().Value);
services.Configure<KaigenSettings>(configuration.GetSection("Kaigen"));
// Evm
services.AddGbcFeed();
services.AddUniswapV2();