Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@arianee/core
Advanced tools
The Core class is a TypeScript class that provides an interface for signing messages and transactions on the Ethereum blockchain. It uses the [ethers library](https://ethers.org/), which is a popular library for interacting with Ethereum.
The Core class is a TypeScript class that provides an interface for signing messages and transactions on the Ethereum blockchain. It uses the ethers library, which is a popular library for interacting with Ethereum.
You can instantiate core with :
Example :
import { Core } from '@arianee/core';
Core.fromMnemonic(mnemonic);
Core.fromPassPhrase(passphrase);
Core.fromPrivateKey(privateKey);
Core.fromRandom();
The returned instance will have 4 methods (see TransactionLike):
signMessage(message:string)
signTransaction(transaction: TransactionLike))
sendTransaction(transaction: TransactionRequest) : Promise<TransactionResponse | { skipResponse: true }>
getAddress():string
Note: If you are using sendTransaction
in an asynchronous context (e.g. adding the transaction to a queue instead of sending it directly), you must return { skipResponse: true }
instead of a TransactionResponse
so that the @arianee/*
packages won't try to fetch the transaction receipt.
If you need to implement core with an external wallet (like metamask), you need to instantiate the class with 3 functions:
import { Core } from '@arianee/core';
const core = new Core(signMessage, signTransaction, getAddress);
FAQs
The Core class is a TypeScript class that provides an interface for signing messages and transactions on the Ethereum blockchain. It uses the [ethers library](https://ethers.org/), which is a popular library for interacting with Ethereum.
The npm package @arianee/core receives a total of 51 weekly downloads. As such, @arianee/core popularity was classified as not popular.
We found that @arianee/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.