Skip to main content

What is GANACHE and How to install?


Ganache is a personal blockchain for rapid Ethereum distributed application development. You can use Ganache across the entire development cycle; enabling you to develop, deploy, and test your dApps in a safe and deterministic environment.
Ganache comes in two favours: a UI and CLI. Ganache UI is a desktop application supporting Ethereum technology.

Features:

  • Fast and efficient for testing 
  • offers Ethereum Json RPC
  • Mine block instantly and fast forward time
  • Easy to use. It has UI desktop application which helps us to understand what is happening in broader view.

Installation on Windows:

Step 1: Go to this page: https://trufflesuite.com/ganache/ and click the download.



Step 2: Once downloaded, Open that file and click install. It will install the ganache CLI and UI desktop application on the windows.

Step 3: After the installation, Ganache application is now available. 
  • If you have problem after the installation, Go to settings -- Installed Apps -- Ganache and Scroll down and click Repair. 
  • Still facing some issues then you can reinstall it again using the appx file you downloaded before.
  • Still the same issue then Go to this page https://github.com/trufflesuite/ganache-ui/releases and scroll down a little lower and try install the Ganache-2.7.1-win-x64-setup.exe file and install it.
Open the Ganache App, Now you have two Options Quick start and Create Workspace.
Quick start: temporarily create the data and once you stop or close the ganache application, the data you modified in the network will lost.
Workspace: It will create new network in local and data won't loss [Permanent usage].


Next Topic: Ganache Overview

Comments

Popular posts from this blog

Ethereum Overview

Origin of Ethereum:  At Some point Blockchain technology became very popular. One Blockchain per Application. It's very difficult to create our own blockchain for every new applications. Ethereum concept came here, it's aim to create a single blockchain for that will allow to create any kind of new applications on top of it.   History of Ethereum: 2013 - Ethereum whitepaper by Vitalik buterin   2014 - Ethereum Development 2015 - Olympic Release Eth network was created 2020 - Boom in DeFi Activities 2022 - The Merge Upgrade of Execution layer Overview: Ethereum Projects: AUGUR - Prediction Market OPENSEA - digital collectibles UNISWAP - Assets Exchange COMPOUND - Leading platform Decentralized Application : Ethereum allows us to build new applications called Decentralized Applications . Just as regular applications, they run on multiple machines. But what differs them is that these machines are not owned by single group or organization. They are owned by different people in diff

Why Go Language?

Go Language: Open Source Programming language Statically Typed language Makes sharing code easy Similar to C programming language Organization that use Go includes Google, Docker, Kubernetes, Cloudflare, Dropbox, Netflix & Uber. Why Go language? C like Syntax Compiles to native code i.e. one executable file is need to run the whole program. Garbage collection Concurrency built-in language Compatibility promise → Once a program written to the go one specification will continue to compile and run correctly, over the lifetime of that specification. Why Go Compiler is fast? Simple and Minimalistic (20 keywords only) Does not allows unused dependencies No circular dependencies Does not use header files Solving Modern problems with Go: Go has concise syntax with few keywords to remember. Languages like C or C++ offers fast execution, whereas languages like Ruby or Python offers rapid application development, Go bridges these computing worlds and offers development fast. Modern Computers

Crypto ED25519 Signing and Verifying using Golang

The Edwards-curve Digital Signature Algorithm (ECDSA) is used to create a digital signature using an enhancement of the Schnorr signature with Twisted Edwards curves. Overall it is faster that many other digital signature methods, and is strong for security. One example of ECDSA is Ed25519, and which is based on Curve 25519. It generates a 64-byte signature value of (R,s), and has 32-byte values for the public and the private keys. Example : package main import ( "crypto/ed25519" "crypto/rand" "encoding/hex" "fmt" "log" ) func main() { publickey, privatekey, err := ed25519.GenerateKey(rand.Reader) if err != nil { fmt.Println("cannot generate ecdsa keys") log.Fatal(err) } msg := "hello" signedBytes := ed25519.Sign(privatekey, []byte(msg)) fmt.Println("Signed Message :", hex.EncodeToString(signedBytes)) if !ed25519.Verify(publickey, []byte(msg), signedBytes) { fmt.Println("ver