Navigation

    ChainIDE

    ChainIDE 官方论坛/ChainIDE Official Forum

    • Register
    • Login
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. 子小艺
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 27
    • Posts 27
    • Best 0
    • Groups 1

    Posts made by 子小艺

    • ChainIDE#37 Stateless Rollup

      e1601730-d86d-450c-866f-034370667b2f-image.png

      Full node validates blocks by downloading all transactions and re-executing them to check their validity, and not surprisingly, larger blocks impose a greater burden on the full node because more hardware is required to process and validate each block. Techniques such as fraud and proof of validity allow nodes to check validity without having to re-execute each transaction. Data availability sampling technology enables nodes to verify data availability while downloading only a small portion of each block.

      Statelessness is a feature where the whole node validates blocks without storing state (this is called Statelessness). There are two main types of statelessness:

      1. Strong statelessness: No node is required to store state.

      2. Weak statelessness: Only the block producer is required to store state.

      To verify the validity of a block, the full node starts with a pre-state root, which is the root of the state tree after the previous block has been attached to the chain. The transaction is then re-executed, generating a new state root (called post State root). The computed POST State root is then verified against the POST State root in the proposed block header. If a match is made, the block is valid; if not, the block is invalid and rejected. However, stateless nodes do not initially have pre-state root because they do not store state. In a stateless rollup, the sequencer assigns each block a pre-state root and a Post state root to validate the block.

      Therefore, stateless rollup has two benefits

      1, state growth

      Removing the requirement of the full node storage state will lower the hardware threshold, thus reducing the barrier for more users to run the full node. Mitigating the negative effects of state growth is just as important for rollup as any other chain, because they are also vulnerable. Since weak statelessness does not absolve the sequencer from storing state, the most used rollups will find that state growth can be a hindrance. We can implement further measures to reduce the growth of the sequencer's state, for example, when the state expires, states that have not been accessed during a given period of time are removed from the state.

      Incidentally, stateless also removes the DoS attack vector for disk IO, since stateless nodes no longer need to perform state access, which is especially useful if rollup has a large state.

      2. Fraud proof

      Statelessness and fraud certificates are two sides of the same coin; as soon as one is implemented, the other is made available for free. Nodes require pre-state root and Post State root to verify proof of fraud, similar to requirements for stateless block verification. Admittedly, there are other considerations regarding proof of fraud, such as single versus multiple rounds, bonding, and general censorship resistance details.

      ** Discussion: **

      1. What do you think is the most valuable use of stateless Rollup?

      2. Do you think stateless rollup will ever replace the old rollup technology?

      Read the extension:

      1.article about stateless Rollup
      2.Deep analysis of L1 and L2 thinking mode differences
      3.Vitalik: Rollups incomplete guide

      ** Welcome to follow us for more knowledge **
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      ** Welcome to join our discussion ~**
      82bd323a-022c-4aad-a4d0-a6527b9a8c05-a01c7cd7c2871b55e6149fb741fd26c.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#37 无状态Rollup

      98ac0c88-d56f-431b-a499-2ffe72ec7aa4-image.png
      全节点验证区块的方式,是通过下载所有交易并重新执行它们来检查其有效性,毫不奇怪的是,更大的区块会给全节点带来更大的负担,因为处理和验证每个区块需要更多的硬件。而欺诈和有效性证明等技术使得节点能够检查有效性,而无需重新执行每笔交易。数据可用性采样技术使得节点能够验证数据可用性,同时只下载每个区块的一小部分。

      所谓无状态(Statelessness)是一种特性,是指全节点可以在不存储状态的情况下验证区块(这就叫无状态)。而无状态主要有两种:

      1. 强无状态:不需要节点来存储状态。
      2. 弱无状态:只需要区块生产者来存储状态。

      为了验证一个区块的有效性,全节点从一个 pre-state root 开始,它是在将前一个区块附加到链上之后的状态树的根。然后重新执行交易,生成一个新的状态根(称为 post state root)。然后,根据提议的区块头中的 post state root 来验证计算的 post state root。如果匹配,则该区块有效,如果不匹配,则该区块无效并被拒绝。但是,无状态节点一开始没有 pre-state root,因为它们不存储状态。在无状态 rollup 当中,定序器将为每个区块分配一个 pre-state root 和 post state root,以验证该区块。

      因此,无状态rollup有以下2种好处

      1、状态增长
      取消全节点存储状态的要求会降低硬件门槛,从而降低更多用户运行全节点的障碍。减轻状态增长的负面影响对于 rollup 以及任何其他链一样重要,因为它们也很脆弱。由于弱无状态并不能免除定序器存储状态的责任,因此使用最多的 rollup 会发现状态增长可能会成为一种障碍。我们可以实施进一步的措施来减少定序器的状态增长,例如,在状态到期时,在给定的时间段内未被访问的状态将从状态中删除。

      顺便说一句,无状态还移除了磁盘 IO 的 DoS 攻击向量,因为无状态节点不再需要执行状态访问,如果 rollup 具有较大的状态,这将特别有用。

      2、欺诈证明
      无状态(Statelessness)和欺诈证明是同一枚硬币的两面,只要实现了其中一个,就能免费获得另一个。节点需要 pre-state root 和 post state root 来验证欺诈证明,这与无状态区块验证的的要求类似。诚然,关于欺诈证明还有其他考虑因素,例如单轮与多轮、bonding(绑定)以及一般审查阻力细节。

      讨论:

      1.你认为无状态Rollup最有价值的应用在什么地方?

      2.你觉得无状态rollup有可能取代原有rollup技术吗?

      阅读延申:

      1.一文了解无状态 Rollup

      2.深度解析 L1 和 L2 的思维模式差异

      3.Vitalik:Rollups 不完全指南

      欢迎关注我们了解更多知识
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      欢迎加入我们的讨论~
      93070213-c904-4630-a112-c03406fd6ee2-a01c7cd7c2871b55e6149fb741fd26c.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#36 Lens Protocol bring new thoughts for SociFi Dapp

      When the word SociFi first became popular, the first thing that everyone thought about was how to perfectly replicate Twitter, Instgram, Youtube, etc on blockchain. There are indeed some Dapps with the label of SociFi, but so far, apart from RSS3, only Lens Protocol has caused it. It has attracted the attention of blockchain natives.

      Lens is a Polygon-based Web3 social media platform developed by Aave, described by founder Stani Kulechov on Twitter Lens is an open, composable Web3 social media protocol that allows anyone to create unmanaged social media profiles, build new social media applications. It has general social media features such as profile editing, commenting, retweeting posts, etc. The difference is that Lens Protocol is powered by NFTs, allowing users to own and control all the content they create.

      From the name of the Lens protocol, it hopes that user interactions on social media will form a tree-like association in this product, connecting with each other and generating value. It is worth mentioning that the vision of Lens is to transform users from victims of zero-sum games to winners of cooperative games, which is in line with the central value stated by Web3.

      Key Features of Lens Protocol

      Profile NFT

      Profile NFT signifies the ownership of the user.Individual addresses own ProfileNFTs, and an address can contain multiple ProfileNFTs, which means that users are no longer bound by passwords and accounts, and they have as many accounts as they own as many NFTs. Profile NFTs contain a history of all user-generated posts, mirrors, comments, and more.

      Publication

      Publications are the lifeblood of all social media. In Lens, it mainly refers to posts, comments and mirroring, and all published content will be saved to the Profile NFT. In addition, the post function also comes with 2 additional functions - collection module: users can directly mint the original post into NFT; quote mode: decide who can forward and comment.

      Comment

      Although there have been many wonderful sharing of comments in all social media before, the public's attention has always focused on the author of the original post. Lens will change this in the future, making comments also valuable content and glowing. .

      Mirror

      Lens forwarding is limited by the settings of the original post.

      Collect

      The collection of content by other users can make creators profitable, which will motivate creators to create more high-quality content and help creators directly and fairly obtain assets. Creators can also set through the collect module: open sales of NFTs during a specific time period, etc., which is similar to the traditional paid reading experience.

      Follow

      Followers have records to follow, which means that early followers of high-quality accounts will be the recipients of later airdrops or bonuses.

      Built-In Governance

      Users can easily create a DAO with a specified identity and become the governor of a community.

      Lens Protocol's all-round integration into NFT's gameplay will definitely bring you a bright feeling. If you are interested, just explore it.

      Discussion:

      1. From the function of Lens Protocol, can it help users achieve a win-win situation? Do you have other opinions?

      2. Do you think Lens Protocol will replicate Stepn's success?

      Read the extension:

      1.Lens Official Webiste

      1. Lens Docs

      2. Lens Protocol: a powerful tool for building a Web3 platform

      3. How does the Lens Protocol transform social media?

      4. The Way To Web3②——From Lens Protocol to Web3 Personal Data Solutions

      Please follow us for more information
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      Welcome to our discussion
      db3265b2-30c2-4b18-8af0-9b01a48d8a66-d65e26d0168b6ec8733f69f60d900c6.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#36 Lens Protocol—— SociFi Dapp 新思路

      SociFi这个词刚火起来的时候,大家最先思索的一定是如何将Twitter、Instgram、Youtube等完美复刻上链,确实有一些打着 SociFi标签的Dapp出现,但至今除了RSS3,只有Lens Protocol引起了区块链原住民们的注意。

      Lens 是 Aave 开发的基于 Polygon 的 Web3 社交媒体平台,创始人 Stani Kulechov 在推特上描述 **Lens 是开放的、可组合的Web3社交媒体协议,允许任何人创建非托管的社交媒体资料,构建新的社交媒体应用程序。**它具有一般的社交媒体功能,例如个人资料编辑、评论、转发帖子等,不同的是 Lens Protocol 由 NFT 提供支持,支持用户拥有和控制其所创作的所有内容。

      从Lens协议的名字来看,它希望社交媒体上的用户互动能在这个产品中形成一种树根状的关联,彼此连接并产生价值。值得一提的是,Lens的愿景是 让用户从零和游戏的牺牲者转变为合作游戏中的共赢者,这与Web3所阐述的中心价值是相向而行的。

      Lens Protocol 的主要功能

      Profile NFT

      个人主页NFT标志着用户的所有权。单个地址可拥有多个个人主页NFT,一个地址可以包含多个个人主页NFT,这也就意味着用户不再受密码和账户的约束,拥多少个NFT就拥有多少个账号。Profile NFT 包含用户生成的所有帖子、镜像、评论等其他内容的历史记录。

      Publication

      内容是所有社交媒体的灵魂,在Lens中主要指帖子、评论和镜像,而所有发布的内容都会保存到个人主页NFT中。此外发贴功能还附带2个额外的功能——收集模块:用户直接可以直接把原帖mint成NFT;引用模式:决定谁可以转发和评论。

      Comment

      此前所有社交媒体中的评论尽管有很多远超于原帖的精彩分享,但大众的注意力始终聚焦于原帖作者,Lens未来将改变这一点,让评论也变成有价值的内容,发光发热。

      Mirror

      Lens转发功能受限于原帖的设置。

      Collect

      其他用户对内容的收藏可以使得创作者获利,这将激励创作者创作更多优质内容,也能帮助创作者直接公平地获得资产。创作者也可以通过collect模块设置:在特定时间段开放销售 NFT 等,这类似于传统的付费阅读的体验。

      Follow

      关注有记录可循,这意味着,优质账号的早期关注者会成为后期空投或者是送福利的对象。

      Built-In Governance

      用户可以便利地凭借规定的身份创建DAO,成为一个社区的治理者。

      Lens Protocol全方位融入NFT的玩法相信一定给你带来眼前一亮的感觉,如果你感兴趣,记得去探索~

      讨论:

      1.从Lens Protocol的功能来看,它能够帮助用户获得共赢吗?你是否有其他的看法?

      2.你认为Lens Protocol会复刻Stepn的成功吗?

      阅读延申:

      1.Lens Official Webiste

      2.Lens Docs

      3.Lens Protocol:搭建Web3平台的利器

      4.Lens Protocol如何改造社交媒体?

      5.The Way To Web3②——从Lens Protocol到Web3个人数据解决方案

      欢迎关注我们了解更多知识
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      欢迎加入我们的讨论~
      7534a720-2c9c-42db-b4db-8262a92df5b9-90291bcd5b58acded2b4fd35238d8b3.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#35 What signal does THE Op issue send out?

      c1ab3a5c-9195-40f8-a4a3-0518d9ed1540-image.png

      Recently, Optimism announced a retrospective token airdrop for active users and community members. The project has generated great interest in the community as it promises to bring much-needed scalability to the Ethereum ecosystem. It is currently TVL's second largest Rollup extension and is probably the largest Rollup by market cap at the time of token release.

      Optimism was launched in June 2019 and TestNet was released in October 2019. Alpha mainnet wasn't launched until January 2021, and Ethereum Virtual machines weren't launched until October 2021. An open mainnet was launched in December 2021.

      Optimism is an extended solution to the Ethereum blockchain, and while Optimism ultimately publishes data to Ethereum, it performs ethereum-based off-chain transactions. In this way, Optimism achieves significant transaction efficiency and security at the same time. Optimism is the advantage of avoiding main network gas costs and transaction congestion while enjoying main network quality and safety. In addition to fast and inexpensive transactions, Optimism is currently the only L2 offering full Ethereum virtual Machine (EVM) equivalency.

      As a result, Optimism was the first L2 to fully conform to the Ethereum protocol specification. This EVM equivalence reduces the need for compilers, and Optimism allows DeFi and NFT projects to deploy to Optimism with one click, and then still use all the good Ethereum L1 tools, such as Hardhat, Vyper, and others.

      The main drivers of Optimism are as follows:

      1. EVM equivalence
      Optimism goes beyond simple EVM compatibility to EVM equivalence. On evM-compliant chains, developers still need to modify their Web3 applications to use a different architecture. Also, the tools built for Ethereum over time may not work for other EVM-compatible chains. EVM equivalence on Optimism solves this problem by performing almost identically on the Ethereum main network, allowing one-click portability of applications and all tools to work. This approach will help Optimism grow the developer community faster and with fewer bugs than other extension solutions.

      2. Ecosystems encourage innovation
      Optimism was very cautious about its airdrop plans; Only 5% of the promised 14% airdrops have been confirmed. With more airdrops promised in the future, users are motivated to be active on the platform.

      Retrospective public Good Funding (RPGF) also provides long-term incentives for developers to contribute to Optimism. Optimism also recently announced a "Stimipack" that dedicates 5.4% of the token supply to developer incentives. The ecosystem incentivized to create another flywheel. The greater the market value of Optimism at the time of release, the more money is available for incentives, potentially leading to more user and developer activity. However, as any part of the flywheel slows down, there is also a negative feedback loop.

      The OP token is a new type of governance token. The token holder does not have sole governance over the agreement; They share with designated citizens. This governance process and structure is based on its charter of work and will evolve according to the requirements of the agreement. The working charter also gives token holders some control over the Optimism Foundation's board of Directors, including the ability to remove directors and veto changes to Foundation documents if they reduce their rights. While not in absolute control, token holders do have sufficient control over the protocol and can fairly claim the sequencer profits to themselves.

      The total supply of OP at the time of release was 4,294,967,296, with an annual inflation rate of 2%. In our model, we assume that all tokens held in the vault have been distributed. While the document does not explicitly state this, annual inflation may move in the RPGF direction and generate at least as much value for the agreement as its market price. So we can ignore inflation in our calculations.

      Discuss

      1. Do you think other L2 projects will follow?
      2. What do you think is the value of OP token you value most?

      Further Reading

      1. Optimism start guide
      2. industry science | L2 war has begun, parsing Optimism valuation models
      3. What Is Optimism? Using Rollups to Help Scale Ethereum

      Please follow us for more information
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      Welcome to our discussion
      3135a03e-326e-4773-b74a-3a6f615198ee-f505d8df8d40332206413985c8a86e1.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#35 Op发币释放了什么信号?

      c1ab3a5c-9195-40f8-a4a3-0518d9ed1540-image.png

      近期,Optimism 宣布了针对活跃用户和社区成员的追溯代币空投。该项目引起了社区的极大兴趣,因为它承诺为以太坊生态系统带来急需的可扩展性。目前,它是 TVL 第二大的 Rollup 扩展方案,并且可能是代币发布时按市值计算的最大 Rollup。

      Optimism 于 2019 年 6 月推出,测试网于 2019 年 10 月发布。直到 2021 年 1 月才推出Alpha 主网,直到 2021 年 10 月 Optimism 才推出与以太坊虚拟机。一个开放的主网于 2021 年 12 月启动。

      Optimism 是以太坊区块链的扩展解决方案,虽然 Optimism 最终将数据发布到以太坊,但它执行基于以太坊的链外交易。通过这种方式,Optimism 实现了显著的交易效率和安全保证的同时。避开主网 gas 成本和交易拥堵,同时享受主网质量安全是 Optimism 的优势。除了快速和廉价的交易,Optimism 也是目前唯一提供完全以太坊虚拟机(EVM)等价的 L2。

      因此,Optimism 是第一个完全符合以太坊协议规范的 L2。这种 EVM 等价性减少了对编译器的需求,并且 Optimism 允许 DeFi 和 NFT 项目一键部署到 Optimism,然后可以仍然使用所有优秀的以太坊 L1 工具,例如 Hardhat、Vyper 和其它工具。

      Optimism实现增长的主要动力有以下几点:
      1、EVM 等效性
      Optimism 超越了简单的 EVM 兼容性,转向了 EVM 等效性。在与 EVM 兼容的链上,开发人员仍然需要修改他们的 Web3 应用程序以使用不同的架构。此外,随着时间的推移为以太坊构建的工具不一定适用于其他与 EVM 兼容的链。Optimism 上的 EVM 等效性通过几乎等同于在以太坊主网上执行来解决这个问题,允许一键移植应用程序和所有工具工作。与其他扩展解决方案相比,这种方法将帮助 Optimism 更快地发展开发者社区,并且出现更少的漏洞。

      2、生态系统激励
      Optimism 对自己的空投计划非常谨慎;承诺的 14% 空投中只有 5% 已确认。随着未来承诺的更多空投,用户被激励在平台上活跃。
      追溯性公共产品资金 (RPGF) 还长期激励开发者为 Optimism 做出贡献。Optimism 最近还宣布了一个“Stimipack”,将 5.4% 的代币供应用于开发者激励。生态系统激励创造了另一个飞轮。Optimism 在发布时的市值越大,可用于激励的资金就越多,从而可能导致更多的用户和开发者活动。然而,随着飞轮的任何部分变慢,也会产生负反馈回路。

      OP 代币是一种新型的治理代币。代币持有者对协议没有唯一的治理权;他们与指定的公民分享。此治理流程和结构基于其工作章程,并将根据协议的需求进行演变。工作章程还赋予了代币持有人对 Optimism Foundation 董事会的一些控制权,包括在他们减少权利的情况下罢免董事和否决对基金会文件的更改的能力。虽然不是绝对控制,但代币持有者确实对协议有足够的控制权,并且可以公平地假设定序器的利润归他们所有。

      OP 在发布时的总供应量为 4,294,967,296,每年通货膨胀率为 2%。在我们的模型中,我们假设金库中持有的所有代币都已分发。虽然文件没有明确说明这一点,但每年的通货膨胀可能会朝着 RPGF 方向发展,并为协议产生至少与其市场价格一样多的价值。因此,我们可以在计算中忽略通货膨胀。
      图片

      讨论
      1、你认为其他L2项目会紧随其后发行代币吗?
      2、你认为你最看重的OP代币的价值在什么地方?

      延伸阅读
      1、Optimism入门指南
      2、行业科普 | L2战争已经打响,解析Optimism估值模型
      3、What Is Optimism? Using Rollups to Help Scale Ethereum

      欢迎关注我们了解更多知识
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      欢迎加入我们的讨论
      3cf2451c-0171-4d25-9eb5-2501ec7c8fe2-113d391a89fd8bc925de38992a7da97.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#34 Will Cult.DAO be the next DAO revolution?

      Messari’s annual report states that 2022 will be the year of the DAO. As of April 15, the number of DAOs has grown to 4,833, and the AUM has grown from $920 million in May last year to $11.8 billion, an increase of 1182%. There are 169 DAOs over $100 million.

      Recently, the surge of Cult.DAO's token in the secondary market has led more and more people to study the logic of its project from Cult.DAO's token.

      Cult.DAO officially released its first tweet on Twitter on January 20, 2022, and just over 2 months after its birth, it ushered in an outbreak at the end of March, skyrocketing 365 times in 9 days. The huge wealth effect, mysterious project party, KOL as "guardian", ideological blessing and other factors are mixed together, making CultDAO quickly become a hot topic in major communities.

      Features of Cult.DAO

      From a business logic point of view, CultDAO is a decentralized venture capital fund: the community votes on proposals, community members participate in the investment in a decentralized way through crowdfunding as investors, and then return the investment returns to CultDAO tokens in the form of dividends the pledgee.

      But it is not an ordinary venture capital DAO. It uses a very provocative manifesto, a decentralized proposal and voting model, destroys the private key and the contract can never be changed. It takes the ideology of decentralization to the extreme.

      Cult.DAO's Economic Model

      CULTDAO issues tokens CULT, pledge CULT to obtain pledge certificate dCULT, and the top 50 holding dCULTs become "The Guardians", they have the right to propose DAO, but the guardians only have the right to propose, but not to the proposal Voting rights.

      "The Many", that is, dCULT holders (dCULT is the pledge certificate generated by staking CULT) have the right to vote on the proposal but not the right to propose.

      Under normal circumstances, the guardian initiates a vote, and dCULT holders vote to determine whether the project can be invested, and if it is rejected, it will be terminated. If the proposal is passed, 13 ETH will be allocated from the DAO treasury for investment.

      The DAO treasury is funded from the 0.4% tax charged per transaction by the token CULT. When the treasury collects 15.5 ETH and there is a proposal that has been voted on, then the 15.5 ETH will be divided into two parts, of which the CULT worth 2.5 ETH will be destroyed in the black hole wallet, and the other 13 ETH will be invested in Items approved by the proposal.

      After the invested project needs to issue tokens, the invested project party needs to sell the pre-agreed project tokens and exchange them for CULT. 50% of the CULT will be put into the black hole wallet, and the other 50% of the CULT will be distributed to the stakers of the CULT as a reward.

      Discussion:

      1. Talk about what attracts you most about Cult.DAO?

      2. What do you think of "Cult.DAO will bring about a DAO revolution"?

      3. What are the problems Cult.DAO exitting?

      Further Reading:

      1.详解DAO的代币经济模型:不同类型的DAO是如何设计激励机制的?

      2.从Cult.DAO的爆发探索DAO的范式转变

      3.Understand the mysterious Cult.DAO
      Welcome to follow us for more knowledge
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg
      Welcome to join our discussion~

      572ea639-1fcb-40b4-b00c-660c6cbf79d6-99564da66a716c1f62f7c6fcff73abe.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#34 Cult.DAO会是下一个DAO革命吗?

      Messari 年度报告表明2022年将是属于DAO的一年。截至4月15日,DAO 的数量已经增长至 4833 个,资产管理规模从去年 5 月的 9.2 亿美元增长到 118 亿美元,增长了 1182%。超过 1 亿美元的 DAO 有 169 个。

      近期,Cult.DAO的token在二级市场的暴涨使得越来越多人从Cult.DAO的token转向研究其项目本身的逻辑。

      Cult.DAO官方在2022年1月20日在Twitter发布首条推文,而诞生仅仅2个多月,它就在3月底迎来了爆发,9 天暴涨 365 倍。巨大的财富效应、神秘项目方、KOL做「守护者」、意识形态加持等因素杂糅在一起,让CultDAO迅速成为了各大社群里的热点话题。

      Cult.DAO的特点

      从业务逻辑上看,CultDAO 是一个去中心化风险投资基金:社区通过提案投票,社区成员作为投资人以去中心化的方式众筹参与投资,然后将投资回报以分红的方式回馈给 CultDAO 代币的质押者。

      但是它不是一个普通的风投DAO,它用极具煽动性的宣言书、去中心化的提案与投票模式、销毁私钥且合约永远不可更改的坚决将去中心化的意识形态发挥到了极致。

      Cult.DAO的经济模型

      CULTDAO发行代币CULT,质押CULT可以获得质押凭证dCULT,dCULT持有数量的前50名成为“The Guardians”(守护人),他们对DAO有提案权,但是守护者只有提案权而没有对提案的投票权。

      “The Many”,即dCULT持有者(dCULT即通过质押CULT而产生的质押凭证)拥有对提案的投票权但没有提案权。

      一般情况下,由守护人发起投票,dCULT持有者进行投票决定项目是否可以投资,若被否决则终止。若提案通过,则将由DAO国库拨款13个ETH进行投资。

      DAO国库的资金来自代币CULT每笔交易收取的0.4%的税。当国库每收集到15.5个ETH,并且有已投票通过的提案,这时候15.5个ETH将被分为两部分,其中价值2.5ETH的CULT被打入黑洞钱包销毁,另外的13个ETH将投资给提案通过的项目。

      被投资项目需要在发行代币后,被投资项目方需要卖出预先约定的项目代币并换为CULT。这其中的50%的CULT打入黑洞钱包,另外50%的CULT将作为奖励分配给CULT的质押者。

      讨论:

      1.谈一谈Cult.DAO最吸引你的地方?

      2.如何看待“Cult.DAO将带来一场DAO革命”?

      3.Cult.DAO存在哪些问题?

      阅读延申:

      1.详解DAO的代币经济模型:不同类型的DAO是如何设计激励机制的?

      2.从Cult.DAO的爆发探索DAO的范式转变

      3.带你了解神秘的Cult.DAO

      欢迎关注我们了解更多知识
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg
      欢迎参与我们的讨论~
      e005f525-425b-4e42-bf93-c5f19edc1240-fe4ece18ea16aa02d118c6d98d2bf3b.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#33 What does the era of Full-chain NFT mean?

      29c3803a-fe53-4d4c-a5e4-da4e041ef3df-image.png

      Much of the buzz around Omnichain stems from the rise of LayerZero Labs, a Canadian-based team that created the interoperability protocol LayerZero.
      Simply put, LayerZero is a messaging layer designed to make it easy for smart contracts to communicate between many blockchains, or indeed any blockchain.
      The protocol was initially launched to support EVM compliant projects, namely Ethereum, Arbitrum, Avalanche, BSC, Fantom, Optimism, and Polygon. The LayerZero team also plans to add support for non-EVM chains such as Cosmos Hub and Terra in the future.
      LayerZero stands out for its use of ultralight nodes (ULNs), which provide a new model for securely transferring messages between chains in an economical and efficient way.
      Therefore, LayerZero's omnichain messaging model differs from the cross-chain model, which requires the use of bridge protocols to migrate or encapsulate assets directly to other chains. For example, if I bridge ETH to Ronin bridge to use Katana decentralized exchange (cross-chain application), my ETH will be transferred directly from Ethereum to Ronin.
      The omnichain model also contrasts with the multi-chain model, in which independent communities with different values pursue their own technology stack.
      Gh0sts, the first NFT project based on the cross-chain interoperability protocol LayerZero, is the first all-chain (Omnichain)NFT series, with a total of 7,710 NFT being cast for free on 7 supported blockchains. These include Ethereum, Binance, Avalanche, Polygon, Arbitrum, Fantom and Optimism.

      26931f49-a104-4097-9660-a36a7615083c-image.png

      On April 5th, this series successfully topped the trading volume of Opensea for nearly 24 hours. The floor price of Opensea Ethereum once reached 0.88ETH(the actual floor price needs to integrate the market data of all 7 chains), but now it has dropped to 0.15ETH, and the total trading volume has exceeded 5,400ETH(nearly 14.5 million US dollars).
      After being born on a source chain, a ghostly Gh0sts can contract to move directly between other chains and obtain NFT assets on the target chain that are recognized by the contract. As an example, let's say a user decides to cast his NFT on Avalanche (perhaps to save some Gas). Later he decided to use his Gh0st as his PFP on Twitter (which currently only supports Ethereum mainnet authentication), so he used LayerZero's "traverseChain" feature at Avalanche, with the target chain set to Ethereum. Finally, this NFT can be verified as an ethereum contract asset by the main network in Ethereum.

      Discussion:

      1. What areas do you think full-chain technology can be extended to in the future and what impact will it have?
      2. Do you think full-chain NFT will be the trend of future NFT?

      Further Reading

      1.LayerZero document
      2.what is Gh0stly Gh0sts? NFT ghost's first full chain Opensea trading top
      3.view: the whole chain NFT era officially open, will further consolidate and expand the etheric fang influence
      4.LayerZero: Trustless Omnichain Interoperability Protocol

      Welcome to follow us for more knowledge
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg
      Welcome to join our discussion ~
      05423431-d8af-4c6b-acfa-3319e61c2955-5b38a1a26ef1af2215d984f281d5bfe.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#33 全链NFT时代开启,意味着什么?

      29c3803a-fe53-4d4c-a5e4-da4e041ef3df-image.png

      关于 omnichain(全链)的火热讨论很大程度上源于 LayerZero Labs 的兴起,这是一个总部位于加拿大的团队,该团队创建了互操作性协议 LayerZero。
      简单地说,LayerZero 是一个消息传输层,旨在让智能合约轻松地在许多区块链之间进行通信,或者更确切地说是任何区块链。

      该协议最初启动时主要支持与以太坊虚拟机 (EVM) 兼容的项目,即以太坊、Arbitrum、Avalanche、BSC、Fantom、Optimism 和 Polygon。LayerZero 团队未来还计划增加对 Cosmos Hub、Terra 等非 EVM 链的支持。

      LayerZero 的突出之处在于它使用了超轻节点 (ULN),它提供了一种以经济高效的方式在链之间安全传输消息的新模型。

      因此,LayerZero 的全链消息传递模型不同于跨链模型,后者需要使用桥协议将资产直接迁移或封装到其他链上。例如,如果我将 ETH 桥接在 Ronin 桥上以使用 Katana 去中心化交易所(跨链应用),我的 ETH 将直接从以太坊转移到 Ronin。

      全链模型也与多链模型形成对比,即具有不同价值观的独立社区追求自己的技术堆栈。

      首个基于跨链互操作性协议LayerZero的NFT项目Gh0stly Gh0sts,其主打史上第一个全链(Omnichain)NFT系列,总共7,710个NFT于4日开放在支持的7条区块链上免费铸造,包括Ethereum、Binance、Avalanche、Polygon、Arbitrum、Fantom和Optimism。

      26931f49-a104-4097-9660-a36a7615083c-image.png

      该系列在4月5日成功登顶Opensea近24小时交易量榜首,在Opensea以太坊的地板价更一度达到0.88ETH(实际地板价需整合全部7条链的市场数据),目前则回落到0.15ETH,总交易量已突破5,400ETH(近1,450万美元)。

      Gh0stly Gh0sts幽灵在某条源链出生后,可以通过合约直接完成在其他链之间的跨链穿梭,并在目标链上得到被合约认可的NFT资产。项目方对此举例解释:假设用户决定在Avalanche上铸造他的NFT(也许是为了节省一些Gas费)。后来他决定在Twitter上使用他的Gh0st作为他的PFP(目前仅支持以太坊主网验证),因此他在Avalanche上使用了LayerZero的“traverseChain”功能,目标链设置为以太坊。最后这个NFT可在以太坊被主网验证为以太坊合约的资产。

      讨论:

      1.你认为全链技术未来可以扩展到哪些领域带来哪些影响?

      2.你认为全链NFT会是未来NFT的趋势吗?

      阅读延申:

      1.LayerZero文档

      2.什么是Gh0stly Gh0sts?首个全链NFT幽灵登Opensea交易榜首

      3.观点:全链NFT时代正式开启,将进一步巩固和扩展以太坊影响力

      4.LayerZero: Trustless Omnichain Interoperability Protocol

      欢迎关注我们了解更多知识
      064fa452-b6a5-46f6-920a-ceb500fa5f22-公众号.jpg

      欢迎加入我们的讨论~
      05423431-d8af-4c6b-acfa-3319e61c2955-5b38a1a26ef1af2215d984f281d5bfe.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#32 Web2 App + To Earn = Web3?

      ChainIDE#32 Web2 App + To Earn = Web3?##

      In the past, there was Play to Earn by Axie Infinity, and then Move to Earn by Stepn. The X to Earn model made many people in the industry see the "hope" of Web3. Study to Earn, Sleep to Earn, etc. have emerged one after another. A wave of Gamefi craze.

      Stepn officially stated that its vision is to promote a healthier lifestyle for millions of people, bring them into the Web 3.0 world, and make a positive contribution to carbon neutrality.

      The most basic gameplay of Stepn only requires users to purchase its NFT Sneaker to participate.Users can earn token income by running in the real world. The income can be used to upgrade and repair sneakers to improve the efficiency of "earning coins", or they can be sold directly.In addition to the single-player mode, stepn also designed two ways to play: casting new shoes and renting sneakers to meet the different needs of players.

      The success of Stepn has brought new thinking to many people in the industry. Is the model of Web2 App plus To Earn equal to Web3?

      We all know that different from the read-only function in the Web1.0 era and the readable and writable function in the Web2.0 era, in the Web3.0 era, data will return to users, and users can not only read and write data, but also own. Web 3.0 will also make up for the lack of distributed, self-manageable digital identities and digital assets that can be confirmed and traded, which were missing from the original design of the Internet protocol.

      At present, it seems too early to directly equate the Web2 App+To Earn model with Web3.0. This can only be seen as an attempt to transition from Web2.0 to Web3.0. After all, no one knows what will happen tomorrow when there are as many blockchain projects as the early cosmic explosion. But what is certain is that Web3.0 will definitely re-experience everything in Web2.0, the waves will wash away the sand, and eventually time will bring us to witness the real Web3.0.

      Discussion

      1. Can you simply share an X to earn project?

      2. What do you think is the relationship between X to earn and Web3?

      Further Reading

      1.Take you to understand STEPN's "move and earn" and its in-game mechanism

      2.Some thoughts on Web3

      Please follow us for more information
      a98c3c90-1f55-43cc-ae3b-56ca3502b5a4-公众号.jpg

      Welcome to join our discussion.

      95f27bd8-9835-4e86-9f24-a2cf7bae805b-24edcebfaaaf6709ba0384253bbe617.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#32 Web2 App + To Earn = Web3?

      ChainIDE#32 Web2 App + To Earn = Web3?##

      前有 Axie Infinity 的 Play to Earn,后有 Stepn 的 Move to Earn, X to Earn 模式让诸多业内人士看到了Web3的“希望”,Study to Earn、Sleep to Earn等纷纷涌现,整个行业正在迎来新一波的Gamefi热潮。

      Move to earn代表Stepn官方表示其愿景是推动数百万人过上更健康的生活方式,将他们带入Web3.0世界,同时为碳中和做出积极贡献。Stepn最基础的玩法只需用户购买其 NFT Sneaker即可参与,用户通过在现实世界跑步即可赚取代币收益,所得收益可以用来升级、修复运动鞋以提高“赚币”效率,也可以直接卖出。除了单人模式,stepn同时还设计了铸造新鞋以及出租运动鞋这两种玩法,满足玩家的不同需求。

      Stepn的成功给众多业内人士带来了新的思考,那么是不是 Web2 App 加上 To Earn 的模式就等于 Web3 呢?

      大家都知道不同于Web1.0时代的只读功能以及在Web2.0时代的可读可写功能,Web3.0时代,数据将完全回归用户,用户不仅可读可写还可拥有的数据。Web3.0还将弥补互联网协议最初设计时缺失的分布式、可自主管理的数字身份以及可确权和交易的数字资产这两个关键。

      目前看来,直接将Web2 App+To Earn的模式与Web3.0划等号还为时尚早,这仅能看作是Web2.0向Web3.0过渡的尝试,毕竟在当前区块链项目多如早期宇宙大爆发一样的情况下,谁也不知道明天会发生什么。但可以肯定的是,Web3.0必定会将Web2.0中的一切都重新经历一遍,大浪淘沙,最终时间也将会带我们见证真正的Web3.0。

      讨论:

      1.你是否可以简单分享一个X to earn项目?

      2.你认为X to earn与Web3是什么关系?

      阅读延申:

      1.一文帶你看懂STEPN「邊動邊賺」及其遊戲內機制

      2.对Web3的几点思考

      欢迎关注我们了解更多知识

      d70bf807-0da4-40e2-9c29-129928cf858a-公众号.jpg

      欢迎加入我们的讨论~
      16547f98-6771-4b4f-bad4-964350e42a1e-24edcebfaaaf6709ba0384253bbe617.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#31 What is ETH 2.0?

      f1a64133-4a39-43ac-83db-8544d13446b0-image.png Ethereum has been wildly popular since its launch in 2015, but recently its high transaction fees and low scalability have negatively impacted the execution of complex applications, and the need for ethereum improvements has become increasingly urgent among users. Ethereum 2.0 has been in the works for some time and is the biggest change to the Ethereum network in years, aiming to address some of the problems with the current infrastructure.

      Both Vitalik and Ethereum.org estimate that the Ethereum merger will be fully delivered in the second quarter of 2022.

      The Ethereum upgrade is one of the most anticipated developments in crypto history. If all goes according to plan, the upgrade will bring a solution to scalability issues and add more accessibility for the average user.

      Five big changes brought by the Ethereum upgrade:

      1. Reduce Gas fees
      High Gas fees are a major barrier to the average user trying ethereum. Gas fees fluctuate according to transaction demand. A high volume of transactions in a short period of time often clogs Ethereum, and in this case miners are more willing to choose deals that offer higher Gas fees. However, when Ethereum adopts PoS, transaction processing is simpler and can avoid congestion caused by mountains of unprocessed transactions.

      2. Improve network throughput
      Sharding is another important upgrade of Ethereum following the merger of Ethereum. Sharding horizontally divides a database into shard chains, all of which can process transactions independently of the main network.
      The PoW blockchain records transactions on a chain, and Bitcoin can only process seven transactions per second, while Ethereum can only process 10-15 transactions per second.
      Ethereum.org predicts that 64 shard chains will be available when shards are delivered in 2023. Each chain can verify transactions to share the load on ethereum's main network, significantly increasing network throughput.

      3. Reduce hardware requirements
      The high threshold of equipment is not conducive to attracting more verifiers to participate in the protection and construction of the network. The transition from Ethereum to PoS means there will be less competition for computing power. It is not necessary for the verifier to have a super miner, server level equipment is sufficient.

      4. Expand the Ethereum ecosystem
      A large number of DApps are running on Ethereum, and high load has a significant negative impact on EVM, making the network processing speed dramatically slow down. EVM is difficult to patch because its code is written in a complex programming language called Solidity. Ethereum 2.0 will introduce the Ethereum Web Assembly (eWASM) designed by the World Wide Web Consortium to replace EVM, according to leading Ethereum developers.
      EWASM allows developers to program in simpler languages such as C++ and Rust. EWASM is also compatible with current Web standards, making it easier to run in regular browsers. Users can access the dApp without an extension.
      The biggest benefit of eWASM is its impact on the developer ecosystem. With more language choices, more developers will flock to Ethereum, bringing more innovation and creativity to the community.

      5. Reduce your carbon footprint
      The transition to PoS will reduce energy consumption and environmental impact. Indeed, the energy-intensive nature of POWs has raised concerns among environmentalists and regulators.
      According to ethereum's official blog, PoS will reduce Ethereum's power consumption by 99.5%. That would reduce environmentalists' criticism that cryptocurrencies are overblown, even though ethereum's power consumption is already much lower than bitcoin's. In addition, other scaling solutions, such as Rollup and sharding, will reduce the overall energy cost of a transaction by increasing the network's economies of scale.

      discussion

      1. What do you think is the biggest difference between ETH1.0 and ETH2.0?
      2. What are the changes for traders after the update of ETH2.0?

      Recommended reading

      1. 2.0 and its importance to introduce] [the etheric fang (https://academy.binance.com/zh/articles/what-is-ethereum-2-0-and-why-does-it-matter)
      2. [for Eth2 upgrade] (https://ethereum.org/zh/upgrades/)
      3. [2.0 will bring the etheric lane 5 big change] (https://mp.weixin.qq.com/s/Zwpce4BmPcIMxifqbeR3-A)

      Please follow us for more information 1d4763b7-ffdb-4db5-a04f-8af7f9a32529-公众号.jpg

      Welcome to our discussion672ff8bd-e867-4e40-a3bf-21ba3f2b7a40-9ee3a80c4af2dec82dd37402ee81728.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#31 ETH2.0升级是什么?

      d4c488af-3225-43c2-a365-7ebe107a540c-image.png 自 2015 年问世以来,以太坊一直广受欢迎,但最近其昂贵的交易费用和低可扩展性对复杂应用程序的执行产生了负面影响,用户对以太坊改进的需求变得越来越迫切。以太坊 2.0 已经酝酿了一段时间,这是多年来以太坊网络最大的变化,旨在解决当前基础设施的一些问题。

      V 神和 Ethereum.org 都估计以太坊合并将在 2022 年第二季度完全交付。

      以太坊升级是加密历史上最受期待的发展之一。如果一切按计划进行,升级将为可扩展性问题带来解决方案,并为普通用户增加更多的可访问性。

      以太坊升级带来的 5 大变化:

      1. 降低 Gas 费
      高额的 Gas 费是普通用户尝试以太坊的主要障碍。Gas 费根据交易需求而波动。短时间内的大量交易通常会堵塞以太坊,在这种情况下,矿工更愿意选择提供较高 Gas 费的交易。然而,当以太坊采用 PoS 时,交易处理会更简单,并可以避免因未处理交易堆积如山造成的堵塞。

      2. 提高网络吞吐量
      分片是继以太坊合并之后的以太坊又一重要升级。分片将数据库横向分割成多个分片链,所有这些分片链都可以独立于主网处理交易。
      PoW 区块链将交易记录在一条链上,比特币每秒只能处理 7 笔交易,而以太坊每秒只能处理 10-15 笔交易。
      Ethereum.org 预测在 2023 年分片交付时,将有 64 条分片链可用。每条链都可以验证交易以分担以太坊主网的负载,从而显著提高网络吞吐量。

      3. 降低硬件要求
      设备的高门槛不利于吸引更多的验证者参与到网络的保护和建设中。以太坊向 PoS 过渡意味着算力的竞争将变得不那么严重。验证者不一定要有超级矿机,服务器级别的设备就足够了。

      4. 扩大以太坊生态系统
      大量的 Dapp 运行在以太坊上,高负载对 EVM 的负面影响显著,让网络处理速度急剧下降。EVM 很难打补丁,因为它的代码使用一种叫 Solidity 的复杂编程语言编写。根据以太坊主要开发者的说法,以太坊 2.0 将引入由万维网联盟设计的以太坊 Web Assembly(eWASM)来取代 EVM。
      eWASM 允许开发者使用例如 C++、Rust 等更简单的语言进行编程。此外,eWASM 也与当前的 Web 标准兼容,因而更容易在普通浏览器中运行。用户无需扩展程序即可访问 dApp。
      eWASM 最大的好处是它对开发者生态系统的影响。有了更多的语言选择,更多开发者将涌向以太坊,为社区带来更多创新和创造力。

      5. 减少碳足迹
      过渡到 PoS 将降低能耗,减少对环境的影响。事实上,PoW 的能源密集型特性已引起环保主义者和监管机构的关注。
      根据以太坊官方博客,PoS 将使以太坊的能耗降低 99.5%。这将减少环保主义者对加密货币言过其实的批评,虽然以太坊的能耗相比比特币已经低很多。此外,其他扩展解决方案(例如 Rollup 和分片),也将通过扩大网络的规模经济来降低交易的整体能源成本。

      话题讨论

      1. 你认为ETH1.0和ETH2.0的最大区别是什么?
      2. ETH2.0升级后,对交易者来说有哪些改变?

      推荐阅读

      1. 以太坊2.0及其重要性介绍
      2. Eth2升级
      3. 以太坊2.0将带来的5大变化

      欢迎关注我们了解更多知识

      d70bf807-0da4-40e2-9c29-129928cf858a-公众号.jpg

      欢迎加入我们的讨论

      ebd46e34-c502-464a-b863-3375711b9ce9-9ee3a80c4af2dec82dd37402ee81728.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#30 The main utility of NFTs in real life

      ChainIDE#30 The main utility of NFTs in real life

      A few years ago, no one could have imagined that it has turned into an era where everything is NFT. NFT can capitalize virtual items; linking with offline entities can help traditional enterprises quickly enter the metaverse; while maintaining the scarcity of assets, it can also separate control and editing rights... The above functions have made NFTs popular rapidly , now there are countless new NFT projects coming out every day.

      But for the NFT owner (HOLDER), the utility of the NFT is the biggest incentive to buy and hold a specific NFT item.

      The main utility of NFTs

      1.Artistic utility

      The value of NFT artwork is based on its cultural influence and significance. A "good" piece of art will demonstrate mainstream values, ethical standards, and inspire members of the community. Women Tribe, 3Landers, and Doge Pound Studios are three NFT projects that are fundamentally driven by positive mainstream values, a community vision, and an impactful desire to uplift society.

      This particular type of NFT audience will pay more attention to the NFT's artwork than the community or usability. Therefore, the value is also placed on a trusted artist or a trusted company. Market behavior is similar to that of traditional art collectors with a collecting hobby. These collectors appreciate art and don't trade their work very often, so they're not interested in applied value.

      2.Social utility

      The spring of 2021 saw a rapid shift in digital identity. A growing number of Twitter accounts have turned their avatars into cartoonish apes. When NBA players and numerous A-level celebrities entered the NFT market, BAYC gathered millions of ETH trading volumes on Opensea, the NFT secondary market platform.

      The success of BAYC and other NFT-generating projects can be attributed to the smooth landing of their products and meeting the community's need for social utility. Powered by blockchain technology, the indestructible uniqueness of NFTs lays the foundation for meeting individuals' needs for socialized digital identities.

      NFTs are a balancing act between individualism and collectivism. The BAYC community fulfills individuals' desire for an exclusive community while maintaining a platform where their community can freely express their individuality, freedom and value allegiance.

      3.Functional utility

      1)In-game NFTs

      Game features: According to the actual game experience, players can choose to pay for game features, and have low expectations for future returns.
      Emotional attachment: The impression that in-game NFTs are used for game activities rather than financial products provides players with emotional projection, especially when players spend resources to upgrade NFTs and spend time fighting with NFT characters. Such predictions further reduce users' expectations for future returns.

      2)Music NFTs

      Music NFTs allow fans to buy songs, albums and event tickets. They also provide artists with more on the profitability of their names, likenesses, images and artwork.

      3)DAO NFTs

      Basic structure of NFT for DAO membership: —> Governance —> Token Distribution —> Pass Certificate

      DAOs are speculated to be the manifestation of the next generation of companies that provide a new form of organization for coordinating global investments and communities. Today, many DAO organizations are emerging. In terms of governance, many forms of NFTs will be used, with functional NFTs being a possible example.

      DAO members can make governance contributions to the development of DAO through the NFT they hold. Members who have made outstanding contributions can also receive DAO Token airdrops. At the same time, DAO NFT will also play its governance role as the pass of the DAO system.

      4.Asset utility

      Under the financial nature of cryptocurrencies, NFTs have specific asset properties. The market price volatility they magnify is one factor that affects their actual value. Derived from many variants of financial applications such as trading, lending, splits, and ETFs, NFTs can integrate complex financial contractual relationships. As such, NFTs have become trusted financial investments that represent ownership in the cryptocurrency world, with guaranteed rights stored in smart contracts.

      Discuss:

      1.Which utility of NFT do you prefer? Can you tell me why?

      2.The integration of NFT utility will also multiply the value of NFT, do you know any cases?

      Further reading

      1.Explain in detail the four main utilities of NFT in life: artistic utility, social utility, functional utility, and asset utility

      2.Why is the blockchain an important underlying technology of the Metaverse, and what can it bring?

      Welcome to join discussion~

      6377e72c-81ac-43d6-a467-30dba56420bb-e99b184576fbb42408d465958ebe483.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#30 NFT在现实生活中的主要效用

      ChainIDE#30 NFT在现实生活中的主要效用

      几年前,没有人能够想到如今已转变为万物皆可NFT的时代。NFT可以使得虚拟物品资产化;与线下实体联动可以帮助传统企业迅速进军元宇宙;在保持资产稀缺性的同时,还可以分离控制权和编辑权...以上等等功能使得NFT迅速风靡起来,现在每天有无数的NFT新项目问世。

      但对于NFT所有者(HOLDER)来说,NFT的效用是购买和持有特定NFT项目的最大动力。

      NFT的主要效用

      1.艺术效用

      NFT艺术品的价值基于其文化影响力和意义。一件“好”的艺术品将展示主流价值观、道德标准,并对社区中的成员产生激励。Women Tribe、3Landers和Doge Pound Studios是三个NFT项目,它们从根本上具有积极的主流价值观、社区愿景和提升社会的有影响力的愿望。

      与社区或可用性相比,这种特定类型的NFT观众会更关注NFT的艺术品。因此,价值也放在值得信赖的艺术家或值得信赖的公司身上。市场行为类似于有收藏爱好的传统艺术品收藏家。这些收藏家欣赏艺术,不会经常交易他们的作品,因此他们对应用价值不感兴趣。

      2.社交效用

      2021年春天,数字身份发生了快速的转变。越来越多的Twitter账户将他们的头像变成了卡通形象的猿猴。当NBA球员和众多A级名人进入NFT市场时,BAYC在NFT二级市场平台Opensea上聚集了数百万的ETH交易量。

      BAYC和其他生成NFT项目的成功可以归功于它们的产品顺利落地并满足了社区对社会化效用的需求。在区块链技术的支持下,NFT坚不可摧的独特性为满足个人对社交化数字身份的需求奠定了基础。

      NFT是个人主义和集体主义之间的平衡行为。 BAYC社区满足了个人对专属社区的渴望,同时维护了一个平台,让他们的社区可以自由地表达他们的个性、自由和价值忠诚。

      3.功能效用

      1)游戏内NFT:

      游戏功能:根据实际游戏体验,玩家可以选择为游戏功能付费,对未来回报的期望不高。
      情感依恋:游戏内NFT是用于游戏活动而非金融产品的印象,为玩家提供了情感投射,尤其是当玩家花费资源升级NFT,花时间与NFT角色一起战斗时。这样的预测进一步降低了用户对未来回报的期望。

      2)音乐NFT

      音乐NFT允许粉丝购买歌曲、专辑和活动门票。它们还为艺术家提供了更多关于他们的名字、肖像、形象和艺术作品的盈利能力。

      3)DAO NFT

      DAO成员资格的NFT的基本结构:—> 治理权 —> 代币分配 —>通过证书

      DAO被推测为下一代公司的表现形式,它们为协调全球资源和社区提供了一种新的组织形式。如今,许多DAO组织正在兴起。在治理方面,将使用多种形式的NFT,功能NFT就是一个可能的例子。

      DAO成员可以通过其持有的NFT为DAO的发展做出治理贡献。做出突出贡献的会员也可以获DAO Token的空投。同时,DAO NFT也会作为DAO系统的通行证来发挥其治理作用。

      4.资产效用

      在加密货币的金融性质下,NFT具有特定的资产属性。它们放大的市场价格波动是影响其实际价值的一个因素。 NFT源自交易、贷款、拆分和ETF等金融应用的许多变体,可以整合复杂的金融合同关系。因此,NFT已成为可信的金融投资,代表了加密货币世界的所有权,并在智能合约中存储了有保障的权利。

      讨论:

      1.你更偏好NFT的哪种效用?能说一说原因吗?

      2.NFT效用的集成也将为NFT的价值做乘法,你知道有哪些案例吗?

      延伸阅读

      1.详解NFT在生活中的四个主要效用:艺术效用、社交效用、功能效用、资产效用

      2.为什么说区块链是元宇宙的重要底层技术,它究竟能带来什么?

      欢迎大家加入我们的讨论会~
      8fb4d002-4c20-4f8a-9df4-e4a4511d3ab0-e99b184576fbb42408d465958ebe483.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#29 The difference between Domestic and foreign NFT market

      3966cb51-383b-4fbb-bad0-cbe88bda6d75-image.png The year 2021 has just been called the first year of NFT, and according to Collins, usage of the word has increased by 11,000 percent in the past year, That beat out a string of candidates including "double-vaxxed", "hybrid working", "cheugy" and "metaverse" to top the list.

      Non-fungible Token (NFT) is a non-replicable, tamper with and divisible cryptographic digital proof of interest based on blockchain technology. It can be understood as a decentralized "digital ownership certificate of virtual assets or physical assets". Technically, NFT is distributed as a smart contract. A smart contract can issue one or more NFT assets, including physical assets such as collectibles and event tickets, and virtual assets such as graphics, music, and game items.

      NFT's core values lie in the following three aspects:

      1. First, digitize content.
      2. Second, rely on blockchain technology to ensure the uniqueness and authenticity of assets
        And permanent, and effectively solve the problem of confirmation of rights.
      3. Third, the decentralized transaction mode improves the content to some extent
        The commercial position of the creator reduces the commission share of the centralized platform. **

      The development path of NFT in China follows a business model different from that of overseas markets. Chinese enterprises are more likely to start from copyright protection, play the function of NFT digital property right proof, and emphasize the exploration of coinetless NFT.

      can be specifically summarized as differences in three aspects:

      1)Different nature of issuing platform:
      most foreign NFT are issued on blockchain public chain such as Ethereum, which can be traded on the public chain. The issuing party is a team or an individual. Domestic NFT, which is usually sold through companies' own affiliate chains, cannot theoretically be traded on public chains such as Ethereum.
      2)Different trading modes:
      domestic secondary market trading is restricted due to regulatory influence.
      3)Different cultural positioning:
      Domestic NFT is strictly called "digital collection", which emphasizes more on art and collection value, while overseas NFT, as a token, comparatively emphasizes "digital assets".

      Discussion:

      1. What do you think is the biggest difference between the domestic and foreign NFT markets?

      2. Do you prefer digital collections in the domestic market or NFT in the foreign market?

      Reference Reading

        1. the 2021 China digital collection (NFT) market analysis summary
        1. 2021 NFT industry overview: culture and social digital counterpoising truly value
        1. Year 1 of "NFT" : How did "digital tokens" sweep the cultural landscape?

      Welcome to join us!
      b2ef7947-7898-4653-bcc6-cf3d9ad1f44e-94b5a50a5961b4bfb2d321ae676af67.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#29 国内外NFT市场的差异

      ChainIDE#29 国内外NFT市场的差异##

      a8407b23-82b8-4f95-abdf-b8ee15ace6b1-image.png

      刚刚过去的2021年被称为是“NFT”元年,据柯林斯词典统计,“NFT”在过去一年的使用量增长了11000% ,由此击败了包括“接种两剂疫苗”(double-vaxxed)、“混合办公”(hybrid working)、“休克”(cheugy)、“元宇宙”(metaverse)在内的一系列候选词,荣登榜首。

      非同质化通证(Non-Fungible Token,NFT)是一种架构在区块链技术上的,不可复制、篡改、分割的加密数字权益证明,可以理解为一种去中心化的“虚拟资产或实物资产的数字所有权证书”。从技术层面来看,NFT以智能合约的形式发行,一份智能合约可以发行一种或多种NFT资产,包括实体收藏品、活动门票等实物资产和图像、音乐、游戏道具等虚拟资产。

      NFT的核心价值在于以下三个方面:
      1)一是使数字内容资产化。
      2)二是依托区块链技术保证资产的唯一性、真实性
      和永久性,并有效解决确权问题。
      3)三是去中心化的交易模式一定程度上提高了内容
      创作者的商业地位,减少中心化平台的抽佣分成。

      NFT扩张式的发展也扩大了国内外NFT市场的差异,NFT在中国的发展路径遵循不同于海外市场的商业模式,中国企业更多是从版权保护切入,发挥NFT数字产权证明功能,强调无币化NFT的探索。

      具体可以归纳为三个方面的差异:
      1)发行平台性质不同:
      国外的nft,大都依托以太坊之类的区块链公链发行,可以在公链上进行交易,发行方是团队或者个人。而国内的nft,通常依托各家公司自己旗下的联盟链来发售,理论上无法在以太坊等公链上进行交易。
      2)交易模式不同:
      国内受监管影响,二级市场交易受限。
      3)文化定位不同:
      国内的NFT严格意义上叫做“数字藏品”,更多地强调艺术和收藏价值,而海外NFT作为一种通证相比较而言更强调“数字资产”。

      讨论:

      1.你认为国内外NFT市场最大的差异在于哪一点?

      2.你更偏好国内市场的数字藏品还是国外市场的NFT?

      延伸阅读

      • 1.2021年中国数字藏品(NFT)市场分析总结
      • 2.2021年NFT行业概览:文化与社交的数字确权价值
      • 3.“NFT”元年:“数字代币”如何席卷了文化领域?

      欢迎加入我们的讨论!
      c110166f-167c-45a7-b897-f3d65c34b7fa-94b5a50a5961b4bfb2d321ae676af67.jpg

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#28 Can Azuki's success be replicated?

      ChainIDE#28 Can Azuki's success be replicated?##

      At the beginning of the new year in 2022, from Phanta Bear to Azuki, everyone has seen the unprecedented grand occasion of the NFT market. Recently, the development of Azuki is thriving.

      What's Azuki?

      Azuki is an NFT project with the theme of "The Rebellious Culture of Skateboarders".
      It aims to be the largest decentralized brand built and owned by the community in the metaverse world.Azuki provides community members with 10,000 character images. In addition to NFT sales, Azuki also plans to develop offline streetwear brand stores, hold meet-and-greets and live music festival events in the future.Behind Azuki is a real-name team whose members’ social accounts are disclosed on the official website. In addition, the team has backgrounds in large technology companies such as Facebook, Google, YC, and Blizzard.

      The reason for Azuki's success

      1. New NFT casting standard.
      Azuki adopts the method of batch casting, allowing users to pay a gas fee to mint multiple NFTs, reducing the cost of minting NFTs for users.

      2. New casting whitelist filtering mechanism.
      Azuki abandons the current method of randomly selecting a whitelist in the market, and combines social media interaction and other criteria within the project to complete the whitelist screening, and try to reward real members who will build the community for a long time, rather than the wool party.

      3. New NFT selling method.
      Azuki uses three stages of Dutch auction, whitelist minting and public sale to complete the NFT sale in order to provide the real members of the community with appropriate NFT acquisition costs.

      Discussion:

      1. Do you think Azuki's success can be replicated?

      2. What do you think are the important factors for the healthy and sustainable development of an NFT community?

      Reference Reading

      1.Azuki Official Website

      2.How Azukis Suddenly Became The World’s Best-Selling NFT Collection

      3.To buy an NFT, I learned English and drawing

      4.The most popular NFT project on Open Sea — Azuki

      posted in General Discussion
      子小艺
      子小艺
    • ChainIDE#28 Azuki的成功能够复制吗?

      ChainIDE#28 Azuki的成功能够复制吗?##

      2022新年伊始,由Phanta Bear到Azuki,大家已经看到了NFT市场的空前盛况。近期,Azuki的发展更是一片欣欣向荣。

      一、Azuki是什么?

      Azuki是一个以“滑板手的叛逆文化”为主题的NFT项目,致力于成为元宇宙世界中由社区建立、拥有的最大去中心化品牌。Azuki为社区成员提供10,000个人物图像,除了NFT发售,其未来还计划开拓线下街头服饰品牌店、举办见面会和音乐节现场活动等。Azuki的背后是一支实名团队,成员社交帐号均披露在官网上,此外团队拥有Facebook、Google、YC和暴雪等大型科技公司背景。

      二、Azuki成功的因素

      Azuki在NFT原生生态中进行了创新

      1.新的NFT铸造标准。
      Azuki采用批量铸造的方法,使用户支付一次Gas费就可铸造多个NFT,降低了用户铸造NFT的成本。

      2.新的铸造白名单筛选机制。
      Azuki放弃目前市场随机抽取白名单的方式,结合社交媒体互动和项目内部其他标准,完成白名单筛选,尽可能奖励会长期建设社区的真实成员,而非羊毛党。

      3.新的NFT出售方式。
      Azuki依次采用荷兰式拍卖、白名单铸造和公开销售三个阶段完成NFT售卖,为社区真实成员提供合适的获取NFT成本。

      讨论:

      1.你认为Azuki的成功可以复制吗?

      2.你认为一个NFT社区的健康可持续发展有哪些重要因素?

      延伸阅读

      1.Azuki Official Website

      2.Azuki是如何成为全球最火热NFT项目的?

      3.为了买一个NFT,我学会了英语和画画

      4.Open Sea上大火的NFT项目—Azuki

      posted in General Discussion
      子小艺
      子小艺