Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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 43,456 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.