Files
liquid-stacking/contracts/traits/strategy-trait.clar
fiftyeightandeight ce69b46641 chore: license header
2024-03-14 22:31:45 +08:00

12 lines
221 B
Plaintext

;; SPDX-License-Identifier: BUSL-1.1
(define-trait strategy-trait
(
(execute ((buff 2048)) (response uint uint))
(refund ((buff 2048)) (response uint uint))
(get-amount-in-strategy () (response uint uint))
)
)