Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@cita/web3-plugin
Advanced tools
Promise based [CITA RPC](https://cryptape.github.io/cita/usage-guide/rpc/) toolkit.
Promise based CITA RPC toolkit.
$ yarn add @cita/web3-plugin
import web3Plugin from '@cita/web3-plugin'
const SERVER = 'localhost:1337'
const { CITA } = web3Plugin({ server: SERVER })
/**
* @function netPeerCount
* @description request net peer count
* @param null
* @returns {string} peerCount
*/
CITA.netPeerCount().then(count => console.log(count))
/**
* @function getBlockByNumber
* @description request block by block number
* @param {string} quantity - quantity is the current block height of CITA
* @param {boolean} detialed - return transaction list if true, otherwise return hash of transaction
* @returns {object} block
*/
CITA.getBlockByNumber({
quantity: blockNumber
detailed: true,
}).then(block => console.log(block))
/**
* @function getBlockByHash
* @description request block by block hash
* @param {string} hash - block hash
* @param {boolean} detailed - return transaction list if true, otherwise return hash of transaction
* @returns {object} block
*/
CITA.getBlockByHash({
hash: blockHash,
detailed: true
}).then(block => console.log(block))
/**
* @function getBlockHistory
* @description Retrieve blocks of height from (by - count + 1) to by
* @param {by: string, count: number} - by: the startpoint of history, count: the count of records to retrieve
* @return {array} list of block
*/
const blocks = await CITA.getBlockHistory({
by: '0x4bb99',
count: 5,
}).then(blocks => console.log(blocks))
/**
* @function setServer
* @description set server
* @param {string} server
* @return undefined
*/
CITA.setServer('http://localhost:1301')
FAQs
Promise based [CITA RPC](https://cryptape.github.io/cita/usage-guide/rpc/) toolkit.
We found that @cita/web3-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.