diff --git a/contracts/guardian/src/lib.rs b/contracts/guardian/src/lib.rs index 802532b..9192326 100644 --- a/contracts/guardian/src/lib.rs +++ b/contracts/guardian/src/lib.rs @@ -2,6 +2,7 @@ pub mod error; use soroban_sdk::{contract, contractimpl, Env}; +/// Enforces guardian-controlled spending policies for child wallet accounts on the Stellar network. #[contract] pub struct GuardianContract;