Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@icnaming/client
Advanced tools
[![CI & CD](https://github.com/IC-Naming/js-sdk/actions/workflows/pipeline.yml/badge.svg)][1]
Using npm:
npm install @dfinity/{agent,candid,principal} # dfinity dependencies
npm install @icnaming/client
Using yarn:
yarn add @dfinity/{agent,candid,principal} # dfinity dependencies
yarn add @icnaming/client
import { Principal } from '@dfinity/principal';
import { IcNamingClient } from '@icnaming/client';
const client = new IcNamingClient({
suffix: 'IC', // IC | ICP | TICP
mode: 'production' // local | production
});
// get records
client.getRecordsOfName('helloworld.ic').then(records => {
// get ICP address(principal)
const principal = records.find(r => r[0] === 'principal.icp');
console.debug(`helloworld.ic's principal is ${principal}`);
// get ICP address(account id)
const accountId = records.find(r => r[0] === 'account_id.icp');
console.debug(`helloworld.ic's account id is ${accountId}`);
// get twitter
const twitter = records.find(r => r[0] === 'com.twitter');
console.debug(`helloworld.ic's twitter is ${twitter}`);
// get eth address
const ethAdddress = records.find(r => r[0] === 'token.eth');
console.debug(`helloworld.ic's eth adddress is ${ethAdddress}`);
});
// get name's registrant
client.getRegistrantOfName('helloworld.ic').then(registrant => {
console.debug(`helloworld.ic's registrant is ${registrant}`);
});
// get name's expired time
client.getExpiredTimeOfName('helloworld.ic').then(timestamp => {
const expiredTime = new Date(Number(timestamp));
console.debug(`helloworld.ic's expired time is ${expiredTime}`);
});
// get reverse resolve
const thePrincipal = Principal.fromText(
'v2xhg-um7x6-mhni4-sgqsc-qarqs-bgoyy-ngobl-qoe7c-7a4cm-bvn4f-pqe'
);
client.getReverseResolve(thePrincipal).then(name => {
if (name) console.debug(`reverse resolve name is ${name}`);
else console.debug(`reverse resolve name not exist`);
});
Special host and identity:
import { IcNamingClient } from '@icnaming/client';
const client = new IcNamingClient({
net: 'IC',
mode: 'production', // local | production
httpAgent: {
host: 'https://ic0.app', // default by mode
identity: {
identity: {
transformRequest: () => {
/* ... */
},
getPrincipal: () => {
/* ... */
}
}
}
}
});
https://ic-naming.github.io/js-sdk/
Local commands:
yarn dev # rollup library watch mode
yarn type # typescript type check
yarn test # jest unit test
yarn build # rollup build to dist/
yarn release # generate new version
git tag vX.Y.Z HEAD # Create a tag started with "v" to trigger CI/CD pipeline
git push origin main --tags
FAQs
[![CI & CD](https://github.com/IC-Naming/js-sdk/actions/workflows/pipeline.yml/badge.svg)][1]
We found that @icnaming/client demonstrated a not healthy version release cadence and project activity because the last version was released 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.