@@ -7,14 +7,13 @@ use cw_utils::nonpayable;
7
7
use mesh_apis:: price_feed_api:: { PriceFeedApi , PriceResponse } ;
8
8
9
9
use crate :: error:: ContractError ;
10
- use crate :: price_keeper:: PriceKeeper ;
11
10
use crate :: state:: { TradingPair , Config } ;
12
11
13
12
use sylvia:: types:: { InstantiateCtx , QueryCtx , SudoCtx } ;
14
13
use sylvia:: { contract, schemars} ;
15
14
16
15
use cw_band:: { Input , OracleRequestPacketData } ;
17
- use mesh_scheduler :: { Action , Scheduler } ;
16
+ use mesh_price_feed :: { Action , Scheduler , PriceKeeper } ;
18
17
use obi:: enc:: OBIEncode ;
19
18
20
19
// Version info for migration
@@ -161,3 +160,48 @@ pub fn try_request(deps: DepsMut, env: &Env) -> Result<Response, ContractError>
161
160
timeout : IbcTimeout :: with_timestamp ( env. block . time . plus_seconds ( 60 ) ) ,
162
161
} ) )
163
162
}
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
+ }
0 commit comments