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: Add fn query_asset_info_balances (#20)
* feat: Add fn query_asset_info_balances * style: clippy fmt * ci: Delete coverage job and switch lint to stable * feat: impl to_asset for assetinfo
- Loading branch information
1 parent
9ac15cf
commit 6610ac4
Showing
7 changed files
with
48 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.1.2] - 2023-08-11 | ||
|
||
### Added | ||
|
||
- `fn to_asset` method on `AssetInfo` to convert to `Asset` with the specified amount. | ||
- `fn query_asset_info_balances` method on `AssetList` to query balances of a `Vec<AssetInfo>`. |
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.1" | ||
version = "0.1.2" | ||
authors = ["larry <[email protected]>", "Apollo DAO Contributors <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
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