
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Shieth is a little web3 helper intended on being used as a shim library for handling common interactions with web3 and our web front-end projects.
Install using npm:
npm install --save shieth
# or in dev
npm link shieth
Then import the badboy into your project:
import EthJS from 'shieth';
And then instantiate it in your project
const eth = new EthJS({
artifacts: [require('../build/contracts/SomeToken.json')],
addresses: {
SomeToken: 'SOME_ADDRESS'
},
onDirty: eth => {
this.setState({
account: eth.accounts.defaultAccount
});
}
});
ethjs will keep your accounts, the state of the network and some other things in order after you call load() on the instance:
eth
.load()
.then(async eth => this.refreshState(eth))
.catch(error => console.log('Error -->', error));
Check out shieth-test for an example implementation!
FAQs
Shishito ethereum utilities
The npm package shieth receives a total of 14 weekly downloads. As such, shieth popularity was classified as not popular.
We found that shieth 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.