
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

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
<100 subscribers
<100 subscribers


LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 129th weekly report.
Tian: Hello everyone! I'm Tian. I started getting involved in Web3 this year and have been engaged in NFT-related work during this period. I've been working in visual design all along. If there's a need to update community materials, I'd be happy to help. I hope to become more familiar with this field through learning and doing, and contribute to LXDAO. I also participated in Devcon and Coordination Day events held in Bangkok.
Pillowtalk: Hi, I'm Pillowtalk. I'm currently a student majoring in software. I just recently got to know about Web3-related matters. After learning about LXDAO and understanding that it focuses on the public good, I became very interested and hoped to join everyone to learn and explore together.
Wang Shiqi: I'm Wang Shiqi, from Quanzhou, Fujian. I'm a student majoring in software development. I learned about Web3 through my classmate's introduction and got interested in it. Then I got to know about LXDAO. I hope to learn relevant knowledge here.
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:
[Forge Labs: A Research Lab for Public Good(s)]
Aaros posted on the forum about the idea of Forge Labs. This idea is still in its early stage of gathering suggestions and is not a formal proposal yet. Future plans may be adjusted according to various factors. Forge Labs is dedicated to advancing the research of public goods in the Ethereum ecosystem. It hopes to build a self-sustaining and profitable research institution through collaboration among multiple organizations. Related budgets and support are yet to be discussed further. After communicating with LXDAO members during Devcon, Aaros came up with this idea. The advantages of Forge Labs lie in its ability to provide high-quality research results, promote cross-language coordination, and cultivate talents. It can also help LXDAO identify business opportunities, enhance the R & D atmosphere, improve cross-cultural communication capabilities, and increase brand awareness. Potential research focuses on areas such as the sustainability of public goods funding models, ecosystem governance, and emerging on-chain economies. It has already started brand promotion, seminar activities, and project planning, such as establishing a Farcaster channel, organizing essay competitions, and interpreting relevant technical standards. It has also clarified the requirements for human resources, funds, and other resources, as well as the phased development path. Community members of LXDAO are welcomed to discuss on TG and the forum.
Helios proposed a BD virtual group proposal, considering the group's achievements and challenges in previous quarters, and is now readjusting its positioning. The new positioning includes lead mining, focusing on target resource identification and contact establishment with clear processes; ecosystem research, analyzing the global Public Goods ecosystem to support LXDAO's global expansion; support and connection, providing resources for other working groups and building external collaboration bridges.
The new plan and objectives cover partner lead mining, aiming to add 40 new resource leads and facilitate 5 collaborations this quarter, including establishing a CRM system and collaborating with public chain teams; international support and sponsorship coordination, raising at least 5000 USDT in sponsorships, and developing sponsor profile design schemes; Public Goods ecosystem research, constructing ecosystem mapping and completing 3 case analyses, supporting strategic decisions through in-depth research on funding mechanisms and economic models.
The team is structured with Helios as PM and multiple BD core members, with a quarterly budget of 9000 LXPU. Milestones are set, such as mining 40 resource leads and completing 5 negotiations. LXDAO community members are welcome to leave comments and ideas on the forum.
Yewlne posted on the forum introducing an interaction and testing tool for EVM contract developers. The tool supports account network interactions including basic wallet connection and direct contract calls via private key, and is currently debugging custom RPC access. Contract loading supports three methods: network retrieval (currently only Ethereum), copy-paste, and local upload; the interaction section is still being refined in details.
Applicable scenarios include smart contract development debugging, contract management, and upgrade operations. It enables quick function calls to verify logic and parameter configuration effects, and can manage multi-contract or multi-address calls and contract upgrade operations. Its goal is to provide a simple, efficient, and intuitive on-chain interaction experience while gradually developing a series of lightweight tools.
LXDAO members are welcome to provide feedback and suggestions on the forum regarding usage experience (such as feature coverage of daily needs, interface design and operation flow optimization), function improvements (whether key functions are missing, whether to add chain support or interaction methods), and development directions (expected specialized tools like cross-chain interactions).
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”
December 03, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
December 03, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
December 04, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
December 06, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
December 06, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
December 07, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Call
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
Conduct the second quarterly meeting
Assist with fixed-position recruitment for S11 working groups
Update Handbook
Update visualization roadmaps for each team
This Week
Complete fixed-position recruitment for the Governance Group S11 and conduct work handover
Organize and clarify specific work for the Governance Group and publish the S11 Governance Group proposal
Compile and announce LXDAO November POC
Explore the governance experiment for the "Goal Unlocking Reward" system
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 newcomer guidance, community operations, publicity, communication, media platform user growth, etc.
Operational coordination and project support
Daily operations review and coordination
S11 Operations Group fixed-position recruitment
Analysis and optimization of new member onboarding path
Editing and publishing the text and video versions of the fireside chat with Vitalik
BD
Submit Octant Grant application
Review and summarize BD work for this quarter
Complete BD ecosystem report
AWS account handover
Events
Branding and planning for LXDAO Coordination Day
Organizing and reviewing the text version of MyCoFi online AMA
Conducting and reviewing Devcon sharing session
Content Group
Daily operations of public WeChat account, Twitter, and Mirror
Publish routine translation articles
Publish AMA review articles
Publish EIP Fun Weekly and LXDAO Weekly Report
This Week
basic
Daily newcomer guidance, community operations, publicity, communication, media platform user growth, etc.
Operational coordination and project support
Daily operations review and coordination
Publish S11 proposal for Operations Group
Complete fixed-position recruitment for Operations Group, organize and handover work
Discuss and summarize feedback collected from the Operations Group
Analyze and optimize new member onboarding path
Improve incentive scheme for the brutal co-learning activity
Events
Follow up and promote Arbitrum Intnsive-co-learning activity
Consider restarting LXTalk and collect suggestions on the forum
Business Development (BD)
Publish BD virtual group proposal
Routine BD work
Content Group
Daily operations of public WeChat account, Twitter, and Mirror
Publish routine translation articles
Publish Devcon sharing session review article
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
LXDAO Design Group: Complete Intensive-co-learning website responsive design
Nantang DAO: Discuss and adjust recent organizational structure, boundaries, and management issues, communicate with rural governance experts, plan to prepare a Chengdu symposium on "Social Innovation / Community Governance"
FairSharing: FS incentive pool scheme is roughly determined, with subsequent confirmation of interactions and details
Intensive-co-learning Project: Confirm remaining design issues and complete remaining page responsive design, develop list page functionality
PGNode: Research Octant grant process, optimize L1 Weekly automation process, apply for AWS machine Grants, optimize PGNode official website, Solo staking article not completed
DCA Project: Conduct sharing sessions and DCA knowledge popularization, optimize product Dashboard
OPCN: Publish OP Weekly #37 and related articles
Wild LX: Conduct Wild LX synchronization meeting and Rebranding: ForgeLab related work
Arbitrum Intensive-co-learning: Determine the first period's focus on introducing Arbitrum-related knowledge, registration from December 2, 2024, until 23:00 on December 7
This Week
LXDAO Design Group: Further design motion effects and details for the Intensive-co-learning website
Nantang DAO: Improve Fair Field project proposal, organize basic rules, incorporate enlightenment plan into the project, introduce LXDAO collaboration mechanism
FairSharing: Develop incentive pool requirements, conduct FS positioning and protocol discussion
Intensive-co-learning Project: Complete details page and personal Profile interface, conduct UI Polish, test GitHub login functionality, have Bruce review articles
PGNode: Update Solo staking article section, expand new node partnership with 0g.ai, confirm nodes Artela and DMC, follow up and submit Octant grants, apply for AWS machine costs
DCA Project: Determine Sharing Link mechanism, commission ratio and display method, develop project operation plan including DCA knowledge hotspot capture, sharing, and investment model
OPCN: Publish OP Chinese Weekly #38, review Optimism Season 7 reflection period and details, share Devcon 7 OP summary at Thursday OP Chinese meeting
Wild LX: Refine S11 Forge Labs proposal
Currently, LXDAO has 26 self-developed projects, 9 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 #73
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #74
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 129th weekly report.
Tian: Hello everyone! I'm Tian. I started getting involved in Web3 this year and have been engaged in NFT-related work during this period. I've been working in visual design all along. If there's a need to update community materials, I'd be happy to help. I hope to become more familiar with this field through learning and doing, and contribute to LXDAO. I also participated in Devcon and Coordination Day events held in Bangkok.
Pillowtalk: Hi, I'm Pillowtalk. I'm currently a student majoring in software. I just recently got to know about Web3-related matters. After learning about LXDAO and understanding that it focuses on the public good, I became very interested and hoped to join everyone to learn and explore together.
Wang Shiqi: I'm Wang Shiqi, from Quanzhou, Fujian. I'm a student majoring in software development. I learned about Web3 through my classmate's introduction and got interested in it. Then I got to know about LXDAO. I hope to learn relevant knowledge here.
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:
[Forge Labs: A Research Lab for Public Good(s)]
Aaros posted on the forum about the idea of Forge Labs. This idea is still in its early stage of gathering suggestions and is not a formal proposal yet. Future plans may be adjusted according to various factors. Forge Labs is dedicated to advancing the research of public goods in the Ethereum ecosystem. It hopes to build a self-sustaining and profitable research institution through collaboration among multiple organizations. Related budgets and support are yet to be discussed further. After communicating with LXDAO members during Devcon, Aaros came up with this idea. The advantages of Forge Labs lie in its ability to provide high-quality research results, promote cross-language coordination, and cultivate talents. It can also help LXDAO identify business opportunities, enhance the R & D atmosphere, improve cross-cultural communication capabilities, and increase brand awareness. Potential research focuses on areas such as the sustainability of public goods funding models, ecosystem governance, and emerging on-chain economies. It has already started brand promotion, seminar activities, and project planning, such as establishing a Farcaster channel, organizing essay competitions, and interpreting relevant technical standards. It has also clarified the requirements for human resources, funds, and other resources, as well as the phased development path. Community members of LXDAO are welcomed to discuss on TG and the forum.
Helios proposed a BD virtual group proposal, considering the group's achievements and challenges in previous quarters, and is now readjusting its positioning. The new positioning includes lead mining, focusing on target resource identification and contact establishment with clear processes; ecosystem research, analyzing the global Public Goods ecosystem to support LXDAO's global expansion; support and connection, providing resources for other working groups and building external collaboration bridges.
The new plan and objectives cover partner lead mining, aiming to add 40 new resource leads and facilitate 5 collaborations this quarter, including establishing a CRM system and collaborating with public chain teams; international support and sponsorship coordination, raising at least 5000 USDT in sponsorships, and developing sponsor profile design schemes; Public Goods ecosystem research, constructing ecosystem mapping and completing 3 case analyses, supporting strategic decisions through in-depth research on funding mechanisms and economic models.
The team is structured with Helios as PM and multiple BD core members, with a quarterly budget of 9000 LXPU. Milestones are set, such as mining 40 resource leads and completing 5 negotiations. LXDAO community members are welcome to leave comments and ideas on the forum.
Yewlne posted on the forum introducing an interaction and testing tool for EVM contract developers. The tool supports account network interactions including basic wallet connection and direct contract calls via private key, and is currently debugging custom RPC access. Contract loading supports three methods: network retrieval (currently only Ethereum), copy-paste, and local upload; the interaction section is still being refined in details.
Applicable scenarios include smart contract development debugging, contract management, and upgrade operations. It enables quick function calls to verify logic and parameter configuration effects, and can manage multi-contract or multi-address calls and contract upgrade operations. Its goal is to provide a simple, efficient, and intuitive on-chain interaction experience while gradually developing a series of lightweight tools.
LXDAO members are welcome to provide feedback and suggestions on the forum regarding usage experience (such as feature coverage of daily needs, interface design and operation flow optimization), function improvements (whether key functions are missing, whether to add chain support or interaction methods), and development directions (expected specialized tools like cross-chain interactions).
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”
December 03, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
December 03, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
December 04, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
December 06, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
December 06, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
December 07, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Call
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
Conduct the second quarterly meeting
Assist with fixed-position recruitment for S11 working groups
Update Handbook
Update visualization roadmaps for each team
This Week
Complete fixed-position recruitment for the Governance Group S11 and conduct work handover
Organize and clarify specific work for the Governance Group and publish the S11 Governance Group proposal
Compile and announce LXDAO November POC
Explore the governance experiment for the "Goal Unlocking Reward" system
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 newcomer guidance, community operations, publicity, communication, media platform user growth, etc.
Operational coordination and project support
Daily operations review and coordination
S11 Operations Group fixed-position recruitment
Analysis and optimization of new member onboarding path
Editing and publishing the text and video versions of the fireside chat with Vitalik
BD
Submit Octant Grant application
Review and summarize BD work for this quarter
Complete BD ecosystem report
AWS account handover
Events
Branding and planning for LXDAO Coordination Day
Organizing and reviewing the text version of MyCoFi online AMA
Conducting and reviewing Devcon sharing session
Content Group
Daily operations of public WeChat account, Twitter, and Mirror
Publish routine translation articles
Publish AMA review articles
Publish EIP Fun Weekly and LXDAO Weekly Report
This Week
basic
Daily newcomer guidance, community operations, publicity, communication, media platform user growth, etc.
Operational coordination and project support
Daily operations review and coordination
Publish S11 proposal for Operations Group
Complete fixed-position recruitment for Operations Group, organize and handover work
Discuss and summarize feedback collected from the Operations Group
Analyze and optimize new member onboarding path
Improve incentive scheme for the brutal co-learning activity
Events
Follow up and promote Arbitrum Intnsive-co-learning activity
Consider restarting LXTalk and collect suggestions on the forum
Business Development (BD)
Publish BD virtual group proposal
Routine BD work
Content Group
Daily operations of public WeChat account, Twitter, and Mirror
Publish routine translation articles
Publish Devcon sharing session review article
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
LXDAO Design Group: Complete Intensive-co-learning website responsive design
Nantang DAO: Discuss and adjust recent organizational structure, boundaries, and management issues, communicate with rural governance experts, plan to prepare a Chengdu symposium on "Social Innovation / Community Governance"
FairSharing: FS incentive pool scheme is roughly determined, with subsequent confirmation of interactions and details
Intensive-co-learning Project: Confirm remaining design issues and complete remaining page responsive design, develop list page functionality
PGNode: Research Octant grant process, optimize L1 Weekly automation process, apply for AWS machine Grants, optimize PGNode official website, Solo staking article not completed
DCA Project: Conduct sharing sessions and DCA knowledge popularization, optimize product Dashboard
OPCN: Publish OP Weekly #37 and related articles
Wild LX: Conduct Wild LX synchronization meeting and Rebranding: ForgeLab related work
Arbitrum Intensive-co-learning: Determine the first period's focus on introducing Arbitrum-related knowledge, registration from December 2, 2024, until 23:00 on December 7
This Week
LXDAO Design Group: Further design motion effects and details for the Intensive-co-learning website
Nantang DAO: Improve Fair Field project proposal, organize basic rules, incorporate enlightenment plan into the project, introduce LXDAO collaboration mechanism
FairSharing: Develop incentive pool requirements, conduct FS positioning and protocol discussion
Intensive-co-learning Project: Complete details page and personal Profile interface, conduct UI Polish, test GitHub login functionality, have Bruce review articles
PGNode: Update Solo staking article section, expand new node partnership with 0g.ai, confirm nodes Artela and DMC, follow up and submit Octant grants, apply for AWS machine costs
DCA Project: Determine Sharing Link mechanism, commission ratio and display method, develop project operation plan including DCA knowledge hotspot capture, sharing, and investment model
OPCN: Publish OP Chinese Weekly #38, review Optimism Season 7 reflection period and details, share Devcon 7 OP summary at Thursday OP Chinese meeting
Wild LX: Refine S11 Forge Labs proposal
Currently, LXDAO has 26 self-developed projects, 9 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 #73
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #74
No activity yet