Skip to content

Concordium/concordium-dapp-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Concordium DApp starter

Starter project template for build DApps for the Concordium blockchain.

This template includes:

  • Smart contract setup with:
    • Simple counter smart contract.
    • Deploy script for smart contract deployment.
    • Setup for integration tests.
    • VSCode tasks for running build.
    • GitHub Workflow, checking formatting, linter warnings and running tests.
  • TypeScript dApp setup with:

Fetch this repository follow the setup instructions below.

Setup

Make sure to have the following installed:

  • NodeJs.
  • Rust and cargo (Recommended to install using rustup).
  • Recent version of cargo concordium (Install using cargo install --locked cargo-concordium or use it through the Concordium VS-Code extension).

Smart contracts

Build

To build the smart contract, navigate to the contracts/my-contract directory and run:

cargo concordium build --out ./concordium-out/module.wasm.v1 --schema-embed

The --out ./concordium-out/module.wasm.v1 is important, since the frontend assumes this is the location of the built smart contract.

Run tests

To run the tests for the smart contract, navigate to the contracts/my-contract directory and run:

cargo concordium test --out ./concordium-out/module.wasm.v1 --schema-embed

This will also build the contract, the --out ./concordium-out/module.wasm.v1 is important, since the frontend assumes this is the location of the built smart contract.

Contract deploy-script

Scripts for deploying and setting up the smart contract can be found in contract/my-contract. See the documentation here.

Frontend

To setup and install dependencies for the frontend navigate to the frontend directory and run:

npm install

Generate smart contract clients

This project is setup to generate TypeScript smart contract clients, directly from the smart contract module and the embedded schema. Make sure to build the smart contract modules as descriped above.

To generate the smart contract clients for the frontend navigate to the frontend directory and run:

npm run generate

Development

To start a development environment make sure to first generate the smart contract clients, then run the following from the frontend directory:

npm run dev

This will launch a development server with hot module replacement enabled.

Build

To start build the frontend make sure to first generate the smart contract clients, then run the following from the frontend directory:

npm run build

This will bundle the project into frontend/dist directory.

Format code

To check for formatting issues run the following command from the frontend directory:

npm run format-check

To automatically fix formatting issues run the following command from the frontend directory:

npm run format-fix

Lint code

To check for linting issues run the following command from the frontend directory:

npm run lint-check

To automatically fix linting issues run the following command from the frontend directory:

npm run lint-fix

About

Starter template for DApp projects for the Concordium blockchain.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •