Source Code

(define-trait wallet-trait
    (
        (add-owner (principal) (response bool uint))
        (remove-owner (principal) (response bool uint))
        (set-min-confirmation (uint) (response bool uint))
        (set-valid-chain ((buff 256) bool) (response bool uint))
        (set-policy-admin (principal) (response bool uint))
        (set-fee-governance (principal) (response bool uint))
        (set-tax-config ((buff 20) uint) (response bool uint))
    )
)

(define-trait executor-trait
	(
		(execute (<wallet-trait> principal uint (buff 256) bool) (response bool uint))
	)
)

(define-trait sip-010-trait
  (
    ;; Transfer from the caller to a new principal
    (transfer (uint principal principal (optional (buff 34))) (response bool uint))

    ;; the human readable name of the token
    (get-name () (response (string-ascii 32) uint))

    ;; the ticker symbol, or empty if none
    (get-symbol () (response (string-ascii 32) uint))

    ;; the number of decimals used, e.g. 6 would mean 1_000_000 represents 1 token
    (get-decimals () (response uint uint))

    ;; the balance of the passed principal
    (get-balance (principal) (response uint uint))

    ;; the current total supply (which does not need to be a constant)
    (get-total-supply () (response uint uint))

    ;; an optional URI that represents metadata of this token
    (get-token-uri () (response (optional (string-utf8 256)) uint))
  )
)