Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal Incentives & Voting Incentives #797

Open
wants to merge 49 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
fb60e86
Smart contract skeleton for voting incentives
JakeHartnell Jan 9, 2024
16bfaee
More comments
JakeHartnell Jan 23, 2024
bd79371
dao-proposal-incentives initial commit
JakeHartnell Jan 24, 2024
97e2472
Add more design notes and TODOs
JakeHartnell Jan 24, 2024
c1ef0bf
Proposal incentives fixups and notes
JakeHartnell Jan 25, 2024
a7bb852
Voting incentives checks and notes
JakeHartnell Jan 25, 2024
21c488b
More notes
JakeHartnell Jan 25, 2024
b7b01cb
Proposal Incentives
ismellike Jan 31, 2024
834e16e
Fix clippy errors
ismellike Jan 31, 2024
34c7474
More clippy
ismellike Jan 31, 2024
41b15fe
Schema + clippy fix
ismellike Feb 1, 2024
ed344a4
Progress on voting incentives
ismellike Feb 7, 2024
f0c494b
Handle revoting and update readme's
ismellike Feb 7, 2024
1c3d428
Update README.md
ismellike Feb 7, 2024
86c85f5
Work on voting tests
ismellike Feb 8, 2024
01eedd6
Fix for simultaneous hook error handling
ismellike Feb 9, 2024
e4477df
Wrap up tests for voting incentives
ismellike Feb 10, 2024
30bfeab
Combine rewards queries
ismellike Feb 13, 2024
2816beb
Add is_claimable flag to reward response
ismellike Feb 14, 2024
a86f0dc
Merge branch 'development' into gov-incentives
ismellike May 7, 2024
a76127f
Schemas and clippy fixes
ismellike May 8, 2024
064f353
Update contracts/external/dao-proposal-incentives/Cargo.toml
ismellike Jun 13, 2024
8849221
Smart contract skeleton for voting incentives
JakeHartnell Jan 9, 2024
55b9665
More comments
JakeHartnell Jan 23, 2024
aa3dd76
dao-proposal-incentives initial commit
JakeHartnell Jan 24, 2024
e219dea
Add more design notes and TODOs
JakeHartnell Jan 24, 2024
76f5ca1
Proposal incentives fixups and notes
JakeHartnell Jan 25, 2024
40dd5fe
Voting incentives checks and notes
JakeHartnell Jan 25, 2024
632bfe4
More notes
JakeHartnell Jan 25, 2024
d2c39be
Proposal Incentives
ismellike Jan 31, 2024
dbab201
Fix clippy errors
ismellike Jan 31, 2024
3597697
More clippy
ismellike Jan 31, 2024
012f8c3
Schema + clippy fix
ismellike Feb 1, 2024
2bf1ec1
Progress on voting incentives
ismellike Feb 7, 2024
5c9383f
Handle revoting and update readme's
ismellike Feb 7, 2024
22a13d1
Update README.md
ismellike Feb 7, 2024
65fa0de
Work on voting tests
ismellike Feb 8, 2024
9419658
Fix for simultaneous hook error handling
ismellike Feb 9, 2024
6961ce6
Wrap up tests for voting incentives
ismellike Feb 10, 2024
809ba2c
Combine rewards queries
ismellike Feb 13, 2024
1d5bd35
Add is_claimable flag to reward response
ismellike Feb 14, 2024
21eb271
Schemas and clippy fixes
ismellike May 8, 2024
4a9a9e1
Update contracts/external/dao-proposal-incentives/Cargo.toml
ismellike Jun 13, 2024
778a361
Improve proposal & voting incentives readme's + add not audited warnings
ismellike Aug 16, 2024
2fb9ec5
Merge branch 'gov-incentives' of https://github.com/ismellike/dao-con…
ismellike Aug 16, 2024
7cce5b3
gen schema
ismellike Aug 16, 2024
754442d
Disable doctests on gov-incentives
ismellike Aug 16, 2024
ffe92b1
Bump integration_tests to nightly toolchain
ismellike Aug 16, 2024
c3b6321
Free up space for test_tube.yml
ismellike Aug 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-02-02
toolchain: nightly
target: wasm32-unknown-unknown
override: true

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test_tube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

# https://github.com/orgs/community/discussions/25678
- name: Free up disk space on runner
run: |
df -h
rm -rf /usr/share/dotnet/
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y azure-cli firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
df -h
shell: bash

- name: Install latest nightly toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
Loading
Loading