Skip to content

Commit 8e79686

Browse files
committed
rename scheduler to price-feed and move PriceKeeder to price-feed
1 parent f3da484 commit 8e79686

File tree

19 files changed

+73
-192
lines changed

19 files changed

+73
-192
lines changed

Cargo.lock

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repository = "https://github.com/osmosis-labs/mesh-security"
1717
mesh-apis = { path = "./packages/apis" }
1818
mesh-bindings = { path = "./packages/bindings" }
1919
mesh-burn = { path = "./packages/burn" }
20-
mesh-scheduler = { path = "./packages/scheduler" }
20+
mesh-price-feed = { path = "./packages/price-feed" }
2121
mesh-sync = { path = "./packages/sync" }
2222
mesh-virtual-staking-mock = { path = "./packages/virtual-staking-mock" }
2323

contracts/consumer/band-price-feed/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ mt = ["library", "sylvia/mt"]
2121

2222
[dependencies]
2323
mesh-apis = { workspace = true }
24-
mesh-scheduler = { workspace = true }
24+
mesh-price-feed = { workspace = true }
2525

2626
sylvia = { workspace = true }
2727
cosmwasm-schema = { workspace = true }

contracts/consumer/band-price-feed/src/contract.rs

+46-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ use cw_utils::nonpayable;
77
use mesh_apis::price_feed_api::{PriceFeedApi, PriceResponse};
88

99
use crate::error::ContractError;
10-
use crate::price_keeper::PriceKeeper;
1110
use crate::state::{TradingPair, Config};
1211

1312
use sylvia::types::{InstantiateCtx, QueryCtx, SudoCtx};
1413
use sylvia::{contract, schemars};
1514

1615
use cw_band::{Input, OracleRequestPacketData};
17-
use mesh_scheduler::{Action, Scheduler};
16+
use mesh_price_feed::{Action, Scheduler, PriceKeeper};
1817
use obi::enc::OBIEncode;
1918

2019
// Version info for migration
@@ -161,3 +160,48 @@ pub fn try_request(deps: DepsMut, env: &Env) -> Result<Response, ContractError>
161160
timeout: IbcTimeout::with_timestamp(env.block.time.plus_seconds(60)),
162161
}))
163162
}
163+
164+
#[cfg(test)]
165+
mod tests {
166+
use cosmwasm_std::{testing::{mock_dependencies, mock_env, mock_info}, Uint64, Uint128};
167+
168+
use super::*;
169+
170+
#[test]
171+
fn instantiation() {
172+
let mut deps = mock_dependencies();
173+
let env = mock_env();
174+
let info = mock_info("sender", &[]);
175+
let contract = RemotePriceFeedContract::new();
176+
177+
let trading_pair = TradingPair {
178+
base_asset: "base".to_string(),
179+
quote_asset: "quote".to_string(),
180+
};
181+
182+
contract
183+
.instantiate(
184+
InstantiateCtx {
185+
deps: deps.as_mut(),
186+
env,
187+
info,
188+
},
189+
trading_pair,
190+
"07-tendermint-0".to_string(),
191+
"connection-0".to_string(),
192+
"channel-0".to_string(),
193+
"transfer".to_string(),
194+
Uint64::new(1),
195+
Uint64::new(10),
196+
Uint64::new(50),
197+
vec![Coin {
198+
denom: "uband".to_string(),
199+
amount: Uint128::new(1),
200+
}],
201+
Uint64::new(100000),
202+
Uint64::new(200000),
203+
1
204+
)
205+
.unwrap();
206+
}
207+
}

contracts/consumer/band-price-feed/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use cw_utils::PaymentError;
33
use mesh_apis::ibc::VersionError;
44
use thiserror::Error;
55

6-
use crate::price_keeper::PriceKeeperError;
6+
use mesh_price_feed::PriceKeeperError;
77

88
/// Never is a placeholder to ensure we don't return any errors
99
#[derive(Error, Debug)]
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pub mod contract;
22
pub mod error;
33
pub mod state;
4-
pub mod price_keeper;
54
pub mod ibc;

contracts/consumer/band-price-feed/src/main.rs

-3
This file was deleted.

contracts/consumer/band-price-feed/src/state.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use cosmwasm_schema::cw_serde;
2-
use cosmwasm_std::{Decimal, IbcEndpoint, Timestamp};
3-
use cosmwasm_std::{Coin, Uint64};
2+
use cosmwasm_std::{Coin, Uint64, IbcEndpoint};
43

54
#[cw_serde]
65
pub struct Config {
@@ -31,9 +30,3 @@ pub struct TradingPair {
3130
pub base_asset: String,
3231
pub quote_asset: String,
3332
}
34-
35-
#[cw_serde]
36-
pub struct PriceInfo {
37-
pub time: Timestamp,
38-
pub native_per_foreign: Decimal,
39-
}

contracts/consumer/osmosis-price-feed/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mt = ["library", "sylvia/mt"]
1919

2020
[dependencies]
2121
mesh-apis = { workspace = true }
22-
mesh-scheduler = { workspace = true }
22+
mesh-price-feed = { workspace = true }
2323

2424
sylvia = { workspace = true }
2525
cosmwasm-schema = { workspace = true }

contracts/consumer/osmosis-price-feed/src/contract.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ use mesh_apis::price_feed_api::{self, PriceFeedApi, PriceResponse};
1010
use crate::error::ContractError;
1111
use crate::ibc::{make_ibc_packet, AUTH_ENDPOINT};
1212
use crate::msg::AuthorizedEndpoint;
13-
use crate::price_keeper::PriceKeeper;
14-
use mesh_scheduler::{Action, Scheduler};
13+
use mesh_price_feed::{Action, Scheduler, PriceKeeper};
1514
use crate::state::TradingPair;
1615

1716
pub const CONTRACT_NAME: &str = env!("CARGO_PKG_NAME");

contracts/consumer/osmosis-price-feed/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use cw_utils::PaymentError;
33
use mesh_apis::ibc::VersionError;
44
use thiserror::Error;
55

6-
use crate::price_keeper::PriceKeeperError;
6+
use mesh_price_feed::PriceKeeperError;
77

88
#[derive(Error, Debug)]
99
pub enum ContractError {

contracts/consumer/osmosis-price-feed/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ pub mod contract;
22
pub mod error;
33
pub mod ibc;
44
pub mod msg;
5-
pub mod price_keeper;
65
pub mod state;

contracts/consumer/osmosis-price-feed/src/price_keeper.rs

-154
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
use cosmwasm_schema::cw_serde;
2-
use cosmwasm_std::{Decimal, Timestamp};
32

43
#[cw_serde]
54
pub struct TradingPair {
65
pub pool_id: u64,
76
pub base_asset: String,
87
pub quote_asset: String,
98
}
10-
11-
#[cw_serde]
12-
pub struct PriceInfo {
13-
pub time: Timestamp,
14-
pub native_per_foreign: Decimal,
15-
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
2-
name = "mesh-scheduler"
2+
name = "mesh-price-feed"
33
version = { workspace = true }
44
edition = { workspace = true }
55
license = { workspace = true }
66

77
[dependencies]
8+
cosmwasm-schema = { workspace = true }
89
cosmwasm-std = { workspace = true }
9-
cw-storage-plus = { workspace = true }
10+
cw-storage-plus = { workspace = true }
11+
thiserror = { workspace = true }

packages/price-feed/src/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mod scheduler;
2+
mod price_keeper;
3+
4+
pub use scheduler::{Action, Scheduler};
5+
pub use price_keeper::{PriceKeeper, PriceKeeperError};

contracts/consumer/band-price-feed/src/price_keeper.rs packages/price-feed/src/price_keeper.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
use cosmwasm_schema::cw_serde;
12
use cosmwasm_std::{Decimal, Deps, DepsMut, Env, Timestamp};
23
use cw_storage_plus::Item;
34

4-
use crate::state::PriceInfo;
5+
#[cw_serde]
6+
pub struct PriceInfo {
7+
pub time: Timestamp,
8+
pub native_per_foreign: Decimal,
9+
}
510

611
/// A component that keeps track of the latest price info.
712
pub struct PriceKeeper {
File renamed without changes.

0 commit comments

Comments
 (0)