Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@xact-wallet-sdk/nft
Advanced tools
@xact-wallet-sdk/nft
Create a NFT with Hedera and FileCoin
npm i @xact-wallet-sdk/nft
Please create your account on Hedera Portal.
Please create your account on NFT Storage.
/* Create a new instance of Client */
const hederaAccount = {
accountId: 'YOUR_ACCOUNTID',
privateKey: 'YOUR_PRIVATEKEY',
environment: HederaEnviroment.TESTNET, /* Default to MAINNET */
};
/* Construct an instance of Client */
const client = new ClientNFT({hederaAccount, nftStorageApiKey: 'YOUR_TOKEN', debugLevel:DebugLevel.DEBUG /* Default to OFF */});
/* Get NFT's creation Fees */
const fees = await client.getFees();
/* Create NFT */
const name = 'NFT Test';
const description = 'Description of my NFT';
const category = CategoryNFT.ART;
const creator = 'Johny.B';
const media = ''; /* File or Base64 format */
const supply = 1; /* Nb of NFT available */
const customRoyaltyFee = {
numerator: 1,
denominator: 10,
fallbackFee: 100,
}
await client.create({name, description, category, creator, media, supply, customRoyaltyFee});
FAQs
A SDK for NFT creation with Hedera and FileCoin
The npm package @xact-wallet-sdk/nft receives a total of 1 weekly downloads. As such, @xact-wallet-sdk/nft popularity was classified as not popular.
We found that @xact-wallet-sdk/nft demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.