This repository contains a CLI plus a ready-to-use template/ (contracts + frontend).
Follow these steps to download the repo and link it locally so you can use the CLI.
- Node.js 18+ and npm
- Git
Optional:
- Docker (needed later to run the devnet inside the template)
git clone <this-repo-url> kadena-trial
cd kadena-trial
npm installnpm run buildThis compiles the CLI to dist/ and copies template/ alongside it.
npm linkThis makes the create-kadena command available on your system.
Verify:
create-kadena --helpmkdir my-kadena-app && cd my-kadena-app
create-kadenaThe CLI will scaffold a new project using the bundled template/.
After creation, follow the new project’s README for setup and commands.
You can also work straight from the template/ folder in this repo:
- Read
template/README.mdfirst - Then follow the quick start there to:
- Install
contractsandfrontenddependencies - Start the devnet
- Create a dev account
- Deploy the contract
- Run the Next.js UI
- Install
If you want to remove the globally linked CLI:
npm unlink -g create-kadenaNeed help? See template/README.md for end-to-end usage of the contracts and frontend.