├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ └── 0-default-template.md └── README.adoc /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | default_issue_template: issue_template.md -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- 1 | = Bisq DAO compensation requests 2 | 3 | See https://bisq.wiki/Compensation#Create_your_compensation_request_issue 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-default-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Default Template 3 | about: Make a compensation request using template 4 | title: 'For Cycle N' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 18 | 19 | ## Summary 20 | 21 | > _Specify the total amount of BSQ you are requesting, along with the USD total and BSQ/USD rate (don't include the brackets!):_ 22 | 23 | - **BSQ requested**: **`[BSQ amount]`** 24 | - USD requested: [USD amount] 25 | - BSQ rate: [rate] USD per BSQ 26 | - Previous compensation request (if applicable): # 27 | 28 | ## Contributions delivered 29 | 30 | > _Add contributions you have [delivered](https://github.com/bisq-network/proposals/issues/19) and roles you have performed here as new rows in the table below. Role line-items should include an asterisk (*) in the team column._ 31 | 32 | | Title | Team | USD | Link | Notes | 33 | | --- | --- | ---: | --- | --- | 34 | | your | first | item | goes | here | 35 | 36 | 64 | 65 | ## Contributions in progress 66 | 67 | > _Provide links to work you're involved with that is still [in progress](https://github.com/bisq-network/proposals/issues/19). **This section is optional (the linter ignores it),** and is for your own benefit in keeping track of what you're doing and keeping other contributors up to date with the same._ 68 | --------------------------------------------------------------------------------