with Covalent and Catch-all Verifier?
The Covalent API provides comprehensive blockchain data from multiple chains, enabling the retrieval of balances, transactions, and contract details with a simple API call. On Pipedream, you can harness this API to create powerful automations and workflows that respond to blockchain events, aggregate data for analysis, and integrate with other apps for a wide array of use cases, such as notifying users of transaction events or updating databases with the latest blockchain states.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
covalent: {
type: "app",
app: "covalent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.covalenthq.com/v1/1/block_v2/5000000/`,
auth: {
username: `${this.covalent.$auth.api_key}`,
password: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
catch_all_verifier: {
type: "app",
app: "catch_all_verifier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.catchallverifier.com/api/v1/verify/single`,
headers: {
"authorization": `${this.catch_all_verifier.$auth.api_key}`,
"accept": `application/json`,
},
params: {
id: `${this.catch_all_verifier.$auth.single_verification_id}`,
},
})
},
})