-
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
16 changed files
with
61 additions
and
61 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 = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.2.3", features = ["library"] } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.3.0", features = ["library"] } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator", "staking"] } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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 = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -18,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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-atomic-swap" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Mauro Lacy <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of Atomic Swaps" | ||
|
@@ -15,9 +15,9 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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 = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -18,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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-escrow" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens" | ||
|
@@ -18,9 +18,9 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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-staking" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement simple staking derivatives as a cw20 token" | ||
|
@@ -20,10 +20,10 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.2.3" } | ||
cw20-base = { path = "../../contracts/cw20-base", version = "0.2.3", features = ["library"] } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.3.0" } | ||
cw20-base = { path = "../../contracts/cw20-base", version = "0.3.0", features = ["library"] } | ||
cosmwasm-std = { version = "0.11.0", features = ["staking"] } | ||
cosmwasm-storage = { version = "0.11.0" } | ||
schemars = "0.7" | ||
|
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 = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementing cw3 with an fixed group multisig" | ||
|
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw3 = { path = "../../packages/cw3", version = "0.2.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.2.3", features = ["iterator"] } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw3 = { path = "../../packages/cw3", version = "0.3.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.3.0", features = ["iterator"] } | ||
cosmwasm-std = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", 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 = "cw721-base" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation cw721 NFTs" | ||
|
@@ -25,9 +25,9 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.2.3" } | ||
cw721 = { path = "../../packages/cw721", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.3.0" } | ||
cw721 = { path = "../../packages/cw721", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0" } | ||
cosmwasm-storage = { version = "0.11.0", features = ["iterator"] } | ||
schemars = "0.7" | ||
|
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 = "cw0" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Common helpers for other cw specs" | ||
|
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" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-1 interface" | ||
|
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 = "cw2" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-2 interface" | ||
|
@@ -11,6 +11,6 @@ documentation = "https://docs.cosmwasm.com" | |
|
||
[dependencies] | ||
cosmwasm-std = { version = "0.11.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.2.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.3.0" } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", 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 = "cw20" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-20 interface" | ||
|
@@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com" | |
documentation = "https://docs.cosmwasm.com" | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0" } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", 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" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "CosmWasm-3 Interface: On-Chain MultiSig/Voting contracts" | ||
|
@@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com" | |
documentation = "https://docs.cosmwasm.com" | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0" } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", 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 = "cw721" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-721 NFT interface" | ||
|
@@ -10,7 +10,7 @@ homepage = "https://cosmwasm.com" | |
documentation = "https://docs.cosmwasm.com" | ||
|
||
[dependencies] | ||
cw0 = { path = "../../packages/cw0", version = "0.2.3" } | ||
cw0 = { path = "../../packages/cw0", version = "0.3.0" } | ||
cosmwasm-std = { version = "0.11.0" } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", 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 = "cw-storage-plus" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Enhanced/experimental storage engines" | ||
|