mars-params 1.0.7

Contract storing the asset params for Credit Manager and Red Bank.
Documentation
1
2
3
4
5
6
7
8
9
10
use cosmwasm_schema::write_api;
use mars_params::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};

fn main() {
    write_api! {
        instantiate: InstantiateMsg,
        execute: ExecuteMsg,
        query: QueryMsg,
    }
}