data-store-v2
SP3CPTJFP3TQK00DV0B5SGE8R0N3Z40MWJ6QZD38YSource Code
;; data-store.clar
;; Store arbitrary data
(define-map data principal (buff 2048))
(define-public (store (blob (buff 2048)))
(ok (map-set data tx-sender blob))
)
(define-read-only (get-data (user principal))
(map-get? data user)
)
Functions (2)
| Function | Access | Args |
|---|---|---|
| store | public | blob: (buff 2048 |
| get-data | read-only | user: principal |