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上创建...

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 122nd weekly report.
Kylin: Hello everyone, I am Kylin, currently a student. I learned about LXDAO through a Youtuber and am very interested in the entire Web3 industry. I want to learn more new knowledge and skills at LXDAO. Thank you all!
Aaros: Hello everyone, I am Aaros, the coordinator of Bankless CN. I have six years of experience in the crypto field; I was previously a crypto analyst and later worked at a fund in London. After returning to China post-pandemic, I entered the IPO-related industry as an industry analyst until I discovered Bankless in 2022. I found the DAO format very appealing and returned to this field, continuously contributing to Bankless DAO. Last year, Bankless faced some challenges, and I explored new areas with like-minded friends. I have also written many reports and papers combining economics and on-chain activities, mainly in English. This year, I started focusing on LXDAO and felt that the culture here aligns well with what I pursue, especially the atmosphere of co-learning in philosophy and sociology. Therefore, I hope to explore more opportunities and meet new friends in the Chinese-speaking community of LXDAO.
微扰理论: Hello everyone, I am 微扰理论. My previous work experience was mainly focused on databases and network components. I started exploring Web3 in May this year and learned about LXDAO. Recently, I met Cooder in Shenzhen, and we worked on a project together; he suggested I join LXDAO. I also recently met Bruce in Chiang Mai. I contribute a lot on GitHub, and you can learn more about me there. Thank you all!
Nova: Hello everyone, you can call me Nova. I am currently a product manager. Although I don't directly work in Web3, I have previously tried things like hackathons at my company. I have always been very interested in Web3, and I truly joined LXDAO through a DeFi brutal co-learning session. Since 2021, I have been following on-chain governance. Although I am a science student, I am also very interested in sociology, especially the history and future development of social autonomy. I am glad to meet you all and hope to learn more here!
Smith Leon: Hello everyone, I am Smith, a computer science student. I got into blockchain earlier this year and came across LXDAO last month. Currently, I work in content at a Web3 development education company.
ChoeyGit: Hello everyone, I am ChoeyGit. I previously started two companies offline. Since last year, I have entered the Web3 field under Aaros's guidance. I am still in the learning stage. Since Aaros is the coordinator of Bankless CN, I joined Bankless CN and am currently doing research and learning in the Web3 field. That's about it, thank you all!
Boi: Hello everyone, I am Boi. I currently work at Shanghai Jiao Tong University's Ningbo Research Institute and have always been very interested in this field. Previously, I worked on agricultural blockchain projects, and after learning about LXDAO, I found this organization excellent, so I hope to establish further connections with LXDAO. Thank you all!
LiHui: Hello everyone, my name is Hui, and I am a backend developer. I previously focused on off-chain development, mainly using Java and Python. In the past year, I started engaging in on-chain development and hope to learn more about Web3. Thank you all!
Charles: Hello everyone, I am Charles. I am currently in Hangzhou and work as a backend developer. I started engaging in Web3 development in 2023, previously working on some development projects on the ICP blockchain, involving NFTs and other projects. I am very interested in the DAO model, so I hope to join LXDAO, learn more about Ethereum-related knowledge, and further develop and learn in the Web3 field. Thank you all!
吃汤圆: Hello everyone, I am 吃汤圆, living in Guangzhou. I am currently learning about robot development and the backend technology of WeChat mini-programs. I initially learned about Web3 while surfing the internet, and my interest grew due to seeing many complaints about governance. When I discovered that blockchain could eliminate trust-based intermediaries, I felt this might be an important direction for the future. I hope to contribute to society. What attracts me to LXDAO is that "conscience" is written in its name, which I think represents trust, so I want to join this organization and learn and grow with everyone. Thank you all!
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:
https://forum.lxdao.io/t/lxdao-s10-retroactive-incentive-application/2224
The governance team announced in a post that based on the LIP64 proposal, the LXDAO community will allocate 5% of the actual net expenditure from the main treasury as LXP incentives during each quarterly retrospective incentive. This post is specifically for the S10 quarter's retrospective incentive applications or nominations, and applicants must submit by November 15. The application format includes the applicant/nominator, the application matter, reasons for the application, and impact measurement (preferably with quantitative data), along with any community incentives already received.
https://forum.lxdao.io/t/ethereum-documentary-shenzhen-station-planning-proposal/2231/3
Helios posted on the forum outlining the detailed plan for the Shenzhen premiere event "Vitalik's Ethereum Story." The event will take place on October 19, 2024, in Classroom 4 of the Huixing Building at the Yuehai Campus of Shenzhen University, targeting blockchain developers and researchers. Promotion will be conducted through joint announcements with partners and social media activities. Risk assessments include equipment checks and backup plans, while feedback will be collected through social media interactions. The budget covers documentary licensing fees, poster printing, equipment rental, and includes a request for a portion of the event funding and merchandise.
https://forum.lxdao.io/t/discussion-opinion-collection-on-governance-rights-redemption/2151
Chris's post mentioned the LXTalk podcast project that was halted last year and shared thoughts on restarting the show. LXDAO focuses on developing valuable projects, and the podcast is an effective way to showcase these results. By regularly updating podcast content, it can highlight project progress and innovative solutions, helping supporters and potential investors better understand LXDAO's developments. Chris suggested reducing the update frequency of LXTalk to once a month to build audience anticipation and lower related costs.
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”.
October 15, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
October 15, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
October 16, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
October 18, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
October 18, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
October 19, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Call Weekly
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
Organize the community workflow
Complete the governance group's research panel
Conduct research on SQF and KQF
Improve the project initiation process for virtual groups
Follow up on the multi-signature rotation matters
This Week
Research governance tools for Grants 2024
Update community SOP
Complete multi-signature rotation and salary distribution
Update the core roadmap
Organize weekly meetings and write weekly reports
Operation Grop: Primarily responsible for the community management of LXDAO. Job functions include but are not limited to: community operations, new member acquisition, enhancing community influence, content creation and management, media branding, business development, etc.
Last Week
Basics
Daily onboarding of new members, community operations promotion, and communication
Collaborate on operations and provide project support
Continue connecting with various university blockchain associations to advance cooperation
Optimize the brutal co-learning incentive scheme
Place orders for upcoming event merchandise
BD
Update core data metrics for BD
Collect materials for ENS grants
Optimize BD group members
Follow up on OP RPGF 6
Track the latest developments and related activities in the Web3 industry
Prepare topics for premium sharing
Organize partner information
Events
Invite and promote guests for the DAO governance AMA
Follow up and prepare for the offline event in Beijing
Follow up and prepare for the Wanxiang event in Shanghai
Optimize and advance the planning proposal for the Devcon event
Discuss planning for upcoming brutal co-learning sessions
Content :
Daily operations for WeChat official account, Twitter, and Mirror
Curate content related to brutal co-learning and publish on social media
Publish weekly content from the translation and research groups
Release the EIP Fun weekly newsletter and LXDAO weekly report
This Week
Basics
Daily onboarding of new members, community operations promotion, communication, and user growth on media platforms
Collaborate on operations and provide project support
Recruit new content editors and facilitate work handover
Establish the incentive scheme for brutal co-learning sessions
Events
Continue advancing the Devcon event
Draft initial plans for the AO brutal co-learning activity
Follow up and review the offline event in Beijing
Promote and follow up on the Shanghai offline Meetup
Advance promotion for the documentary screening event in Shenzhen
Invite and promote guests for the DAO governance event
BD
Revise the BD Chinese version Deck
Apply for collaboration on LabWeek Web3
Seek sponsorship for the Devcon event
Organize recent Web3 events and gather information sources
Follow up on OP RPGF6
Daily BD tasks
Content
Daily operations for WeChat official account, Twitter, and Mirror
Curate content related to brutal co-learning and publish on social media
Publish weekly content from the translation and research groups
Release the EIP Fun weekly newsletter and LXDAO weekly report
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: Confirm the website prototype design and prepare to start development; planned work time is 20 hours.
Nantang DAO: Advance Fair Field 3.0 collaboration, discuss integration of the Neighbor Time Bank product, collect itinerary and community visit lists for Thailand, and plan surrounding activities for Devcon 7.
ETHPanda Website Project: Conduct functionality and multilingual copy review, prepare for acceptance.
FairSharing: Determine the new technical solution for Claim Token and begin development, clarify requirements, and formulate the next development plan.
Intensive Co-learning Project: Complete the prototype draft, apply for development resources, design the technical solution, and research applicable grants.
PGNode: Continue following up on Artela node deployment, handle the official website domain and promotional articles, and confirm L1 Weekly information sources.
CryptoDCA Project: Design backend login ticket anti-abuse API, create frontend plans and detail construction, and MVP testing is ongoing.
This Week
Official Website Team: Launch website development, confirm design updates, and continue progress.
Nantang DAO: Discuss collaboration on Fair Field 3.0, advance integration of the Neighbor Time Bank, and collect itinerary and activity lists for Thailand and Devcon 7.
ETHPanda Website Project: Continue functionality and copy review, and complete acceptance.
FairSharing: Continue developing the new Claim Token solution, apply for FS OPRF6, clarify requirements, and advance incentive automation.
Intensive Co-learning Project: Complete the design of the technical solution, apply for development resources, write articles for the WeChat official account, and solicit donations.
PGNode: Continue with Artela node deployment, publish articles on the official website, and confirm the format for L1 Weekly.
CryptoDCA Project: Optimize frontend details, continue MVP testing, and prepare for the official version release at the end of October.
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 :

Last Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #66
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #67
LXDAO is an R&D-focused DAO in Web3 ❤️
Website | Twitter | Telegram | Forum
Dear LXDAO community friends! Welcome to our 122nd weekly report.
Kylin: Hello everyone, I am Kylin, currently a student. I learned about LXDAO through a Youtuber and am very interested in the entire Web3 industry. I want to learn more new knowledge and skills at LXDAO. Thank you all!
Aaros: Hello everyone, I am Aaros, the coordinator of Bankless CN. I have six years of experience in the crypto field; I was previously a crypto analyst and later worked at a fund in London. After returning to China post-pandemic, I entered the IPO-related industry as an industry analyst until I discovered Bankless in 2022. I found the DAO format very appealing and returned to this field, continuously contributing to Bankless DAO. Last year, Bankless faced some challenges, and I explored new areas with like-minded friends. I have also written many reports and papers combining economics and on-chain activities, mainly in English. This year, I started focusing on LXDAO and felt that the culture here aligns well with what I pursue, especially the atmosphere of co-learning in philosophy and sociology. Therefore, I hope to explore more opportunities and meet new friends in the Chinese-speaking community of LXDAO.
微扰理论: Hello everyone, I am 微扰理论. My previous work experience was mainly focused on databases and network components. I started exploring Web3 in May this year and learned about LXDAO. Recently, I met Cooder in Shenzhen, and we worked on a project together; he suggested I join LXDAO. I also recently met Bruce in Chiang Mai. I contribute a lot on GitHub, and you can learn more about me there. Thank you all!
Nova: Hello everyone, you can call me Nova. I am currently a product manager. Although I don't directly work in Web3, I have previously tried things like hackathons at my company. I have always been very interested in Web3, and I truly joined LXDAO through a DeFi brutal co-learning session. Since 2021, I have been following on-chain governance. Although I am a science student, I am also very interested in sociology, especially the history and future development of social autonomy. I am glad to meet you all and hope to learn more here!
Smith Leon: Hello everyone, I am Smith, a computer science student. I got into blockchain earlier this year and came across LXDAO last month. Currently, I work in content at a Web3 development education company.
ChoeyGit: Hello everyone, I am ChoeyGit. I previously started two companies offline. Since last year, I have entered the Web3 field under Aaros's guidance. I am still in the learning stage. Since Aaros is the coordinator of Bankless CN, I joined Bankless CN and am currently doing research and learning in the Web3 field. That's about it, thank you all!
Boi: Hello everyone, I am Boi. I currently work at Shanghai Jiao Tong University's Ningbo Research Institute and have always been very interested in this field. Previously, I worked on agricultural blockchain projects, and after learning about LXDAO, I found this organization excellent, so I hope to establish further connections with LXDAO. Thank you all!
LiHui: Hello everyone, my name is Hui, and I am a backend developer. I previously focused on off-chain development, mainly using Java and Python. In the past year, I started engaging in on-chain development and hope to learn more about Web3. Thank you all!
Charles: Hello everyone, I am Charles. I am currently in Hangzhou and work as a backend developer. I started engaging in Web3 development in 2023, previously working on some development projects on the ICP blockchain, involving NFTs and other projects. I am very interested in the DAO model, so I hope to join LXDAO, learn more about Ethereum-related knowledge, and further develop and learn in the Web3 field. Thank you all!
吃汤圆: Hello everyone, I am 吃汤圆, living in Guangzhou. I am currently learning about robot development and the backend technology of WeChat mini-programs. I initially learned about Web3 while surfing the internet, and my interest grew due to seeing many complaints about governance. When I discovered that blockchain could eliminate trust-based intermediaries, I felt this might be an important direction for the future. I hope to contribute to society. What attracts me to LXDAO is that "conscience" is written in its name, which I think represents trust, so I want to join this organization and learn and grow with everyone. Thank you all!
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:
https://forum.lxdao.io/t/lxdao-s10-retroactive-incentive-application/2224
The governance team announced in a post that based on the LIP64 proposal, the LXDAO community will allocate 5% of the actual net expenditure from the main treasury as LXP incentives during each quarterly retrospective incentive. This post is specifically for the S10 quarter's retrospective incentive applications or nominations, and applicants must submit by November 15. The application format includes the applicant/nominator, the application matter, reasons for the application, and impact measurement (preferably with quantitative data), along with any community incentives already received.
https://forum.lxdao.io/t/ethereum-documentary-shenzhen-station-planning-proposal/2231/3
Helios posted on the forum outlining the detailed plan for the Shenzhen premiere event "Vitalik's Ethereum Story." The event will take place on October 19, 2024, in Classroom 4 of the Huixing Building at the Yuehai Campus of Shenzhen University, targeting blockchain developers and researchers. Promotion will be conducted through joint announcements with partners and social media activities. Risk assessments include equipment checks and backup plans, while feedback will be collected through social media interactions. The budget covers documentary licensing fees, poster printing, equipment rental, and includes a request for a portion of the event funding and merchandise.
https://forum.lxdao.io/t/discussion-opinion-collection-on-governance-rights-redemption/2151
Chris's post mentioned the LXTalk podcast project that was halted last year and shared thoughts on restarting the show. LXDAO focuses on developing valuable projects, and the podcast is an effective way to showcase these results. By regularly updating podcast content, it can highlight project progress and innovative solutions, helping supporters and potential investors better understand LXDAO's developments. Chris suggested reducing the update frequency of LXTalk to once a month to build audience anticipation and lower related costs.
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”.
October 15, 2024, 4:00 PM (UTC+8) (Tuesday): EIP Fun Project Weekly Meeting
October 15, 2024, 6:00 PM (UTC+8) (Tuesday): LXDAO Forge Working Group Weekly Meeting
October 16, 2024, 6:00 PM (UTC+8) (Wednesday): Crypto DCA Weekly Meeting
October 18, 2024, 5:00 PM (UTC+8) (Friday): LXDAO Operations Working Group Weekly Meeting
October 18, 2024, 7:00 PM (UTC+8) (Friday): LXDAO Governance Working Group Weekly Meeting
October 19, 2024, 10:00 AM (UTC+8) (Saturday): LXDAO Community Call Weekly
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
Organize the community workflow
Complete the governance group's research panel
Conduct research on SQF and KQF
Improve the project initiation process for virtual groups
Follow up on the multi-signature rotation matters
This Week
Research governance tools for Grants 2024
Update community SOP
Complete multi-signature rotation and salary distribution
Update the core roadmap
Organize weekly meetings and write weekly reports
Operation Grop: Primarily responsible for the community management of LXDAO. Job functions include but are not limited to: community operations, new member acquisition, enhancing community influence, content creation and management, media branding, business development, etc.
Last Week
Basics
Daily onboarding of new members, community operations promotion, and communication
Collaborate on operations and provide project support
Continue connecting with various university blockchain associations to advance cooperation
Optimize the brutal co-learning incentive scheme
Place orders for upcoming event merchandise
BD
Update core data metrics for BD
Collect materials for ENS grants
Optimize BD group members
Follow up on OP RPGF 6
Track the latest developments and related activities in the Web3 industry
Prepare topics for premium sharing
Organize partner information
Events
Invite and promote guests for the DAO governance AMA
Follow up and prepare for the offline event in Beijing
Follow up and prepare for the Wanxiang event in Shanghai
Optimize and advance the planning proposal for the Devcon event
Discuss planning for upcoming brutal co-learning sessions
Content :
Daily operations for WeChat official account, Twitter, and Mirror
Curate content related to brutal co-learning and publish on social media
Publish weekly content from the translation and research groups
Release the EIP Fun weekly newsletter and LXDAO weekly report
This Week
Basics
Daily onboarding of new members, community operations promotion, communication, and user growth on media platforms
Collaborate on operations and provide project support
Recruit new content editors and facilitate work handover
Establish the incentive scheme for brutal co-learning sessions
Events
Continue advancing the Devcon event
Draft initial plans for the AO brutal co-learning activity
Follow up and review the offline event in Beijing
Promote and follow up on the Shanghai offline Meetup
Advance promotion for the documentary screening event in Shenzhen
Invite and promote guests for the DAO governance event
BD
Revise the BD Chinese version Deck
Apply for collaboration on LabWeek Web3
Seek sponsorship for the Devcon event
Organize recent Web3 events and gather information sources
Follow up on OP RPGF6
Daily BD tasks
Content
Daily operations for WeChat official account, Twitter, and Mirror
Curate content related to brutal co-learning and publish on social media
Publish weekly content from the translation and research groups
Release the EIP Fun weekly newsletter and LXDAO weekly report
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: Confirm the website prototype design and prepare to start development; planned work time is 20 hours.
Nantang DAO: Advance Fair Field 3.0 collaboration, discuss integration of the Neighbor Time Bank product, collect itinerary and community visit lists for Thailand, and plan surrounding activities for Devcon 7.
ETHPanda Website Project: Conduct functionality and multilingual copy review, prepare for acceptance.
FairSharing: Determine the new technical solution for Claim Token and begin development, clarify requirements, and formulate the next development plan.
Intensive Co-learning Project: Complete the prototype draft, apply for development resources, design the technical solution, and research applicable grants.
PGNode: Continue following up on Artela node deployment, handle the official website domain and promotional articles, and confirm L1 Weekly information sources.
CryptoDCA Project: Design backend login ticket anti-abuse API, create frontend plans and detail construction, and MVP testing is ongoing.
This Week
Official Website Team: Launch website development, confirm design updates, and continue progress.
Nantang DAO: Discuss collaboration on Fair Field 3.0, advance integration of the Neighbor Time Bank, and collect itinerary and activity lists for Thailand and Devcon 7.
ETHPanda Website Project: Continue functionality and copy review, and complete acceptance.
FairSharing: Continue developing the new Claim Token solution, apply for FS OPRF6, clarify requirements, and advance incentive automation.
Intensive Co-learning Project: Complete the design of the technical solution, apply for development resources, write articles for the WeChat official account, and solicit donations.
PGNode: Continue with Artela node deployment, publish articles on the official website, and confirm the format for L1 Weekly.
CryptoDCA Project: Optimize frontend details, continue MVP testing, and prepare for the official version release at the end of October.
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 :

Last Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #66
This Week
Conduct the EPF weekly meeting at 7 PM on Wednesday
Publish EIP Fun Weekly #67
No activity yet