
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@ethereum-waffle/ens
Advanced tools

A simple ENS for testing.
In the current version of waffle (v2.x.x) you will install this package as a dependency of the main waffle package - ethereum-waffle.
yarn add --dev ethereum-waffle
npm install --save-dev ethereum-waffle
If you want to use this package directly, please install it via:
yarn add --dev @ethereum-waffle/ens
npm install --save-dev @ethereum-waffle/ens
NOTE: You do not need to use this package directly. You can install it through the main package (ethereum-waffle) and use it instead.
The ENS class allows to create ENS domains for testing.
It will deploy ENS smart contracts system to your test node.
To create ENS, you should submit your wallet, available in MockProvider class in package @ethereum-waffle/provider.
You can read more about ENS in the ENS's documentation.
Creating ENS:
import {MockProvider} from '@ethereum-waffle/provider';
import {deployENS, ENS} from '@ethereum-waffle/ens';
const provider = new MockProvider();
const [wallet] = provider.getWallets();
const ens: ENS = await deployENS(wallet);
Use createTopLevelDomain function to create a top level domain:
await ens.createTopLevelDomain('test');
Use createSubDomain function for creating a sub domain:
await ens.createSubDomain('ethworks.test');
Also, it's possible to create a sub domain recursively, if the top domain doesn't exist, by specifying the appropriate option:
await ens.createSubDomain('ethworks.tld', {recursive: true});
Use setAddress function for setting address for the domain:
await ens.setAddress('vlad.ethworks.test', '0x001...03');
Also, it's possible to set an address for the domain recursively, if the domain doesn't exist, by specifying the appropriate option:
await ens.setAddress('vlad.ethworks.tld', '0x001...03', {recursive: true});
Use setAddressWithReverse function for setting address for the domain and make this domain reverse. Add recursive option if the domain doesn't exist:
await ens.setAddressWithReverse('vlad.ethworks.tld', wallet, {recursive: true});
FAQs
A mock ens implementation for testing.
The npm package @ethereum-waffle/ens receives a total of 31,661 weekly downloads. As such, @ethereum-waffle/ens popularity was classified as popular.
We found that @ethereum-waffle/ens 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.