Daniel Savu
Daniel Savu
Implements https://github.com/interlay/interbtc/issues/599. The migration still needs to be added, but I'm opening this to get some early feedback.
Hi, I'm trying to query the `minimum_gas_price` configured by the node, as added in https://github.com/cosmos/cosmos-sdk/pull/13485 at `/cosmos/base/node/v1beta1/config`. I noticed the protobuf methods are already in place here: https://github.com/cosmos/cosmos-rust/blob/main/cosmos-sdk-proto/src/prost/cosmos-sdk/cosmos.base.node.v1beta1.tonic.rs However it...
**Is your feature request related to a problem? Please describe.** Due to the `slash` signature in FRAME, the orml-traits `OnSlash` hook is also not allowed to return a `Result`. **Describe...
- Adds an `on_initialize` hook to the `loans` pallet, which accrues interest for any market that was interacted with in the previous block. - To achieve this, a `MarketToReaccrue` storage...
Decorates all functions in the loans pallet with `#[cfg_attr(test, mutate)]`, so `mutagen` can mutate them and check if the unit tests break, "killing" the mutations. Only unit tests are used...
**Describe the bug** Unless `AccountLiquidity` is annotated with the `#[doc(hidden)]` macro, `cargo doc` fails. This may be because of the specific rustc version. **Expected behavior** Try rerunning with a newer...
**Is your feature request related to a problem? Please describe.** Compared to the `JumpModel`, the loans interest rate `CurveModel` has very few tests. **Describe the solution you'd like** Since the...
**Describe the bug** Currently, the reserve cash does not contribute to market liquidity. There is a mismatch between the implementation in the interbtc `loans` pallet and that in Compound v2....
**Is your feature request related to a problem? Please describe.** The compound interest formula uses `saturating_pow`, which can iterate 32 times in the worst case. Lending interest is accrued by...
**Is your feature request related to a problem? Please describe.** The `recover_vault_id` extrinsic [is available](https://github.com/interlay/interbtc/pull/647) for Vaults to recover their ID after being liquidated, but there is no information about...