-
Notifications
You must be signed in to change notification settings - Fork 359
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
8 changed files
with
22 additions
and
22 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.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -17,9 +17,9 @@ library = [] | |
[dependencies] | ||
cosmwasm-std = { version = "0.10.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.10.0", features = ["iterator"] } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.0" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.1.0", features = ["library"] } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.1" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.1.1", features = ["library"] } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
snafu = { version = "0.6.3" } | ||
|
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.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -17,7 +17,7 @@ library = [] | |
[dependencies] | ||
cosmwasm-std = { version = "0.10.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.10.0", features = ["iterator"] } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.1" } | ||
schemars = "0.7" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
snafu = { version = "0.6.3" } | ||
|
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.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -15,8 +15,8 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw2 = { path = "../../packages/cw2", version = "0.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.1" } | ||
cosmwasm-std = { version = "0.10.0" } | ||
cosmwasm-storage = { version = "0.10.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 = "cw20-escrow" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens" | ||
|
@@ -15,8 +15,8 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
cw2 = { path = "../../packages/cw2", version = "0.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.1.1" } | ||
cosmwasm-std = { version = "0.10.0", features = ["iterator"] } | ||
cosmwasm-storage = { version = "0.10.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" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
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.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-2 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 = "cw20" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Definition and types for the CosmWasm-20 interface" | ||
|