Crypto Wallet Auditor
Conducts a comprehensive fraud check. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chainaware_ai: {
type: "app",
app: "chainaware_ai",
}
},
async run({steps, $}) {
const data = {
"network": `ETH`,
//Enter a valid ETH wallet address below to test.
"walletAddress": `[Wallet Address]`,
"calculate": `true`,
}
return await axios($, {
method: "post",
url: `https://enterprise.api.chainaware.ai/fraud/check`,
headers: {
"x-api-key": `${this.chainaware_ai.$auth.api_key}`,
},
data,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.