Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@hashgraph/hardhat-hethers
Advanced tools
Hardhat plugin for integration with hethers.js.
This plugin brings to Hardhat the Hedera library hethers.js
, which allows you to interact with the Hedera hashgraph in a simple way.
npm install --save-dev '@hashgraph/hardhat-hethers'
And add the following statement to your hardhat.config.js
:
require("@hashgraph/hardhat-hethers");
Or if you're using Typescript
:
import "@hashgraph/hardhat-hethers";
This plugin extends the HardhatConfig
object with hedera
and updates the type of the networks
field.
Here is an example network configuration in hardhat.config.js
:
module.exports = {
defaultNetwork: 'testnet', // The selected default network. It has to match the name of one of the configured networks.
hedera: {
gasLimit: 300000, // Default gas limit. It is added to every contract transaction, but can be overwritten if required.
networks: {
testnet: { // The name of the network, e.g. mainnet, testnet, previewnet, customNetwork
accounts: [ // An array of predefined Externally Owned Accounts
{
"account": '0.0.123',
"privateKey": '0x...'
},
...
]
},
previewnet: {
accounts: [
{
"account": '0.0.123',
"privateKey": '0x...'
},
...
]
},
// Custom networks require additional configuration - for conesensusNodes and mirrorNodeUrl
// The following is an integration example for the local-hedera package
customNetwork: {
consensusNodes: [
{
url: '127.0.0.1:50211',
nodeId: '0.0.3'
}
],
mirrorNodeUrl: 'http://127.0.0.1:5551',
chainId: 0,
accounts: [
{
'account': '0.0.1002',
'privateKey': '0x7f109a9e3b0d8ecfba9cc23a3614433ce0fa7ddcc80f2a8f10b222179a5a80d6'
},
{
'account': '0.0.1003',
'privateKey': '0x6ec1f2e7d126a74a1d2ff9e1c5d90b92378c725e506651ff8bb8616a5c724628'
},
]
},
...
}
}
};
The following networks have their respective settings pre-defined. You will only need to specify the accounts when using testnet
, mainnet
, previewnet
or local
. For any other networks the full configuration needs to be provided, as in the customNetwork
example above.
Read more about Externally Owned Accounts here.
This plugin creates no additional tasks.
This plugin adds a hethers
object to the Hardhat Runtime Environment.
This object has the same API as hethers.js
, with some extra Hardhat-specific functionality.
A provider
field is added to hethers
, which is an hethers.providers.BaseProvider
automatically connected to the selected network.
These helpers are added to the hethers
object:
interface Libraries {
[libraryName: string]: string;
}
interface FactoryOptions {
signer?: hethers.Signer;
libraries?: Libraries;
}
interface HederaAccount {
account?: string;
address?: string;
alias?: string;
privateKey: string;
}
interface HederaNodeConfig {
url: string;
nodeId: string;
}
interface HederaNetwork {
accounts: Array<HederaAccount>;
nodeId?: string;
consensusNodes?: Array<HederaNodeConfig>;
mirrorNodeUrl?: string;
chainId?: number;
}
interface HederaNetworks {
[name: string]: HederaNetwork
}
interface HederaConfig {
gasLimit: number;
networks: HederaNetworks;
}
function getSigners() => Promise<hethers.Signer[]>;
const signers = await hre.hethers.getSingers();
function getSigner(identifier: any) => Promise<hethers.Signer>;
const signer = await hre.hethers.getSigner({
"account": "0.0.123",
"privateKey": "0x..."
});
function getContractFactory(name: string, signer?: hethers.Signer): Promise<hethers.ContractFactory>;
const contractFactoryWithDefaultSigner = await hre.hethers.getContractFactory('Greeter');
const signer = (await hre.getSigners())[1];
const contractFactoryWithCustomSigner = await hre.hethers.getContractFactory('Greeter', signer);
function getContractFactory(name: string, factoryOptions: FactoryOptions): Promise<hethers.ContractFactory>;
const libraryFactory = await hre.hethers.getContractFactory("contracts/TestContractLib.sol:TestLibrary");
const library = await libraryFactory.deploy();
const contract = await hre.hethers.getContractFactory("Greeter", {
libraries: {
"contracts/Greeter.sol:TestLibrary": library.address
}
});
function getContractFactory(abi: any[], bytecode: hethers.utils.BytesLike, signer?: hethers.Signer): Promise<hethers.ContractFactory>;
const greeterArtifact = await hre.artifacts.readArtifact("Greeter");
const contract = await hre.hethers.getContractFactory(greeterArtifact.abi, greeterArtifact.bytecode);
function getContractAt(name: string, address: string, signer?: hethers.Signer): Promise<hethers.Contract>;
const Greeter = await hre.hethers.getContractFactory("Greeter");
const deployedGreeter = await Greeter.deploy();
const contract = await hre.hethers.getContractAt("Greeter", deployedGreeter.address);
function getContractAt(abi: any[], address: string, signer?: hethers.Signer): Promise<hethers.Contract>;
const greeterArtifact = await hre.artifacts.readArtifact("Greeter");
const contract = await hre.hethers.getContractAt(greeterArtifact.abi, deployedGreeter.address);
function getContractFactoryFromArtifact(artifact: Artifact, signer?: hethers.Signer): Promise<ethers.ContractFactory>;
const greeterArtifact = await hre.artifacts.readArtifact("Greeter");
const contractFactoryFromArtifact = await hre.hethers.getContractFactoryFromArtifact(greeterArtifact);
function getContractFactoryFromArtifact(artifact: Artifact, factoryOptions: FactoryOptions): Promise<hethers.ContractFactory>;
const greeterArtifact = await hre.artifacts.readArtifact("Greeter");
const libraryFactory = await hre.hethers.getContractFactory(
"contracts/TestContractLib.sol:TestLibrary"
);
const library = await libraryFactory.deploy();
const contract = await hre.hethers.getContractFactory(greeterArtifact, {
libraries: {
"contracts/TestContractLib.sol:TestLibrary": library.address
}
});
function getContractAtFromArtifact(artifact: Artifact, address: string, signer?: hethers.Signer): Promise<hethers.Contract>;
const Greeter = await hre.hethers.getContractFactory("Greeter");
const deployedGreeter = await Greeter.deploy();
const greeterArtifact = await hre.artifacts.readArtifact("Greeter");
const contract = await hre.getContractAtFromArtifact(greeterArtifact, deployedGreeter.address);
The Contract's
and ContractFactory's
returned by these helpers are connected to the first signer returned by getSigners
by default.
There are no additional steps you need to take for this plugin to work.
Install it and access hethers through the Hardhat Runtime Environment anywhere you need it (tasks, scripts, tests, etc). For example, in your hardhat.config.js
:
require("@hashgraph/hardhat-hethers");
// task action function receives the Hardhat Runtime Environment as second argument
task('getBalance', 'Prints the the balance of "0.0.29631749"', async (_, {hethers}) => {
const balance = (await hethers.provider.getBalance('0.0.29631749')).toString();
console.log(`Balance of "0.0.29631749": ${balance} tinybars`);
});
module.exports = {};
And then run npx hardhat getBalance
to try it.
Read the documentation on the Hardhat Runtime Environment to learn how to access the HRE in different ways to use hethers.js from anywhere the HRE is accessible.
Some contracts need to be linked with libraries before they are deployed. You can pass the addresses of their libraries to the getContractFactory
function with an object like this:
const contractFactory = await this.env.hethers.getContractFactory("Example", {
libraries: {
ExampleLib: "0x...",
},
});
This allows you to create a contract factory for the Example
contract and link its ExampleLib
library references to the address "0x..."
.
To create a contract factory, all libraries must be linked. An error will be thrown informing you of any missing library.
Hethers.js polls the network to check if some event was emitted (except when a WebSocketProvider
is used; see below). This polling is done every 4 seconds. If you have a script or test that is not emitting an event, it's likely that the execution is finishing before the event is detected by the polling mechanism.
If you are connecting to a Hardhat node using a WebSocketProvider
, events should be emitted immediately. But keep in mind that you'll have to create this provider manually, since Hardhat only supports configuring networks via http. That is, you can't add a localhost
network with a URL like ws://localhost:8545
.
Contributions are welcome. Please see the contributing guide to see how you can get involved.
This project is governed by the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to oss@hedera.com.
FAQs
Hardhat plugin for hethers
The npm package @hashgraph/hardhat-hethers receives a total of 25 weekly downloads. As such, @hashgraph/hardhat-hethers popularity was classified as not popular.
We found that @hashgraph/hardhat-hethers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.