Source Code
;; Waqf Tracker - Hostel
;; Endowment tracker for hostel
(define-map hostel-56-endowments principal {amount: uint})
(define-public (register-hostel-56 (amount uint))
(begin
(map-set hostel-56-endowments tx-sender {amount: amount})
(ok true)
)
)
(define-read-only (get-hostel-56 (donor principal))
(map-get? hostel-56-endowments donor)
)
Functions (2)
| Function | Access | Args |
|---|---|---|
| register-hostel-56 | public | amount: uint |
| get-hostel-56 | read-only | donor: principal |