-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
9 changed files
with
871 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Grant Application Checklist | ||
|
||
- [ ] The [application-template.md](https://github.com/w3f/Open-Grants-Program/blob/master/applications/application-template.md) has been copied, renamed ( "project_name.md") and updated. | ||
- [ ] A BTC or Ethereum address for the payment of the milestones is provided inside the application. | ||
- [ ] A BTC or Ethereum (DAI) address for the payment of the milestones is provided inside the application. | ||
- [ ] The software of the project will be released under the Apache license version 2.0 as specified in the [terms and conditions](https://gist.github.com/Noc2/75bc58e8ce9b5d419ff883b0cf2b8c19). | ||
- [ ] The total funding amount of the project is below USD $30k for initial grant applications and $100k for follow-up grants at the time of submission. | ||
- [ ] The total funding amount of the project is below USD $30k for initial grant applications and $100k for follow-up grants. | ||
- [ ] The initial PR contains only one commit (squash if needed before submitting your PR). | ||
- [ ] The grant will only be announced once we successfully [delivered](https://github.com/w3f/Grant-Milestone-Delivery) the first milestone. | ||
- [ ] The grant will only be announced once we've successfully [delivered](https://github.com/w3f/Grant-Milestone-Delivery) the first milestone. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
# Open Grant Proposal | ||
|
||
* **Project Name:** Starry Protocol | ||
* **Proposer:** [Starry Network](https://github.com/Starry-Network) | ||
* **Payment Address:** 0xe29DE8c6088d241647e6456F8b4755a3D0f7c8B1 | ||
|
||
## Project Overview :page_facing_up: | ||
### Overview | ||
|
||
It is well known that most NFTs are traded either directly or by auction, and the single NFT limit the flexibility of NFTs in some ways. | ||
|
||
Splittable NFT will bring liquidity, lower barriers to entry and more possibilities to NFT ecosystem. For example, buying SubNFTs on bonding curve will allow for better pricing of works, while NFTs that are otherwise very expensive can be collected by more people, it is also possible to purchase a group of NFT tokens and contribute to the management of this group of NFTs. | ||
|
||
Starry provides some solutions for splittable NFTs, such as: splitting Single NFT into some SubNFTs, splitting Single NFT into some fungible tokens, and splitting a group of NFTs into some fungible tokens and managing them using dao. | ||
|
||
### Project Details | ||
The Starry Protocol contains four parts: Pallet_NFT, Pallet_SubNFT, Pallet_EX, Frontend | ||
|
||
#### Architecture | ||
|
||
|
||
|
||
![](https://github.com/Starry-Network/frontend_mvp/raw/main/public/images/architecture.png) | ||
|
||
|
||
|
||
![](https://github.com/Starry-Network/frontend_mvp/raw/main/public/images/nft_dao.png) | ||
|
||
**Pallet_SubNFT** | ||
|
||
An NFT Wrapper to split NFTs into SubNFTs or fungible tokens, or a set of NFTs into fungible tokens( without DAO). Here is [demo page](https://friendly-mclean-d455eb.netlify.app/#/splitNFT). | ||
|
||
**Pallet_NFTDAO** | ||
|
||
Split a set of NFTs into fungible tokens and manage the NFTs in a DAO way, such as adding more NFTs or selling NFTs. Here is [demo page](https://friendly-mclean-d455eb.netlify.app/#/dao/0). | ||
|
||
**Pallet_EX** | ||
|
||
exchange NFT (including buying SubNFTs with bonding curve/one price) and send royalties generated by each transaction to the creator. Here is [demo page](https://friendly-mclean-d455eb.netlify.app/#/nft/1). | ||
|
||
**FrontEnd** | ||
|
||
Interaction with users. Here is a [demo](https://friendly-mclean-d455eb.netlify.app/#/) | ||
|
||
## Team :busts_in_silhouette: | ||
|
||
### Team members | ||
* Poria - Full-stack Developer | ||
|
||
### Contact | ||
* **Contact Name:** Poria Cattus | ||
* **Contact Email:** fulingcat@gmail.com | ||
* Starry.network (WIP) | ||
|
||
### Legal Structure | ||
* No Legal Entity | ||
|
||
### Team's experience | ||
**Poria** | ||
|
||
- Full-stack Developer | ||
- Expertise in using JS, PHP, Python, Rust | ||
- Have written blockchain with DAG structure in JS | ||
|
||
### Team Code Repos | ||
* https://github.com/Starry-Network | ||
* https://github.com/Starry-Network/frontend_mvp | ||
|
||
## Development Roadmap :nut_and_bolt: | ||
|
||
### Overview | ||
* **Total Estimated Duration:** 2.5 months | ||
* **Full-time equivalent (FTE):** 1 | ||
* **Total Costs:** 10000 DAI | ||
|
||
### Milestone 1 Example — Implement Substrate Modules | ||
* **Estimated Duration:** 2.5 months | ||
* **FTE:** 1 | ||
* **Costs:** 10000 DAI | ||
|
||
| Number | Deliverable | Specification | | ||
| ------------- | ------------- | ------------- | | ||
| 0a. | License | Apache License 2.0 | | ||
| 0b. | Documentation | Documents containing the description of whole architecture design for Starry | | ||
| 0c. | Testing Guide | Provide a full test suite and guide for NFT. The code will have unit-test coverage (min. 70%) to ensure functionality and robustness. | | ||
| 0d. | Article/Tutorial | Write an article or tutorial that explains the work done as part of the grant on medium. | | ||
| 1a. | Node Repo | Complete the deployment of the basic public chain | | ||
| 2a. | Pallet_SubNFT | Complete the development of pallet_subNFT, relize the split, transfer, burn and recover mechanism| | ||
| 2b. | Pallet_NFTDAO | Complete the development of Pallet_NFTDAO, relize the split NFTs, and dao mechanism| | ||
| 2c. | Pallet_EX | Complete the development of pallet_ex, relize the bonding curve and one price mechanism| | ||
| 3. | Front End | Complete the development of the basic interactive page in React, the demo is [demo](https://friendly-mclean-d455eb.netlify.app/#/) | | ||
| 5. | Docker | We will provide a dockerfile to demonstrate the full functionality of our chain | | ||
| 6. | PSP | Add a Polkadot Standards Proposal about Splittable NFT | | ||
|
||
|
||
## Future Plans | ||
- Implementing auction functions (English auction, Dutch auction). | ||
- Adding auctions to NFT DAO. | ||
- Add comments, favorites and data analysis to Starry to improve the Starry ecosystem. | ||
- Simplify the usage process and make NFT more friendly to newcomers. | ||
- Implementing cross-chain transmission NFT. | ||
- Lead the community to hold online exhibitions and comment on good NFT works, using tokens to promote these beneficial behaviors. | ||
|
||
## Additional Information :heavy_plus_sign: | ||
|
||
- What is the difference between SubNFT and Erc-1155? | ||
|
||
erc-1155's multiple NFT is Semi-fungible tokens, these tokens use same token_id. | ||
|
||
SubNFT splits single NFT into different NFTs, each SubNFT has its own token_id. As a result, subNFT is even rarer and suitable as a collector's item. | ||
|
||
For example, we can use Semi-fungible tokens to create general admission tickets for a concert, and then use SubNFT to create commemorative tickets. | ||
|
||
- What is the difference between SubNFT and Erc-721? | ||
|
||
subNFT is also erc-721 token | ||
|
||
- Perhaps you may be confused with how nft dao works, here is an example to explain it: | ||
|
||
Alice created the token named DOGE with a set of NFTs related to the Doge meme, but she did not want to manage this set of NFTs herself, so Alice created the Doge NFTS DAO. | ||
|
||
Bob was very happy with Doge and created NFT related to Doge, at this time he saw Doge NFTS DAO, so he thought it would be a great thing to put his work into this DAO, so he launched a proposal with this NFT and hoped to get 2000 DOGE in return. | ||
|
||
Charlie likes Doge-related NFTs and holds many DOGE. One day, Charlie saw an NFT that he thought would be helpful for the appreciation of DOGE, so he bought it on Starry and then initiated a proposal in DAO to add the NFT and hoped to get 1500 DOGE to make up for the loss (of course he could have done without the 1500 DOGE). | ||
|
||
Dave was an active participant in the Doge NFTS DAO and when he looked at the proposals he saw Bob and Charlie's proposals and thought they were great proposals, so Dave used a certain DOGE to agree to both proposals. | ||
|
||
Since most people agreed with Bob and Charlie's proposal, the proposed NFTs were added to the NFTs managed by the DAO and the corresponding DOGEs were minted for Bob and Charlie. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.