Clarity VSCode Extension
Last updated
Was this helpful?
Was this helpful?
;; Type "stx-tr" and get:
(stx-transfer? amount sender recipient)
;; ^ ^ ^
;; Placeholders for easy navigation;; Hover over 'map-set' to see:
;; - Function signature
;; - Parameter descriptions
;; - Return type
;; - Usage examples
(map-set my-map {key: "value"} "data");; Auto-complete local contract calls
(contract-call? .my-token transfer amount sender recipient)
;; ^
;; Suggests contracts in your project;; Extension warns if missing required trait functions
(impl-trait .sip-010-trait.sip-010-trait)
;; ⚠️ Warning: Missing required function 'get-balance'