
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@laborx/actions-tracking-contracts
Advanced tools
Provides smart contract to track user actions and register them with certain payload.
ActionsTracker smart contractInstall package using npm or yarn package managers:
yarn add `@laborx/actions-tracking-contracts`
or
npm install `@laborx/actions-tracking-contracts`
Import smart contract as you usually do with external libraries
import "@laborx/actions-tracking-contracts/contracts/ActionsTracker.sol";
contract ExtendedTracker is ActionsTracker {
// ...
}
There are two main areas for support functionality:
Deployment of a contract could be run with truffle framework by providing deployment context from @truffle-types/deployment-context package.
const deployerAccount = "0x...";
const deploymentContext = new ContractDeploymentContext(
web3,
artifacts,
undefined,
"path to deployed-addresses.json file"
);
await ActionsTrackerDeployment.deployActionsTracker(
deploymentContext,
deployerAccount,
{ eventsHistory: "EventsHistoryContractKey" },
{ actionsTracker: "ActionsTrackerContractKey" },
{ redeploy: false, owners: [] }
);
Provides the next constants:
ActionsTrackerRevertReasons)errorsLibrary)ContractNames)FAQs
Provides contracts for action tracking for bug hunters
We found that @laborx/actions-tracking-contracts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.