Goals
Hyperledger Iroha v2 aims to be an even more simple, highly performant distributed ledger platform than Iroha v1. V2 carries on the tradition of putting on emphasis on having a library of pre-defined smart contracts in the core, so that developers do not have to write their own code to perform many tasks related to digital identity and asset management.
Background and strategic fit
Assumptions
- Users will work with provided client libraries (iOS, Android, JS).
- 3f+1 nodes enough to tolerate f Byzantine nodes in the network.
- Iroha uses a simple data model made up of domains, peers, accounts, assets, signatories, and permissions, as shown in the figure below - all other entities are build on top of these set.
Requirements
Functional
Peer to Peer Network
Item | EPIC | Importance | ADR/RFC | Notes |
---|---|---|---|---|
Peer to Peer Network Library | MUST | Networking stack | Plain TCP\IP based protocol with SCALE as de\serialization format. | |
Transactions Time to Live | HI2-38 | MUST | Prevent replay of rejected transactions | |
Multisignature Transactions | HI2-13 | MUST | ||
? | ? | Transaction tags |
Blocks Storage
Item | EPIC | Importance | RFC | Notes |
---|---|---|---|---|
World State View | MUST | In-memory, read fast data representation of the current World's State. | ||
Kura | MUST | Kura is a decorator on top of Disk Block Storage and provides validation and World State View synchronization functionality. | ||
Blocks Synchronization | MUST | Block Synchronization | //TODO Egor Ivkov please add small note about the gossip design and concerns. | |
Merkle Tree | MUST | Merkle Tree |
Consensus
Queries
Item | EPIC | Importance | RFC | Notes |
---|---|---|---|---|
Iroha Queries | HI2-31 | MUST | Iroha Queries provide information about World State View based on client permissions. |
Smart Contracts
Item | EPIC | Importance | RFC | Notes |
---|---|---|---|---|
Iroha Special Instructions mechanism | MUST | |||
Out of the box set of Iroha Special Instructions | MUST | Several Tiers of Iroha Special Instructions provide:
| ||
Permissions | HI2-36 | MUST | Permissions and Event Listeners | Permissions in Iroha implemented based on Assets and Iroha Special Instructions. |
Triggers | HI2-37 | COULD | Permissions and Event Listeners | Triggers in Iroha implemented based on Assets and Iroha Special Instructions. |
Domain Specific Language | COULD | DSL Structure | Custom Iroha Special Instructions and usage of the full set of Iroha Special Instructions should be easy for developers. | |
Advanced Permissions Model | COULD | Expand Iroha Permission model | Full-fledged rights model in Iroha will greatly reduce the amount of server development for Iroha-based applications. |
Modules
Item | EPIC | Importance | ADR/RFC | Notes |
---|---|---|---|---|
Bridge | MUST | Bridges | Mechanism for communication between third-party blockchains. |
Maintenance
Item | EPIC | Importance | RFC | Notes |
---|---|---|---|---|
Maintenance Endpoint | MUST | Maintenance Endpoint |
Clients
Item | EPIC | Importance | ADR/RFC | Notes |
---|---|---|---|---|
Rust Client Library | HI2-32 | MUST | Iroha Client encapsulates network related functionality and provides "local" Rust Interface for:
| |
`no-std` client | MUST | Migration from Strings | ||
Mobile SDK | MUST | |||
Web SDK | MUST | Web API |
Non Functional
Security
- Support configurable crypto algorithms
- Support for server-side HSM integration
- Security and consistency improvements
- Encapsulation of crypto related functionality
- Transport Layer Security Configuration
Target Platforms
Iroha deployment should support GNU/Linux, MacOS and Windows machines with x86 and Arm64 CPUs.
Transactions Processing
Iroha Peer should be able to process 20,000 transactions per second.
Blocks Processing
Iroha should be able to commit a new block every 3 seconds.
Development related
Benchmarks
Maintenance
- Logging - Error rendering macro 'jira' : null
- Service Discovery
Continuous Delivery
- Docker images publish
- Binary and documentation publish
Longevity Stand
Distributed testing
- 10 servers, each on a different machine and in different geographies.
- Run data through them for several minutes to really get some meaningful data.
- Here is what each peer should do:
- sync with peers about latest blocks
- gossip about (forward) transactions that are pending that they have
- propose or vote on a block (as part of consensus)
- ping and verify peers as part of the Hijiri reputation system (basically something like eigentrust++)
- share time information as part of a p2p network time service
User interaction and design
Iroha application crate
. ├── Cargo.toml ├── config.json ├── docs │ └── references └── src ├── account.rs ├── asset.rs ├── block.rs ├── config.rs ├── crypto.rs ├── domain.rs ├── isi.rs ├── kura.rs ├── lib.rs ├── main.rs ├── merkle.rs ├── peer.rs ├── query.rs ├── queue.rs ├── sumeragi.rs ├── torii.rs ├── tx.rs └── wsv.rs
Network crate
. ├── Cargo.toml └── src └── lib.rs
Macroses
. ├── Cargo.toml ├── iroha_derive │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ ├── log.rs │ └── serialize.rs └── src └── lib.rs
Iroha clients
Iroha Rust Client
. ├── benches │ └── torii.rs ├── Cargo.toml ├── config.json ├── src │ ├── client.rs │ └── lib.rs ├── target │ └── criterion └── tests ├── add_asset.rs ├── high_load_transfer.rs └── transfer_asset.rs
Non functional requirements
Questions
Below is a list of questions to be addressed as a result of this requirements document:
Question | Outcome |
---|---|