Simple-Note
SP2F500B8DTRK1EANJQ054BRAB8DDKN6QCMXGNFBTSource Code
;; Contract 4: Simple Note
(define-data-var note (string-utf8 100) u"Default Note")
(define-public (write-note (new-note (string-utf8 100)))
(ok (var-set note new-note))
)
(define-read-only (read-note)
(ok (var-get note))
)Functions (2)
| Function | Access | Args |
|---|---|---|
| write-note | public | new-note: (string-utf8 100 |
| read-note | read-only |