forked from mars-protocol/cw-asset
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: impl astroport asset support (#19)
- Loading branch information
1 parent
c79caf5
commit 9ac15cf
Showing
5 changed files
with
215 additions
and
7 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,7 +1,7 @@ | ||
[package] | ||
name = "apollo-cw-asset" | ||
description = "Helper library for interacting with Cosmos assets (SDK coins and CW20 tokens)" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["larry <[email protected]>", "Apollo DAO Contributors <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -12,13 +12,15 @@ doctest = false # do not run doc tests | |
|
||
[features] | ||
default = [] | ||
astroport = ["dep:astroport"] | ||
|
||
[dependencies] | ||
cosmwasm-std = "1" | ||
cw-storage-plus = "1.0.1" | ||
cw20 = "1.0.1" | ||
schemars = "0.8.11" | ||
serde = { version = "1.0.152", default-features = false, features = ["derive"] } | ||
astroport = { version = "2.8.0", optional = true } | ||
|
||
[dev-dependencies] | ||
test-case = "2.2.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
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