
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 118th weekly report.
Qianxi: Hello everyone, I first got into the cryptocurrency industry around 2014. At that time, I was playing World of Warcraft and wanted to buy equipment , but couldn't use traditional payment methods. That’s when I encountered BTC, and after two or three days of exploration, I gradually understood the concept of Bitcoin. By 2016, as Bitcoin gained popularity, I truly realized its value. From 2017 to 2018, I made money through Bitcoin. After that, I began traveling in Southeast Asia and got more involved in the blockchain industry. Although I suffered losses in contract trading, my interest in this field remained strong. This year, I restarted my research into the blockchain industry and delved into smart contracts and AI. I use AI technology for candlestick analysis and gradually understand how smart contracts operate. By chance, I discovered LXDAO's activities and YouTube channel on Twitter and joined the LXDAO community. Currently, I continuously learn about blockchain knowledge through various means and participate in the community.
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:
About Adding MPC Wallets to Various Products in LXDAO
Q shared their thoughts in the forum, suggesting the introduction of MPC wallets in LXDAO to lower the entry barrier for users, especially for those who are not familiar with blockchain. For instance, users of Nantan DAO may lack experience with blockchain wallets but are willing to try decentralized projects. MPC wallets simplify recovery and login by fragmenting and securing private keys, allowing users to participate in LXDAO projects without needing to download Metamask. The wallet supports various recovery methods, such as email and phone, and is compatible with different blockchain systems. Introducing MPC wallets will streamline the processes of FS registration, voting, and incentive collection, making it easier to welcome new users and enhance their experience.
Translation Release: Mycofi Chinese Version
Tiao posted relevant information about the collaboration between LXDAO and the Uncommons community on the translation of the book "Mycofi" in the forum. This book, written by Jeff Emmet and Jessica Zartler, explores the wisdom of fungi in resource allocation and its inspiration for Web3 financial systems. The title "Mycofi" is short for "Mycelial Ecological Finance," as fungi provide nutrients to ecosystems through their mycelial networks, inspiring us to achieve sustainable development through collaboration in the Web3 community. The book can be accessed by scanning the QR code on LXDAO's official account and forum. For questions and ideas, feel free to join the LXDAO Telegram channel: Translation & Research (Wild LX): Telegram: Contact @LXDAO.
Helios posted a proposal in the forum to establish a BD virtual group. The goal of the BD virtual group is to promote LXDAO's international development and address the overlap in work caused by the operational team's BD responsibilities. The core responsibilities of the group include expanding international cooperation, participating in international events, enhancing LXDAO's global influence, and providing data support through market research. During S10, the BD group plans to complete market research, participate in at least three international events, optimize BD processes, and improve efficiency by introducing a CRM system. Helios will serve as the PM, responsible for strategic planning and client acquisition, with the aim of achieving milestones in process optimization and international expansion within three months.
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”.
September 17, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
September 17, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
September 18, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
September 20, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
September 20, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
September 21, 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.
Governance Group: A working group that researches DAO governance and rules. The scope of work includes, but is not limited to: LXDAO governance rules, quarterly summaries, whitepaper writing, token economic design, community conflict resolution, proposal initiation, etc.
Last Week
Publish the Governance Group S10 proposal on the forum
Assist other groups in publishing proposals
Host and conduct elections for fixed positions, selecting fixed position members for each group
Host the weekly Community Call #117 and publish the weekly report
This Week
Conduct international governance observations and share at the governance weekly meeting.
Improve community retrospective incentives.
Complete quarterly multi-signature rotation and automation.
Discuss governance authority reclamation.
Check the POC status of each group.
Host the weekly Community Call #118 and publish the weekly report
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 operation promotion, communication, etc.
Uploading videos of regular weekly meetings and sharing sessions
Collaborative operations work, project support, etc.
Complete the handover of personnel in the S10 operations group.
BD
Complete the handover of the BD position.
Familiarize with the BD workflow.
Improve the organization of the BD Notion document.
Publish the BD virtual group forum proposal.
Events
Prepare and follow up on Starknet, narrative, and Aptos Intensive-Co-Learnings
Support the Tuesday Aptos public class.
Support the Wednesday rural construction Web3 theme sharing session.
Support the Thursday DeFi theme harsh study sharing session.
Support the Friday narrative harsh study sharing session.
Content :
Daily management of WeChat Official Account, Twitter, and Mirror
Publish the weekly content output from the Translation and Research Groups
Mycofi Chinese Version Promotion
This Week
Basics
Daily onboarding of newcomers, community operations promotion, communication, media platform user growth, etc.
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
S10 Operations Group personnel handover
Events
Complete the initial planning for the Devcon event.
Conduct impact assessment and optimize the questionnaire for DeFi Intensive Co-learning.
Follow up on the ongoing Starknet and narrative Intensive Co-learning.
Collaborate with PermaDAO to advance the AO Intensive Co-learning initiatives.
Plan the second phase of English Intensive Co-learning.
Organize a new AMA event.
BD
Organize the current list of partners.
Define key data metrics and calculation formulas for BD.
Continue optimizing the BD team's Notion document.
Collect recent Web3 events and information sources.
Follow up on OP RPGF6.
Assist in preparing for ETH Shanghai.
Content
Daily operation of WeChat, Twitter, and Mirror.
Consolidate content related to Intensive Co-learning and publish on social media.
Release weekly content from the translation and research teams.
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
Official Website Team: Advance the integration of Partical, fix bugs on the official website, start upgrading the website to a technical support team, and iterate on open-source and branding upgrade plans.
Design Team: Complete the upload of the Web3 logo, transfer the Deck to Figma and update the website prototype, and begin designing the aesthetic space for Nantang DAO.
Nantang DAO: Draft and promote the aesthetic space plan for Nantang DAO, advance the internship program, ensure the delivery of enzyme experiment soil, follow up on the Fair Fields project, and propose a deep partnership between Nantang DAO and LXDAO.
ETHPanda Official Website Project: Conduct testing, fix bugs, and complete the time settlement for the first two months.
FairSharing: Continue to promote treasury fund automation and participate in product brainstorming meetings for transformation.
PGNode: Address Artela node issues, follow up on ideas for L1 chain transparency, and continue developing the PGNode official website.
CryptoDCA: Write Docs documentation, optimize customer usage process documentation, build the web interface, and prepare for the backend testing version release.
This Week
Official Website Team: Continue fixing bugs on the official website, advance its launch and upgrade to a technical support team, and iterate on the open-source and branding upgrade plans.
Design Team: Complete the design of the aesthetic space for Nantang DAO, iterate on the website prototype, and add animations to the website.
Nantang DAO: Implement the Nantang DAO experience plan, advance the aesthetic space design, and establish a Notion page for Nantang DAO.
ETHPanda Official Website Project: Continue fixing bugs, conduct acceptance testing and launch, while updating multilingual content.
FairSharing: Push forward the automation of treasury funds and hold the second brainstorming session for product transformation.
PGNode: Continue following up on Gitcoin leads, confirm node details with Artela, and complete the first version of the official website development.
CryptoDCA: Design backend login tickets, build the steps for creating front-end plans, and optimize front-end details.
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 #64
Last Week
Publish EIP Fun Weekly #65
Conduct the EPF weekly meeting at 7 PM on Wednesday
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 118th weekly report.
Qianxi: Hello everyone, I first got into the cryptocurrency industry around 2014. At that time, I was playing World of Warcraft and wanted to buy equipment , but couldn't use traditional payment methods. That’s when I encountered BTC, and after two or three days of exploration, I gradually understood the concept of Bitcoin. By 2016, as Bitcoin gained popularity, I truly realized its value. From 2017 to 2018, I made money through Bitcoin. After that, I began traveling in Southeast Asia and got more involved in the blockchain industry. Although I suffered losses in contract trading, my interest in this field remained strong. This year, I restarted my research into the blockchain industry and delved into smart contracts and AI. I use AI technology for candlestick analysis and gradually understand how smart contracts operate. By chance, I discovered LXDAO's activities and YouTube channel on Twitter and joined the LXDAO community. Currently, I continuously learn about blockchain knowledge through various means and participate in the community.
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:
About Adding MPC Wallets to Various Products in LXDAO
Q shared their thoughts in the forum, suggesting the introduction of MPC wallets in LXDAO to lower the entry barrier for users, especially for those who are not familiar with blockchain. For instance, users of Nantan DAO may lack experience with blockchain wallets but are willing to try decentralized projects. MPC wallets simplify recovery and login by fragmenting and securing private keys, allowing users to participate in LXDAO projects without needing to download Metamask. The wallet supports various recovery methods, such as email and phone, and is compatible with different blockchain systems. Introducing MPC wallets will streamline the processes of FS registration, voting, and incentive collection, making it easier to welcome new users and enhance their experience.
Translation Release: Mycofi Chinese Version
Tiao posted relevant information about the collaboration between LXDAO and the Uncommons community on the translation of the book "Mycofi" in the forum. This book, written by Jeff Emmet and Jessica Zartler, explores the wisdom of fungi in resource allocation and its inspiration for Web3 financial systems. The title "Mycofi" is short for "Mycelial Ecological Finance," as fungi provide nutrients to ecosystems through their mycelial networks, inspiring us to achieve sustainable development through collaboration in the Web3 community. The book can be accessed by scanning the QR code on LXDAO's official account and forum. For questions and ideas, feel free to join the LXDAO Telegram channel: Translation & Research (Wild LX): Telegram: Contact @LXDAO.
Helios posted a proposal in the forum to establish a BD virtual group. The goal of the BD virtual group is to promote LXDAO's international development and address the overlap in work caused by the operational team's BD responsibilities. The core responsibilities of the group include expanding international cooperation, participating in international events, enhancing LXDAO's global influence, and providing data support through market research. During S10, the BD group plans to complete market research, participate in at least three international events, optimize BD processes, and improve efficiency by introducing a CRM system. Helios will serve as the PM, responsible for strategic planning and client acquisition, with the aim of achieving milestones in process optimization and international expansion within three months.
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”.
September 17, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
September 17, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
September 18, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
September 20, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
September 20, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
September 21, 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.
Governance Group: A working group that researches DAO governance and rules. The scope of work includes, but is not limited to: LXDAO governance rules, quarterly summaries, whitepaper writing, token economic design, community conflict resolution, proposal initiation, etc.
Last Week
Publish the Governance Group S10 proposal on the forum
Assist other groups in publishing proposals
Host and conduct elections for fixed positions, selecting fixed position members for each group
Host the weekly Community Call #117 and publish the weekly report
This Week
Conduct international governance observations and share at the governance weekly meeting.
Improve community retrospective incentives.
Complete quarterly multi-signature rotation and automation.
Discuss governance authority reclamation.
Check the POC status of each group.
Host the weekly Community Call #118 and publish the weekly report
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 operation promotion, communication, etc.
Uploading videos of regular weekly meetings and sharing sessions
Collaborative operations work, project support, etc.
Complete the handover of personnel in the S10 operations group.
BD
Complete the handover of the BD position.
Familiarize with the BD workflow.
Improve the organization of the BD Notion document.
Publish the BD virtual group forum proposal.
Events
Prepare and follow up on Starknet, narrative, and Aptos Intensive-Co-Learnings
Support the Tuesday Aptos public class.
Support the Wednesday rural construction Web3 theme sharing session.
Support the Thursday DeFi theme harsh study sharing session.
Support the Friday narrative harsh study sharing session.
Content :
Daily management of WeChat Official Account, Twitter, and Mirror
Publish the weekly content output from the Translation and Research Groups
Mycofi Chinese Version Promotion
This Week
Basics
Daily onboarding of newcomers, community operations promotion, communication, media platform user growth, etc.
Uploading videos of weekly meetings and sharing sessions
Coordinating operational work and project support
S10 Operations Group personnel handover
Events
Complete the initial planning for the Devcon event.
Conduct impact assessment and optimize the questionnaire for DeFi Intensive Co-learning.
Follow up on the ongoing Starknet and narrative Intensive Co-learning.
Collaborate with PermaDAO to advance the AO Intensive Co-learning initiatives.
Plan the second phase of English Intensive Co-learning.
Organize a new AMA event.
BD
Organize the current list of partners.
Define key data metrics and calculation formulas for BD.
Continue optimizing the BD team's Notion document.
Collect recent Web3 events and information sources.
Follow up on OP RPGF6.
Assist in preparing for ETH Shanghai.
Content
Daily operation of WeChat, Twitter, and Mirror.
Consolidate content related to Intensive Co-learning and publish on social media.
Release weekly content from the translation and research teams.
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
Official Website Team: Advance the integration of Partical, fix bugs on the official website, start upgrading the website to a technical support team, and iterate on open-source and branding upgrade plans.
Design Team: Complete the upload of the Web3 logo, transfer the Deck to Figma and update the website prototype, and begin designing the aesthetic space for Nantang DAO.
Nantang DAO: Draft and promote the aesthetic space plan for Nantang DAO, advance the internship program, ensure the delivery of enzyme experiment soil, follow up on the Fair Fields project, and propose a deep partnership between Nantang DAO and LXDAO.
ETHPanda Official Website Project: Conduct testing, fix bugs, and complete the time settlement for the first two months.
FairSharing: Continue to promote treasury fund automation and participate in product brainstorming meetings for transformation.
PGNode: Address Artela node issues, follow up on ideas for L1 chain transparency, and continue developing the PGNode official website.
CryptoDCA: Write Docs documentation, optimize customer usage process documentation, build the web interface, and prepare for the backend testing version release.
This Week
Official Website Team: Continue fixing bugs on the official website, advance its launch and upgrade to a technical support team, and iterate on the open-source and branding upgrade plans.
Design Team: Complete the design of the aesthetic space for Nantang DAO, iterate on the website prototype, and add animations to the website.
Nantang DAO: Implement the Nantang DAO experience plan, advance the aesthetic space design, and establish a Notion page for Nantang DAO.
ETHPanda Official Website Project: Continue fixing bugs, conduct acceptance testing and launch, while updating multilingual content.
FairSharing: Push forward the automation of treasury funds and hold the second brainstorming session for product transformation.
PGNode: Continue following up on Gitcoin leads, confirm node details with Artela, and complete the first version of the official website development.
CryptoDCA: Design backend login tickets, build the steps for creating front-end plans, and optimize front-end details.
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 #64
Last Week
Publish EIP Fun Weekly #65
Conduct the EPF weekly meeting at 7 PM on Wednesday
No activity yet