Skip to content

Commit a2267c2

Browse files
committed
docs: ✏️ Updated protocol docs
1 parent e27a402 commit a2267c2

File tree

1 file changed

+27
-78
lines changed

1 file changed

+27
-78
lines changed

docs/protocol.md

+27-78
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
# The WindingTree Market Protocol
22

3-
The WindingTree market protocol revolutionizes the travel industry by eliminating intermediaries and fostering direct coordination between service providers and consumers.
3+
The WindingTree market protocol aims to revolutionize the travel industry by eliminating intermediaries, fostering direct coordination between service providers and consumers. This decentralized platform, powered by blockchain technology, creates a transparent and secure marketplace. It seamlessly connects travelers with suppliers such as airlines, hotels, and tour operators, reducing the need for online travel agencies (OTAs).
44

5-
Powered by blockchain technology, this decentralized platform creates a transparent and secure marketplace, seamlessly connecting travelers with suppliers like airlines, hotels, and tour operators, without the need for online travel agencies (OTAs).
6-
7-
The protocol offers dual benefits: cost reduction for consumers and increased profits for suppliers. With access to a broader customer base and better control over pricing and offerings, suppliers thrive, while consumers enjoy improved coordination and reliability, minimizing risks like overbooking and enhancing their overall travel experience.
5+
The protocol offers dual benefits: cost reduction for consumers and increased profits for suppliers. With access to a broader customer base and better control over pricing and offerings, suppliers can thrive. Simultaneously, consumers enjoy improved coordination and reliability, minimizing risks like overbooking and enhancing their overall travel experience.
86

97
Embrace the WindingTree market protocol to transform how travel arrangements are planned and booked, delivering a more efficient and rewarding experience for everyone involved.
108

119
## Overview
1210

13-
### The protocol structure
11+
### The Protocol Structure
1412

1513
```mermaid
1614
flowchart TB
17-
dao[DAO]
18-
server([Coordination<br>server<br>pub/sub])
15+
server([Coordination<br>Server<br>pub/sub])
1916
2017
subgraph buyers [Buyers]
2118
buyer[- Buyer Dapp #1<br>- Buyer Dapp #2<br>- Buyer Dapp #n]
@@ -25,109 +22,61 @@ subgraph nodes [Suppliers]
2522
node[- Node #1<br>- Node #2<br>- Node #n]
2623
end
2724
28-
bridgeIn[Stablecoins<br>bridge<br>L1/L2]
29-
30-
subgraph l3 [L3]
31-
bridgeOut[Stablecoins<br>bridge<br>L3]
32-
contract[Smart contract:<br>- Supplier's registry<br>- Deals registry<br>- Deals funds<br>- LIF deposits]
25+
subgraph blockchain [Blockchain]
26+
stablecoins[Stablecoins]
27+
contract[<b>Smart Contract</b>:<br>- Supplier's Registry<br>- Deals Registry<br>- Deals Funds<br>- LIF Deposits]
28+
dao[DAO]
3329
end
3430
35-
bridgeIn <--> bridgeOut
36-
3731
buyers -- requests --> server
3832
server -. offer .-> buyers
3933
server -. requests .-> nodes
4034
nodes -- offers --> server
4135
42-
buyers --->|stablecoins|bridgeIn
36+
buyers --->|Approves\npayment|stablecoins
37+
contract <-. Charges\npayment .->stablecoins
4338
44-
nodes --->|provide<br>LIF deposit|contract
39+
nodes --->|provide<br>LIF Deposit|contract
4540
buyers -->|make<br>deals|contract
4641
nodes -->|claim<br>deals|contract
4742
48-
server -. manages .- dao
49-
l3 -. manages .- dao
50-
contract -. LIF fee .- dao
43+
server <-. manages .-> dao
44+
contract <-. manages .-> dao
45+
contract <-. LIF Fee .-> dao
5146
```
5247

53-
The diagram illustrates the architecture of the WindingTree Market Protocol ecosystem:
48+
This diagram illustrates the architecture of the WindingTree Market Protocol ecosystem, highlighting the roles of the DAO (Decentralized Autonomous Organization), Coordination Server, and blockchain in governance, request-offer coordination, and financial transactions, respectively.
5449

55-
- The DAO (Decentralized Autonomous Organization) manages the ecosystem's governance.
56-
- Buyers interact with the Coordination Server (pub/sub) to send requests and receive offers.
57-
- Suppliers (Nodes) respond to requests from the Coordination Server by making offers.
58-
- The Stablecoins bridge facilitates transferring Stablecoins between Layer 1 (L1) and Layer 2 (L2) of the blockchain.
59-
- The L3 layer contains Smart Contracts for Supplier's Registry, Deals Registry, Deals Funds management, and LIF (protocol token) deposits.
60-
- Suppliers provide LIF deposits to the Smart Contract, and Buyers can make deals with Suppliers through the same Smart Contract.
61-
- Nodes (Suppliers) claim deals from the Smart Contract after they are finalized.
50+
## Scalability
6251

63-
The DAO manages the Coordination Server, L3 layer, and LIF fees associated with the protocol.
52+
The scalability cornerstone within the protocol for deals and financial management is a customizable and trustless EVM-compatible blockchain, referred to as the L3 network. Planned for the later stages of protocol evolution, this innovative solution is expected to deliver a performance increase of 10-100X compared to existing solutions. The LIF token will serve as the native token in this network, leveraging its full potential and expanding the range of use cases.
6453

65-
## L3 Network
54+
For both network customers and developers, interacting with the L3 network will be seamless, akin to working with Layer 1 (L1). The protocol SDK will equip developers with all necessary tools and interfaces, ensuring a smooth and familiar experience.
6655

67-
The cornerstone of scalability for deals and financial management within the protocol is a customizable and trustless EVM-compatible blockchain, referred to as the L3 network. This innovative solution is expected to deliver a performance increase of 10-100X compared to known Layer 2 (L2) solutions. To leverage the full potential and expand the range of use cases, the LIF token will serve as the native token in this network.
68-
69-
For both network customers and developers, interacting with the L3 network will be seamless, akin to working with Layer 1 (L1) or Layer 2 (L2). The protocol SDK will equip developers with all the necessary tools and interfaces, ensuring a smooth and familiar developer experience.
70-
71-
> **Note**: Currently, the protocol SDK does not offer any specific functionality dedicated to L3-related interactions. During this stage of development, our focus has been on implementing and refining the general protocol features. However, we are actively working on incorporating L3-related features, and they are scheduled for release later this year.
56+
> **Note**: Currently, the protocol SDK does not offer any specific functionality dedicated to L3-related interactions. Our focus at this stage of development has been on implementing and refining general protocol features. However, we are actively working on incorporating L3-related features, scheduled for release later.
7257
7358
## Coordination Server
7459

75-
The Coordination Server is a centralized pubsub server dedicated to dynamic coordination between buyers and suppliers. This server is built on top of the [`libp2p`](https://github.com/libp2p/js-libp2p) library and implements a fast and secure peer-to-peer messaging protocol.
76-
77-
Using this server, buyers can broadcast requests, and suppliers can catch these requests based on contextual subscriptions. In response to these requests, suppliers generate deal offers and transfer them back to buyers. Communication through the coordination server is fast and can be scalable in various ways.
78-
79-
The format of messages is standardized by the protocol but easily extendable with the help of SDK.
60+
The Coordination Server, a centralized pubsub server built atop the [`libp2p`](https://github.com/libp2p/js-libp2p) library, is dedicated to dynamic coordination between buyers and suppliers. It implements a fast and secure peer-to-peer messaging protocol, allowing buyers to broadcast requests and suppliers to respond with offers based on contextual subscriptions.
8061

8162
## Clients
8263

83-
The protocol `clients` refer to the clients of the coordination server, equipped with all the necessary tools for creating, validating, and publishing requests, as well as catching incoming offers. These clients offer a user-friendly interface and essential functionalities for smooth communication within the protocol ecosystem.
64+
Protocol `clients` refer to the coordination server's clients, equipped with all necessary tools for creating, validating, and publishing requests, as well as catching incoming offers. These clients offer a user-friendly interface and essential functionalities for smooth communication within the protocol ecosystem.
8465

85-
Clients can be started in various environments, including web browsers, electron.js for mobile applications, and node.js for server-side applications. This flexibility enables users to access the protocol's features through different platforms, making it more accessible and convenient.
66+
Clients can operate in various environments, including web browsers, electron.js for mobile applications, and node.js for server-side applications. This flexibility ensures the protocol's accessibility and convenience across different platforms.
8667

8768
## Supplier Nodes
8869

89-
Supplier nodes are advanced versions of the `clients` that connect to the coordination server and cater to specific supplier use cases. These nodes possess additional features and functionalities, enabling them to effectively participate in the protocol ecosystem.
90-
91-
Supplier nodes have the capability to catch incoming requests from buyers through the coordination server. They can then generate signed and verifiable offers in response to these requests. This ensures a secure and reliable exchange of offers between suppliers and buyers.
92-
93-
In addition to their coordination capabilities, supplier nodes are equipped with tools that enable them to connect to external resources such as databases or content provider APIs. This connectivity enhances their ability to access and utilize external data and services, further enriching their offerings to buyers.
94-
95-
Supplier nodes play a vital role in expanding the protocol's reach and enabling a diverse range of suppliers to participate seamlessly in the decentralized marketplace.
70+
Supplier nodes are advanced versions of the `clients` that cater to specific supplier use cases. They possess additional features and functionalities, enabling them to effectively participate in the protocol ecosystem. These nodes have the capability to catch incoming requests from buyers and generate signed and verifiable offers in response. Additionally, they can connect to external resources, enhancing their offerings to buyers.
9671

9772
## Smart Contracts
9873

99-
Smart contracts form a decentralized component of the protocol and play a crucial role in finalizing deals and managing funds in a trustless manner. These contracts comprise several main modules, each serving a specific function within the protocol ecosystem:
100-
101-
- `Protocol Configuration`: This module handles the configuration and settings of the entire protocol, ensuring its smooth operation.
102-
103-
- `Suppliers Registry`: The suppliers registry module maintains a record of registered suppliers (entities) within the protocol and manages the state of records.
104-
105-
- `Deals Registry`: The deals registry module serves as a ledger for all finalized deals, ensuring transparency and accountability in deal management.
106-
107-
- `LIF Deposits Management`: The LIF deposits management module oversees the management of LIF token deposits, supporting the protocol's native token.
108-
109-
- `Protocol Tokenomics`: This module encompasses the tokenomics of the protocol, ensuring a well-balanced and sustainable economic model.
110-
111-
When a client receives an offer from a supplier to make a deal, it must initiate a transaction to the smart contract, providing the `offer` as an argument. The contract's logic validates the `offer` and implements its conditions in the deal, ensuring a fair and enforceable agreement.
112-
113-
The use of smart contracts enhances the security and trustworthiness of deal finalization, as all interactions are executed according to predefined and transparent rules established within the contract's logic.
74+
Smart contracts play a crucial role in finalizing deals and managing funds in a trustless manner. They comprise several main modules, each serving a specific function within the protocol ecosystem, including protocol configuration, suppliers registry, deals registry, LIF deposits management, and protocol tokenomics. These contracts ensure a fair and enforceable agreement between parties.
11475

11576
## DAO (Decentralized Autonomous Organization)
11677

117-
The WindingTree Market Protocol DAO serves as the authoritative holder and manager of the protocol's rules, tools, and services. The DAO plays a pivotal role in overseeing various aspects of the protocol's operation and development:
118-
119-
1. **Participation in the Protocol L3 Network:** The DAO actively participates in the protocol's L3 network as a validator and collects fees from transactions (gas fees) to support the network's operations.
120-
121-
2. **Ownership and Management of Smart Contracts:** The DAO owns and manages the smart contract that governs the protocol. It has the authority to adjust parameters, approve upgrades, and perform other essential functions to ensure the smart contract's efficient operation.
122-
123-
3. **Management of Protocol URIs:** The DAO is responsible for managing the protocol's Uniform Resource Identifiers (URIs), including those of the coordination server, bridges, and other critical components, via the smart contract.
124-
125-
4. **Collection of Protocol Fees:** The DAO collects fees from suppliers who participate in the protocol, contributing to the sustainability and growth of the ecosystem.
126-
127-
5. **Approval of Protocol Changes:** The DAO plays a key role in the governance of the protocol by approving or rejecting proposed changes through a voting process. This ensures that any modifications to the protocol align with the community's consensus.
128-
129-
6. **Investment in Protocol Infrastructure:** The DAO invests its treasury funds strategically in projects and tools that enhance the protocol's infrastructure and capabilities.
78+
The WindingTree Market Protocol DAO oversees the protocol's rules, tools, and services, playing a pivotal role in its operation and development. It participates in the L3 network as a validator, manages smart contracts, collects protocol fees, and invests in infrastructure projects
13079

131-
By functioning as a decentralized governing entity, the DAO ensures a transparent, community-driven approach to the management and development of the WindingTree Market Protocol, promoting long-term sustainability and alignment with the interests of its stakeholders.
80+
. This decentralized governing entity promotes long-term sustainability and alignment with stakeholders' interests.
13281

133-
> **Note**: The WindingTree Market Protocol DAO is not yet implemented. Its role and functionality are currently under active discussions, and the DAO implementation is planned for one of a future releases.
82+
> **Note**: The implementation of the WindingTree Market Protocol DAO is under active discussion and planned for a future release.

0 commit comments

Comments
 (0)