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

create-fhenix-dapp

v0.3.0

Published

Create Fhenix DApp

Downloads

20

Readme

Create Fhenix DApp

🧪 An open-source, up-to-date toolkit for building decentralized applications (dapps) on the Fhenix blockchain. It's designed to make it easier for developers to create and deploy smart contracts and build user interfaces that interact with those contracts.

⚙️ Built using Scaffold ETH, Next.js, RainbowKit, Hardhat, Wagmi, Viem, Ethers.js, Fhenixjs, and Typescript.

  • Contract Hot Reload: Your frontend auto-adapts to your smart contract as you edit it.
  • 🪝 Custom hooks: Collection of React hooks wrapper around wagmi to simplify interactions with smart contracts with typescript autocompletion.
  • 🧱 Components: Collection of common web3 components to quickly build your frontend.
  • 🔥 Burner Wallet & Local Faucet: Quickly test your application with a burner wallet and local faucet.
  • 🔐 Integration with Wallet Providers: Connect to different wallet providers and interact with the Ethereum/Fhenix network.
  • Fhenix tools: fhenix-hardhat-docker, fhenix-hardhat-plugin and fhenixjs for a quick start with Fhenix.

Frontpage

Requirements

Before you begin, you need to install the following tools:

Quickstart

To get started with Create Fhenix DApp, follow the steps below:

  1. Install and run it:
pnpm create fhenix-dapp@latest
  1. Run a local network:
pnpm chain:start

This command starts a local Fhenix node using Hardhat and Docker for testing and development. You can customize the network configuration in packages/backend/hardhat.config.ts.

  1. Deploy a demo contract to the local network:
pnpm deploy:contracts

Note: The default deployer contract will be automatically funded to be able to deploy to the local node.

The contract can be modified here: packages/backend/contracts The contract deployment script can be customized here: packages/backend/deploy

  1. (optional) Run smart contract tests to make sure it's been deployed successfully:
pnpm test
  1. Then start your Next.js app:
pnpm start

Visit your app on: http://localhost:3000. You can interact with your smart contract using the Debug Contracts page of the Counter demo on the frontpage. You can tweak the app config in packages/frontend/scaffold.config.ts.

  1. (optional) When you finish your work, stop the local Fhenix node to release resources:
pnpm chain:stop

Development entry points

  • Tweak the app config in packages/frontend/scaffold.config.ts.
  • Edit the demo smart contract: packages/backend/contracts/Counter.sol
  • Edit your frontend in packages/frontend/app
  • Edit your deployment scripts: packages/backend/deploy

Documentation

  • Fhenix Website
  • Fhenix Documentation
  • Scaffold ETH Documentation

Extend/develop this project

Check out Wiki

Credits

Many thanks to Scaffold ETH developers for providing a solid foundation for this project.