πͺBunzz CLI
CLI to work with smart contract, which has been handled via Bunzz Decipher
Overview
The Bunzz Command Line Interface (CLI) tool provides a streamlined method for developers to interact with the Bunzz platform. This guide outlines how to install and use the Bunzz CLI.
The Bunzz CLI is compatible with node versions 16 and higher
Installation
Prerequisites: You will need to have Node.js and npm or yarn installed on your system. If you do not have these, you can download and install them from Node.js and Yarn. With npm:
npm install -g bunzzWith yarn:
yarn global add bunzzWith pnpm:
pnpm install -g bunzzUsage
The Bunzz CLI provides several commands that enable you to clone, build, and deploy projects. Here is a summary of these commands:
bunzz -h: Show help information and version details.
bunzz clone [directory] [options]: Clone a contract documented by DeCipher. The options you can use with this command include:
-e, --env <env>: Environment to clone from [prod, local] (default: "prod").
bunzz build: Compile all smart contracts in the current directory.
bunzz deploy [options]: Send the ABI and bytecode of a contract to the DeCipher frontend for deployment. The options you can use with this command include:
-p, --path <path>: Path to the contract to deploy (default: ".")-c, --contract <contract>: Name of the contract to deploy. (default will be taken frombunzz.config.js)-e, --env <env>: Environment to deploy to [prod, local] (default: "prod").
To learn more about a specific command and its options, you can type bunzz help [command].
Example usage
Here are some examples of how to use the Bunzz CLI:
To get help on the clone command:
To clone, build, and deploy a contract:
Last updated