npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@artherachain/hardhat-fakenet

v0.0.5

Published

Hardhat plugin for managing an Arthera fakenet node

Downloads

18

Readme

@artherachain/hardhat-fakenet

Hardhat plugin to run hardhat against an Arthera fakenet node

npm install --save-dev @artherachain/hardhat-fakenet

Edit your hardhat.config.js file and add the artheraNode config and a network for Arthera:

artheraNode: {
    executable: '<PATH_TO_ARTHERA_NODE_BINARY>',
    port: 18545,
},
networks: {
    arthera: {
        url: 'http://127.0.0.1:18545', 
        accounts: [
            "0x163f5f0f9a621d72fedd85ffca3d08d131ab4e812181e0d30ffd1c885d20aac7",
            "0x4203c438d4e94bf4a595794b5f5c2882f959face730abb7a7b8acb462c8e138d",
            "0x36c62e8094847f3e7aadc5c940cdbb8943d333a59b2774b889fd4a5ef629b51a",
            "0x9187fdd9c00ab8e6c9e33480a51e86b7aa46cdb3255aaaf18b8ad3e281a17333",
            "0xa466a5e9cc896f41b7b0b890ba630018de426e9ae63da62cdbd2379274a617e1",
            "0x5f67cc02a811744ab738ff5e292d966a3c86fc448f680f1020fda2cd4efed431",
            "0x594a4d9c0fa4aca3fd0d48045e28c7dc5e421a67a5f79df58379498f2442fd0e",
            "0x6daff5042939e44e6928f3e80443b221f7ccbed1263d15613003b8b7a1199778",
            "0xa86000de9b6819977be7395e4b1d0d84dd5f321ac0164d4c9c4e478e934c1489",
            "0xbaa7872d34f851f1ab7c37161cbadb9ef670ca088d126e1ff2ba7cb135ddf7a6",
            "0x967aeec6c484f91a1721bb8662da81c85e6891a70528a7134668e89e89796cd0"
        ]
    }
}

Replace <PATH_TO_ARTHERA_NODE_BINARY> with the path to your Arthera node binary.

The accounts section contains private keys for 11 accounts as follows:

  • accounts[0] is a validator account that owns system contracts, has a balance of 1,000,000,000 AA and a stake delegation to himself of 5,000,000 AA
  • accounts[1-10] are normal accounts with a balance of 1,000,000,000 AA

Run Hardhat with the Arthera network:

npx hardhat --network arthera ...