- You need to have gas fee on Abstract Testnet
- You can get gas fee either from faucet or by bridging from Sepolia using Official Bridge
- You can use either local terminal (Ubuntu) or Virtual IDE like codespaces
- You can use either this command
[ -f "abstract.sh" ] && rm abstract.sh; curl -sSL -o abstract.sh https://raw.githubusercontent.com/zunxbt/Abstract-Chain/refs/heads/main/abstract.sh && chmod +x abstract.sh && ./abstract.sh
- Or this command to run this script
[ -f "abstract.sh" ] && rm abstract.sh; wget -q -O abstract.sh https://raw.githubusercontent.com/zunxbt/Abstract-Chain/refs/heads/main/abstract.sh && chmod +x abstract.sh && ./abstract.sh
Abstract.Chain.mp4
- During running this script, it will ask something like this
? What do you want to do? …
Create a JavaScript project
▸ Create a TypeScript project
Create a TypeScript project (with Viem)
Create an empty hardhat.config.js
Quit
- Here you must need to choose 2nd option :
Create a TypeScript project
by usingW
A
S
D
key - And then keep pressing
enter
for 3 times
- If you r facing issues like
curl command not found
then use this command to install curl and then run the above installation command that starts with curl
sudo apt update && sudo apt install curl
- If you r facing issues like
wget command not found
then use this command to install wget and then run the above installation command that starts with wget
sudo apt update && sudo apt install wget