Skip to content

Commit

Permalink
Merge pull request #31 from terra-money/init/alliance/lp/hub
Browse files Browse the repository at this point in the history
feat: alliance lp hub
  • Loading branch information
emidev98 authored Jan 16, 2024
2 parents ac20192 + 715f42e commit ec6898d
Show file tree
Hide file tree
Showing 56 changed files with 5,512 additions and 341 deletions.
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

0 comments on commit ec6898d

Please sign in to comment.