Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TCDT Milestone 2 #1242

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions deliveries/tcdt-milestone-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Milestone Delivery :mailbox:


**The delivery is according to the official [milestone delivery guidelines](https://github.com/w3f/Grants-Program/blob/master/docs/Support%20Docs/milestone-deliverables-guidelines.md).**

* **Application Document:** tcdt
* **Milestone Number:** 1

**Context** (optional)
This milestone delivers the initial functionality of the proposed blockchain DNS architecture in the form of two pallets, each used for different parts of the architecture.

**Deliverables**
> Please provide a list of all deliverables of the milestone extracted from the initial application and a link to the deliverable itself. Ideally all links inside the below table should include a commit hash, which will be used for testing. If you don't provide a commit hash, we will work off the default branch of your repository. Thus, if you plan on continuing work after delivery, we suggest you create a separate branch for either the delivery or your continuing work.
>
> If there is anything particular about any of the deliverables we or a future reader should know, use the respective `Notes` column.

| Number | Deliverable | Link | Notes |
| ------------- | ------------- | ------------- |------------- |
| 0a. | License | Apache 2.0 | |
| 0b. | Documentation | [Link](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/rootdns/src/lib.rs), [Link](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/tld/src/lib.rs) | The documentation is provided at the beginning of each pallet along with inline comments throughout. |
| 0c. | Testing and Testing Guide | [Tests](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/rootdns/src/tests.rs), [Tests](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/tld/src/tests.rs) | The pallets can also be tested by running the node and interacting with them through the [polkadot explorer](https://polkadot.js.org/apps/#/explorer) |
| 0d. | Docker | [Link](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/Dockerfile) | |
| 1. | pallet-root-dns | [Link](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/rootdns/src/lib.rs) | |
| 2. | pallet-tld | [Link](https://github.com/tcdt-lab/bcdns/blob/master/polkadot-sdk-solochain-template/pallets/tld/src/lib.rs) | |

**Additional Information**
27 changes: 27 additions & 0 deletions deliveries/tcdt-milestone-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Milestone Delivery :mailbox:

**The delivery is according to the official [milestone delivery guidelines](https://github.com/w3f/Grants-Program/blob/master/docs/Support%20Docs/milestone-deliverables-guidelines.md).**

* **Application Document:** tcdt
* **Milestone Number:** 2

**Context**

This milestone defines the protocols that must be adhered to by clients for various types of interactions with the architecture. The milestone also deelivers packages for interacting with the architecture along with sample clients implemented on top of them.

**Deliverables**

| Number | Deliverable | Link | Notes |
| ------------- | ------------- | ------------- |------------- |
| 0a. | License | Apache 2.0 | |
| 0b. | Documentation | [NodeJS Client](https://github.com/tcdt-lab/bcdns/blob/master/dns_client/README.md), [Golang Client](https://github.com/tcdt-lab/bcdns/blob/master/dns_client_golang/README.md), [Overview](https://github.com/tcdt-lab/bcdns/blob/master/README.md#enabling-blockchain-interoperability-through-discovery) | |
| 0c. | Testing and Testing Guide | | The clients should be tested by interacting with a live node and setting up the chain specifications stored such that they point to the node itself to simulate the layered architecture. |
| 0d. | Docker | | Since the clients are used for one-time run commands such as resolving a domain, they should be compiled and ran without docker. |
| 1. | Domain Resolution Protocol | [Link](https://github.com/tcdt-lab/bcdns/blob/master/README.md#domain-resolution-protocol) | |
| 2. | Domain Registration Protocol | [Link](https://github.com/tcdt-lab/bcdns/blob/master/README.md#domain-registration-protocol) | |
| 3. | Domain Revocation Protocol | [Link](https://github.com/tcdt-lab/bcdns/blob/master/README.md#domain-revocation-protocol) | |
| 4. | Domain Transfer Protocol | [Link](https://github.com/tcdt-lab/bcdns/blob/master/README.md#domain-transfer-protocol) | |
| 5. | bcdns-adapter-node | [Link](https://github.com/tcdt-lab/bcdns/blob/master/dns_client) | |
| 6. | bcdns-adapter-golang | [Link](https://github.com/tcdt-lab/bcdns/blob/master/dns_client_golang) | |

**Additional Information**
Loading