
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@openzeppelin/defender-autotask-utils
Advanced tools
The Defender Autotasks service allows you to run small code snippets on a regular basis, via webhooks or from Sentinels that can make calls to the Ethereum network or to external APIs. Thanks to tight integration to Defender Relayers, you can use Autotasks to automate regular actions on your contracts.
This library provides typings for simplifying the writing of Autotask code when using Typescript.
Note: For programmatically interacting with your Autotasks, such as updating their code from your local workstation, check out the defender-autotask-client
package.
We will no longer be maintaining or supporting any additional releases for defender-client. Please migrate to defender-sdk as soon as possible to get all the benefits of defender 2.0 and more.
npm install @openzeppelin/defender-autotask-utils
yarn add @openzeppelin/defender-autotask-utils
This library includes typings for 1) the event payload injected by Defender when invoking an Autotask, and 2) the result expected by Defender from an Autotask when used as a Sentinel condition.
AutotaskEvent
Event data injected by Defender when invoking an Autotask. Includes credentials for communicating with whitelisted internal services, as well as the main request
object of type AutotaskRequestData
. This data contains a main payload that varies depending on the Autotask trigger:
SentinelConditionRequest
when invoked as a Sentinel condition.SentinelTriggerEvent
when invoked as Sentinel notificationExample usage for a Sentinel trigger event:
import {
AutotaskEvent,
SentinelTriggerEvent,
SubscriberType,
BlockTriggerEvent,
FortaTriggerEvent,
isTxAlert,
isBlockAlert,
} from '@openzeppelin/defender-autotask-utils';
export async function handler(event: AutotaskEvent) {
const payload = event.request.body as SentinelTriggerEvent;
// You can either check the payload type to destructure the correct properties
if (payload.type == SubscriberType.BLOCK) {
const { transaction, matchReasons } = payload;
} else if (payload.type == SubscriberType.FORTA) {
const { alert, matchReasons } = payload;
}
// Or if you know what type of sentinel you'll be using
// Contract Sentinel
const contractPayload = event.request.body as BlockTriggerEvent;
const { transaction, matchReasons } = contractPayload;
// Forta Sentinel
const fortaPayload = event.request.body as FortaTriggerEvent;
const { alert, matchReasons } = fortaPayload;
// For forta Alerts you can check whether the alert is related to a transaction or a block
if (isTxAlert(alert)) {
// Do something here
} else if (isBlockAlert(alert)) {
// Do something here
}
// Rest of logic...
}
SentinelConditionResponse
When invoked as a Sentinel condition, the Autotask is expected to return the list of matches, refined from the set of potential transactions initially matched by the Sentinel.
import {
AutotaskEvent,
SentinelConditionRequest,
SentinelConditionResponse,
SentinelConditionMatch,
SubscriberType,
isTxAlert,
isBlockAlert,
} from '@openzeppelin/defender-autotask-utils';
export async function handler(event: AutotaskEvent): Promise<SentinelConditionResponse> {
const { events } = event.request.body as SentinelConditionRequest;
const matches: SentinelConditionMatch[] = [];
for (const match of events) {
if (match.type == SubscriberType.BLOCK) {
// Custom logic to decide whether this tx should be matched by the Sentinel
if (!shouldMatch(match.transaction)) continue;
} else if (match.type == SubscriberType.FORTA) {
// For forta alerts you can check whether the alert is related to a transaction or a block
if (isTxAlert(match.alert)) {
// Do something here
} else if (isBlockAlert(match.alert)) {
// Do something here
}
if (!shouldMatch(match.alert)) continue;
}
// Metadata can be any JSON-marshalable object (or undefined)
matches.push({ hash: match.hash, metadata: { id: 'myCustomId' } });
}
return { matches };
}
FAQs
Utils library for writing Defender Autotasks
We found that @openzeppelin/defender-autotask-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.