iroha
iroha copied to clipboard
Iroha - A simple, enterprise-grade decentralized ledger
Unfortunately, floating point types are non-robust in Rust. This means they should be serialized into a robust type when being sent over FFI
### Feature request This structure in `telemetry/src/config.rs`: ```rs pub struct Configuration { /// The node's name to be seen on the telemetry #[config(serde_as_str)] pub name: Option, /// The url of...
Right now `Account` stores permission tokens and roles. Roles are stored as ids, their permission tokens aren't stored at `Account`, instead they are stored in `WorldStateView`. The problem is that...
### Feature request We might consider expanding the scope of `IntoSchema` to parse `Struct`-like variants, instead of referring the users to a non-existent style guide. ### Motivation In most cases...
Right now the documentation is only generated for configuration parameters, and done very inefficiently. It's possible to generate the docs as we do right now using `cargo doc` which would...
Signed-off-by: Aleksandr Petrosyan ### Description of the Change Add changelog
# Overview The current implementation of `Encode`-able and `Decode`-able structures, namely `Instruction`, `Query`, `EventFilter` implementations suffer from having many associated boxed types like `RegisterBox`, `IdentifiableBox` etc. These pollute the code...
The block header value intentionally omits the `view_change_proofs` from the `BlockHeader` defined in `iroha_core::block`. We should add that information back in.
What assumptions should we make about the storage medium Kura uses? Is it reliable, is it always online? These are important questions that impact the design of kura and by...