Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@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
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.