-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
686 additions
and
526 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,6 +1,11 @@ | ||
[package] | ||
name = "dao-rewards-distributor" | ||
authors = ["Ben2x4 <[email protected]>", "ekez <[email protected]>", "Jake Hartnell <[email protected]>", "bekauz <[email protected]>"] | ||
authors = [ | ||
"Ben2x4 <[email protected]>", | ||
"ekez <[email protected]>", | ||
"Jake Hartnell <[email protected]>", | ||
"bekauz <[email protected]>", | ||
] | ||
description = "Distributes rewards based on DAO membership." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
|
@@ -11,7 +16,7 @@ version = { workspace = true } | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
|
@@ -21,7 +26,7 @@ cosmwasm-schema = { workspace = true } | |
cw2 = { workspace = true } | ||
cw4 = { workspace = true } | ||
cw20 = { workspace = true } | ||
cw20-base = { workspace = true, features = ["library"] } | ||
cw20-base = { workspace = true, features = ["library"] } | ||
cw-controllers = { workspace = true } | ||
cw-ownable = { workspace = true } | ||
cw-storage-plus = { workspace = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name ="cw-admin-factory" | ||
name = "cw-admin-factory" | ||
authors = ["Jake Hartnell", "blue-note", "ekez <[email protected]>"] | ||
description = "A CosmWasm factory contract for instantiating a contract as its own admin." | ||
edition = { workspace = true } | ||
|
@@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
|
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
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
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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
[package] | ||
name = "cw721-roles" | ||
authors = ["Jake Hartnell"] | ||
description = "Non-transferable CW721 NFT contract that incorporates voting weights and on-chain roles." | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
repository = { workspace = true } | ||
license = { workspace = true } | ||
name = "cw721-roles" | ||
authors = ["Jake Hartnell"] | ||
description = "Non-transferable CW721 NFT contract that incorporates voting weights and on-chain roles." | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
repository = { workspace = true } | ||
license = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-controllers = { workspace = true } | ||
cw-ownable = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-controllers = { workspace = true } | ||
cw-ownable = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
cw4 = { workspace = true } | ||
cw721 = { workspace = true } | ||
cw721-base = { workspace = true, features = ["library"] } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
cw4 = { workspace = true } | ||
cw721 = { workspace = true } | ||
cw721-base = { workspace = true, features = ["library"] } | ||
dao-cw721-extensions = { workspace = true } | ||
serde = { workspace = true } | ||
thiserror = { workspace = true } | ||
serde = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { workspace = true } | ||
dao-testing = { workspace = true } | ||
cw-multi-test = { workspace = true } | ||
dao-testing = { workspace = true } | ||
dao-voting-cw721-staked = { workspace = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
[package] | ||
name = "dao-migrator" | ||
authors = ["Art3mix <[email protected]>"] | ||
name = "dao-migrator" | ||
authors = ["Art3mix <[email protected]>"] | ||
description = "A DAO DAO migrator module for modules." | ||
edition = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
version = { workspace = true } | ||
repository = { workspace = true } | ||
version = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
[dependencies] | ||
cosmwasm-std = { workspace = true, features = ["ibc3"] } | ||
cosmwasm-schema = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-utils = { workspace = true } | ||
thiserror = { workspace = true } | ||
cw2 = { workspace = true } | ||
cw20 = { workspace = true } | ||
dao-interface = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-utils = { workspace = true } | ||
thiserror = { workspace = true } | ||
cw2 = { workspace = true } | ||
cw20 = { workspace = true } | ||
dao-interface = { workspace = true } | ||
|
||
dao-dao-core = { workspace = true, features = ["library"] } | ||
dao-voting = { workspace = true } | ||
dao-proposal-single = { workspace = true, features = ["library"] } | ||
dao-voting-cw4 = { workspace = true, features = ["library"] } | ||
cw20-stake = { workspace = true, features = ["library"] } | ||
dao-dao-core = { workspace = true, features = ["library"] } | ||
dao-voting = { workspace = true } | ||
dao-proposal-single = { workspace = true, features = ["library"] } | ||
dao-voting-cw4 = { workspace = true, features = ["library"] } | ||
cw20-stake = { workspace = true, features = ["library"] } | ||
dao-voting-cw20-staked = { workspace = true, features = ["library"] } | ||
cw20-base = { workspace = true, features = ["library"] } | ||
cw20-base = { workspace = true, features = ["library"] } | ||
|
||
cw-utils-v1 = { workspace = true } | ||
voting-v1 = { workspace = true } | ||
cw-core-v1 = { workspace = true, features = ["library"] } | ||
cw-proposal-single-v1 = { workspace = true, features = ["library"] } | ||
cw-utils-v1 = { workspace = true } | ||
voting-v1 = { workspace = true } | ||
cw-core-v1 = { workspace = true, features = ["library"] } | ||
cw-proposal-single-v1 = { workspace = true, features = ["library"] } | ||
cw20-staked-balance-voting-v1 = { workspace = true, features = ["library"] } | ||
cw20-stake-v1 = { workspace = true, features = ["library"] } | ||
cw-core-interface-v1 = { package = "cw-core-interface", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" } | ||
cw4-voting-v1 = { package = "cw4-voting", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" } | ||
cw20-v1 = { version = "0.13", package = "cw20" } | ||
cw4-v1 = { version = "0.13", package = "cw4" } | ||
cw20-stake-v1 = { workspace = true, features = ["library"] } | ||
cw-core-interface-v1 = { package = "cw-core-interface", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" } | ||
cw4-voting-v1 = { package = "cw4-voting", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" } | ||
cw20-v1 = { version = "0.13", package = "cw20" } | ||
cw4-v1 = { version = "0.13", package = "cw4" } | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cw-multi-test = { workspace = true } | ||
dao-testing = { workspace = true } | ||
anyhow = { workspace = true } | ||
cw-multi-test = { workspace = true } | ||
dao-testing = { workspace = true } | ||
anyhow = { workspace = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[package] | ||
name = "dao-pre-propose-approval-single" | ||
authors = ["ekez <[email protected]>", "Jake Hartnell <[email protected]>"] | ||
authors = [ | ||
"ekez <[email protected]>", | ||
"Jake Hartnell <[email protected]>", | ||
] | ||
description = "A DAO DAO pre-propose module handling a proposal approval flow for for dao-proposal-single." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
|
@@ -12,7 +15,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[package] | ||
name = "dao-pre-propose-approver" | ||
authors = ["ekez <[email protected]>", "Jake Hartnell <[email protected]>"] | ||
authors = [ | ||
"ekez <[email protected]>", | ||
"Jake Hartnell <[email protected]>", | ||
] | ||
description = "A DAO DAO pre-propose module for automatically making approval proposals for dao-pre-propose-approval-single." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
|
@@ -12,7 +15,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
[package] | ||
name = "dao-pre-propose-multiple" | ||
authors = ["ekez <[email protected]>", "Jake Hartnell <[email protected]>", "blue-note"] | ||
authors = [ | ||
"ekez <[email protected]>", | ||
"Jake Hartnell <[email protected]>", | ||
"blue-note", | ||
] | ||
description = "A DAO DAO pre-propose module for dao-proposal-multiple for native and cw20 deposits." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
|
@@ -12,7 +16,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = ["cw-multi-test/backtrace"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
|
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
Oops, something went wrong.