#contract #casper #smart-contracts #testing #cargo #command-line-tool #cargo-toml

app cargo-casper

A command line tool for creating a Wasm smart contract and tests for use on the Casper network

33 releases (stable)

2.2.0 Feb 9, 2024
2.1.1 Nov 27, 2023
2.1.0 May 12, 2023
2.0.7 Mar 9, 2023
0.1.0 Nov 11, 2020

#541 in Magic Beans

Download history 9/week @ 2024-01-18 2/week @ 2024-01-25 6/week @ 2024-02-01 17/week @ 2024-02-08 30/week @ 2024-02-15 40/week @ 2024-02-22 18/week @ 2024-02-29 13/week @ 2024-03-07 7/week @ 2024-03-14 35/week @ 2024-03-28 13/week @ 2024-04-04

58 downloads per month

Apache-2.0

23KB
439 lines

cargo-casper

Crates.io License

A command line tool for creating a Wasm smart contract and tests for use on the Casper network.


Installation

cargo casper is a Cargo subcommand which can be installed via cargo install:

cargo install cargo-casper

To install from the latest dev branch:

git clone https://github.com/casper-ecosystem/cargo-casper
cargo install cargo-casper --path=cargo-casper

Usage

To create a folder "my_project" containing a basic example contract and a separate test crate for the contract:

cargo casper my_project

This creates the following files:

my_project/
├── contract
│   ├── .cargo
│   │   └── config.toml
│   ├── Cargo.toml
│   └── src
│       └── main.rs
├── Makefile
├── rust-toolchain
├── tests
│   ├── Cargo.toml
│   └── src
│       └── integration_tests.rs
└── .travis.yml

Building the contract

To build the contract, the correct version of Rust must be installed along with the Wasm target:

cd my_project
make prepare

The contract can now be built using:

make build-contract

and will be built to my_project/contract/target/wasm32-unknown-unknown/release/contract.wasm.

Testing the contract

Running the test will automatically build the contract in release mode, copy it to the "tests/wasm" folder, then build and run the test:

make test

License

Licensed under the Apache License Version 2.0.

Dependencies

~5–16MB
~195K SLoC