
Geth 源码系列:存储设计及实现
在区块链的世界中,状态存储是每一个节点的「记忆核心」 — — 它记录着亿万账户的余额、合约的代码、交易的痕迹,甚至决定着一笔交易能否被正确执行。作为以太坊生态的基石,Geth 客户端如何以精密的架构设计承载海量状态数据?其存储系统如何在性能、安全与可扩展性之间找到平衡? 这篇文章是 Geth 源码系列的第二篇,通过这个系列,我们将搭建一个研究 Geth 实现的框架,开发者可以根据这个框架深入自己感兴趣的部分研究。这个系列共有六篇文章,在这第二篇文章中,将系统讲解 Geth 的存储结构设计与相关源码,介绍其数据库层次划分并详细分析各个层次中相应模块的核心功能。 以太坊作为全球最大的区块链平台,其主流客户端 Geth(Go-Ethereum)承担了绝大部分节点运行与状态管理的职责。Geth 的状态存储系统,是理解以太坊运行机制、优化节点性能、以及推动未来客户端创新的基础。 本文作者: po Web3buidler.tech Core Contributor, EthStorage Engineer Geth 底层数据库总览 自 Geth v1.9.0 版本起,Geth 将其数据库分为...

以太坊单独质押实战教程:手把手教你完成部署
内容丨Ray 编辑 & 排版丨Yewlne、环环 以太坊的单独质押(Solo Staking)是保护网络安全和去中心化的黄金标准。通过运行自己的验证者节点,您可以直接参与网络共识,获得完整的质押奖励,并保持对资金的完全控制。本教程将为您提供详细的指导,帮助您在家中部署以太坊单独质押节点,确保安全性和稳定性。前提概要首先,我们需要有这样的一个基本概念:要处理来自执行层的传入验证器存款,您需要运行执行客户端以及共识客户端。这意味着我们至少需要部署两个客户端程序(在本教程中,为三个,共识客户端按照功能进行了拆分)。如果想了解更多执行客户端和共识客户端的差异及功能职责,可以点击阅读: https://ethereum.org/zh/developers/docs/networking-layer/一、选择执行客户端以太坊生态的客户端种类非常丰富,执行客户端和共识客户端都有多种不同语言的实现,如使用 Go 语言实现的 Geth, 使用 Rust 语言实现的 Reth 等。你可以根据自己喜好,选择不同的客户端,整体流程是类似的,只是不同客户端实现涉及的命令不同。在这里,我们不能对所有的客户端...

残酷共学申请指南独家速递!
在知识爆炸的时代,面对海量且拥杂的学习资源、松散且淡薄的学习氛围,如何在工作之余合理安排以有效坚持学习,俨然已是一个艰巨的挑战。为此,LXDAO 特别发起了——残酷共学,旨在通过以自主、开源的学习方式,严格的残酷共学计划和互助的学习氛围,帮助每一位参与者有序可持续的学习,更进一步地实现自我提升。残酷共学是什么残酷共学是由 LXDAO 发起的围绕某个「共学主题」共学活动,具体如下:参与者必须每天围绕某个「共学主题」进行学习,每周只有两次请假机会,通常每天至少需要花费半个小时(最好一个小时)来学习。参与者必须提交你的学习证明(按照共学内容设计)到 GitHub 所对应的「仓库」来证明你今天学习了。如果参与者没有完成上面两点,将会立刻被踢掉并且标记为 ❌ 失败。每期残酷共学以 4 周为一个周期,第一周为共学启动报名和熟悉共学规则,第二周到第四周将正式启动共学,为期 21 天,中途不得加入。共学方向包括不限于:英语、以太坊、Web3 技术、DAO、加密思潮等,自由自主发起,内容包括不限于:视频、书籍、文章、实战。如何残酷共学基于 GitHub 的流程,残酷共学发起人在 Github上创建...
LXDAO 是一个专注研发的 DAO 组织,致力于构建支持有价值的公共物品和开源项目的无限循环。 LXDAO is an R&D-focused DAO dedicated to building an Infinite Cycle that supports valuable

Geth 源码系列:存储设计及实现
在区块链的世界中,状态存储是每一个节点的「记忆核心」 — — 它记录着亿万账户的余额、合约的代码、交易的痕迹,甚至决定着一笔交易能否被正确执行。作为以太坊生态的基石,Geth 客户端如何以精密的架构设计承载海量状态数据?其存储系统如何在性能、安全与可扩展性之间找到平衡? 这篇文章是 Geth 源码系列的第二篇,通过这个系列,我们将搭建一个研究 Geth 实现的框架,开发者可以根据这个框架深入自己感兴趣的部分研究。这个系列共有六篇文章,在这第二篇文章中,将系统讲解 Geth 的存储结构设计与相关源码,介绍其数据库层次划分并详细分析各个层次中相应模块的核心功能。 以太坊作为全球最大的区块链平台,其主流客户端 Geth(Go-Ethereum)承担了绝大部分节点运行与状态管理的职责。Geth 的状态存储系统,是理解以太坊运行机制、优化节点性能、以及推动未来客户端创新的基础。 本文作者: po Web3buidler.tech Core Contributor, EthStorage Engineer Geth 底层数据库总览 自 Geth v1.9.0 版本起,Geth 将其数据库分为...

以太坊单独质押实战教程:手把手教你完成部署
内容丨Ray 编辑 & 排版丨Yewlne、环环 以太坊的单独质押(Solo Staking)是保护网络安全和去中心化的黄金标准。通过运行自己的验证者节点,您可以直接参与网络共识,获得完整的质押奖励,并保持对资金的完全控制。本教程将为您提供详细的指导,帮助您在家中部署以太坊单独质押节点,确保安全性和稳定性。前提概要首先,我们需要有这样的一个基本概念:要处理来自执行层的传入验证器存款,您需要运行执行客户端以及共识客户端。这意味着我们至少需要部署两个客户端程序(在本教程中,为三个,共识客户端按照功能进行了拆分)。如果想了解更多执行客户端和共识客户端的差异及功能职责,可以点击阅读: https://ethereum.org/zh/developers/docs/networking-layer/一、选择执行客户端以太坊生态的客户端种类非常丰富,执行客户端和共识客户端都有多种不同语言的实现,如使用 Go 语言实现的 Geth, 使用 Rust 语言实现的 Reth 等。你可以根据自己喜好,选择不同的客户端,整体流程是类似的,只是不同客户端实现涉及的命令不同。在这里,我们不能对所有的客户端...

残酷共学申请指南独家速递!
在知识爆炸的时代,面对海量且拥杂的学习资源、松散且淡薄的学习氛围,如何在工作之余合理安排以有效坚持学习,俨然已是一个艰巨的挑战。为此,LXDAO 特别发起了——残酷共学,旨在通过以自主、开源的学习方式,严格的残酷共学计划和互助的学习氛围,帮助每一位参与者有序可持续的学习,更进一步地实现自我提升。残酷共学是什么残酷共学是由 LXDAO 发起的围绕某个「共学主题」共学活动,具体如下:参与者必须每天围绕某个「共学主题」进行学习,每周只有两次请假机会,通常每天至少需要花费半个小时(最好一个小时)来学习。参与者必须提交你的学习证明(按照共学内容设计)到 GitHub 所对应的「仓库」来证明你今天学习了。如果参与者没有完成上面两点,将会立刻被踢掉并且标记为 ❌ 失败。每期残酷共学以 4 周为一个周期,第一周为共学启动报名和熟悉共学规则,第二周到第四周将正式启动共学,为期 21 天,中途不得加入。共学方向包括不限于:英语、以太坊、Web3 技术、DAO、加密思潮等,自由自主发起,内容包括不限于:视频、书籍、文章、实战。如何残酷共学基于 GitHub 的流程,残酷共学发起人在 Github上创建...
LXDAO 是一个专注研发的 DAO 组织,致力于构建支持有价值的公共物品和开源项目的无限循环。 LXDAO is an R&D-focused DAO dedicated to building an Infinite Cycle that supports valuable

Subscribe to LXDAO

Subscribe to LXDAO
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers


LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 97th weekly report.
Suisui: Hello everyone! I'm Sui Sui, with a background in journalism and communications. Recently, before heading abroad for my studies in September, I'm embracing a global nomadic lifestyle! I was lucky to meet Cikey in Hangzhou, and was deeply inspired by her motivation. I also discovered the charm of decentralized models and joined a fantastic translation community. It's opened up the new world of Web3 for us, enthusiasts of translation both oral and written! (Based in Guangzhou, looking forward to meeting up and creating more stories with peers and mentors in the future!)
Chenzao: I'm Chen Zao. I've worked as an English teacher and a librarian, and I'm currently exploring more possibilities. Through Cikey, I learned about Web3 and became very interested in it. I have now joined a translation team, working on translating "Absolute Essentials of Ethereum," and I hope to engage with and learn more about Web3 through LXDAO.
Ye: Hello everyone, I am a student currently studying computer science. I became acquainted with the Web3 field through my school's blockchain community. I participated in some blockchain-related projects in the lab, which sparked my interest in Web3. Although I only tried some translation work in the club for a day or two previously, I have now joined the LXDAO translation team, hoping to gain a deeper understanding of Web3 through translation.
Artist:I first learned about LXDAO at the Ethereum conference in Hangzhou last year. I am currently the chairman of the Blockchain Association at Zhejiang University. My background is primarily in quantitative finance and management in traditional industries. I entered the Web3 field in 2022, am currently pursuing an MBA at Zhejiang University, and am also involved in entrepreneurship activities related to Web3. I am honored to join LXDAO and hope to contribute my strength to the team.
Retsina: I am an algorithm engineer working in Shanghai, previously engaged in biological research. I have a strong interest in Web3 and legal risks, and have participated in translating related articles. In recent years, I have focused on the development of on-chain data analysis and fund tracking algorithms, as well as risk prevention for virtual assets and gray-black industries. I look forward to making more contributions in this field.
We are delighted to have new friends join the community, congratulations on them officially becoming members of the LXDAO community and obtaining their first Badge!
Once a community member’s contribution reaches 500 contribution points, the Governance Group will automatically initiate a proposal for the issuance of a Buidler Card. Holding an LXDAO Buidler Card grants the holder the right to propose and vote on proposals, as well as access to LXDAO community’s financial, technical, and manpower support!
We cordially invite you to participate in the LXDAO’s weekly meeting at 2:00 a.m. (UTC) every Saturday.
Click here to join the weekly meeting:https://forum.lxdao.io/c/governance/community-call/22
Here, you can grasp the latest progress of various projects and working groups in the community, and learn about recruitment and bounty needs. Meanwhile, we welcome you to introduce yourself in the weekly meeting, which will help you integrate into our community more quickly.
The latest member recruitment, task bounties, and partner talent recruitment at LXDAO will be presented on the Bounty Board. By following the Bounty Board, you can quickly access detailed job information, including specific requirements, desired qualifications, and incentive mechanisms.
Click here to view detailed recruitment information:
https://www.notion.so/Bounty-Dashboard-eac3abb08d504a2caa2f13337c825883
Participate in the Web3 Hackathon, choose relevant thematic tracks, and interact with Web3 projects. By using their technological products, developers can quickly transition from Web2 to Web3.
Click here to view more detailed information:
https://www.notion.so/lxdao/Grant-Hackathon-55a8e7dd46b642648d7efb12500430fc
Here are the scheduled community meetings and working group meetings for this week. We invite everyone to participate! You can also subscribe to our meetings by visiting our official website LXDAO.io and clicking on “Want to check out the latest LXDAO Event”.
April 22, 2024, 9:00 PM (UTC+8) (Monday): LXDAO official website team weekly meeting
April 23, 2024, 1:00 PM (UTC+8) (Tuesday): LXDAO expert working group weekly meeting
April 23, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun project weekly meeting
April 23, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge working group weekly meeting
April 25, 2024, 8:30 PM (UTC+8) (Thursday): Mississippi project weekly meeting
April 26, 2024, 10:00 AM (UTC+8) (Friday): LXDAO operations working group weekly meeting
April 27, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO community weekly meeting
April 27, 2024, 4:00 PM (UTC+8) (Saturday): LXDAO governance working group weekly meeting
Currently, LXDAO has a total of 4 working groups. 4working groups will provide updates this week
If you are interested in any of the working groups, you can directly contact the PM to apply for membership.
Governance Group: A working group that researches DAO governance and rules. The scope of work includes, but is not limited to: LXDAO governance rules, quarterly summaries, whitepaper writing, token economic design, community conflict resolution, proposal initiation, etc.
Last Week
Optimize the Dune dashboard for LXDAO's multi-national treasury.
Optimize proposals for LXDAO's multi-national treasury.
Distribute March contributor incentives according to POC; the Forge team and Public Affairs team to use sub-treasuries for distribution.
Organize the fourth session of narrative co-reading.
Complete and publish the initial draft of the minimalist governance forum proposal.
Write the third article in the governance experience series.
This Week
Follow up on last week's progress.
Expert Group: Composed mainly of seasoned experts in various fields. Work includes but is not limited to: expert consultations, code reviews, special topic research, technical sharing, etc.
Last Week
Host an ERC-404 themed technical sharing session and review the effectiveness of the event.
Review the completed article on the theme of Restaking.
Publish the Chinese version of the article on Starknet OP/ZK rollup written by Samo, with the translation team producing an English version of the article.
Conduct technical sharing on AVS/OP and trading bots during the group's weekly meeting.
Consider the positioning of the LXDAO expert group.
This Week
Advancing last week's matters
Operation Grop: Primarily responsible for the community management of LXDAO. Job functions include but are not limited to: community operations, new member acquisition, enhancing community influence, content creation and management, media branding, business development, etc.
Last Week
Basics
Daily guidance for new members, community operations and promotion, communication, etc.
Upload videos of routine weekly meetings and sharing sessions.
Collaborate in operations, provide project support, etc.
Assist with the translation of OP Chinese content.
BD
Daily BD work
Submit a partnership application to EDPC and conduct preliminary research on Chainlink and Vera Network.
Collaborate with the Uncommons community to translate Mycofi and initiate community recruitment.
Events
Conduct sharing events offline at Qspace and DN.
Coordinate with the expert group to promote the ERC-404 themed sharing event.
Announce recruitment for LXDAO's bi-weekly urban flash mob activities and plan the Shanghai event.
Content :
Daily operations on WeChat Public Account, Twitter, and Mirror.
Publish weekly content produced by the expert group, translation team, and governance group.
Layout and publish LXDAO issue 96 weekly report and EIP weekly newsletter.
This Week
Basics
Routine guidance for new members, community operation announcements, communications, and user growth on media platforms.
Events
Follow up on the planning of the two-year anniversary event.
BD
Daily BD work
Content
Publish LXDAO Weekly #97 and EIP Fun weekly
Daily operations on WeChat Public Account, Twitter, and Mirror.
Forge Group: Gathers experienced PMs to explore, identify, and refine ideas and projects for public goods, measures and evaluates the progress of the working group, promotes and assists the advancement of LXDAO projects and various tasks, enabling LXDAO to operate more effectively.
Last Week
The official website team organizes the onboarding requirements and produces a prototype.
The design team compiles daily design needs and documents.
Web3Logo organizes the list of winners for the logo competition.
Advance the participation of Fairsharing and Marry3 in the Ethglobal hackathon.
Facilitate the migration of LXDAO to OP.
Promote the relaunch of the Donate3 project.
This Week
Advance various affairs according to last week's plan.
Currently, LXDAO has 14 self-developed projects, 2 collaborative projects, This week, there will be progress on 6 projects.
Click the link to learn more details or leave comments :

EIP Fun is created with support from LXDAO and PlanckerDAO. We are dedicated to making the Ethereum ecosystem protocols (EIP, ERC, RIP) more engaging and accessible through content creation and community discussions, fostering the use of protocols.
For more information:https://lxdao.io/projects/011
Last Week
Plan and publish an introduction post for the EIP Fun project and a weekly newsletter on the Magician forum.
Participate in Ethereum Protocol Co-Learning Week 9 and summarize the notes.
Publish the 44th issue of the EIP Fun weekly newsletter.
Participate in the third meeting of ALLERCDev and publish the notes.
Announce a recruitment challenge for Ethereum data visualization.
This Week
Update the official website and fix bugs for the Profile Co-creation Project.
Participate in Ethereum Protocol Co-Learning Week 10 and summarize the notes.
Prepare for the Cruel Co-Learning technical sharing session.
Post project introductions and promote weekly newsletters on the Magician forum.
Publish the 45th issue of the EIP Fun weekly newsletter.

FairSharing's mission is to revolutionize the way human collaboration and resource allocation work. Our slogan is "Making contributions visible, distribution fairer, and community more trustful.
For more information:https://lxdao.io/projects/012
Last Week
Participating in the Ethglobal hackathon
This Week
Continue to optimize the product.

Mississippi is a fully on-chain roguelike PVP game where players battle for limited resources within a complex cave. Welcome to Mississippi for gold prospecting! Compete with others, take on greed, and see who comes out on top.
For more information:https://lxdao.io/projects/013
Last Week.
Completed testing of upgraded functional modules.
Optimized the frontend display page.
Business trip to Dubai.
This Week
Continuing progress on last week's contract development.

Web3Logo just as its name suggests, Web3logo is the core Logo resource site for the Web3 industry, gathering Svg source files from major products. We are committed to providing users with a fast, one-stop Logo download experience. Our vision is to build the largest design resource library in the Web3 domain, contributing to the entire ecosystem.
Last Week
The current phase of product development has been completed.
This Week
Completed the Web3Logo competition and compiled the results.
There will be no further updates moving forward.
https://lxdao.notion.site/LXDAO-Q-A-06f9120737694a13b251ee4712a5be45
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 97th weekly report.
Suisui: Hello everyone! I'm Sui Sui, with a background in journalism and communications. Recently, before heading abroad for my studies in September, I'm embracing a global nomadic lifestyle! I was lucky to meet Cikey in Hangzhou, and was deeply inspired by her motivation. I also discovered the charm of decentralized models and joined a fantastic translation community. It's opened up the new world of Web3 for us, enthusiasts of translation both oral and written! (Based in Guangzhou, looking forward to meeting up and creating more stories with peers and mentors in the future!)
Chenzao: I'm Chen Zao. I've worked as an English teacher and a librarian, and I'm currently exploring more possibilities. Through Cikey, I learned about Web3 and became very interested in it. I have now joined a translation team, working on translating "Absolute Essentials of Ethereum," and I hope to engage with and learn more about Web3 through LXDAO.
Ye: Hello everyone, I am a student currently studying computer science. I became acquainted with the Web3 field through my school's blockchain community. I participated in some blockchain-related projects in the lab, which sparked my interest in Web3. Although I only tried some translation work in the club for a day or two previously, I have now joined the LXDAO translation team, hoping to gain a deeper understanding of Web3 through translation.
Artist:I first learned about LXDAO at the Ethereum conference in Hangzhou last year. I am currently the chairman of the Blockchain Association at Zhejiang University. My background is primarily in quantitative finance and management in traditional industries. I entered the Web3 field in 2022, am currently pursuing an MBA at Zhejiang University, and am also involved in entrepreneurship activities related to Web3. I am honored to join LXDAO and hope to contribute my strength to the team.
Retsina: I am an algorithm engineer working in Shanghai, previously engaged in biological research. I have a strong interest in Web3 and legal risks, and have participated in translating related articles. In recent years, I have focused on the development of on-chain data analysis and fund tracking algorithms, as well as risk prevention for virtual assets and gray-black industries. I look forward to making more contributions in this field.
We are delighted to have new friends join the community, congratulations on them officially becoming members of the LXDAO community and obtaining their first Badge!
Once a community member’s contribution reaches 500 contribution points, the Governance Group will automatically initiate a proposal for the issuance of a Buidler Card. Holding an LXDAO Buidler Card grants the holder the right to propose and vote on proposals, as well as access to LXDAO community’s financial, technical, and manpower support!
We cordially invite you to participate in the LXDAO’s weekly meeting at 2:00 a.m. (UTC) every Saturday.
Click here to join the weekly meeting:https://forum.lxdao.io/c/governance/community-call/22
Here, you can grasp the latest progress of various projects and working groups in the community, and learn about recruitment and bounty needs. Meanwhile, we welcome you to introduce yourself in the weekly meeting, which will help you integrate into our community more quickly.
The latest member recruitment, task bounties, and partner talent recruitment at LXDAO will be presented on the Bounty Board. By following the Bounty Board, you can quickly access detailed job information, including specific requirements, desired qualifications, and incentive mechanisms.
Click here to view detailed recruitment information:
https://www.notion.so/Bounty-Dashboard-eac3abb08d504a2caa2f13337c825883
Participate in the Web3 Hackathon, choose relevant thematic tracks, and interact with Web3 projects. By using their technological products, developers can quickly transition from Web2 to Web3.
Click here to view more detailed information:
https://www.notion.so/lxdao/Grant-Hackathon-55a8e7dd46b642648d7efb12500430fc
Here are the scheduled community meetings and working group meetings for this week. We invite everyone to participate! You can also subscribe to our meetings by visiting our official website LXDAO.io and clicking on “Want to check out the latest LXDAO Event”.
April 22, 2024, 9:00 PM (UTC+8) (Monday): LXDAO official website team weekly meeting
April 23, 2024, 1:00 PM (UTC+8) (Tuesday): LXDAO expert working group weekly meeting
April 23, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun project weekly meeting
April 23, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge working group weekly meeting
April 25, 2024, 8:30 PM (UTC+8) (Thursday): Mississippi project weekly meeting
April 26, 2024, 10:00 AM (UTC+8) (Friday): LXDAO operations working group weekly meeting
April 27, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO community weekly meeting
April 27, 2024, 4:00 PM (UTC+8) (Saturday): LXDAO governance working group weekly meeting
Currently, LXDAO has a total of 4 working groups. 4working groups will provide updates this week
If you are interested in any of the working groups, you can directly contact the PM to apply for membership.
Governance Group: A working group that researches DAO governance and rules. The scope of work includes, but is not limited to: LXDAO governance rules, quarterly summaries, whitepaper writing, token economic design, community conflict resolution, proposal initiation, etc.
Last Week
Optimize the Dune dashboard for LXDAO's multi-national treasury.
Optimize proposals for LXDAO's multi-national treasury.
Distribute March contributor incentives according to POC; the Forge team and Public Affairs team to use sub-treasuries for distribution.
Organize the fourth session of narrative co-reading.
Complete and publish the initial draft of the minimalist governance forum proposal.
Write the third article in the governance experience series.
This Week
Follow up on last week's progress.
Expert Group: Composed mainly of seasoned experts in various fields. Work includes but is not limited to: expert consultations, code reviews, special topic research, technical sharing, etc.
Last Week
Host an ERC-404 themed technical sharing session and review the effectiveness of the event.
Review the completed article on the theme of Restaking.
Publish the Chinese version of the article on Starknet OP/ZK rollup written by Samo, with the translation team producing an English version of the article.
Conduct technical sharing on AVS/OP and trading bots during the group's weekly meeting.
Consider the positioning of the LXDAO expert group.
This Week
Advancing last week's matters
Operation Grop: Primarily responsible for the community management of LXDAO. Job functions include but are not limited to: community operations, new member acquisition, enhancing community influence, content creation and management, media branding, business development, etc.
Last Week
Basics
Daily guidance for new members, community operations and promotion, communication, etc.
Upload videos of routine weekly meetings and sharing sessions.
Collaborate in operations, provide project support, etc.
Assist with the translation of OP Chinese content.
BD
Daily BD work
Submit a partnership application to EDPC and conduct preliminary research on Chainlink and Vera Network.
Collaborate with the Uncommons community to translate Mycofi and initiate community recruitment.
Events
Conduct sharing events offline at Qspace and DN.
Coordinate with the expert group to promote the ERC-404 themed sharing event.
Announce recruitment for LXDAO's bi-weekly urban flash mob activities and plan the Shanghai event.
Content :
Daily operations on WeChat Public Account, Twitter, and Mirror.
Publish weekly content produced by the expert group, translation team, and governance group.
Layout and publish LXDAO issue 96 weekly report and EIP weekly newsletter.
This Week
Basics
Routine guidance for new members, community operation announcements, communications, and user growth on media platforms.
Events
Follow up on the planning of the two-year anniversary event.
BD
Daily BD work
Content
Publish LXDAO Weekly #97 and EIP Fun weekly
Daily operations on WeChat Public Account, Twitter, and Mirror.
Forge Group: Gathers experienced PMs to explore, identify, and refine ideas and projects for public goods, measures and evaluates the progress of the working group, promotes and assists the advancement of LXDAO projects and various tasks, enabling LXDAO to operate more effectively.
Last Week
The official website team organizes the onboarding requirements and produces a prototype.
The design team compiles daily design needs and documents.
Web3Logo organizes the list of winners for the logo competition.
Advance the participation of Fairsharing and Marry3 in the Ethglobal hackathon.
Facilitate the migration of LXDAO to OP.
Promote the relaunch of the Donate3 project.
This Week
Advance various affairs according to last week's plan.
Currently, LXDAO has 14 self-developed projects, 2 collaborative projects, This week, there will be progress on 6 projects.
Click the link to learn more details or leave comments :

EIP Fun is created with support from LXDAO and PlanckerDAO. We are dedicated to making the Ethereum ecosystem protocols (EIP, ERC, RIP) more engaging and accessible through content creation and community discussions, fostering the use of protocols.
For more information:https://lxdao.io/projects/011
Last Week
Plan and publish an introduction post for the EIP Fun project and a weekly newsletter on the Magician forum.
Participate in Ethereum Protocol Co-Learning Week 9 and summarize the notes.
Publish the 44th issue of the EIP Fun weekly newsletter.
Participate in the third meeting of ALLERCDev and publish the notes.
Announce a recruitment challenge for Ethereum data visualization.
This Week
Update the official website and fix bugs for the Profile Co-creation Project.
Participate in Ethereum Protocol Co-Learning Week 10 and summarize the notes.
Prepare for the Cruel Co-Learning technical sharing session.
Post project introductions and promote weekly newsletters on the Magician forum.
Publish the 45th issue of the EIP Fun weekly newsletter.

FairSharing's mission is to revolutionize the way human collaboration and resource allocation work. Our slogan is "Making contributions visible, distribution fairer, and community more trustful.
For more information:https://lxdao.io/projects/012
Last Week
Participating in the Ethglobal hackathon
This Week
Continue to optimize the product.

Mississippi is a fully on-chain roguelike PVP game where players battle for limited resources within a complex cave. Welcome to Mississippi for gold prospecting! Compete with others, take on greed, and see who comes out on top.
For more information:https://lxdao.io/projects/013
Last Week.
Completed testing of upgraded functional modules.
Optimized the frontend display page.
Business trip to Dubai.
This Week
Continuing progress on last week's contract development.

Web3Logo just as its name suggests, Web3logo is the core Logo resource site for the Web3 industry, gathering Svg source files from major products. We are committed to providing users with a fast, one-stop Logo download experience. Our vision is to build the largest design resource library in the Web3 domain, contributing to the entire ecosystem.
Last Week
The current phase of product development has been completed.
This Week
Completed the Web3Logo competition and compiled the results.
There will be no further updates moving forward.
https://lxdao.notion.site/LXDAO-Q-A-06f9120737694a13b251ee4712a5be45
No activity yet