Skip to content

gRoussac/casper-deployer-hackathon-oct-2022

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Casper Deployer - Information and How-To Guides


Welcome to Project Casper Deployer!

CasperLabs Hackaton October 2022 πŸ‘» πŸŽƒπŸ•―οΈ

Project built with 😘β™₯πŸ’•β€ for Casper Blockchain codecov

🏰 Deployed on Render at https://casper.onrender.com/ ( beta πŸšοΈπŸ•ΈοΈπŸ•·οΈ)


πŸ“” Project

This projects aims to ease interactions with Casper Casper Blockchain during smart contracts development and for regular queries done with the Casper Client CLI

This project relies on casper-js-sdk and casper-rust-sdk to help with onboarding developers on the Casper Network and also users by providing better insights on Casper Blockchain concepts (URef, Dictionnaries etc..) and with giving the ability to deploy a smart contract signed with the Capser Signer.


image



✍️ Casper Signer

Using Chrome or a Chromium-based browser like Brave ? visit the Chrome Web Store, then download and install CasperLabs Signer extension

πŸ“œ CasperLabs Signer acts as your CSPR wallet, keeping your accounts and letting you sign deploys on the Casper Network to perform actions like staking, unstaking or sending your tokens to another person or an exchange account.

For Casper Signer Users

🏭 Tech Stack

  • Blockchain ⛓️

    Casper
  • Frontend πŸ‡

    Angular Nx NPM JavaScript TypeScript TailwindCSS SASS Webpack
  • Backend πŸ¦₯

    NestJS Express.js NodeJS JavaScript TypeScript Rust WEBASSEMBLY
  • Tests πŸ§ͺ

    cypress Jest
  • 🐧

    GitHub GitLab CI GitHub Actions Visual Studio Code Render Docker Debian
  • 🎢

    SoundCloud

πŸ—οΈ Architecture

Web Server

Web server is implemented in Express.js.

Api Server

Api server is implemented in NestJS+ Nx structure.

Client

UI is implemented in Angular.js + Nx structure.

Smart contracts

Smart contracts are implemented in Rust + Casper Smart contract Crate.

Folders at root directory is as follow :

  • casper-sdk: contains the Casper Rust SDK in two versions, web and nodejs
  • docker: contains Docker files
  • wasm: contains client wasm files
  • www: contains the Web application files

πŸ™ Features

  • Header
    • [βœ“] Integrate with Casper Signer
    • [βœ“] Display active public key and account balance
  • Network
    • [βœ“] Input Network Peer
    • [βœ“] Select from Network Peers
    • [βœ“] Check Peer status
    • [βœ“] Change RPC ending suffix
    • [βœ“] Retrieve Root State Hash
  • Config
    • [βœ“] Input Root State Hash
    • [βœ“] Retrieve from Signer or input Public Key
    • [βœ“] Retrieve Puse URef associated with Public key
    • [βœ“] Retrieve Balance associated with Public key
  • Transfer
    • [βœ“] Transfer from active Public Key
    • [βœ“] Transfer from other Public Key or Purse Uref
    • [βœ“] Transfer to Public Key
    • [βœ“] Transfer to Purse Uref
    • [βœ“] Define Amount to transfer
  • Purse
    • [βœ“] Input Purse URef
    • [βœ“] Retrieve Balance associated with URef
  • State
    • [βœ“] Input URef / Hash / Deploy Hash / Account Hash
    • [βœ“] Input Named Key Path
    • [βœ“] Retrieve State value
  • Dictionaries
    • [βœ“] Input Dictionary item key
    • [βœ“] Input Dictionary URef
    • [βœ“] Input Dictionary name
    • [βœ“] Input Contract hash
    • [βœ“] Retrieve Dictionary value
  • Deploy
    • [βœ“] Input Chain name
    • [βœ“] Select from Chain names
    • [βœ“] Input Public Key
    • [βœ“] Input Public Key
    • [βœ“] Input Gas Fee max for a deploy payment
    • [βœ“] Input Time To Live max for a deploy payment
    • [βœ“] Select Wasm file (ModuleBytes)
    • [βœ“] Input Contract or Package name
    • [βœ“] Input Contract or Package hash
    • [βœ“] Input Entry point
    • [βœ“] Input Args
    • [βœ“] Input Contract or Package as target of the deploy
    • [βœ“] Input Package version of the deploy
    • [βœ“] Make deploy
    • [πŸͺ²] (bugged) Speculative test deploy
    • [βœ“] Sign with Signer and send deploy to network
  • Output
    • [βœ“] Display active query results
  • Notes
    • [βœ“] Dummy notes takedown

πŸ›£οΈ Roadmap / Todo / Tofix

  • [βœ“] Add Dictionnary implementation to test smart contracts
  • [βœ“] Add some RPC calls into wasm client side (Rust SDK)
  • [βœ“] Add Events watchers
  • Re implement Events watchers from the Rust SDK
  • Casper wallet integration / private key / deprecate Casper Signer
  • Whitelist Signer on casper.onrender.com
  • Fix Github workflow
  • Fix blur events on input
  • Fix UI height
  • Refactor Angular froms building
  • Improve Jest coverage
  • Improve Cypress coverage
  • Add Cypress coverage Github action
  • Improve Css consistentcy
  • [βœ“] Fix transfers from URef or non active public key
  • Fix speculative test deploys
  • Add check deploy and size check
  • Add multisignature flow
  • Add delegation / stacking flow ?
  • [βœ“] Upgrading smart contracts
  • Escrow app on /escrow route
  • Add Escrow smart contracts
  • Electron app
  • Load / sign deploy

πŸ§™β€β™€οΈ Development

Prerequisites

  • npm >= 10.2.5
  • nodejs >= v20.10.0

This web project was generated and is using

🐳 Docker

Donwload and run image with docker-compose.yml πŸƒ

docker-compose -f './docker/docker-compose.yml' up -d

OR

Pull and run image from https://hub.docker.com/r/gregoshop/casper-deployer πŸƒβ€β™€οΈ

docker pull gregoshop/casper-deployer
docker container run -t -i --rm -h casper-deployer -p 4200:4200 gregoshop/casper-deployer

OR

Build and run image with Dockerfile πŸƒβ€β™‚οΈ

docker build -t casper-deployer ./docker/ --force-rm

docker container run -t -i --rm -h casper-deployer -p 4200:4200 casper-deployer

πŸ› οΈ Usage with npm

Install

πŸ“‚ Go to www folder

cd ./www

Run npm install to install the application.

npm install

Development server

Run npm start for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

npm start

Development server as production

Run npm run start:prod for a dev server with production configuration. Navigate to http://localhost:4200/.

npm run start:prod

Build

Run npm run build to build the project. The build artifacts will be stored in the dist/ directory.

npm run build

Running unit tests

Run npm run test to execute the unit tests via Jest.

npm run test

Run nx affected:test to execute the unit tests affected by a change.

Running end-to-end tests

Run npm run e2e to execute the end-to-end tests via Cypress.

npm run e2e

Run nx affected:e2e to execute the end-to-end tests affected by a change.

🎠 Configuration

Settings can be changed in /www/libs/util/config/src/config.ts

Default example settings are

{
  "api_prefix": "/api/",
  "gasFee": "150000000",
  "minimumTransfer": "25000000000",
  "TTL": "30m",
  "idMax": "100000000",
  "gasFeeTransfer": "10000"
}

πŸ“Š Understanding the workspace

Run nx graph to see a diagram of the dependencies of the projects.

πŸ•β€πŸ¦Ί Further help

Visit the Nx Documentation to learn more.

🚧 Workflow and contributions

⚠️ Work in Progress

https://github.com/gRoussac/casper-deployer-hackathon-oct-2022/blob/Development-Workflow

πŸ“ License

GNU GENERAL PUBLIC LICENSE

🦺 Security

https://github.com/gRoussac/casper-deployer-hackathon-oct-2022/blob/master/SECURITY.md

❓Have questions?

Go to the #hackathon channel on Discord

πŸͺ¦ Errors ?

If you see any typos or errors you can edit the code directly on GitHub and raise a Pull Request on dev branch, many thanks !

About

CasperLabs Hackathon Oct 2022 - Project: Casper Deployer

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published