Posts

Showing posts with the label installganachelinux

Using Ganache CLI with Brownie to Deploy A Smart Contract

Image
In this article, after installing Brownie , we are going to install the Ganache CLI (Command Line Interface) and use it with Brownie. The Ganache CLI is the same as Ganache IDE with the difference that it automatically runs without the need to open the Ganache IDE. At the end end of this tutorial, we will be able to deploy our smart contracts on top of Ganache CLI simulated blockchain. Installing Ganache: To continue our journey with Brownie, we need to make sure Ganache CLI has been installed successfully. To make sure that it has, and also see its virtual accounts, in your console (terminal) write: Coppied to clipboard. ganache And it should give you the test accounts like this: ganache v7.0.3 (@ganache/cli: 0.1.4, @ganache/core: 0.1.4) Starting RPC server Available Accounts ================== (0) 0x960F41C52ffAef71fFef2fFBC3C0EA5Dc5748086 (1000 ETH) (1) 0x39Cf64532C1126c6C9Fa0a02338389d1eb861A12 (1000 ETH) (2) 0xA1E47c46425e2456566...