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