Skip to content

0xJonaseb11/krypt_lake.3.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

krypt_lake.3.0

About

Send ETH across the World with the most super friendly application, KRYPT

This shows the great increadibility of hardhat framework.. The project specifies the transparency of the Smart contract developed in this project that allows easy sending of ETH to any one .. You just need to have a Metamask or any other ethereum wallet installed in your browser..

Getting started

Basic Sample Hardhat Project For Sending ETH


This project demonstrates a basic Hardhat use case. It is specifically a Web3.0 project that basically illustrates the use of hardhat framework to test, compile and deploy smart contracts. It basically implements a modern way of sending cryptocurrencies (ETH) across the world. It is connected to a fantastic user Interface that makes it really look insane.

Try running some of the following tasks : :

npx hardhat accounts
npx hardhat compile
npx hardhat clean
npx hardhat test
npx hardhat node
node scripts/sample-script.js
npx hardhat help

To install the dependecies to be used throughout this project, run : :

npm install --save-dev hardhat @nomiclabs/hardhat-waffle ethereum-waffle ethereum-waffle chai @nomiclabs/hardhat-ethereum ethers

Updated dependency list

npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox @nomicfoundation/hardhat-network-helpers @nomicfoundation/hardhat-chai-matchers @nomicfoundation/hardhat-ethers @nomicfoundation/hardhat-verify chai ethers hardhat-gas-reporter solidity-coverage @typechain/hardhat typechain @typechain/ethers-v6

To create a hardhat project, please run : :

npx hardhat init
hardhat
hardhat test

To deploy your smart contract, please run : :

npx hardhat run scripts/deploy.js --network <network_name>

@0xJonaseb11