
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@celo/compliance
Advanced tools
A simple package to help you stay compliant with OFAC sanctioned addresses (e.g. front-ends, other applicable products).
This package simplifies the process of staying up-to-date with the latest OFAC sanctioned addresses by providing them in a JSON format via an API (recommended) or direct import (discouraged).
[!IMPORTANT] Please note that there is currently no SLA for how quickly the repository will be updated to reflect the most recent OFAC sanctioned addresses. Updates will be done on a best-effort basis.
You can make an API call to retrieve the latest OFAC sanctions list from
https://celo-org.github.io/compliance/ofac.sanctions.json
For example:
export async function getSanctionedAddresses(): Promise<string[]> {
return await fetch("https://celo-org.github.io/compliance/ofac.sanctions.json")
.then((response) => {
return response.json();
})
.catch((err) => {
console.log(err);
});
}
[!TIP] No changes to your code will be necessary when the list is updated as this API will always return the latest version.
If you really want to, you can explicitly import the SANCTIONED_ADDRESSES list exported in the
@celo/compliance package directly into your code.
[!WARNING] Although, please note that this is not recommended as it will require you to update your dependency every time the list is updated.
import { SANCTIONED_ADDRESSES } from "@celo/compliance";
export function getSanctionedAddresses(): string[] {
return SANCTIONED_ADDRESSES;
}
FAQs
Unknown package
The npm package @celo/compliance receives a total of 125 weekly downloads. As such, @celo/compliance popularity was classified as not popular.
We found that @celo/compliance demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.