Dot Leap 23 中文版

原文作者:Bruno ?kvorc
訂閱鏈接:newsletter.dotleap.com

Re-genesis

Wei,Parity 開發(fā)者 & Kulupu 創(chuàng)建者,發(fā)起了關(guān)于在Substrate鏈上重置genesis的討論。重置genesis將能夠移除所有之前鏈的狀態(tài),并將這個狀態(tài)快照作為block 0繼續(xù)運行。
這個功能的優(yōu)點是能夠減少歷史狀態(tài)存儲和同步數(shù)據(jù)的大小,也是一種好的硬分叉機制。但也會有一些問題,比如切換過程會有暫停和延遲。重置后將無法對之前的記錄進行審計。
個人認為安全考慮這個機制并不適合Polkadot,但如果Kusama網(wǎng)絡(luò)每500萬個塊進行一次re-genesis來保持其輕量和實驗性是一個不錯的嘗試。
https://github.com/paritytech/substrate/issues/7458

Polkadot (v0.8.26.1.)

需要多少票才能通過議會提案對于各個鏈?zhǔn)遣煌模壳版溕蟤etadata并未定義這個值,一般都是在前端設(shè)置。
Polkadot JS Apps中下面的這個文件定義了這個值,目前Jaco在維護Polkadot和Kusama,Wei在維護Kulupu。其它鏈建議也提交信息到這個文件。
https://github.com/polkadot-js/apps/blob/master/packages/page-council/src/thresholds.ts

retrobugs

Polkadot v26 和 Kusama v2026 中議會候選人slashing的bug已經(jīng)修復(fù),償還因為這個bug導(dǎo)致的損失正在進行中。

Polkadot v0.8.26-1 已發(fā)布

!重要!請務(wù)必更新你的節(jié)點。這個版本修復(fù)了p2p網(wǎng)絡(luò)層中的DoS vector問題。

波卡治理

公投 10:要求追回被scam的資金請求,未通過。
https://polkadot.polkassembly.io/referendum/10

公投 11:v26升級,已通過并執(zhí)行。
https://polkadot.polkassembly.io/referendum/11

公投 12:要求更改claim地址,未提供更多信息。
https://polkadot.polkassembly.io/referendum/12

議案 36&37:分別支持 LocalCoinSwap & Ramp 集成 DOT
https://polkadot.polkassembly.io/motion/36
https://polkadot.polkassembly.io/motion/37

財政提案 22 / 議案 39:
Subscan 的運維經(jīng)費申請
https://polkadot.polkassembly.io/treasury/22

財政提案 23 / 議案 40:
Redspot 0.3 的開發(fā)經(jīng)費申請
https://polkadot.polkassembly.io/treasury/23

Kusama (v0.8.26.1.)

Kusama v0.8.26-1 已發(fā)布

!重要!請務(wù)必更新你的節(jié)點。這個版本修復(fù)了p2p網(wǎng)絡(luò)層中的DoS vector問題。

如何申請Kusama/Polkadot Bounty查看:
https://app.subsocial.network/1231/posts/316

?? Chaos

在 1457-1458 eras,有大量 equivocations 導(dǎo)致 slashing,Zug Capital 和投給它的用戶有一定損失。1492-1498 eras,發(fā)生了同樣問題,P2P節(jié)點受到影響,但損失相對較小。

Kusama 治理

議案 237:Subscan 的運維經(jīng)費申請
https://kusama.polkassembly.io/motion/237

財政提案 55 / 議案 236:PolkadotAssetJS - Kusama NFT UI app 開發(fā)經(jīng)費申請
https://kusama.polkassembly.io/treasury/55

關(guān)于 Subbox 更多信息的討論,這個團隊希望能夠?qū)崿F(xiàn)一個遠程編譯cargo的方案,降低Substrate編譯難度。
https://kusama.polkassembly.io/post/335

一個提議,關(guān)于在財政申請和投票中增加備注和信用權(quán)重
https://kusama.polkassembly.io/post/352

核心代碼

目前驗證節(jié)點可以隨意修改傭金率,這個討論是關(guān)于限制這種修改(比如,當(dāng)有足夠的票數(shù)后將傭金率從0改為100)
https://polkadot.polkassembly.io/post/145
Github上也有相關(guān)討論,并將被實施
https://github.com/paritytech/substrate/issues/6920#issuecomment-720612161

HRMP 代碼已合并,平行鏈快來了。
https://wiki.polkadot.network/docs/en/learn-crosschain#horizontal-relay-routed-message-passing-hrmp

Cumulus 已增加 Parachains V1 支持
https://github.com/paritytech/cumulus/pull/224

區(qū)塊最大size可配置。但由于網(wǎng)絡(luò)帶寬限制,最大值需要小于 10 MB。
https://github.com/paritytech/substrate/pull/7499/files

substrate-test-runner 可以用于進行 runtime 測試
https://github.com/paritytech/substrate-test-runner

支付交易與currencies解耦,意味著鏈可以自定義手續(xù)費token,甚至可以根據(jù)交易來確定手續(xù)費token,比如發(fā)送DAI的話用DAI支付,發(fā)送DOT用DOT支付。
https://github.com/paritytech/substrate/pull/6912

utility.batch_all extrinsic 支持原子化批量操作。你可以提交一個批量交易,它們要么都成功,要么都失敗。
https://github.com/paritytech/substrate/pull/7188

on_initialize weight 隨著區(qū)塊增長將減小,這樣可以為election留出空間,讓NPoS可以支持更多提名人。
https://github.com/paritytech/polkadot/pull/1838

SS58 prefix 14 給到 Totem Lego testnet。同時它之后會是 Totem 的主網(wǎng)。
https://github.com/paritytech/substrate/pull/7442

ink! 新增 README。內(nèi)容包括3.0最新更新,以及幫助用戶上手。
https://github.com/paritytech/ink

如果你在體驗平行鏈及l(fā)ocal版本Rococo測試網(wǎng),Adder collator 步驟已添加
https://github.com/paritytech/polkadot/tree/master/parachain/test-parachains/adder/collator

Substrate 已使用 libp2p 0.29
https://github.com/paritytech/substrate/pull/7341

Synesthesia 使用 SS58 prefix 15
https://github.com/paritytech/substrate/pull/7486

ink! 中存儲相關(guān)bug被修復(fù),將在 rc3 中發(fā)布
https://github.com/paritytech/ink/pull/570

如果你在運行一個 Substrate-based 鏈,并希望與master releases保持同步,可以關(guān)注下面這個repo,它記錄了所有需要migrate的runtime-upgrade(比如內(nèi)部存儲類型變化等)
https://github.com/apopiak/substrate-migrations

不管什么原因?qū)е伦罱K確定延遲,BABE 區(qū)塊簽署現(xiàn)在會逐漸減慢和跳過一些區(qū)塊(incrementally back off and start skipping blocks)。目的是減低分叉風(fēng)險,方便修復(fù)問題(如果沒有大量的分叉,runtime升級會容易許多)
https://github.com/paritytech/substrate/pull/7186

以太坊兼容性

EVM中的off-by-one 問題已修復(fù)。
https://github.com/paritytech/frontier/pull/187
另一個問題是 pending nonce 問題也已修復(fù)。
https://github.com/paritytech/frontier/issues/171
EVM Pallet README文檔已更新
https://github.com/paritytech/substrate/pull/7487

contracts_call RPC 接口現(xiàn)在能返回更多信息。
https://github.com/paritytech/substrate/pull/7468

PureStake (the company developing the Moonbeam smart contract platform) 和 BOTLabs (the company behind KILT Protocol) 會合作 Polimec (波卡流動性機制)項目
https://kilt-protocol.medium.com/kilt-protocol-collaborates-with-moonbeam-to-work-together-on-polimec-d79929b07e13

Polkadot JS Apps UI 已支持 Moonbeam (Ethereum)
https://github.com/polkadot-js/apps/pull/3961

Moonbeam 發(fā)布了 Truffle box,與 Truffle 完成集成。使用Truffle和Moonbeam Docker環(huán)境非常簡單,你不需要編譯節(jié)點等操作。
https://docs.moonbeam.network/integrations/trufflebox/

Moonbeam 的 Moonbase Alphanet下周重置,將合并 Ethereum 和 Substrate 的賬戶狀態(tài)。并且其chainid會改為1287。
https://github.com/PureStake/moonbeam#chain-ids

工具

Substrate-lite 一個輕量化的客戶端,僅使用Wasm運行環(huán)境,目標(biāo)是能夠嵌入到網(wǎng)頁中直接運行。
https://github.com/paritytech/substrate-lite

Polkadot JS API 發(fā)布 version 2.6 & Polkadot JS Apps UI 發(fā)布 0.66.
https://github.com/polkadot-js/api/releases/tag/v2.6.1
https://github.com/polkadot-js/apps/releases/tag/v0.66.1

Soramitsu的 Fearless wallet 發(fā)布 version 0.4
https://sora-xor.medium.com/october-30-2020-dev-updates-for-sora-polkaswap-and-fearless-wallet-9ff465a6d751

OnFinality的 Infura-like 服務(wù)。現(xiàn)在注冊,獲得API key,你可以獲得 500k 每天免費請求(WS或HTTP)
https://app.onfinality.io/

Substrate-test-runner 讓你測試 runtimes, migrations, and runtime upgrades。通過在本地啟動一個 BABE 共識的鏈對pallet功能進行測試,并能夠進行自定義。
https://github.com/paritytech/substrate-test-runner

Polkassembly 支持展示 Kusama 鏈上 bounties
https://kusama.polkassembly.io/bounties

開源的 Substrate Kotlin 安卓客戶端
https://medium.com/nodle-io/open-sourcing-our-substrate-client-for-android-kotlin-5558be84c7fd

Ryabina 的 Telegram bot 可以提醒你鏈升級的重要信息,詳見:
https://kusama.polkassembly.io/post/355

學(xué)習(xí)資料

Bruno的TruffleCon演講,關(guān)于Truffle和Moonbeam
https://www.youtube.com/watch?v=XH7CiyY83VU

生態(tài)

Subsocial 加了兩個新功能:轉(zhuǎn)移權(quán)限,賬戶活動
https://subsocial.network/

OnFinality的發(fā)布了波卡的 Infura-like 服務(wù)
https://onfinality.medium.com/onfinality-is-pleased-to-announce-its-api-service-beta-ce57ba8c7554

Uncharted Territories寫了關(guān)于Kusama議會的記錄片
https://www.youtube.com/watch?v=-JfQ2vCipWU

Joe Petrowski講述了它允許Kusama和波卡節(jié)點,及參與議會的故事
https://petrow.ski/polkadot/

Anson Lau 采訪了 MathChain(built on Substrate)的CTO的視頻
https://ansonlau.me/math-wallet-vs-math-chain-eric/

Phala 參加了 The Linux Foundation 和 The Confidential Computing Consortium
https://medium.com/phala-network/phala-joins-the-linux-foundation-and-the-confidential-computing-consortium-707c522bc514

DIA開始集成Polkadot
https://medium.com/dia-insights/hello-polkadot-dia-begins-cross-chain-integration-200a16b69a8c

第一個波卡生態(tài)的NFT已在Unique Network的“SubstratePunks”發(fā)布,詳見
https://www.voice.com/post/@tulip/the-first-polkadot-nfts-substrapunks-1604598466-1

CryptoEQ 寫的波卡核心生態(tài)報告
https://www.cryptoeq.io/corereports/polkadot-abridged

Crust 和 Subsocial 達成關(guān)于去中心存儲方面的合作
https://medium.com/crustnetwork/crust-and-subsocial-announce-partnership-4b0f66aca873

麥子瀏覽器插件錢包已支持 Darwinia Crab, Centrifuge 和 Subsocial.
https://twitter.com/MathWallet/status/1326781503217553409

活動

November 17th - 如何獲得Web3項目所需的資金
https://www.meetup.com/Blockchain-Crypto-Croatia/events/274414748

December 3rd - 第一次波卡正式啟動后的社區(qū)會議 Polkadot Decoded。
創(chuàng)始人 Gavin Wood 和 Robert Habermeier、波卡生態(tài)平行鏈和橋的團隊、特別嘉賓 Laura Shin 和 Camila Russo將出席。它是一次免費的在線會議,正對所有技術(shù)和非技術(shù)人員,如果你想要了解更多波卡的最新進展記得提前報名:
https://decoded.polkadot.network/

投票

為感謝 DOT Leap 作者每周更新,大家可以在Kusama和Polkadot議會選舉中投票給 BRUNO
https://twitter.com/bitfalls

最后感謝 Bill Laboon 的每日波卡摘要
https://twitter.com/billlaboon

原文:
http://blog.boka.network/2020/11/16/dot-leap-23-zhong-wen-ban/

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

推薦閱讀更多精彩內(nèi)容