fixup
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 33s Details

This commit is contained in:
Ladd Hoffman 2024-05-16 21:37:52 -05:00
parent d45f46843e
commit 9dde941574
3 changed files with 7 additions and 7 deletions

View File

@ -198,4 +198,4 @@ The Rollup contract can be thought of as a specialized form of Work Contract (WS
1. The DAO members should stake against the VP, in order to punish the batch worker for failing to complete their work
In this requirements section, we omit any details of the mechanisms for implementing the necessary off-chain validation that leads to the production and verification of the Rollup Post. We will provide those details in the [System Design](./system-design.md) section.
In this requirements section, we omit any details of the mechanisms for implementing the necessary off-chain validation that leads to the production and verification of the Rollup Post. We will provide those details in the [System Design](./system-design) section.

View File

@ -33,7 +33,7 @@ Topics
## Contracts
In the [Requirements](./requirements.md) section, we identified the following smart contracts:
In the [Requirements](../requirements.md) section, we identified the following smart contracts:
1. Reputation
1. Bench
@ -53,11 +53,11 @@ Rather than submit every Post on-chain and conduct every Validation Pool on-chai
With this Rollup Post, we have the opportunity to attribute credit to multiple authors, with a weight assigned to each author. We can express this weight as Parts Per Million (PPM), for a balance between numerical precision, and ease of visual recognition.
The Rollup Post can weight authorship in accordance with the off-chain Validation Pools that have taken place. The off-chain system can fully model the Forum and Bench outlined in the [Requirements](./requirements.md) section. For demonstration purposes, our prototype makes some simplifying assumptions. Work Evidence Posts (WEV) are assumed to contain no references to prior Posts. In reality, we want WEV to be able to reference prior Posts, such as those representing policies of the DAO, prior work by other DAO members, prior art outside the DAO, and so on. So, a proper implementation of this system should account for these references, just as the Forum contract must.
The Rollup Post can weight authorship in accordance with the off-chain Validation Pools that have taken place. The off-chain system can fully model the Forum and Bench outlined in the [Requirements](../requirements.md) section. For demonstration purposes, our prototype makes some simplifying assumptions. Work Evidence Posts (WEV) are assumed to contain no references to prior Posts. In reality, we want WEV to be able to reference prior Posts, such as those representing policies of the DAO, prior work by other DAO members, prior art outside the DAO, and so on. So, a proper implementation of this system should account for these references, just as the Forum contract must.
## Matrix
To address the need for coordination of off-chain Posts and Validation Pools, we introduce Matrix. [Matrix](matrix.org) is a messaging protocol, and it has multiple implementations. Our prototype uses Synapse as the Homeserver. Our system communicates with the Homeserver using the Client-Server protocol.
To address the need for coordination of off-chain Posts and Validation Pools, we introduce Matrix. [Matrix](https://matrix.org) is a messaging protocol, and it has multiple implementations. Our prototype uses Synapse as the Homeserver. Our system communicates with the Homeserver using the Client-Server protocol.
## Element-web Widget

View File

@ -19,12 +19,12 @@ nav:
- Terminology: terminology.md
- Requirements: requirements.md
- System Design:
- Overview: system-design/system-design.md
- Overview: system-design/index.md
- Contracts:
- Reputation: system-design/contracts/reputation.md
- Bench: system-design/contracts/bench.md
- Work: system-design/contracts/work.md
- Proposal: system-design/contracts/proposal.md
- Forum: system-design/contracts/Forum.md
- Forum: system-design/contracts/forum.md
- Rollup: system-design/contracts/rollup.md
- Implementation: system-design/implementation.md
- Implementation: implementation.md