Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: alliance lp hub #31

Merged
merged 12 commits into from
Jan 16, 2024
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ node_modules
.idea
.env

.vscode

# Metadata from deployments
scripts/.oracle_address.log
scripts/.hub_address.log
94 changes: 57 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
"contracts/alliance-hub",
"contracts/alliance-oracle",
"contracts/alliance-lp-hub",
"packages/alliance-protocol",
]
exclude = []
Expand Down Expand Up @@ -40,4 +41,6 @@ serde = { version = "1.0.152", default-features = false, featu
terra-proto-rs = { version = "4.0.2", default-features = false}
thiserror = { version = "1.0.38" }
cw2 = "1.0.1"
cw20 = "1.0.1"
cw-utils = "1.0.1"
alliance-protocol = { path = "./packages/alliance-protocol" }
39 changes: 19 additions & 20 deletions contracts/alliance-hub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
[package]
name = "alliance-hub"
version = "0.1.1"
authors = ["Terra Money <[email protected]>"]
edition = "2018"
name = "alliance-hub"
version = "0.1.1"
authors = ["Terra Money <[email protected]>"]
edition = "2018"

exclude = [
exclude = [
"contract.wasm",
"hash.txt",
]

[lib]
crate-type = ["cdylib", "rlib"]
crate-type = ["cdylib", "rlib"]

[features]
backtraces = ["cosmwasm-std/backtraces"]
library = []
backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cosmwasm-std = { workspace = true, features = ["stargate"] }
cosmwasm-storage = { workspace = true }
cosmwasm-schema = { workspace = true }
cw-storage-plus = { workspace = true }
cw-asset = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
cosmwasm-std = { workspace = true, features = ["stargate"] }
cosmwasm-storage = { workspace = true }
cosmwasm-schema = { workspace = true }
cw-storage-plus = { workspace = true }
cw-asset = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
alliance-protocol = { workspace = true }

cw2 = "1.0.1"
cw-utils = "1.0.1"
terra-proto-rs = {version = "3.0.2", default-features = false}
cw2 = { workspace = true }
cw-utils = { workspace = true }
terra-proto-rs = { workspace = true }
Loading
Loading