9 releases (5 breaking)
0.8.1 | May 30, 2024 |
---|---|
0.8.0 | May 27, 2024 |
0.7.3 | Apr 12, 2024 |
0.6.0 | Apr 7, 2024 |
0.1.0 | Mar 7, 2024 |
#15 in #unc
24 downloads per month
Used in 2 crates
68KB
1.5K
SLoC
Release notes
Release notes and unreleased changes can be found in the CHANGELOG
Installation
Install prebuilt binaries via shell script (Linux, macOS)
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/utnet-org/cargo-unc/releases/latest/download/cargo-unc-installer.sh | sh
Install prebuilt binaries via powershell script (Windows)
irm https://github.com/utnet-org/cargo-unc/releases/latest/download/cargo-unc-installer.ps1 | iex
Install prebuilt binaries into your Node.js application
npm install cargo-unc
Compile and install from source code (Cargo)
cargo install cargo-unc
or, install the most recent version from git repository:
$ git clone https://github.com/utnet-org/cargo-unc
$ cargo install --path cargo-unc
Usage
See cargo unc --help
for a complete list of available commands or run cargo unc
to dive into interactive mode. Help is also available for each individual command with a --help
flag, e.g. cargo unc build --help
.
cargo unc
Starts interactive mode that will allow to explore all the available commands.
cargo unc build
Builds a UNC smart contract along with its ABI (while in the directory containing contract's Cargo.toml).
You can also make this command embed ABI into your WASM artifact by adding --embed-abi
parameter. Once deployed, this will allow you to call a view function __contract_abi
to retrieve a ZST-compressed ABI.
cargo unc abi
Generates UNC smart contract's ABI (while in the directory containing contract's Cargo.toml).
cargo unc create-dev-account
Guides you through creation of a new UNC account on testnet.
cargo unc deploy
Builds the smart contract (equivalent to cargo unc build
) and guides you to deploy it to the blockchain.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as below, without any additional terms or conditions.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Dependencies
~57–81MB
~1.5M SLoC