We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e7274c commit 4d83240Copy full SHA for 4d83240
packages/plugin-solana/src/providers/simulationSellingService.ts
@@ -211,6 +211,7 @@ export class simulationSellingService {
211
const process = await this.startProcessInTheSonarBackend(
212
tokenAddress,
213
balance,
214
+ true,
215
sell_recommender_id,
216
tokenPerformance.initial_mc
217
);
@@ -225,6 +226,7 @@ export class simulationSellingService {
225
226
tokenAddress: string,
227
balance: number,
228
isSimulation: boolean,
229
+ sell_recommender_id: string,
230
initial_mc: number
231
) {
232
try {
@@ -233,6 +235,7 @@ export class simulationSellingService {
233
235
234
236
isSimulation,
237
initial_mc,
238
+ sell_recommender_id,
239
});
240
const response = await fetch(
241
`${this.sonarBe}/ai16z-sol/startProcess`,
0 commit comments