Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ members = [
"packages/multi_test",
"packages/multi_derive",
"packages/contract_derive",
"packages/lending_utils",

# Network setups
"contracts/airdrop",
Expand All @@ -23,9 +22,6 @@ members = [
"contracts/basic_staking",
"contracts/snip20_derivative",

# Lending
"contracts/lending/*",

# DAO
# - Core
"contracts/dao/treasury",
Expand All @@ -37,7 +33,8 @@ members = [
# "contracts/dao/lp_shdswap",

# Lending protocol
"contracts/lend-token",
"contracts/lending/*",
"packages/lending_utils",

# Mock contracts
# "contracts/mock/mock_band", //TODO: migrate to v1
Expand Down
44 changes: 20 additions & 24 deletions contracts/lending/market/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "wynd-lend-market"
version = { workspace = true }
authors = ["Jakub Bogucki <jakub@confio.gmbh>"]
edition = { workspace = true }
name = "lend-market"
version = "0.1.0"
authors = ["Jakub <jakub@moonbite.space>"]
edition = "2021"
description = "Implementation of Market contract"
repository = { workspace = true }
repository = "https://github.com/securesecrets/shade"

[lib]
crate-type = ["cdylib", "rlib"]
Expand All @@ -14,24 +14,20 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true }
cosmwasm-storage = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true }
cw2 = { workspace = true }
cw20 = { workspace = true }
cw20-base = { workspace = true }
wyndex-oracle = { workspace = true }
wynd-lend-token = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
utils = { workspace = true }
wyndex = { workspace = true }
wyndex-multi-hop = { workspace = true }
cosmwasm-schema = "1.4.0"
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.0.0" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.0.0" }
lending-utils = { version = "0.1.0", path = "../../../packages/lending_utils" }
lend-token = { version = "0.1.0", path = "../token" }
shade-protocol = { version = "0.1.0", path = "../../../packages/shade_protocol", features = [
"snip20",
"storage_plus",
] }
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1"

[dev-dependencies]
anyhow = { workspace = true }
cw-multi-test = { workspace = true }
wyndex-tests = { workspace = true }
anyhow = "1"
shade-protocol = { version = "0.1.0", path = "../../../packages/shade_protocol", features = ["multi-test"] }
shade-multi-test = { version = "0.1.0", path = "../../../packages/multi_test", features = [ "snip20"] }
2 changes: 1 addition & 1 deletion contracts/lending/market/src/bin/schema.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use cosmwasm_schema::write_api;
use wynd_lend_market::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};
use lend_market::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};

fn main() {
write_api! {
Expand Down
Loading