Quickstart
In this guide we’re going to learn how to go from zero to a running Cshell instance with the least amount of effort.
-
Installation
You can use Homebrew to install the latest version of Cshell in Mac (both x86 / ARM64)
Terminal window brew install txpipe/tap/cshellYou can install Cshell on linux system using the following command:
Terminal window curl --proto '=https' --tlsv1.2 -LsSf https://github.com/txpipe/cshell/releases/latest/download/cshell-installer.shYou can use Npm to install Cshell on your system:
Terminal window npm install @txpipe/cshell -
Configuration
Cshell requires a UtxoRPC and TRP provider, the UtxoRPC is to fetch on-chain data, and the TRP is to resolve and submit transactions. You can get one free instance on demeter. So when you have the UtxoRPC and TRP url, run the following command that will guide you through a set of questions to define a provider:
Terminal window cshell provider createWith the provider configured, it is possible to create a wallet or import one. The following example shows how to create one.
Terminal window cshell wallet create -
Running
Explore the commands in the docs or run
cshell --help
. The following command opens a GUI explorer using the default provider.Terminal window cshell explorer