
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@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
The npm package @laborx/actions-tracking-contracts receives a total of 0 weekly downloads. As such, @laborx/actions-tracking-contracts popularity was classified as not popular.
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.

Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.

Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.

Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.