storage-a02-XUZL
SP1Q7YR67R6WGP28NXDJD1WZ11REPAAXRJJ3V6RKMSource Code
;; Version 4
;; Key-Value Storage
(define-map data principal uint)
(define-public (store (amount uint))
(ok (map-set data tx-sender amount))
)
(define-read-only (retrieve)
(ok (default-to u0 (map-get? data tx-sender)))
)
(define-read-only (retrieve-other (who principal))
(ok (default-to u0 (map-get? data who)))
)
(define-read-only (get-info)
(ok "active"))
Functions (4)
| Function | Access | Args |
|---|---|---|
| store | public | amount: uint |
| retrieve | read-only | |
| retrieve-other | read-only | who: principal |
| get-info | read-only |