-
Notifications
You must be signed in to change notification settings - Fork 358
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
15 changed files
with
66 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1-subkeys" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -21,9 +21,9 @@ test-utils = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw1 = { path = "../../packages/cw1", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [ | ||
cw1 = { path = "../../packages/cw1", version = "1.1.2" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.2", features = [ | ||
"library", | ||
] } | ||
cosmwasm-std = { version = "1.4.0", features = ["staking"] } | ||
|
@@ -34,7 +34,7 @@ thiserror = "1.0.49" | |
semver = "1" | ||
|
||
[dev-dependencies] | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [ | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.2", features = [ | ||
"library", | ||
"test-utils", | ||
] } |
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,6 @@ | ||
[package] | ||
name = "cw1-whitelist" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -21,8 +21,8 @@ test-utils = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw1 = { path = "../../packages/cw1", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw1 = { path = "../../packages/cw1", version = "1.1.2" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cosmwasm-std = { version = "1.4.0", features = ["staking"] } | ||
cw-storage-plus = "1.1.0" | ||
schemars = "0.8.15" | ||
|
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,6 @@ | ||
[package] | ||
name = "cw20-base" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -19,8 +19,8 @@ library = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.2" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
|
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,6 @@ | ||
[package] | ||
name = "cw20-ics20" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain" | ||
|
@@ -20,11 +20,11 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.2" } | ||
cosmwasm-std = { version = "1.4.0", features = ["stargate"] } | ||
cw-storage-plus = "1.1.0" | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.2" } | ||
schemars = "0.8.15" | ||
semver = "1" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
|
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,6 @@ | ||
[package] | ||
name = "cw3-fixed-multisig" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementing cw3 with an fixed group multisig" | ||
|
@@ -20,15 +20,15 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.2" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.49" } | ||
|
||
[dev-dependencies] | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.1", features = ["library"] } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.2" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.2", features = ["library"] } | ||
cw-multi-test = "0.16.1" |
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,6 @@ | ||
[package] | ||
name = "cw3-flex-multisig" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementing cw3 with multiple voting patterns and dynamic groups" | ||
|
@@ -20,20 +20,20 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.1" } | ||
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.1", features = [ | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.2" } | ||
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.2", features = [ | ||
"library", | ||
] } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.2" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.2" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.49" } | ||
|
||
[dev-dependencies] | ||
cw4-group = { path = "../cw4-group", version = "1.1.1" } | ||
cw4-group = { path = "../cw4-group", version = "1.1.2" } | ||
cw-multi-test = "0.16.5" | ||
cw20-base = { path = "../cw20-base", version = "1.1.1" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.2" } |
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,6 @@ | ||
[package] | ||
name = "cw4-group" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Simple cw4 implementation of group membership controlled by admin " | ||
|
@@ -28,9 +28,9 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.1" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.2" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.2" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
|
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,6 @@ | ||
[package] | ||
name = "cw4-stake" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "CW4 implementation of group based on staked tokens" | ||
|
@@ -28,10 +28,10 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.2" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.2" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.2" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.2" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
|
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,6 @@ | ||
[package] | ||
name = "cw-controllers" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Common controllers we can reuse in many contracts" | ||
|
Oops, something went wrong.