From 74a7257ec9062b6a592e9e6dd4ccddb4b5194084 Mon Sep 17 00:00:00 2001 From: KtorZ Date: Thu, 13 Apr 2023 12:23:16 +0200 Subject: [PATCH] Add some more instructions to 'blueprint apply' command help text. --- crates/aiken/src/cmd/blueprint/apply.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/aiken/src/cmd/blueprint/apply.rs b/crates/aiken/src/cmd/blueprint/apply.rs index d98200f9..2823f23e 100644 --- a/crates/aiken/src/cmd/blueprint/apply.rs +++ b/crates/aiken/src/cmd/blueprint/apply.rs @@ -7,7 +7,11 @@ use uplc::ast::{Constant, DeBruijn, Term}; /// Apply a parameter to a parameterized validator. #[derive(clap::Args)] pub struct Args { - /// The parameter, as a Plutus Data (CBOR, hex-encoded) + /// The parameter, as a Plutus Data (CBOR, hex-encoded). + /// + /// For example, `182A` designates an integer of value 42. If you're unsure about the shape of + /// the parameter, look at the schema specified in the project's blueprint (i.e. + /// `plutus.json`), or use the `cbor.serialise` function from the Aiken standard library. parameter: String, /// Path to project