-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bonding manager contract merge pull request #302 from White-Wha…
…le-Defi-Platform/feat/bonding-manager-whale-lair feat: bonding manager contract
- Loading branch information
Showing
57 changed files
with
6,982 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
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,4 @@ | ||
[alias] | ||
wasm = "build --release --lib --target wasm32-unknown-unknown" | ||
unit-test = "test --lib" | ||
schema = "run --bin bonding_manager_schema" |
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,49 @@ | ||
[package] | ||
name = "bonding-manager" | ||
version = "0.1.0" | ||
authors = ["0xFable <[email protected]>"] | ||
edition.workspace = true | ||
description = "The Bonding Manager is the evolution of the Whale Lair, fee distributor and fee collecotr. It is a bonding contract used to bond WHALE LSDs, collect fees from pools and distribute them a rewards to bonders" | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
documentation.workspace = true | ||
publish.workspace = true | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. | ||
"contract.wasm", | ||
"hash.txt", | ||
] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
injective = ["white-whale-std/injective"] | ||
token_factory = ["white-whale-std/token_factory"] | ||
osmosis_token_factory = ["white-whale-std/osmosis_token_factory"] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
|
||
[dependencies] | ||
cosmwasm-schema.workspace = true | ||
cosmwasm-std.workspace = true | ||
cw-storage-plus.workspace = true | ||
cw2.workspace = true | ||
schemars.workspace = true | ||
semver.workspace = true | ||
serde.workspace = true | ||
thiserror.workspace = true | ||
white-whale-std.workspace = true | ||
cw-utils.workspace = true | ||
pool-manager.workspace = true | ||
|
||
[dev-dependencies] | ||
cw-multi-test.workspace = true | ||
anyhow.workspace = true | ||
white-whale-testing.workspace = true | ||
pool-manager.workspace = true | ||
epoch-manager.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Bonding Manager | ||
|
||
The Bonding Manager is the evolution of the Whale Lair, fee distributor and fee collector. It is a bonding contract used to bond WHALE LSDs, collect fees from pools and distribute them a rewards to bonders |
Oops, something went wrong.