Skip to content

Commit

Permalink
2027 fix private endpoint (passportxyz#2043)
Browse files Browse the repository at this point in the history
* fix(platforms): prepend protocol

* fix(schemas): remove dummy private_key
  • Loading branch information
tim-schultz authored Jan 16, 2024
1 parent 3535bea commit 8f9629c
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 @@ -24,7 +24,7 @@ export async function getETHAnalysis(address: string, context: ETHAnalysisContex
return context.ethAnalysis.humanProbability;
}

const response = (await axios.post(`${dataScienceEndpoint}/eth-stamp-predict`, {
const response = (await axios.post(`https://${dataScienceEndpoint}/eth-stamp-predict`, {
address,
})) as unknown as { data: ModelResponse };

Expand Down

0 comments on commit 8f9629c

Please sign in to comment.