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-blast-dapp

v0.2.1

Published

<p align="center"> <img align="center" src="https://assets-global.website-files.com/65a6baa1a3f8ed336f415cb4/65a6ceece21ac0bdde447011_Blast%20Logo%20Black.svg" width="175"></img> </p>

Downloads

341

Readme

A full-stack starter template featuring Next & Hardhat with a built-in Blast AI Chatbot, designed for building Dapps, as well as developing, deploying, testing, and verifying Solidity smart contracts on the Blast L2 chain. This starter kit includes pre-installed packages such as create-next-app, hardhat full code, tailwindcss, web3.js, and more.

📺 Quickstart

🛠️ Installation guide

⌛️ create-blast-dapp command

Open up your terminal (or command prompt) and type the following command:

npx create-blast-dapp <your-dapp-name>

# cd into the directory
cd <your-dapp-name>

📜 Smart Contracts

All smart contracts are located inside the Hardhat folder, which can be found in the root directory. To get started, first install the necessary dependencies by running:

# cd into the hardhat directory
cd hardhat

npm install

🔑 Private key

Ensure you create a .env file in the hardhat directory. Then paste your Metamask private key in .env with the variable name PRIVATE_KEY as follows:

PRIVATE_KEY=0x734...

⚙️ Compile

Now, you can write your contracts in ./contracts/ directory, replace Greeter.sol with <your-contracts>.sol file. To write tests, go to ./test directory and create <your-contracts>.js.

# for compiling the smart contracts
npx hardhat compile

# for testing the smart contracts
npx hardhat test

After successful compilation, the artifacts directory will be created in ./artifacts with a JSON /contracts/<your-contracts>.sol/<your-contracts>.json containing ABI and Bytecode of your compiled smart contracts.

⛓️ Deploy

Before deploying the smart contracts, ensure that you have added the Blast Sepolia Testnet to your MetaMask wallet and that it has sufficient funds. If you do not have testnet $ETH on Blast Sepolia, please follow this faucets guide.

Also, make changes in ./scripts/deploy.js (replace the greeter contract name with <your-contract-name>).

For deploying the smart contracts to blast sepolia testnet network, type the following command:

npx hardhat run scripts/deploy.js

Copy-paste the deployed contract address here.

<your-contract> deployed to: 0x...

✅ Verify

To verify the deployed smart contract on Blast Sepolia, execute the following command:

# for verifying the smart contracts
npx hardhat verify <deployed-contract-address>

💻 Next.js client

Start the Next.js app by running the following command in the root directory:

npm run dev
# Starting the development server...

⚖️ License

create-blast-dapp is licensed under the MIT License.