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)

FunctionAccessArgs
register-land-41publicamount: uint
get-land-41read-onlydonor: principal