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