Source Code
(define-public (get-last-token-id)
(if true (ok u1) (err u1))
)
(define-public (get-token-uri (token-id uint))
(ok none)
)
(define-public (get-owner (token-id uint))
(if true (ok none) (err u1))
)
(define-public (transfer (amount uint) (sender principal) (recipient principal))
(if true (ok true) (err u1))
)
(define-private (callsbtc)
(contract-call? 'SM3VDXK3WZZSA84XXFKAFAF15NNZX32CTSG82JFQ4.sbtc-token get-name)
)
Functions (5)
| Function | Access | Args |
|---|---|---|
| get-last-token-id | public | |
| get-token-uri | public | token-id: uint |
| get-owner | public | token-id: uint |
| transfer | public | amount: uint, sender: principal, recipient: principal |
| callsbtc | private |