Skip to content
Snippets Groups Projects
Unverified Commit f7412bcf authored by Xiliang Chen's avatar Xiliang Chen Committed by GitHub
Browse files

update readme (#144)

* update readme

* updater eadme
parent 355cd0aa
No related branches found
No related tags found
No related merge requests found
...@@ -3,22 +3,26 @@ The Open Runtime Module Library (ORML) is a community maintained collection of S ...@@ -3,22 +3,26 @@ The Open Runtime Module Library (ORML) is a community maintained collection of S
## Runtime Modules Overview ## Runtime Modules Overview
- orml-traits - [orml-traits](./traits)
- Shared traits including `BasicCurrency`, `MultiCurrency`, `Auction` and more. - Shared traits including `BasicCurrency`, `MultiCurrency`, `Auction` and more.
- orml-utilities - [orml-utilities](./utilities)
- Various utilities including `FixedU128` and `LinkedList`. - Various utilities including `FixedU128` and `LinkedList`.
- orml-tokens - [orml-tokens](./tokens)
- Fungible tokens module that implements `MultiCurrency` trait. - Fungible tokens module that implements `MultiCurrency` trait.
- orml-currencies - [orml-currencies](./currencies)
- Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module. - Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module.
- orml-oracle - [orml-oracle](./oracle)
- Oracle module that makes off-chain data available on-chain. - Oracle module that makes off-chain data available on-chain.
- orml-prices - [orml-prices](./prices)
- Provide basic asset price abstraction. - Provide basic asset price abstraction.
- orml-auction - [orml-auction](./auction)
- Auction module that implements `Auction` trait. - Auction module that implements `Auction` trait.
- orml-vesting - [orml-vesting](./vesting)
- Provides scheduled balance locking mechanism, in a *graded vesting* way. - Provides scheduled balance locking mechanism, in a *graded vesting* way.
- [orml-gradually-update](./gradually-update)
- Provides why to adjuest numeric parameter gradually over a period of time.
- [orml-schedule-update](./schedule-update)
- Provides way to schedule a call to be dispatched at later block.
## Installation ## Installation
......
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
### Overview ### Overview
Schedule-update module provides a way to allow an update to be dispatched at later block. This is Useful for council to dispatch a delayed update so other have time to review and learn the change. Council also have chance to cancel the update if any issues were found. Schedule-update module provides a way to allow an update to be dispatched at later block. This is useful for council to dispatch a delayed update so other have time to review and learn the change. Council also have chance to cancel the update if any issues were found.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment