📜 [專欄新文章] Scaling Ethereum 參賽心得
✍️ Johnson
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Scaling Ethereum 是一場由 ETHGlobal 所舉辦的線上黑客松,也是我第一次參加與以太坊有關的黑客松活動,這篇文章就來分享一人參賽的過程與心得。
源起
一開始是在 telegram 群組中得知這場比賽的消息,因緣際會之下剛好有人想組隊參賽,於是就在報名截止的前一天一起跟著報名了。
報名的方式除了填一些基本資料外,最特別的是還要 stack 以太幣,也就是要傳送 0.01 顆以太幣給主辦方,規則是必須在比賽的最後,有提交作品的人才能贖回 0.01 顆以太幣,之後看到 meme 頻道有人留言:
When your project is incomplete but you submit to get back stake.
一方面,這確實也會激勵你好好把比賽完成,就算沒做完也要有些成果上去,這也是主辦方秉持的精神,他們認為大家來黑客松相互學習成長,競賽獎金則是其次。
獎金
比賽方式是由 25 個左右的贊助者(sponsor)分別提供獎金,每個 sponsor 都有錄製一段影片,說明怎麼獲得他們的獎金,大部分會要你使用他們開發的工具,或者必須跟 sponsor 在做的研究有關,去實作出創新的作品。可參考:Prizes — Scaling Ethereum
你的專案可以選擇要投入哪個 sponsor 的獎金,一個專案可以投入多個 sponsor 底下,這樣獲獎機會也會比較高。
我選擇的 sponsor 是 zkSync,他們的說明如下:
zkSync is a user-centric zkRollup developed by Matter Labs. It uses zero-knowledge proofs to keep data availability on mainnet to achieve exponentially lower transaction costs. You may have seen us powering projects such as payments and Gitcoin Grants. We are currently rapidly developing zkSync 2.0, which will feature EVM-compatibility in testnet May 2021, soon followed by zkPorter, our new exponential scalability solution.
PrizeszkSync will be awarding their Prizes as follows:
- 1 winner — 4,000 USDC
- 2 winners — 2,000 USDC
- 4 winners — 500 USDC
We encourage builders to utilize zkSync SDK’s, implemented in JavaScript/Typescript and Rust. Prizes will be awarded to projects that make it simpler and easier for non-technical users to use zkSync, other ideas include integrations of current tools such as in Gitcoin Grants and tools for easy mass payments and multi-sigs.
社群互動
這個 hackathon 很棒的地方是他把使用者體驗做的很好。每個人都會有自己的 dashboard 顯示目前專案的進度和一些訊息。
Check-In #1 和 Check-In #2 的階段會要你提供專案的構想,你隨時都可以修改。主辦方會看你提交的資訊,幫助你找到適合的 sponsor,或是給你一些建議,就算是一人參賽也能感受到回饋。
整個賽程期間,社群都是使用 discord 在互動,discord 裡頭有很多頻道,像是基本的大會報告的頻道,或是一些不重要的迷因、閒聊頻道都有。
每個 sponsor 也都有自己的頻道,我就會在 sponsor-zksync 的頻道詢問技術的問題,例如我想問問 zkSync 一些關於專案構想的意見:
Hi there, I want to build a gas fee relayer which make my ERC-20 token transfer without transaction fee, to be more precise, delegating gas payment by another party. I think this is done by GSN https://opengsn.org/ , but maybe it could built on L2 with zkSync? I’m not sure, could somebody give me some advice about this topic?
zkSync 團隊的人回應我:
This is an amazing idea! This can totally be built, as we support batching transactions which can be used for all kinds of creative things such as paying for transaction fees in an erc-20 token. Your idea seems like a combination of that and the gitcoin grants integration. To get started, I suggest you watch the short 10 minute presentation I made on using the SDK and batching. Looking forward to your project!!
在 Check-In #2 的時候,我提交新版的專案構想,有一個欄位是問:「目前專案遇到什麼阻礙?」我的問題應該是被主辦方貼給 zkSync 的團隊,於是 zkSync 的團隊成員就用 discord 私訊我,貼了一些程式碼教我怎麼使用他們的 Javascript SDK,這突如其來的救援也幫了大忙。
除此之外,主辦方每個禮拜都會寄 email 通知一些重要的活動,賽程期間舉辦了四個 Summits 研討會,邀請世界各地有名的以太坊開發者分享議題,主辦方還有一個自己的 TV 網頁,直播所有的線上活動。這些活動都有錄影,可以在 youtube 看到過去所有的演講內容:https://www.youtube.com/c/ETHGlobal/videos
因為我的作品是使用 zkSync 的 Javascript SDK 製作的,好像也只能投稿 zkSync 作為獎金的 sponsor,不過主辦方在最後一個禮拜,也寄 email 告訴我說可以多投稿不同的 sponsors 看看,他依據我的專案構想給我一些適合的 sponsors 作為參考。
不過最後我還是只投稿了 zkSync,有點懶著再看其他 sponsors 的文件,也覺得其他 sponsors 的題目需要花比較大的功夫才能完成,一個人能力有限,就做點簡單的東西就好。
關於我的專案 — Gas Relay Service
在以太坊的世界,每一筆交易都需要額外付一筆交易費,也就是以太坊的 gas fee。
我的專案是讓「收款人」能夠幫「付款人」支付以太坊的手續費。
在黑客松之前,我就想研究「第三方支付手續費」的議題,因此我大部分時間其實都在研究一般的 meta-transactions 是怎麼實作的,有興趣的人可以看看 simple meta-transactions 的原始碼:https://github.com/chnejohnson/simple-meta-transaction
之後我才開始玩 zkSync 的 SDK,並研究怎麼在 Layer 2 實現第三方支付手續費的問題,以下就附上作品連結以及簡單的專案介紹給有興趣的人參考:https://showcase.ethglobal.co/scaling/gas-relay-service-on-zksync
The target is that token sender can choose to find another account to pay for fee. The another account can be (1) the token receiver’s account, (2) sender’s another account, (3) third party’s account.
In this project, I finished the demo, which is the (1) above, that receiver pay gas fee for the sender.
有趣的是,我在研究 meta-transactions 時學到很多智能合約的寫法,結果在最後專案上都沒用到(沒寫到合約的程式),zkSync Javascript SDK 其實很簡單,他們的文件寫得很清楚。最後 Demo 還是用 zkSync 團隊的成品修改來的…XD。
所幸在沒有懂太多技術的前提下完成了這場黑客松的專案,成功贖回了 0.01 顆以太幣。
評審與決選
整個賽程來到最後一個禮拜,主辦方安排兩天的時間進行 Judges,使用 zoom 進行線上研討會,一個人基本上是 7 分鐘,前 4 分鐘播放 Demo 簡報,後三分鐘會有評審問問題。
第一個問題是說:「Demo 中你是使用 zkSync 的錢包網頁去操作,那實際上你做得部分是什麼?」
我就回答我在他們的網頁上加了一顆按鈕,使用他們的 SDK 做出 gas relay 的功能,還有一個後端的 server 去作 relay。
第二個問題大概是問:「什麼樣的情境下會需要由 receiver 幫 sender 支付 gas fee?」
我的回答是,在一般超商購物的情境,消費者通常只支付商品的價格,不會支付額外的交易費,我認為以太坊的手續費應該屬於軟體的營運成本,由賣方支付比較適合。那如果賣方希望手續費的成本是由消費者承擔,可以直接調高商品的價格。
當然,我英文講得零零落落,希望評審有聽懂就是了…
最後一場直播就是 Finale 決選,主辦方選出十二個隊伍,公開再 Demo 一次,以及提供線上觀眾詢問問題,至此整個賽程就差不多進入尾聲。
決選後的不久,主辦方就公布了這次有獲得獎金的隊伍,幸運拿到了 zkSync 頒發的小獎~
zkSync — Matter Labs
- Zeneth — 2000 USDC
- ZeroSwap — 1500 USDC
- Kangaroo — 500 USDC
- Gas Relay Service — 500 USDC
後記
這次的參賽隊伍中,Zeneth 跟我的主題非常相似:
Zeneth — Use Flashbots to enable arbitrary meta-transactions so EOAs can enter L2s without ETH
另一個我覺得有趣的專案是 Alexandria:
Alexandria — A dApp using STARKs to verify aspects of your identity without revealing more than you should
沒想到主辦方 ETHGlobal 下個月又要再舉辦一場黑客松,有興趣的人可以看看:https://defi.ethglobal.co/ ,這次的主題是 De-Fi。
最後,只要有到 ETHGlobal 的 TV 網頁參加 Summit 研討會的直播,就能夠獲得 POAP 勳章,它就是一個酷東西~😋
POAP: Proof of Attendance Protocol
Scaling Ethereum 參賽心得 was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
同時也有1部Youtube影片,追蹤數超過3萬的網紅#ミニマリストライフ,也在其Youtube影片中提到,http://code.jihei.org/2010/04/iframeform.html フォームに記入されたデータをサーバへアップする場合InputタグでSubmit(サブミット|送信)します。 このときに複数のフォームを同時に送信出来たら? と考えたことは無いでしょうか?このために簡単に複数の...
「javascript submit」的推薦目錄:
- 關於javascript submit 在 Taipei Ethereum Meetup Facebook 的最佳貼文
- 關於javascript submit 在 Follow XiaoFei 跟著小飛玩 Facebook 的精選貼文
- 關於javascript submit 在 Scholarship for Vietnamese students Facebook 的最佳解答
- 關於javascript submit 在 #ミニマリストライフ Youtube 的精選貼文
- 關於javascript submit 在 How can I submit a form using JavaScript? - Stack Overflow 的評價
- 關於javascript submit 在 JavaScript Form - JavaScript Tutorial 的評價
- 關於javascript submit 在 The "submit" event on forms in JavaScript - YouTube 的評價
- 關於javascript submit 在 Fire javascript on a form submit - Drupal Answers 的評價
- 關於javascript submit 在 Submit a form with javascript doesn't trigger event modifier. 的評價
- 關於javascript submit 在 Multiple submit buttons and JavaScript - Sarbbottam's weblog 的評價
javascript submit 在 Follow XiaoFei 跟著小飛玩 Facebook 的精選貼文
這一年我的新的地圖PO比較少,您想知道我一直在忙什麼嗎?我將有一個驚喜給大家, 目前還是秘密,但是這裡有個提示: 大自然愛好者,瀑布探險者和戶外愛好者的下一個大型平台即將到來。
這將改變您的探索方式,並使我的小網站變得過時。 這次,我不僅要與所有人共享我的地圖,而且要創建一個由探索者和地圖製作者組成的整個社區。 我想探索一個更具包容性的空間。
順便說一句,我正在尋找一名Frontend Engineer加入其中,並幫助使這個項目成為可能。 您或您認識的某個人是一位經驗豐富的程序員,熱衷於共享和冒險嗎? 請閱讀以下詳細訊息,如果您想申請或有任何疑問,請聯繫Bryan。
😊☀😊
This year I haven't been able to add as many new maps. Would you like to know why I've been so busy? It's still a bit of a secret... but here's is a hint: The next big platform for nature lovers, waterfall explorers, and outdoor enthusiasts is coming. It's going to change the way you go exploring and make my fun little website obsolete. This time I'm not just looking to share my maps with everyone, but to create an entire community of explorers and mapmakers. I want to make exploring a more inclusive space.
Incidentally I am looking for a Frontend Engineer to join the team and help make this project possible. Are your or someone you know an experienced programmer with a passion for sharing and adventure? Please check the details below and contact Bryan if you would like to apply or have any questions.
😊☀😊
Job Details:
* Participate in brainstorming sessions for product features and system architecture
* Collaborating with the design team
* Research into new technologies
Required Qualifications
* Proficient in Javascript along with a frontend framework, angular and/or react
* Experience using HTML5 & CSS3 features (websockets, webrtc, SSE, LESS, SASS, Stylus, PostCS, etc.)
* Experienced with RESTful APIs
* Experienced with SPA, Flux, Redux is good.
* Experience with building real-time applications
* Experience with build pipeline tools: grunt, gulp, webpack, etc
* Experience with Git and Git flow
Preferred Qualifications
* Experience with building native webapps (react native, etc.)
* Experience developing optimistic UI style applications
* Experience optimizing frontend for performance and user experience
* Strong knowledge of media handling on client
* Open-source advocate
Nice to have
* UI/UX Design
How to Apply
Please submit the following here or to bryankuo@fusionnextinc.com
* CV/Resume
* A link to your Github/Bitbucket
javascript submit 在 Scholarship for Vietnamese students Facebook 的最佳解答
[SHORT SHARE] HỌC Ở NHÀ MÙA DỊCH (PHẦN 2)
Phần này sẽ dành cho các bạn quan tâm đến lập trình, đặc biệt là Machine Learning, Data Science, React Native và Web Programming các em nhé. Tài nguyên học online thì nhiều vô kể nhưng những cơ hội tốt thế này thì hiếm lắm nha :D
1. Codecademy trao 10.000 HỌC BỔNG CHO CÁC BẠN HỌC SINH, SINH VIÊN
Từ giờ đến cuối năm nay, các em sẽ được được truy cập nguồn tài nguyên khổng lồ từ Code Academy bao gồm: lộ trình học, bài giảng và bài tâp để học lập trình và khoa học dữ liệu, và một đội ngũ hỗ trợ hùng hậu!
Điều đặc biệt là học bổng này bao gồm đầy đủ các quyền lợi của phiên bản Codecademy Pro. Tính ra có lẽ phải đến 1000 giờ cày code miễn phí, khá là đủ để các em lên đến trình độ immediate rồi :D
Link: https://pro.codecademy.com/learn-from-home/
Cách thức: Đăng ký tại đây với email " .edu " của mình nha.
2. 300 HỌC BỔNG DÀNH CHO SINH VIÊN CNTT TẠI HÀ NỘI
Facebook x CoderSchool mang tới Hà Nội 300 suất học bổng về: Data Science, React Native & Project Managment trị giá 15,000,000 đồng/suất. Các bạn sinh viên IT sau khi vượt qua bài test và vòng phỏng vấn thì sẽ KHÔNG CẦN ĐÓNG THÊM BẤT KỲ CHI PHÍ NÀO!
Cách thức đăng ký hợp lệ:
- Truy cập trang web để đăng kí: http://bit.ly/FacebookDevC
- Submit form. Làm bài kiểm tra đầu vào & đợi CoderSchool liên hệ lại với bạn
Sau khi học xong, các em sẽ nhận chiếc certificate xịn xò từ Facebook, quen thêm nhiều bạn giỏi, mentor có tâm và nhiều cơ hội nữa nhé.
3. HÀNG LOẠT KHÓA HỌC ONLINE MIỄN PHÍ TỪ HARVAR
Đại học Harvard đang miễn phí hơn 60 khóa học về khoa học dữ liệu (data science), lập trình, khoa học xã hội, nhân học, y tế và nghệ thuật.
KHOA HỌC DỮ LIỆU:
- Dùng Python để nghiên cứu: https://bit.ly/39Lzfb3
- Xác suất: https://bit.ly/3bOjF0b
- Nhập môn về R: https://bit.ly/2uUjWh8
- Trực quan hóa dữ liệu: https://bit.ly/2OZxZJ7
- Machine learning: https://bit.ly/37ExcnK
- Hồi quy tuyến tính: https://bit.ly/2SU0xoA
- Phân tích dữ liệu nhiều chiều: https://bit.ly/37vDoht
- Nhập môn AI với Python: https://bit.ly/37u2c9D
LẬP TRÌNH:
- Nhập môn Lập trình game: https://bit.ly/38xo4SU
- Phát triển ứng dụng điện thoại với React Native: https://bit.ly/2STVc0N
- Lập trình Web với Python và Javascript: https://bit.ly/37uXWXv
DANH SÁCH ĐẦY ĐỦ CÁC KHÓA HỌC: https://bit.ly/2UV8gFw
4. THỰC HÀNH CHÁNH NIỆM CÙNG THIỀN SƯ THÍCH NHẤT HẠNH
Trước tình hình dịch bệnh đang diễn ra khắp toàn cầu dẫn đến sự đóng cửa tạm thời của các trung tâm thiền tập trên thế giới, ban giáo thọ xuất sĩ và cư sĩ của Làng Mai quốc tế đã cùng nhau làm việc và hiến tặng cho đại chúng khoá học online miễn phí trong 5 ngày từ 25/3 đến 29/3.
- Học hỏi và trải nghiệm những chia sẻ chân tình và sâu sắc từ sự thực tập pháp môn Làng Mai
- Học cách chăm sóc tâm mình bằng những cách đơn giản mà ai cũng có thể làm được
- Khai thác sức mạnh của thiền chánh niệm và học cách an trú hiện tại
- Tìm thấy những phương pháp tích cực để nhận diện những khổ đau và chuyển hoá thành hiểu biết và thương yêu
- Khám phá ý nghĩa thực sự của hạnh phúc và chế tác năng lượng bình an đích thực cho chính bản thân và cho thế giới
- Thấy rõ những lời dạy của Bụt có thể được áp dụng để xử lý những vấn đề nhức nhối đang hiện hữu là biến đổi khí hậu và bất bình đẳng xã hội
Thương mời đại chúng, quý thân hữu bạn bè gần xa cùng đăng ký học để có những trải nghiệm bổ ích và lợi lạc.
https://promo.lionsroar.com/free-summit-thich-nhat-hanh/…
Nguồn: My Hang, Giang Hoang Nguyen & http://bit.ly/FacebookDevC nhé!
À đừng quên HannahEd còn có rất nhiều group FREE bổ ích cho các em join nha:
- Scholarship Hunters
- Job Hunters & Career Builders - HannahEd
- Học bổng ngắn hạn, trao đổi, tình nguyện - HannahEd
- English Club HEC
❤ Like page, tag và share để không lỡ info hay các em nhé ❤
#HannahEd #duhoc #hocbong #sanhocbong #scholarshipforVietnamesestudents
javascript submit 在 #ミニマリストライフ Youtube 的精選貼文
http://code.jihei.org/2010/04/iframeform.html
フォームに記入されたデータをサーバへアップする場合InputタグでSubmit(サブミット|送信)します。 このときに複数のフォームを同時に送信出来たら? と考えたことは無いでしょうか?このために簡単に複数のFormに対して送信が行えるサンプルを作成しました。
javascript submit 在 JavaScript Form - JavaScript Tutorial 的推薦與評價
Submitting a form ... If the submit button has focus and you press the Enter key, the browser also submits the form data. When you submit the form, the submit ... ... <看更多>
javascript submit 在 The "submit" event on forms in JavaScript - YouTube 的推薦與評價
You can use the "submit" event in JavaScript to react to when the user submits an HTML form. This can be ... ... <看更多>
javascript submit 在 How can I submit a form using JavaScript? - Stack Overflow 的推薦與評價
... <看更多>
相關內容