
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
<100 subscribers
<100 subscribers
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 111st weekly report.
Terry: Hi, I'm Terry, currently living in Shanghai. I'm a product manager and designer. I enjoy shooting short films and engaging in sports. I learned about LXDAO through Cikey and have participated in some of LXDAO's activities, as well as interacted with members in Shanghai. I hope to have more opportunities to communicate with everyone in the future. Additionally, I participated in the AdventureX hackathon and won first place. I developed two products: one is a personal knowledge management tool that helps individuals become more empowered, and the other is a dining reminder assistant developed using Baidu Wenxin. Both projects won first place in both group and individual categories. If anyone is interested, I'd be happy to share more.
Zemmer: Hello everyone, I'm Zemmer, currently living in Beijing. I have been working in front-end and back-end web development for three to four years. I started exploring Web3 in 2022 and studied it systematically by the end of the year. Due to some personal reasons, I paused contract development but recently decided to re-engage due to some projects and ideas. I have joined the current Cruel Learning program. My goal is to develop a contract-based social Dapp. I primarily use Vue for front-end development and prefer using Python for back-end work.
Fanka: I'm Fanka. I was formerly a front-end developer and am now a newcomer to Web3, currently learning about blockchain and cryptography. Although I mainly worked in front-end development in the past, I am no longer focused on this field. Now I primarily develop using Rust, particularly in the area of cryptographic fundamentals.
LWL: I'm LWL, currently working on game development for the Indian market and considering porting these games to Web3, based on Telegram mini-programs and integrating with the Ton chain. I recently noticed the LXDAO community and felt it was suitable for newcomers, so I joined to learn.
潜行 (Qianxing): My name is Qianxing, currently in an offline community in Hangzhou, and will soon return to Shenzhen. My initial exposure to Web3 was at the WaCat Conference last year, while working in IT operations and project management. Afterward, I collaborated with a WEB3 team in Shenzhen, gaining some preliminary understanding of the field, but I'm still at an entry level. Last year, I participated in a ZK project in Chiang Mai, responsible for GPU server operations. I am particularly interested in the integration of AI and Crypto, and I plan to enter this field from project management, operations, or other aspects to seek remote work opportunities.
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:
LXDAO Membership System Migrated to Optimism
The LXDAO membership system has successfully migrated, led by the website team, moving the Buidler Card, LXP, and Member Badge from the Ethereum mainnet and Polygon network to the Optimism network. This migration aims to reduce gas fees, improve membership system management, and enhance ecosystem support.
The Buidler Card grants holders governance rights, including voting and proposal privileges, ensuring community consensus and transparency. LXP represents members' contribution records within LXDAO and is the foundation for obtaining the Buidler Card, while the Badge is used to reward members' achievements. Previous holders have received new assets airdropped on the Optimism network.
LXDAO is dedicated to building a decentralized autonomous community, encouraging members to earn governance rights through their contributions.
Starknet Intensive-Co-learning Program Brainstorming
LXDAO, AAStar, and Astro have jointly launched a 4-week Cruel Co-learning program aimed at developers interested in Starknet, Rust, Cairo, and Ethereum-compatible infrastructure. The program aims to educate participants on Starknet development and the Cairo language, fostering collaboration and knowledge sharing.
The program includes daily co-learning check-ins, team projects, weekly public classes, and project showcases. The curriculum covers an overview of fundamental technologies, practical demonstrations, NFTs, Memecoins, Account Abstraction (AA), and DeFi, among other topics. AAStar will coordinate the program, Astro will handle course planning, and LXDAO will be responsible for operations and promotion.
The program is scheduled to start on September 1st, and everyone is welcome to join the brainstorming session and offer suggestions.
La Sape and Web3: Exploring New Paths for Cross-Sector Collaboration
LXDAO member Loxia has posted on the LXDAO forum, proposing the use of Web3 technology to support the Sapeurs of Congo (a group of individuals in Congo who express themselves through fashion, creating a unique culture and lifestyle). The post discusses promoting and financing the Sapeurs through meme culture to help them establish a design studio and promote their unique fashion culture.
The post calls on community members to contribute ideas and explore how to create meaningful connections between Web3 and real-world society, thereby promoting local economic and social development. Loxia's Mirror article further details the background and history of the Sapeurs, emphasizing their pursuit of self-identity and social contribution.
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”.
July 30, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
July 30, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
August 2, 2024, 10:00 AM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
August 3, 2024, 6:15 PM (UTC+8) (Saturday): LXDAO Governance Working Group Weekly Meeting
August 4, 2024, 10:00 AM (UTC+8) (Sunday): LXDAO Community Weekly Meeting
Currently, LXDAO has a total of 3 working groups. 2 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.
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 newcomers, community operations promotion, communication, etc.
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
Supporting the Nantang Web3 Enlightenment Plan and related research
Expanding the brand influence of intensive co-learning
BD
Daily BD work
Execute LXDAO activities at EDCON and live stream on Friday
Plan to connect with new ecosystem partners at EDCON
Communicate with partners such as HackQuest and BuidlerDAO
Events
Follow up on Web3 URL intensive co-learning
Prepare for the first phase of ZK co-learning
Plan a Space on the theme of ZK
Conduct a rural development Web3 sharing session on Thursday
Conduct the first live session of rural development Web3 on Saturday
Plan a city meetup
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
Daily onboarding of newcomers, community operations promotion, communication, and media platform user growth
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
University blockchain association operation plan and promotion of intensive co-learning
Events
Prepare for Thursday Eclipse Space activities and hackathon
Prepare for Starknet intensive co-learning and communicate with partners
Launch a new round of ZK intensive co-learning
Conduct the third phase of Web3 URL public lectures and prepare for the closing activities
Plan an offline event on the theme of Web3 + AI
BD
Daily BD work
BD at the EDCON event
Content
Format and release the LXDAO 111st weekly report and the EIP Fun Weekly newsletter
Daily operations on WeChat Public Account, Twitter, and Mirror.
Publish the weekly content output of the Translation and Research Group
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
Website Group: Promote Project updates, fix display issues, update Working Group Banner images, OP migration plan, write scripts to read data, check issues on the old website, promote project renaming, inspect intensive co-learning content, and fix email sending permission issues.
Design Group: Follow up on EDCON event materials, organize website update replies, plan next steps, redesign website Group Banners, continue uploading logos to the Web3 Logo website, and design banners for new projects.
Nantang LX: Share the second phase of the Enlightenment Plan, write a CSA+Web3 article, compile a Nantang situation investigation report, give interviews, and promote and publish the "Web3 Rural Development Course."
Artela Browser: Conduct rewards retrospection, accept Artela, communicate phase two development features, and discuss the need for publicity.
FairSharing: Conduct BD communications, consider applying for grants, finalize the reimbursement system, and fix the payroll bug.
Zucity: Intensive development and testing ongoing.
PGNODE: Apply for GCC grants and PGGood Twitter, purchase test machines, set up Farcaster nodes, follow up on Artela mainnet launch progress, and deploy XAI nodes.
ETHPanda Website Project: Develop new urgent requirements, replace the main image on the homepage, and develop the form page for network joining applications.
BTC Dollar-Cost Averaging Project: Conduct product research, analyze user needs, initiate proposals, and recruit developers.
Others: Discuss the multi-signature issues for the DCA project, apply for OP Grants and Mission Request, and discuss the collaboration framework for Nantang DAO.
This Week
Website Group: Automate the inspection of intensive co-learning content, fix badge display issues, develop batch badge sending feature, continue inspecting intensive co-learning content, and fix email sending permission issues.
Design Group: Continue uploading logos to the Web3Logo website, follow up on EDCON event materials, design the complete set of templates for intensive co-learning, and iterate on the website.
Nantang LX: Write a report on integrating the Nantang plan with Web3, hold a sharing session on Thursday, and conduct the official live broadcast on Saturday.
Artela Browser: No specific tasks listed.
PGNODE: Write the first draft of the PGNode narrative article, set up Artela & Puffer nodes, and improve the DevOps architecture diagram.
ETHPanda Website Project: Complete the network joining process and test it, update the website form styles.
BTC Dollar-Cost Averaging Project: Conduct technical research and market analysis.
Others: Discuss multi-signature issues for the DCA project, apply for OP Grants and Mission Request, and prepare the Nantang DAO collaboration framework.
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
Release EIP Fun Weekly #57
Conduct the 6th EPF Weekly Meeting
Chinese Information Update: GCC and Gitcoin provide a total of $75K in grants for Asian public goods projects
This Week
Follow up on other matters from last week
Publish EIP Fun Weekly #58
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 111st weekly report.
Terry: Hi, I'm Terry, currently living in Shanghai. I'm a product manager and designer. I enjoy shooting short films and engaging in sports. I learned about LXDAO through Cikey and have participated in some of LXDAO's activities, as well as interacted with members in Shanghai. I hope to have more opportunities to communicate with everyone in the future. Additionally, I participated in the AdventureX hackathon and won first place. I developed two products: one is a personal knowledge management tool that helps individuals become more empowered, and the other is a dining reminder assistant developed using Baidu Wenxin. Both projects won first place in both group and individual categories. If anyone is interested, I'd be happy to share more.
Zemmer: Hello everyone, I'm Zemmer, currently living in Beijing. I have been working in front-end and back-end web development for three to four years. I started exploring Web3 in 2022 and studied it systematically by the end of the year. Due to some personal reasons, I paused contract development but recently decided to re-engage due to some projects and ideas. I have joined the current Cruel Learning program. My goal is to develop a contract-based social Dapp. I primarily use Vue for front-end development and prefer using Python for back-end work.
Fanka: I'm Fanka. I was formerly a front-end developer and am now a newcomer to Web3, currently learning about blockchain and cryptography. Although I mainly worked in front-end development in the past, I am no longer focused on this field. Now I primarily develop using Rust, particularly in the area of cryptographic fundamentals.
LWL: I'm LWL, currently working on game development for the Indian market and considering porting these games to Web3, based on Telegram mini-programs and integrating with the Ton chain. I recently noticed the LXDAO community and felt it was suitable for newcomers, so I joined to learn.
潜行 (Qianxing): My name is Qianxing, currently in an offline community in Hangzhou, and will soon return to Shenzhen. My initial exposure to Web3 was at the WaCat Conference last year, while working in IT operations and project management. Afterward, I collaborated with a WEB3 team in Shenzhen, gaining some preliminary understanding of the field, but I'm still at an entry level. Last year, I participated in a ZK project in Chiang Mai, responsible for GPU server operations. I am particularly interested in the integration of AI and Crypto, and I plan to enter this field from project management, operations, or other aspects to seek remote work opportunities.
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:
LXDAO Membership System Migrated to Optimism
The LXDAO membership system has successfully migrated, led by the website team, moving the Buidler Card, LXP, and Member Badge from the Ethereum mainnet and Polygon network to the Optimism network. This migration aims to reduce gas fees, improve membership system management, and enhance ecosystem support.
The Buidler Card grants holders governance rights, including voting and proposal privileges, ensuring community consensus and transparency. LXP represents members' contribution records within LXDAO and is the foundation for obtaining the Buidler Card, while the Badge is used to reward members' achievements. Previous holders have received new assets airdropped on the Optimism network.
LXDAO is dedicated to building a decentralized autonomous community, encouraging members to earn governance rights through their contributions.
Starknet Intensive-Co-learning Program Brainstorming
LXDAO, AAStar, and Astro have jointly launched a 4-week Cruel Co-learning program aimed at developers interested in Starknet, Rust, Cairo, and Ethereum-compatible infrastructure. The program aims to educate participants on Starknet development and the Cairo language, fostering collaboration and knowledge sharing.
The program includes daily co-learning check-ins, team projects, weekly public classes, and project showcases. The curriculum covers an overview of fundamental technologies, practical demonstrations, NFTs, Memecoins, Account Abstraction (AA), and DeFi, among other topics. AAStar will coordinate the program, Astro will handle course planning, and LXDAO will be responsible for operations and promotion.
The program is scheduled to start on September 1st, and everyone is welcome to join the brainstorming session and offer suggestions.
La Sape and Web3: Exploring New Paths for Cross-Sector Collaboration
LXDAO member Loxia has posted on the LXDAO forum, proposing the use of Web3 technology to support the Sapeurs of Congo (a group of individuals in Congo who express themselves through fashion, creating a unique culture and lifestyle). The post discusses promoting and financing the Sapeurs through meme culture to help them establish a design studio and promote their unique fashion culture.
The post calls on community members to contribute ideas and explore how to create meaningful connections between Web3 and real-world society, thereby promoting local economic and social development. Loxia's Mirror article further details the background and history of the Sapeurs, emphasizing their pursuit of self-identity and social contribution.
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”.
July 30, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
July 30, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
August 2, 2024, 10:00 AM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
August 3, 2024, 6:15 PM (UTC+8) (Saturday): LXDAO Governance Working Group Weekly Meeting
August 4, 2024, 10:00 AM (UTC+8) (Sunday): LXDAO Community Weekly Meeting
Currently, LXDAO has a total of 3 working groups. 2 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.
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 newcomers, community operations promotion, communication, etc.
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
Supporting the Nantang Web3 Enlightenment Plan and related research
Expanding the brand influence of intensive co-learning
BD
Daily BD work
Execute LXDAO activities at EDCON and live stream on Friday
Plan to connect with new ecosystem partners at EDCON
Communicate with partners such as HackQuest and BuidlerDAO
Events
Follow up on Web3 URL intensive co-learning
Prepare for the first phase of ZK co-learning
Plan a Space on the theme of ZK
Conduct a rural development Web3 sharing session on Thursday
Conduct the first live session of rural development Web3 on Saturday
Plan a city meetup
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
Daily onboarding of newcomers, community operations promotion, communication, and media platform user growth
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
University blockchain association operation plan and promotion of intensive co-learning
Events
Prepare for Thursday Eclipse Space activities and hackathon
Prepare for Starknet intensive co-learning and communicate with partners
Launch a new round of ZK intensive co-learning
Conduct the third phase of Web3 URL public lectures and prepare for the closing activities
Plan an offline event on the theme of Web3 + AI
BD
Daily BD work
BD at the EDCON event
Content
Format and release the LXDAO 111st weekly report and the EIP Fun Weekly newsletter
Daily operations on WeChat Public Account, Twitter, and Mirror.
Publish the weekly content output of the Translation and Research Group
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
Website Group: Promote Project updates, fix display issues, update Working Group Banner images, OP migration plan, write scripts to read data, check issues on the old website, promote project renaming, inspect intensive co-learning content, and fix email sending permission issues.
Design Group: Follow up on EDCON event materials, organize website update replies, plan next steps, redesign website Group Banners, continue uploading logos to the Web3 Logo website, and design banners for new projects.
Nantang LX: Share the second phase of the Enlightenment Plan, write a CSA+Web3 article, compile a Nantang situation investigation report, give interviews, and promote and publish the "Web3 Rural Development Course."
Artela Browser: Conduct rewards retrospection, accept Artela, communicate phase two development features, and discuss the need for publicity.
FairSharing: Conduct BD communications, consider applying for grants, finalize the reimbursement system, and fix the payroll bug.
Zucity: Intensive development and testing ongoing.
PGNODE: Apply for GCC grants and PGGood Twitter, purchase test machines, set up Farcaster nodes, follow up on Artela mainnet launch progress, and deploy XAI nodes.
ETHPanda Website Project: Develop new urgent requirements, replace the main image on the homepage, and develop the form page for network joining applications.
BTC Dollar-Cost Averaging Project: Conduct product research, analyze user needs, initiate proposals, and recruit developers.
Others: Discuss the multi-signature issues for the DCA project, apply for OP Grants and Mission Request, and discuss the collaboration framework for Nantang DAO.
This Week
Website Group: Automate the inspection of intensive co-learning content, fix badge display issues, develop batch badge sending feature, continue inspecting intensive co-learning content, and fix email sending permission issues.
Design Group: Continue uploading logos to the Web3Logo website, follow up on EDCON event materials, design the complete set of templates for intensive co-learning, and iterate on the website.
Nantang LX: Write a report on integrating the Nantang plan with Web3, hold a sharing session on Thursday, and conduct the official live broadcast on Saturday.
Artela Browser: No specific tasks listed.
PGNODE: Write the first draft of the PGNode narrative article, set up Artela & Puffer nodes, and improve the DevOps architecture diagram.
ETHPanda Website Project: Complete the network joining process and test it, update the website form styles.
BTC Dollar-Cost Averaging Project: Conduct technical research and market analysis.
Others: Discuss multi-signature issues for the DCA project, apply for OP Grants and Mission Request, and prepare the Nantang DAO collaboration framework.
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
Release EIP Fun Weekly #57
Conduct the 6th EPF Weekly Meeting
Chinese Information Update: GCC and Gitcoin provide a total of $75K in grants for Asian public goods projects
This Week
Follow up on other matters from last week
Publish EIP Fun Weekly #58
No activity yet