diff --git a/cmd/soroban-cli/src/utils/contract-template/src/lib.rs b/cmd/soroban-cli/src/utils/contract-template/src/lib.rs index 0b701fd82..f8120043a 100644 --- a/cmd/soroban-cli/src/utils/contract-template/src/lib.rs +++ b/cmd/soroban-cli/src/utils/contract-template/src/lib.rs @@ -4,6 +4,15 @@ use soroban_sdk::{contract, contractimpl, vec, Env, String, Vec}; #[contract] pub struct Contract; +// This is a sample contract. Replace this placeholder with your own contract logic. +// A corresponding test example is available in `test.rs`. +// +// For comprehensive examples, visit . +// The repository includes use cases for the Stellar ecosystem, such as data storage on +// the blockchain, token swaps, liquidity pools, and more. +// +// Refer to the official documentation: +// . #[contractimpl] impl Contract { pub fn hello(env: Env, to: String) -> Vec {