open-runtime-module-library icon indicating copy to clipboard operation
open-runtime-module-library copied to clipboard

Substrate Open Runtime Module Library

Results 74 open-runtime-module-library issues
Sort by recently updated
recently updated
newest added

The latest Polkadot release ([v0.9.42](https://github.com/paritytech/polkadot/releases/tag/v0.9.42)) added two new traits to the `Fungibles` family: *hold* and *freeze* (which has been added in https://github.com/paritytech/substrate/pull/12951). It would be very helpful if the tokens...

Hey there, First off, a big shout-out and thank you to all the amazing folks behind this repository! You've been doing some fantastic work, and I've been a fan since...

- [ ] pre update hook to validate parameters - [ ] post update hook to notify changes - [ ] migration helpers

I'm not sure if this has been considered before, but we are working on adding ERC20 precompiles [here](https://github.com/interlay/interbtc/pull/1181) and we need some way to approve the spending of funds. Substrate...

Current xtokens uses v1.0.0 deps but it has errors due to using old types inside the code.

Hi, As a user of `orml_oracle`, we've found some limitations regarding the `on_new_data()` callback when the oracle is fed: 1. `on_new_data()` should return a `DispatchResult`. A user could want to...

Is there a plan to implement XCMv3 remote locks in orml_xtokens for a simple abstraction? https://substrate.stackexchange.com/questions/9214/how-does-xcm-remote-locking-work Would be great to have this, but I am too lazy to do it...

`deposit` method of `orml-currencies` is not working in benchmarks ```rust pub fn create_funded_user( seed: &'static str, n: u32, balance_factor: u32, ) -> T::AccountId { let user = account(seed, n, 0);...

Hi! Both `orml_oracle` and `orml_traits` define the same `TimestampedValue` struct. This is not an issue at all. Nevertheless, `orml_oracle` is using its own `TimestampedValue` as a requirement in `CombineData` and...