
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 128th weekly report.
TG: Hello everyone, I'm TG. Three years ago, I was introduced to Web3 through a friend and joined BanklessCN, where I mainly worked on some basic tasks, such as participating in translation projects for Arbitrum and OP. However, due to compensation and other issues, the projects were unable to continue smoothly. After that, I took a break from deeper involvement in related activities until a friend recommended me to join the LXDAO community. I hope to explore more possibilities in this field and improve my programming skills, as my technical level still needs enhancement. I hope this opportunity will help me find the right direction for myself.
Echo: Hello everyone, I'm Echo. I officially entered this space this year, so I'm relatively new. Before that, around 2019, I worked on development projects with some partners and developed an interest in related financial knowledge. Although I was just starting with development and still at a basic level, I gradually gained more understanding of the financial field. Through further exploration, I hope to learn more about the specifics of this industry and its technological developments, especially the applications of DAO.
Alex: I'm Alex, a product manager. I've been in the blockchain industry for some time, starting in 2018, where I accumulated experience at several companies in the industry. During this time, I participated in areas such as DeFi and recently attended Devcon, as well as participated in LXDAO activities. Although I have a relatively deep understanding of the blockchain industry and its related products, I still lack hands-on experience with DAOs, so I hope to dive deeper into this field. I can also offer some insights and share experiences regarding blockchain products and industry information. Currently, I work at Chainfeeds.
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.
Here are the key discussion topic for this week's LXDAO weekly meeting:
[S11 Working Group Leader Rotation Announcement]
As the S10 quarter of the community is coming to an end, the governance group has released a voting announcement on the forum regarding the rotation of S10 working group PMs. The announcement includes the re-election proposals for Governance Group Leader Punkcan, Forge Group Leader Marcus, and Operations Group Leader Soleil. If the opposition votes are below 20%, the rotation decision will be implemented.
[My First Web3 Project Roadmap Discussion]
Noiii has posted an initial project concept for the restart of the "My First" series on the forum. The proposal aims to promote Web3 education by addressing issues such as high entry barriers, fragmented information, and insufficient practical application. The project plans to reduce the learning threshold by offering engaging foundational content aimed at a broad Web2 user base and beginners. It will incorporate gamified elements (e.g., "hatching crypto eggs") to enhance user participation and interactivity. Users can earn NFTs by completing tasks, progressively improving their knowledge of Web3. Additionally, the project will integrate MyFirst sub-projects and LXDAO community resources to offer practical opportunities, helping users transition from learning to real-world application, ultimately enabling Web2 users to become Web3-native users and promoting the widespread development of Web3 education. At the end of the discussion, a key question was raised: should the educational content itself be gamified, or should the entire learning and incentive mechanism be gamified? Further exploration is needed. Interested individuals are welcome to join the discussion on the forum and the TG channel: https://t.me/LXDAO/3255
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
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”.
November 26, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
November 26, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
November 27, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
November 29, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
November 29, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
November 30, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Weekly Meeting
Currently, LXDAO has a total of 3 working groups. 3 working 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.
Last Week
Held the S10 Season summary meeting
Completed the end-of-season governance survey
Released the Snapshot proposal for governance rights optimization
Announced the S10 working group leader rotation
Improved the Handbook
This Week
Released the S11 working group Season proposals
Held the second round of season meetings
Assisted with fixed position recruitment for S11 working groups
Updated the Handbook
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 onboarding of new members, community operations and promotions, communication, etc.
Operational coordination and project support
Daily operation coordination and review
S10 quarter operations group summary
Coordination Day retrospective incentive application list
BD
Applied for Octant Grants
Completed the BD ecosystem report
Daily BD activities
Events
Invited and planned guests for the Devcon experience sharing event
Held a Twitter Space event on the theme of MyCoFI
Content Group
Managed daily operations for WeChat official account, Twitter, and Mirror
Released the 6th authorized translation of Vitalik's blog
Published the Coordination Day retrospective article
Released the EIP Fun weekly and LXDAO weekly report
This Week
Basic
Daily onboarding of new members, community operations and promotions, communication, and user growth on media platforms
Operational coordination, project support, etc.
Daily operational coordination and review
Released S11 season operations group proposals and fixed position recruitment
Analyzed and optimized the onboarding path for new members
Edited and published the text and video versions of the Vitalik Fireside Chat
Events
Conceptualized and planned the LXDAO Coordination Day event brand
Organized and reviewed the text version of the MyCoFi online AMA
Held a Devcon experience sharing session and post-event review
BD
Submitted the Octant Grant application
Reviewed and summarized BD work for the current season
Completed the BD ecosystem report
Handed over the AWS account
Content Group
Managed daily operations for WeChat official account, Twitter, and Mirror
Published regular translation articles
Released the AMA review article
Published the EIP Fun weekly and LXDAO weekly reports
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
Nantang DAO: Re-discussed and adjusted the organizational structure, boundaries, organizational management, and business management issues. Had discussions with teachers in the field of rural governance and made preliminary plans to organize a "Social Innovation/Community Governance" themed seminar in Chengdu.
FairSharing: The FS incentive pool plan has been roughly finalized, with subsequent confirmation needed for interactions and details.
Cruel Co-Learning Project: Completed the homepage functionality and desktop UI, reviewed the UI/UX design and features of the remaining pages, and updated all README files for the project to the latest template.
PGNode: Preliminary completion of the L1 Weekly automation process, organized the Solo Staking process and planned to release an article, and confirmed that the Map Protocol node cannot be rebuilt.
This Week
Design Group: Completed the secondary page design for the Intensive-Co-Learning website.
Nantang DAO: Continued preparations for the Chengdu seminar, finalized discussion topics and participating teams.
FairSharing: Proofread the technical plan and advanced development.
Intensive-Co-Learning Project: Confirmed remaining design issues and completed mobile UI design, reviewed the WeChat official account article and scheduled publication time, polished the homepage UI by adding animations, and started developing the list page.
PGNode: Optimized the L1 Weekly automation process, published the Solo Staking article, researched the Octant funding process, applied for AWS machine grants, and optimized the PGNode official website.
Crypto DCA: Held a sharing session and conducted knowledge outreach activities on DCA (Dollar-Cost Averaging), optimized the product dashboard.
Wild LX: Discussed specific proposal topics (e.g., DeSci) and held the Friday evening weekly meeting.
Currently, LXDAO has 14 self-developed projects, 2 collaborative projects, This week, there will be progress on 1 project.
Click the link to learn more details :

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
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #72
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #73
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 128th weekly report.
TG: Hello everyone, I'm TG. Three years ago, I was introduced to Web3 through a friend and joined BanklessCN, where I mainly worked on some basic tasks, such as participating in translation projects for Arbitrum and OP. However, due to compensation and other issues, the projects were unable to continue smoothly. After that, I took a break from deeper involvement in related activities until a friend recommended me to join the LXDAO community. I hope to explore more possibilities in this field and improve my programming skills, as my technical level still needs enhancement. I hope this opportunity will help me find the right direction for myself.
Echo: Hello everyone, I'm Echo. I officially entered this space this year, so I'm relatively new. Before that, around 2019, I worked on development projects with some partners and developed an interest in related financial knowledge. Although I was just starting with development and still at a basic level, I gradually gained more understanding of the financial field. Through further exploration, I hope to learn more about the specifics of this industry and its technological developments, especially the applications of DAO.
Alex: I'm Alex, a product manager. I've been in the blockchain industry for some time, starting in 2018, where I accumulated experience at several companies in the industry. During this time, I participated in areas such as DeFi and recently attended Devcon, as well as participated in LXDAO activities. Although I have a relatively deep understanding of the blockchain industry and its related products, I still lack hands-on experience with DAOs, so I hope to dive deeper into this field. I can also offer some insights and share experiences regarding blockchain products and industry information. Currently, I work at Chainfeeds.
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.
Here are the key discussion topic for this week's LXDAO weekly meeting:
[S11 Working Group Leader Rotation Announcement]
As the S10 quarter of the community is coming to an end, the governance group has released a voting announcement on the forum regarding the rotation of S10 working group PMs. The announcement includes the re-election proposals for Governance Group Leader Punkcan, Forge Group Leader Marcus, and Operations Group Leader Soleil. If the opposition votes are below 20%, the rotation decision will be implemented.
[My First Web3 Project Roadmap Discussion]
Noiii has posted an initial project concept for the restart of the "My First" series on the forum. The proposal aims to promote Web3 education by addressing issues such as high entry barriers, fragmented information, and insufficient practical application. The project plans to reduce the learning threshold by offering engaging foundational content aimed at a broad Web2 user base and beginners. It will incorporate gamified elements (e.g., "hatching crypto eggs") to enhance user participation and interactivity. Users can earn NFTs by completing tasks, progressively improving their knowledge of Web3. Additionally, the project will integrate MyFirst sub-projects and LXDAO community resources to offer practical opportunities, helping users transition from learning to real-world application, ultimately enabling Web2 users to become Web3-native users and promoting the widespread development of Web3 education. At the end of the discussion, a key question was raised: should the educational content itself be gamified, or should the entire learning and incentive mechanism be gamified? Further exploration is needed. Interested individuals are welcome to join the discussion on the forum and the TG channel: https://t.me/LXDAO/3255
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
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”.
November 26, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
November 26, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
November 27, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
November 29, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
November 29, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
November 30, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Weekly Meeting
Currently, LXDAO has a total of 3 working groups. 3 working 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.
Last Week
Held the S10 Season summary meeting
Completed the end-of-season governance survey
Released the Snapshot proposal for governance rights optimization
Announced the S10 working group leader rotation
Improved the Handbook
This Week
Released the S11 working group Season proposals
Held the second round of season meetings
Assisted with fixed position recruitment for S11 working groups
Updated the Handbook
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 onboarding of new members, community operations and promotions, communication, etc.
Operational coordination and project support
Daily operation coordination and review
S10 quarter operations group summary
Coordination Day retrospective incentive application list
BD
Applied for Octant Grants
Completed the BD ecosystem report
Daily BD activities
Events
Invited and planned guests for the Devcon experience sharing event
Held a Twitter Space event on the theme of MyCoFI
Content Group
Managed daily operations for WeChat official account, Twitter, and Mirror
Released the 6th authorized translation of Vitalik's blog
Published the Coordination Day retrospective article
Released the EIP Fun weekly and LXDAO weekly report
This Week
Basic
Daily onboarding of new members, community operations and promotions, communication, and user growth on media platforms
Operational coordination, project support, etc.
Daily operational coordination and review
Released S11 season operations group proposals and fixed position recruitment
Analyzed and optimized the onboarding path for new members
Edited and published the text and video versions of the Vitalik Fireside Chat
Events
Conceptualized and planned the LXDAO Coordination Day event brand
Organized and reviewed the text version of the MyCoFi online AMA
Held a Devcon experience sharing session and post-event review
BD
Submitted the Octant Grant application
Reviewed and summarized BD work for the current season
Completed the BD ecosystem report
Handed over the AWS account
Content Group
Managed daily operations for WeChat official account, Twitter, and Mirror
Published regular translation articles
Released the AMA review article
Published the EIP Fun weekly and LXDAO weekly reports
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
Nantang DAO: Re-discussed and adjusted the organizational structure, boundaries, organizational management, and business management issues. Had discussions with teachers in the field of rural governance and made preliminary plans to organize a "Social Innovation/Community Governance" themed seminar in Chengdu.
FairSharing: The FS incentive pool plan has been roughly finalized, with subsequent confirmation needed for interactions and details.
Cruel Co-Learning Project: Completed the homepage functionality and desktop UI, reviewed the UI/UX design and features of the remaining pages, and updated all README files for the project to the latest template.
PGNode: Preliminary completion of the L1 Weekly automation process, organized the Solo Staking process and planned to release an article, and confirmed that the Map Protocol node cannot be rebuilt.
This Week
Design Group: Completed the secondary page design for the Intensive-Co-Learning website.
Nantang DAO: Continued preparations for the Chengdu seminar, finalized discussion topics and participating teams.
FairSharing: Proofread the technical plan and advanced development.
Intensive-Co-Learning Project: Confirmed remaining design issues and completed mobile UI design, reviewed the WeChat official account article and scheduled publication time, polished the homepage UI by adding animations, and started developing the list page.
PGNode: Optimized the L1 Weekly automation process, published the Solo Staking article, researched the Octant funding process, applied for AWS machine grants, and optimized the PGNode official website.
Crypto DCA: Held a sharing session and conducted knowledge outreach activities on DCA (Dollar-Cost Averaging), optimized the product dashboard.
Wild LX: Discussed specific proposal topics (e.g., DeSci) and held the Friday evening weekly meeting.
Currently, LXDAO has 14 self-developed projects, 2 collaborative projects, This week, there will be progress on 1 project.
Click the link to learn more details :

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
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #72
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #73
No activity yet