-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add proposal for DIKO buybacks (#600)
* feat: add proposal for DIKO buybacks * space * gov vote * wip --------- Co-authored-by: --global <--global>
- Loading branch information
1 parent
a05d62e
commit 6dff783
Showing
4 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
;; A governance vote to decide the following has been put in place: | ||
;; DIKO buybacks & burns | ||
|
||
;; Weekly DIKO buybacks of up to $10k/week (using protocol revenue denominated in xBTC, stSTX, STX, USDA or equivalent) | ||
;; The DIKO tokens can be burned based on X activity. | ||
;; Each tweet with the #moonDIKO hashtag will burn 100 DIKO, with a maximum burn of what is bought in that week. | ||
;; These buybacks & burns will happen at random intervals | ||
;; All protocol revenue is received by the following contract: SP2C2YFP12AJZB4MABJBAJ55XECVS7E4PMMZ89YZR.arkadiko-vaults-pool-fees-v1-1. | ||
;; Revenue comes from redemptions and stability fees | ||
|
||
;; Vote FOR if you agree | ||
;; Vote AGAINST if you disagree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
;; @contract DIKO Incinerator - Tokens to be burned from buybacks | ||
;; @version 1 | ||
|
||
(define-public (burn (amount uint)) | ||
(begin | ||
(try! (contract-call? .arkadiko-dao burn-token .arkadiko-token amount tx-sender)) | ||
(ok true) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters