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.
@cennznet/api
Advanced tools
The CENNZnet JavaScript API for browsers, RN, and Node.js.
yarn add @cennznet/api
Connect to a node websocket (local):
const api = await Api.create(); // defaults to 'ws://localhost:9944'
Connect to a custom endpoint e.g Nikau 🌴 testnet
// initialize Api and connect to dev network
const {Api} = require('@cennznet/api')
api = await Api.create({
provider: 'wss://nikau.centrality.me/public/ws'
});
// For Rxjs
const {ApiRx} = require('@cennznet/api')
api = await ApiRx.create({
provider: 'wss://nikau.centrality.me/public/ws'
}).toPromise();
All api.tx.<section>.<method>(...)
return CennznetExtrinsic type.
To set fee exchange options on a transaction, it should be included as an additional argument when signing e.g
const tx = api.tx.genericAsset.transfer(16000, 'some address', 1000000);
tx.signAndSend('sender address', {feeExchangeOpt}, callbackFn);
After connecting to a CENNZnet node, api will dynamically create queries and transaction methods.
api.rpc.<section>.<method>
provides access to actual RPC calls, be it for queries, submission or retrieving chain informationapi.query.<section>.<method>
provides access to chain state queries. These are dynamically populated based on what the runtime providesapi.derive.<section>.<method>
provides access to built-in complex state queries which are combination of several basic state queries.api.tx.<section>.<method>
provides the ability to create a transaction, like chain state, this list is populated from a runtime queryAdd the following configuration to make TS aware of our custom types
{
"compilerOptions": {
"paths": {
"@polkadot/types": [
"./node_modules/@cennznet/types/interfaces/augment-api.d.ts"
],
"@polkadot/types/augment": [
"./node_modules/@cennznet/types/interfaces/augment-types.d.ts"
]
}
}
}
See the wiki for more or try the api examples. Please check upgrade guide for 2.1.x versions, connects to node cennznet/cennznet:2.1.0
FAQs
CENNZnet's javascript api
The npm package @cennznet/api receives a total of 15 weekly downloads. As such, @cennznet/api popularity was classified as not popular.
We found that @cennznet/api 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.
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.