Skip to content

Commit

Permalink
fix(platforms): fixing eth model URL (#2414)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianHymer authored Apr 22, 2024
1 parent eaed809 commit 9560a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/src/ETH/Providers/accountAnalysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const dataScienceEndpoint = process.env.DATA_SCIENCE_API_URL;

export async function getETHAnalysis(address: string, context: ETHAnalysisContext): Promise<ETHAnalysis> {
if (!context?.ethAnalysis) {
const { data } = await fetchModelData<ModelResponse>(address, "eth-stamp-predict-v2");
const { data } = await fetchModelData<ModelResponse>(address, "eth-stamp-v2-predict");

context.ethAnalysis = {
humanProbability: data.human_probability,
Expand Down

0 comments on commit 9560a8f

Please sign in to comment.