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

Develop #40

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f90a787
Feature/bump deps (#10)
bryzettler Nov 6, 2023
efcf883
add scripts to package.json
bryzettler Nov 6, 2023
a7facc2
chore(release): publish 0.0.6
bryzettler Nov 6, 2023
1c39345
bump deps
bryzettler Nov 7, 2023
5ee87b2
chore(release): publish 0.0.7
bryzettler Nov 7, 2023
896a808
bump deps
bryzettler Nov 10, 2023
1208f11
chore(release): publish 0.0.8
bryzettler Nov 10, 2023
e6cffa4
Merge remote-tracking branch 'origin/main' into develop
ChewingGlass Jan 31, 2024
bdc8e69
Add devnet feature
ChewingGlass Jan 31, 2024
eaa16fb
chore(release): publish 0.0.9
ChewingGlass Mar 13, 2024
af9b632
Merge remote-tracking branch 'origin/main' into develop
ChewingGlass Mar 13, 2024
f96bb03
Merge remote-tracking branch 'origin/main' into develop
ChewingGlass Apr 15, 2024
71326dd
Add recursive delegation for nft-style voting schems (#11)
ChewingGlass Aug 9, 2024
7cf5ec1
conflicts
bryzettler Aug 12, 2024
c369fdb
Chore/publish 0.0.12 (#33)
bryzettler Aug 12, 2024
b6f50ec
Fix mod gov package.json
ChewingGlass Sep 6, 2024
21a23ba
chore(release): publish 0.0.13
ChewingGlass Sep 6, 2024
678073c
Bump version
ChewingGlass Sep 6, 2024
af34eb9
Merge branch 'main' into develop
ChewingGlass Oct 21, 2024
c7bcf86
[HIP-124]: Implement abstain vote (#37)
ChewingGlass Oct 23, 2024
46b2a82
chore(release): publish 0.0.14
ChewingGlass Oct 24, 2024
a5a886b
Bump version
ChewingGlass Oct 24, 2024
ab7c272
bump squads
ChewingGlass Oct 24, 2024
3d4e674
get another release for state controller
ChewingGlass Oct 24, 2024
6065c0f
Add fallbacks for smart contracts used by HPL (#38)
ChewingGlass Dec 6, 2024
9e64627
chore(release): publish 0.0.15
ChewingGlass Dec 6, 2024
ebf582e
Fix bugs in nft and token voter (#39)
ChewingGlass Dec 13, 2024
f7dffee
Merge remote-tracking branch 'origin/main' into develop
ChewingGlass Jan 30, 2025
f62ca7c
Fix build
ChewingGlass Jan 30, 2025
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
Prev Previous commit
Next Next commit
Add devnet feature
  • Loading branch information
ChewingGlass committed Jan 31, 2024
commit bdc8e6965d8accc2d5adc548fe31fe3baf0728e7
1 change: 1 addition & 0 deletions programs/nft_voter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism", features = ["init-if-needed"] }
Expand Down
1 change: 1 addition & 0 deletions programs/organization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism" }
Expand Down
1 change: 1 addition & 0 deletions programs/organization_wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism", features = ["init-if-needed"] }
Expand Down
1 change: 1 addition & 0 deletions programs/proposal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism" }
Expand Down
1 change: 1 addition & 0 deletions programs/state_controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism" }
Expand Down
1 change: 1 addition & 0 deletions programs/token_voter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism", features = ["init-if-needed"] }
Expand Down
1 change: 1 addition & 0 deletions programs/vote_hook_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []
devnet = []

[dependencies]
anchor-lang = { git = "https://github.com/ChewingGlass/anchor", branch = "bugfix/cpi-polymorphism" }
Expand Down
Loading