
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@krakenfx/verify
Advanced tools
Solidity contracts for Kraken Verify - EAS attestation utilities for verified Kraken users.
# Using npm
npm install @krakenfx/verify
# Using yarn
yarn add @krakenfx/verify
# Using pnpm
pnpm add @krakenfx/verify
Generate remappings for Foundry:
forge remappings > remappings.txt
You might need to add this extra one manually if you're using pnpm:
@ethereum-attestation-service/=node_modules/.pnpm/@ethereum-attestation-service+eas-contracts@1.8.0/node_modules/@ethereum-attestation-service
Update your IDE to support remappings. For VS Code:
// .vscode/settings.json
{
"solidity.remappings": [
"...=node_modules/...",
]
}
If you're using TypeScript in your project, make sure to configure it to handle JSON imports:
// tsconfig.json
{
"compilerOptions": {
// ...other options
"resolveJsonModule": true,
"esModuleInterop": true
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
// Import directly from package
import { KrakenVerifyAccessControl } from "@krakenfx/verify/src/abstracts/KrakenVerifyAccessControl.sol";
contract MyContract is KrakenVerifyAccessControl {
// Only users with valid Kraken Verify attestations can call this function
function verifiedUserFunction() external onlyVerified {
// Your implementation
}
}
// ES Modules / TypeScript
import { VerifyClient } from "@krakenfx/verify";
const verifyClient = new VerifyClient();
// Check if an address is verified
const isVerified = await verifyClient.isAddressVerified(
"0x2193981f2d65149644C039c9071f2bE8b5938F0B"
);
console.log(
`Verification result: ${isVerified ? "✅ Verified" : "❌ Not verified"}`
);
// CommonJS
const { VerifyClient } = require("@krakenfx/verify");
const verifyClient = new VerifyClient();
// Check if an address is verified
async function checkVerification() {
const isVerified = await verifyClient.isAddressVerified(
"0x2193981f2d65149644C039c9071f2bE8b5938F0B"
);
console.log(
`Verification result: ${isVerified ? "✅ Verified" : "❌ Not verified"}`
);
}
checkVerification();
This package provides access control for verified Kraken users through EAS attestations:
KrakenVerifyAccessControl.sol: Abstract contract with the onlyVerified modifierMIT
FAQs
Kraken Verify access control contracts for EAS attestations
We found that @krakenfx/verify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.