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

delegations #888

Draft
wants to merge 28 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
45a3bdb
created contract scaffold
NoahSaso Oct 7, 2024
c52a9ae
built first pass cw-snapshot-vector-map lib
NoahSaso Oct 10, 2024
63f2c16
only use block heights in cw-snapshot-vector-map
NoahSaso Oct 11, 2024
ed1a2a8
continued working on delegations
NoahSaso Oct 11, 2024
f601356
more
NoahSaso Oct 12, 2024
24730c6
moooore
NoahSaso Oct 12, 2024
642e620
added ability to update existing delegation
NoahSaso Oct 12, 2024
b9873d0
clippy
NoahSaso Oct 12, 2024
2efd5a5
added delegated VP logic to single and multiple choice proposal modul…
NoahSaso Oct 14, 2024
ad5c101
added delegated VP cap
NoahSaso Oct 14, 2024
fe630a7
add delegation expiry, and don't try to override inactive delegate's …
NoahSaso Oct 14, 2024
c7ef28d
renamed member1-5 to addr0-4
NoahSaso Oct 17, 2024
7b7af88
added basic suite tests for delegations
NoahSaso Oct 17, 2024
cca212e
fixed integration tests
NoahSaso Oct 17, 2024
bd5d44d
fixed integration tests
NoahSaso Oct 17, 2024
f0b167a
added deref and derefmut to improve DAO testing suite API
NoahSaso Oct 17, 2024
e9ddb78
added more delegation tests
NoahSaso Oct 17, 2024
bb77bd0
mooooore tests
NoahSaso Oct 18, 2024
f3c101e
free disk space in other github actions
NoahSaso Oct 18, 2024
35ad3c1
fixed renamed variable
NoahSaso Oct 31, 2024
8abe915
updated schema
NoahSaso Oct 31, 2024
b7efa15
updated schema
NoahSaso Nov 1, 2024
56920aa
added missing fields in tests
NoahSaso Nov 1, 2024
590eaf0
changed state key
NoahSaso Nov 17, 2024
ed4a6f8
added query to check if delegate is registered
NoahSaso Nov 27, 2024
b84be37
ensure early proposal outcomes are a result of non-delegated votes, s…
NoahSaso Dec 24, 2024
bd28a2e
set contract versions to 2.7.0-beta.2
NoahSaso Dec 24, 2024
7b8d966
fixed lint
NoahSaso Dec 24, 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
11 changes: 11 additions & 0 deletions .github/workflows/release-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

# tar is required for cargo cache
- run: apk add --no-cache tar

Expand Down
Loading
Loading