
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@alembic/nft-api-sdk
Advanced tools
This is a TypeScript SDK for interacting with the NFT API. It simplifies the process of making requests to the API by providing convenient methods for various operations related to NFTs (Non-Fungible Tokens). These operations include managing and searching for assets, handling collections, and analyzing NFT data.
To add the @alembic/nft-api-sdk to your project, you can use npm or yarn:
npm install @alembic/nft-api-sdk
yarn add @alembic/nft-api-sdk
After installation, you can import NftApi
from the SDK in your TypeScript code:
import { NftApi } from '@alembic/nft-api-sdk';
Create an instance of NftApi
and call its methods to interact with the NFT API.
const nftApi = new NftApi();
// Getting all collections
const collections = await nftApi.collection.getCollections();
console.log(collections);
// Search for assets using the `searchAssets` method of the `AssetService`
const filters = { /* your search criteria */ };
const assets = await nftApi.asset.searchAssets(filters);
console.log(assets);
// Get specific collection info
const collectionInfo = await nftApi.collection.getCollection('your_contract_address');
console.log(collectionInfo);
FAQs
SDK to use alembic NFT API
We found that @alembic/nft-api-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.