Frederik Gartenmeister
Frederik Gartenmeister
Currently the library does not support XCM transfers. The reasons for the missing capabilities is, that it would essentially require a "correct" interaction between relay-chain and parachain. The current approach...
Currently we build the relay-chain block with the inherent like ```rust ParachainsInherentData:: { bitfields: vec![], backed_candidates: vec![], disputes: vec![], parent_header: self.parent_head.clone(), }; ``` Without manually mutating the state of the...
Currently, the `with_state` and `with_mut_state` simply execute the given closure in an externalities provided environment. It would be nice if the buider would pas a `StateUtils` struct to the closure....
For a lot of actions, especially between relay-chain and parachain there is signing involved from the current block authoring entity. E.g. the bitfields must be signed by the authority of...
There already exists a trait `InjectionProvder` that allows to pass on key-value-pairs. Currently, no builder has a method exposed that takes a type that implements this. Methods exposing this should...
Currently, the whole lib is basically unwrapping everywhere most of the time. In the future the lib should define its own error enum that wraps ALL underlying substrate errors into...
The new tranche.rs after the PR of #620 gets merged, contains no tests currently. Each method and the new functions should be unittested. Focus also on testing the reverse lib...
The api should provide the possibilities to call a node to retrieve the latest available nav. We wanna call it `pool_valuation` right now. * The valuation should allow the possibility...
### Which part of the code is the issue addressing? * [x] Addressing a bug ### Description #### Context Usually, when money flows back into a pool, via a deposit,...