-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support both osmosis and cosmwasm tokenfactory msg standards via feat…
…ure flags.
- Loading branch information
Showing
22 changed files
with
855 additions
and
54 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
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,9 @@ | ||
[package] | ||
authors = ["Maurits Bos <[email protected]>", "Sunny Aggarwal <[email protected]>", "Jake Hartnell <[email protected]>"] | ||
authors = [ | ||
"Maurits Bos <[email protected]>", | ||
"Sunny Aggarwal <[email protected]>", | ||
"Jake Hartnell <[email protected]>", | ||
] | ||
name = "cw-tokenfactory-issuer" | ||
description = "A CosmWasm contract that issues new Token Factory tokens on supported chains." | ||
version = { workspace = true } | ||
|
@@ -23,15 +27,18 @@ exclude = [ | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
default = ["osmosis_tokenfactory"] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
# use test tube feature to enable test-tube integration tests, for example | ||
# cargo test --features "test-tube" | ||
test-tube = [] | ||
# when writing tests you may wish to enable test-tube as a default feature | ||
# default = ["test-tube"] | ||
test-tube = ["osmosis_tokenfactory"] | ||
# different tokenfactory cosmos sdk module standards. enable corresponding | ||
# standard in types library | ||
osmosis_tokenfactory = ["cw-tokenfactory-types/osmosis_tokenfactory"] | ||
cosmwasm_tokenfactory = ["cw-tokenfactory-types/cosmwasm_tokenfactory"] | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
|
@@ -40,10 +47,12 @@ cosmwasm-storage = { workspace = true } | |
cw2 = { workspace = true } | ||
cw-ownable = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-tokenfactory-types = { workspace = true, default-features = false } | ||
dao-interface = { workspace = true } | ||
osmosis-std = { workspace = true } | ||
prost = { workspace = true } | ||
schemars = { workspace = true } | ||
serde = { workspace = true, default-features = false, features = ["derive"]} | ||
serde = { workspace = true, default-features = false, features = ["derive"] } | ||
thiserror = { workspace = true } | ||
token-bindings = { 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
Oops, something went wrong.