
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上创建...
Share Dialog
Share Dialog
LXDAO 是一个专注研发的 DAO 组织,致力于构建支持有价值的公共物品和开源项目的无限循环。 LXDAO is an R&D-focused DAO dedicated to building an Infinite Cycle that supports valuable

Subscribe to LXDAO

Subscribe to LXDAO
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 109th weekly report.
Mark: Hi everyone, I'm Mark. I've been following LXDAO for over a year, but due to various reasons, I'm only officially joining now. I entered the crypto field in 2018 and have experienced multiple stages of Web3, including ICOs, DeFi projects, DeFi Summer, NFTs, and the rise of L1 and L2 in the Ethereum ecosystem. I'm a product manager with nearly 7 years of experience, having worked on both B2B and B2C products, and I've also been involved in developing Web3 products. I have a deep understanding of the industry and technology and have led teams in hackathons. I'm very interested in LXDAO's public welfare projects and unique governance mechanisms, and I greatly appreciate the like-minded partners here, so I've finally decided to join.
XZ: I'm XZ. Thanks to Cikey for inviting me to join LXDAO. Last year, while in Wamao Chiang Mai, I learned about LXDAO and developed a strong interest in topics related to public goods.
Pianpian: Hi everyone, I'm Pianpian. I've only been familiar with Web3 for a little over a month. I lived in the countryside for the past year and saw Yuxing initiate the Nantang LX Group, planning to create a co-living space. I thought this concept could be combined with Web3, so I hope to join LXDAO to understand the practical operations. I have some experience in software development, but not external development, so I might need help with product design and development. I look forward to learning and growing together with everyone.
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 109th weekly report.
Mark: Hi everyone, I'm Mark. I've been following LXDAO for over a year, but due to various reasons, I'm only officially joining now. I entered the crypto field in 2018 and have experienced multiple stages of Web3, including ICOs, DeFi projects, DeFi Summer, NFTs, and the rise of L1 and L2 in the Ethereum ecosystem. I'm a product manager with nearly 7 years of experience, having worked on both B2B and B2C products, and I've also been involved in developing Web3 products. I have a deep understanding of the industry and technology and have led teams in hackathons. I'm very interested in LXDAO's public welfare projects and unique governance mechanisms, and I greatly appreciate the like-minded partners here, so I've finally decided to join.
XZ: I'm XZ. Thanks to Cikey for inviting me to join LXDAO. Last year, while in Wamao Chiang Mai, I learned about LXDAO and developed a strong interest in topics related to public goods.
Pianpian: Hi everyone, I'm Pianpian. I've only been familiar with Web3 for a little over a month. I lived in the countryside for the past year and saw Yuxing initiate the Nantang LX Group, planning to create a co-living space. I thought this concept could be combined with Web3, so I hope to join LXDAO to understand the practical operations. I have some experience in software development, but not external development, so I might need help with product design and development. I look forward to learning and growing together with everyone.
超自然: Hi everyone, I currently serve as the vice president of the Blockchain Association at Shenzhen University, primarily responsible for the Web3 basic course training within the association. I participated in the Ethereum Beijing Hackathon and met some friends from LXDAO during the event. As a student, I'm very happy to join LXDAO.
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:
Hardman has initiated a proposal for ZK Intensive-Co-Learning on the forum. Despite not securing a fixed position in the Forge group, he remains determined to promote the ZK co-learning plan. Zero-Knowledge Proof (ZK) is a technology that ensures transaction privacy and has been widely applied in the blockchain field, such as ZK Rollup and ZK-Email. Given the rapid development of ZK technology, he believes it will be a future hot topic.
He plans to advance the co-learning through the following methods: learning materials include WTF Zk101, related cryptography and mathematics basics, Circom/SNARKJS, etc.; adopting a cruel co-learning format with weekly sharing or Q&A sessions; the learning period is expected to be at least three months, with each session lasting two weeks. Expected outputs include an introductory ZK tutorial and an anonymous voting project. Currently, he needs suggestions for learning paths from ZK experts in the community.
Ray initiated a new proposal: the PGNode (Public Goods Node) Working Group. The goal is to generate income by becoming a validator in the ecosystem and inject part of the income into a public goods fund to support its sustainable development. The project is divided into three phases: proof of concept, product implementation, and product and influence growth. The aim is to expand the number of validators, improve decentralized funding distribution and grant schemes, and collaborate with international organizations. The initial phase requires a certain amount of stablecoins for server costs and plans to raise funds externally.
Charlotte is preparing a non-technical upgrade plan for the LXDAO website and wants to hear everyone's thoughts on the current site. She listed some areas for consideration, including brand communication, content and functionality, design, and user experience. For example, does the current website convey LXDAO's philosophy and brand characteristics? What is the identity and main purpose of users visiting the site? What common functions and issues do users encounter? How is the visual style of the site and the clarity of navigation? What is the user experience on mobile devices? Charlotte invites everyone to speak freely. After the discussion, she will organize the preliminary materials and plans to initiate a design workshop. Interested friends are welcome to join the discussion.
LXDAO held the "Supporting the Commons" sharing event at EDCON Tokyo, aimed at exploring the sustainable development of public goods. Supported by LXDAO, the event provided a platform for builders to communicate and promote the development and long-term operation of public goods through local activities. The event was held on July 26, 2024, at the National Olympics Memorial Youth Center, with themes including impact assessment of public goods projects, DAO incubation models, governance models, and policy compliance. In the future, Supporting the Commons plans to host more exchange events at EDCON, ETH SG, Devcon, and other events, exploring public goods development, policy challenges, and innovative solutions. Cypher House served as the venue, providing an open and equal communication platform for builders from around the world. The event invited speakers from communities such as LXDAO, DAO Tokyo, Optimism, and DAOstar, and welcomes more collaborations and sponsorships.
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:
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”.
July 16, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
July 16, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
July 19, 2024, 10:00 AM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
July 20, 2024, 6:15 PM (UTC+8) (Saturday): LXDAO Governance Working Group Weekly Meeting
July 21, 2024, 10:00 AM (UTC+8) (Sunday): LXDAO Community 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.
Last Week
Improve the fixed post multilateral income system
Implement the S9 multi-treasury budget
Rotate the S9 multi-signature
This Week
Follow up on last week's tasks
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 regular weekly meetings and presentations
Coordinate operational work and project support
Announce the LXDAO POC
BD
Daily BD tasks
Communicate and establish connections with various university blockchain associations
Events
Follow up on the first session of the English Intensive Co-learning activity
Promote LXDAO EDCON event
Plan and follow up on the ZK/Solidity/Web3 URL-themed Intensive Co-learning
Conduct Wednesday's Ton-themed Space
Plan subsequent ZK sharing sessions or AMAs
Content :
Daily operations of the official account, Twitter, and Mirror
Publish the weekly content output of the Translation and Research Group
Release the LXDAO weekly report and EIP Fun weekly report
This Week
Basics
Routine guidance for new members, community operation announcements, communications, and user growth on media platforms.
Upload videos of weekly meetings and sharing sessions
Coordinate operational work and project support
Support Nantang LX's Enlightenment Plan
Issue the LXDAO Operations Group POC
Events
Participate in AdventureX Hackathon and set up a booth
Initiate and follow up on Web3 URL Intensive Co-learning
Plan multi-city Meetup events
Communicate with Ethstorage regarding related Space activities
Conduct Enlightenment Plan sharing session on Wednesday
BD
Daily BD tasks
Complete the overall BD plan
Initiate a proposal to establish the BD group
Content
Format and release the LXDAO 109th weekly report and the EIP Fun Weekly newsletter
Daily operations on WeChat Public Account, Twitter, and Mirror.
Release the Intensive Co-Learning Guide Newsletter
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
Complete the testing of the Intensive Co-learning automation tools and promote discussions on the Intensive Co-learning brand
Establish the PGNode virtual group
Research the automation of Fairsharing salaries and join the activation plan
Discuss the BTC regular investment product project
Nantang LX group is planning the Enlightenment Plan sharing session and the renovation of the co-living community, as well as interviews with villagers
The Translation and Research Group is proofreading and translating weekly outputs and publishing the "Where Are the Public Goods?" series of research articles
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 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
EPF Chinese Project Weekly Meeting Share - ePBS(1)
Release EIP Fun Weekly #55
Publish EIP Fun Onboarding Guide
This Week
Follow up on other matters from last week
Publish EIP Fun Weekly #56
超自然: Hi everyone, I currently serve as the vice president of the Blockchain Association at Shenzhen University, primarily responsible for the Web3 basic course training within the association. I participated in the Ethereum Beijing Hackathon and met some friends from LXDAO during the event. As a student, I'm very happy to join LXDAO.
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:
Hardman has initiated a proposal for ZK Intensive-Co-Learning on the forum. Despite not securing a fixed position in the Forge group, he remains determined to promote the ZK co-learning plan. Zero-Knowledge Proof (ZK) is a technology that ensures transaction privacy and has been widely applied in the blockchain field, such as ZK Rollup and ZK-Email. Given the rapid development of ZK technology, he believes it will be a future hot topic.
He plans to advance the co-learning through the following methods: learning materials include WTF Zk101, related cryptography and mathematics basics, Circom/SNARKJS, etc.; adopting a cruel co-learning format with weekly sharing or Q&A sessions; the learning period is expected to be at least three months, with each session lasting two weeks. Expected outputs include an introductory ZK tutorial and an anonymous voting project. Currently, he needs suggestions for learning paths from ZK experts in the community.
Ray initiated a new proposal: the PGNode (Public Goods Node) Working Group. The goal is to generate income by becoming a validator in the ecosystem and inject part of the income into a public goods fund to support its sustainable development. The project is divided into three phases: proof of concept, product implementation, and product and influence growth. The aim is to expand the number of validators, improve decentralized funding distribution and grant schemes, and collaborate with international organizations. The initial phase requires a certain amount of stablecoins for server costs and plans to raise funds externally.
Charlotte is preparing a non-technical upgrade plan for the LXDAO website and wants to hear everyone's thoughts on the current site. She listed some areas for consideration, including brand communication, content and functionality, design, and user experience. For example, does the current website convey LXDAO's philosophy and brand characteristics? What is the identity and main purpose of users visiting the site? What common functions and issues do users encounter? How is the visual style of the site and the clarity of navigation? What is the user experience on mobile devices? Charlotte invites everyone to speak freely. After the discussion, she will organize the preliminary materials and plans to initiate a design workshop. Interested friends are welcome to join the discussion.
LXDAO held the "Supporting the Commons" sharing event at EDCON Tokyo, aimed at exploring the sustainable development of public goods. Supported by LXDAO, the event provided a platform for builders to communicate and promote the development and long-term operation of public goods through local activities. The event was held on July 26, 2024, at the National Olympics Memorial Youth Center, with themes including impact assessment of public goods projects, DAO incubation models, governance models, and policy compliance. In the future, Supporting the Commons plans to host more exchange events at EDCON, ETH SG, Devcon, and other events, exploring public goods development, policy challenges, and innovative solutions. Cypher House served as the venue, providing an open and equal communication platform for builders from around the world. The event invited speakers from communities such as LXDAO, DAO Tokyo, Optimism, and DAOstar, and welcomes more collaborations and sponsorships.
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:
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”.
July 16, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
July 16, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
July 19, 2024, 10:00 AM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
July 20, 2024, 6:15 PM (UTC+8) (Saturday): LXDAO Governance Working Group Weekly Meeting
July 21, 2024, 10:00 AM (UTC+8) (Sunday): LXDAO Community 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.
Last Week
Improve the fixed post multilateral income system
Implement the S9 multi-treasury budget
Rotate the S9 multi-signature
This Week
Follow up on last week's tasks
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 regular weekly meetings and presentations
Coordinate operational work and project support
Announce the LXDAO POC
BD
Daily BD tasks
Communicate and establish connections with various university blockchain associations
Events
Follow up on the first session of the English Intensive Co-learning activity
Promote LXDAO EDCON event
Plan and follow up on the ZK/Solidity/Web3 URL-themed Intensive Co-learning
Conduct Wednesday's Ton-themed Space
Plan subsequent ZK sharing sessions or AMAs
Content :
Daily operations of the official account, Twitter, and Mirror
Publish the weekly content output of the Translation and Research Group
Release the LXDAO weekly report and EIP Fun weekly report
This Week
Basics
Routine guidance for new members, community operation announcements, communications, and user growth on media platforms.
Upload videos of weekly meetings and sharing sessions
Coordinate operational work and project support
Support Nantang LX's Enlightenment Plan
Issue the LXDAO Operations Group POC
Events
Participate in AdventureX Hackathon and set up a booth
Initiate and follow up on Web3 URL Intensive Co-learning
Plan multi-city Meetup events
Communicate with Ethstorage regarding related Space activities
Conduct Enlightenment Plan sharing session on Wednesday
BD
Daily BD tasks
Complete the overall BD plan
Initiate a proposal to establish the BD group
Content
Format and release the LXDAO 109th weekly report and the EIP Fun Weekly newsletter
Daily operations on WeChat Public Account, Twitter, and Mirror.
Release the Intensive Co-Learning Guide Newsletter
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
Complete the testing of the Intensive Co-learning automation tools and promote discussions on the Intensive Co-learning brand
Establish the PGNode virtual group
Research the automation of Fairsharing salaries and join the activation plan
Discuss the BTC regular investment product project
Nantang LX group is planning the Enlightenment Plan sharing session and the renovation of the co-living community, as well as interviews with villagers
The Translation and Research Group is proofreading and translating weekly outputs and publishing the "Where Are the Public Goods?" series of research articles
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 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
EPF Chinese Project Weekly Meeting Share - ePBS(1)
Release EIP Fun Weekly #55
Publish EIP Fun Onboarding Guide
This Week
Follow up on other matters from last week
Publish EIP Fun Weekly #56
<100 subscribers
<100 subscribers
No activity yet