📜 [專欄新文章] 可升級合約介紹 - 鑽石合約(EIP-2535 Diamond standard)
✍️ Kimi Wu
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Photo by Evie S. on Unsplash
前言
可升級合約簡單來說是透過 proxy contract(代理合約)來達成,藉由代理合約去呼叫欲執行的合約,若要升級,則把代理合約中的指向的地址換為新的合約地址即可。而執行的方式則是透過 delegateCall,但 delegateCall 不會更動目標合約的狀態。所以要怎麼處理變數,就是一門學問了。
舉例來說,contract B 有個變數 uint256 x,初始值為 0, 而 function setX(uint256),可以改變 x 的值。proxy contract A 使用 delegatecall 呼叫 contract B 的 setX(10),交易結束後,contract B中的 x 依然還是 0。
OpenZeppelin 提出了三種實作方式,可以做到可升級合約,細節可參考 Proxy Patterns,而最終的實作選用了 Unstructured Storage的這個方式,這種方式對於開發較友善,開發時不需特別處理 state variables(不過升級時就需要特別注意了)。而這篇主要是介紹 Diamond standard,OpenZeppelin 的可升級合約就不多做介紹。
USDC V2 : Upgrading a multi-billion dollar ERC-20 token 詳細地介紹代理合約跟變數儲存之間的關係,不了解升級合約的原理,建議先看看。
鑽石合約
名詞介紹
diamond:合約本體,是一個代理合約,無商業邏輯
facet:延伸的合約(實際商業邏輯實作的合約)
loupe:也是一個 facet,負責查詢的功能。可查詢此 diamond所提供的 facet與facet所提供的函式
diamondCut:一組函式,用來管理(增加/取代/減少)此 diamond合約所支援的功能
Loupe
直接來看 loupe的介面,從宣告就能很清楚暸解 diamond合約的實作方式,loupe宣告了一個結構 Facet,Facet結構包含一個地址及 function selector 陣列,所以我們只需要記錄一個 Facet陣列就可以得知這個 diamond 合約有多少個延伸合約及所支援的功能(loupe只定義結構,而實際變數是存在diamon合約中的)。也就是 diamond合約中只記錄延伸合約的地址及其支援的 function selectors,及少數 diamond合約的管理邏輯,並無商業邏輯,因此可以外掛非常非常多的合約上去(就像一個Hub),也就可以突破一個合約只有24K的限制。
// A loupe is a small magnifying glass used to look at diamonds.interface IDiamondLoupe { struct Facet { address facetAddress; bytes4[] functionSelectors; } function facets() external view returns (Facet[] memory facets_); function facetFunctionSelectors(address _facet) external view returns (bytes4[] memory facetFunctionSelectors_); function facetAddresses() external view returns (address[] memory facetAddresses_); function facetAddress(bytes4 _functionSelector) external view returns (address facetAddress_);}
DiamondCut
至於 facet在 diamond合約上的註冊或是修改,就由 diamondCut負責,從以下程式碼可以清楚瞭解其功能(EIP中有規範,每次改變都需要發送DiamondCut事件)
interface IDiamondCut { enum FacetCutAction {Add, Replace, Remove} // Add=0, Replace=1, Remove=2 struct FacetCut { address facetAddress; FacetCutAction action; bytes4[] functionSelectors; } function diamondCut( FacetCut[] calldata _diamondCut, address _init, bytes calldata _calldata ) external; event DiamondCut(FacetCut[] _diamondCut, address _init, bytes _calldata);}
Diamond合約
接下來就是最核心的部分 — diamond本體合約。以下是官方的範例,方法上跟 OpenZeppelin 一樣使用 fallback 函式跟 delegateCall 。
呼叫合約所不支援的函式,就會去執行 fallback 函式,fallback 函式中再透過 delegateCall 呼叫 facet 合約相對應的函式
fallback() external payable { address facet = selectorTofacet[msg.sig]; require(facet != address(0)); // Execute external function from facet using delegatecall and return any value. assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), facet, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 {revert(0, returndatasize())} default {return (0, returndatasize())} }}
主要的差異在於變數的處理,OpenZepplin 是針對單一合約設計的代理合約(也就是每個合約都有自己的代理合約),所以無法處理單一代理合約儲存多個合約的變數(state variables)的狀況(後有圖例)。先由官方的範例程式來了解是怎麼處理變數的
在官方的範例中,都是以更改合約 owner 為例子
首先看到 DimaondStorage這個結構,結構中的前面三個變數都是在維持 diamond合約的運作(同上面loupe的範例),最後一個變數 contractOwner就是我們商業邏輯中所需的變數。
接著看到 function diamondStorage(),取變數的方式就跟OpenZeppelin 儲存特定變數方式一樣(EIP-1967),是把變數存到一個遠方不會跟其他變數碰撞到的位置,在這裡就是從 DIMOND_STORAGE_POSITION 這個 storage slot 讀取。
在實作上就可以有 LibDiamond1 ,宣告DIMOND_STORAGE_POSITION1=keccak256("diamond.standard.diamond.storage1") ,負責處理另一組的變數。藉由這種方式讓每個 facet合約有屬於自己合約的變數, facet合約間就不會互相影響。而最下方的 setContractOwner 是實際使用的範例。
library LibDiamond {
bytes32 constant DIAMOND_STORAGE_POSITION = keccak256("diamond.standard.diamond.storage");
struct FacetAddressAndSelectorPosition { address facetAddress; uint16 selectorPosition; }
struct DiamondStorage { mapping(bytes4 => FacetAddressAndSelectorPosition) facetAddressAndSelectorPosition; bytes4[] selectors; mapping(bytes4 => bool) supportedInterfaces; // owner of the contract address contractOwner; }
function diamondStorage() internal pure returns (DiamondStorage storage ds) { bytes32 position = DIAMOND_STORAGE_POSITION; assembly { ds.slot := position } }
function setContractOwner(address _newOwner) internal { DiamondStorage storage ds = diamondStorage(); address previousOwner = ds.contractOwner; ds.contractOwner = _newOwner; emit OwnershipTransferred(previousOwner, _newOwner); }
每個 library 處理了一組或多組變數的存取, facet 合約透過 library 對變數做操作。也就是把變數存在diamond主體合約,延伸的 facet合約只處理邏輯,是透過 library 去操作變數。
下面圖中清楚地解釋了 facet合約,function selectors 與變數之間的關係,從最左上這邊有個 facets 的 map,紀錄了哪個 selector 在哪個合約中,例如func1, func2是 FacetA的函式。左下角宣告了變數,每組變數的存取如同上述 library 的方式處理。
https://eips.ethereum.org/EIPS/eip-2535#diagrams
在 diamond的設計中,每個 facet合約都是獨立的,因此可以重複使用(跟library 的概念一樣)
https://eips.ethereum.org/EIPS/eip-2535#diagrams
小結
diamond合約使用不同的設計來達成合約的可升級性,藉由這種Hub方式可隨時擴充/移除功能,讓合約不再受限於24KB的限制,此外充分的模組化,讓每次升級的範圍可以很小。最後,因為跟library一樣只處理邏輯,並無狀態儲存,所以可以重複被不同的diamond合約所使用。
雖然又不少好處,也是有些缺點。首先,術語名詞太多,facet, diamondCut, loupe等等(其實還有好幾個,不過沒有介紹到那些部分,所以沒有寫出來)。開發上不直覺,把變數跟邏輯拆開,若要再加上合約之間的繼承關係,容易搞混,不易維護。最後,gas的花費,在函式的讀取、呼叫,變數的存取、傳遞都會有不少的額外支出。Trail of Bits 專欄中有點出更多的缺陷 Good idea, bad design: How the Diamond standard falls short,不過作者也有反擊 Addressing Josselin Feist’s Concern’s of EIP-2535 Diamond Standard,有興趣的讀者可以自行看看、比較。
為了模組化及彈性,diamond合約在設計上有點太複雜(over engineering),會造成可讀性越差(這點也是Vyper誕生的原因之一),而可讀性越差就越容易產生bug、也越不容易抓到bug,而在defi專案中,一個小小的bug通常代表著大筆金額的損失 😱😱😱。
雖然如此,筆者還是覺得很酷,有些設計的思維仍然可以使用在自己的專案
ref:
EIP 2535
Diamond 實作
Addressing Josselin Feist’s Concern’s of EIP-2535 Diamond Standard
OpenZeppelin upgradeable contract
可升級合約介紹 - 鑽石合約(EIP-2535 Diamond standard) was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
同時也有3部Youtube影片,追蹤數超過233萬的網紅VVFwave Kung,也在其Youtube影片中提到,ดาวโหลด Map ได้ที่ http://www.minecraftforum.net/forums/mapping-and-modding/maps/2661634-1-9-faily-brakes-by-poweredbypoweryt-from-the ใครสนใจเซิฟมายค...
「memory mapping」的推薦目錄:
- 關於memory mapping 在 Taipei Ethereum Meetup Facebook 的最佳貼文
- 關於memory mapping 在 中央研究院 Academia Sinica Facebook 的最讚貼文
- 關於memory mapping 在 中央研究院 Academia Sinica Facebook 的最讚貼文
- 關於memory mapping 在 VVFwave Kung Youtube 的最佳解答
- 關於memory mapping 在 VVFwave Kung Youtube 的最佳解答
- 關於memory mapping 在 VVFwave Kung Youtube 的精選貼文
- 關於memory mapping 在 Memory mapping — The Linux Kernel documentation 的評價
- 關於memory mapping 在 Understanding memory mapping conceptually - Stack Overflow 的評價
- 關於memory mapping 在 visualcomplexity.com | Memory Mapping - Pinterest 的評價
- 關於memory mapping 在 Issue #103 · WebAssembly/threads - Memory mapping - GitHub 的評價
- 關於memory mapping 在 Understanding memory mapping conceptually - Computer ... 的評價
memory mapping 在 中央研究院 Academia Sinica Facebook 的最讚貼文
你知道死侍夾斷手🖐,為什麼可以長出一模一樣的組織嗎?但有時候也可能長歪?
__________
本院細胞與個體生物學研究所陳振輝助研究員及其研究團隊的最新研究成果發現,經由調控特定基因的活性,可以 #改寫再生記憶。當「再生記憶」受到影響後,斑馬魚再生的新尾鰭可以出現不同的大小和形狀。
⭐這是科學家首次證實再生記憶可以被改寫,此基礎研究的發現有機會幫助「再生醫學」的發展。
陳振輝帶領研究團隊透過大規模隨機基因突變的方法,發現「再生記憶」受到影響的斑馬魚🐟。接著經由高解析度的基因定位分析和遺傳學的互補測試,找到再生記憶受損的斑馬魚其突變點所在的位置。
此突變點位在一個特定的基因「DNA聚合酶阿爾法次單元2(DNA polymerase alpha subunit 2, pola2)」。此基因的活性對細胞遺傳物質的複製分裂有直接的影響。實驗發現,藉由調控pola2的活性,可以有效改寫再生記憶。使成年斑馬魚在受傷後,再生出縮小版的尾鰭或是魚鱗,且被改寫後的再生記憶可以長期穩定存在,控制往後受傷後新生組織的大小與形狀。
#細生所 #陳振輝 #再生記憶 #斑馬魚 #首次證實
__________
From a chemical mutagenesis screen, a research team led by Dr. Chen-Hui Chen at the Institute of Cellular and Organismic Biology, Academia Sinica (Taiwan) accidentally identified a novel zebrafish mutant with defects in positional memory.
They found the mutation can cause tailfins to regenerate with high variability in sizes and shapes. Based on high-resolution genetic mapping and complementation assays, they determined DNA polymerase alpha subunit 2 (pola2) is the mutated gene. The gene activity has a direct impact on blastemal proliferation and size. Through manipulating pola2 activity, they developed an approach to effectively rewrite positional memory. The new memory is able to direct growth of tailfin and scales, even after repetitive injuries.
Through collaboration with Drs. Jr-Kai Yu and Yi-Hsien Su at the Institute of Cellular and Organismic Biology, they found similar effects upon transient pharmacological disruption of progenitor cell proliferation after head or tail amputation in amphioxus and annelids. There findings suggest that the regulatory mechanisms identified in this study may be evolutionarily conserved across vertebrate and invertebrate species.
__________
📌期刊論文〈Genetic reprogramming of positional memory in a regenerating appendage〉連結:https://www.cell.com/current-biology/fulltext/S0960-9822(19)31378-8
📌「再生」也可能長歪? 科學界首度證實:動物的再生記憶可被改寫
https://newsletter.sinica.edu.tw/20191128f03/
📌Memorizing regeneration
https://www.sinica.edu.tw/en/news/6415
_________
【媒體報導】
[中央社]再生記憶可被改寫 中研院發現關鍵調控基因
https://www.cna.com.tw/news/ahel/201911280069.aspx
[中國時報]中研院研究證實 動物再生記憶可被改寫
https://www.chinatimes.com/realtimenews/20191128002534-260405
[聯合報]破除250年假說 中研院發現生物組織的再生記憶可改變
https://udn.com/news/story/7270/4192416
[自由時報]調控特定基因活性 再生記憶可改寫
https://news.ltn.com.tw/news/life/paper/1335323
[國語日報]中研院新發現 調控關鍵基因 可改寫動物再生記憶
https://www.mdnkids.com/news/?Serial_NO=114369
memory mapping 在 中央研究院 Academia Sinica Facebook 的最讚貼文
你知道死侍夾斷手🖐,為什麼可以長出一模一樣的組織嗎?但有時候也可能長歪?
__________
本院細胞與個體生物學研究所陳振輝助研究員及其研究團隊的最新研究成果發現,經由調控特定基因的活性,可以 #改寫再生記憶。當「再生記憶」受到影響後,斑馬魚再生的新尾鰭可以出現不同的大小和形狀。
⭐這是科學家首次證實再生記憶可以被改寫,此基礎研究的發現有機會幫助「再生醫學」的發展。
陳振輝帶領研究團隊透過大規模隨機基因突變的方法,發現「再生記憶」受到影響的斑馬魚🐟。接著經由高解析度的基因定位分析和遺傳學的互補測試,找到再生記憶受損的斑馬魚其突變點所在的位置。
此突變點位在一個特定的基因「DNA聚合酶阿爾法次單元2(DNA polymerase alpha subunit 2, pola2)」。此基因的活性對細胞遺傳物質的複製分裂有直接的影響。實驗發現,藉由調控pola2的活性,可以有效改寫再生記憶。使成年斑馬魚在受傷後,再生出縮小版的尾鰭或是魚鱗,且被改寫後的再生記憶可以長期穩定存在,控制往後受傷後新生組織的大小與形狀。
#細生所 #陳振輝 #再生記憶 #斑馬魚 #首次證實
__________
From a chemical mutagenesis screen, a research team led by Dr. Chen-Hui Chen at the Institute of Cellular and Organismic Biology, Academia Sinica (Taiwan) accidentally identified a novel zebrafish mutant with defects in positional memory.
They found the mutation can cause tailfins to regenerate with high variability in sizes and shapes. Based on high-resolution genetic mapping and complementation assays, they determined DNA polymerase alpha subunit 2 (pola2) is the mutated gene. The gene activity has a direct impact on blastemal proliferation and size. Through manipulating pola2 activity, they developed an approach to effectively rewrite positional memory. The new memory is able to direct growth of tailfin and scales, even after repetitive injuries.
Through collaboration with Drs. Jr-Kai Yu and Yi-Hsien Su at the Institute of Cellular and Organismic Biology, they found similar effects upon transient pharmacological disruption of progenitor cell proliferation after head or tail amputation in amphioxus and annelids. There findings suggest that the regulatory mechanisms identified in this study may be evolutionarily conserved across vertebrate and invertebrate species.
__________
📌期刊論文〈Genetic reprogramming of positional memory in a regenerating appendage〉連結:https://www.cell.com/current-biology/…/S0960-9822(19)31378-8
📌「再生」也可能長歪? 科學界首度證實:動物的再生記憶可被改寫
https://newsletter.sinica.edu.tw/20191128f03/
📌Memorizing regeneration
https://www.sinica.edu.tw/en/news/6415
_________
【媒體報導】
[中央社]再生記憶可被改寫 中研院發現關鍵調控基因
https://www.cna.com.tw/news/ahel/201911280069.aspx
[中國時報]中研院研究證實 動物再生記憶可被改寫
https://www.chinatimes.com/realtimene…/20191128002534-260405
[聯合報]破除250年假說 中研院發現生物組織的再生記憶可改變
https://udn.com/news/story/7270/4192416
[自由時報]調控特定基因活性 再生記憶可改寫
https://news.ltn.com.tw/news/life/paper/1335323
[國語日報]中研院新發現 調控關鍵基因 可改寫動物再生記憶
https://www.mdnkids.com/news/?Serial_NO=114369
memory mapping 在 VVFwave Kung Youtube 的最佳解答
ดาวโหลด Map ได้ที่ http://www.minecraftforum.net/forums/mapping-and-modding/maps/2661634-1-9-faily-brakes-by-poweredbypoweryt-from-the
ใครสนใจเซิฟมายคราฟ แนะนำ http://www.minefest.in.th/
อย่าลืมกดติดตามด้วยนะ และก็ขอขอบคุณทุกๆคนด้วยนะ
ที่ติดตามกันมา
===============================
คำเตือน
คลิปนี้เต็มไปด้วยคำหยาบ ไม่มีสาระ ใครจะเอาสาระ
ไปดูคลิปอื่นเลย ช่องเราไม่มีให้ นะแจะ
===============================
เข้าไปกดติดตามเพจ ไวด้วยก็ดีนะ 5555+
https://www.facebook.com/VVFwave-%E0%B9%81%E0%B8%84%E0%B8%AA%E0%B9%80%E0%B8%81%E0%B8%A1%E0%B8%A1%E0%B8%B4%E0%B9%88%E0%B8%87-1315354705147598/
เข้าไปเพิ่มเพื่อนก็ได้นะ เฟสส่วนตัวอะ
https://www.facebook.com/SLMwaveKun
===============================
GPU: GeForce GTX960
CPU: Inte(R)Core(Tm)i5-4460 CPU @3.20GHz
Memory: 8.00GB RAM (7.93 GB usable)
Current resolution: 1600x900 60Hz
Driver version: 355.82
Operating system: Microsoft Windows 7 Ultimate
memory mapping 在 VVFwave Kung Youtube 的最佳解答
ดาวโหลดได้ที่ http://www.minecraftforum.net/forums/mapping-and-modding/maps/2542633-pve-the-unseen-forces-200k-dls
ใครสนใจเซิฟมายคราฟ แนะนำ http://www.minefest.in.th/
อย่าลืมกดติดตามด้วยนะ และก็ขอขอบคุณทุกๆคนด้วยนะ
ที่ติดตามกันมา
===============================
คำเตือน
คลิปนี้เต็มไปด้วยคำหยาบ ไม่มีสาระ ใครจะเอาสาระ
ไปดูคลิปอื่นเลย ช่องเราไม่มีให้ นะแจะ
===============================
เข้าไปกดติดตามเพจ ไวด้วยก็ดีนะ 5555+
https://www.facebook.com/VVFwave-%E0%B9%81%E0%B8%84%E0%B8%AA%E0%B9%80%E0%B8%81%E0%B8%A1%E0%B8%A1%E0%B8%B4%E0%B9%88%E0%B8%87-1315354705147598/
เข้าไปเพิ่มเพื่อนก็ได้นะ เฟสส่วนตัวอะ
https://www.facebook.com/SLMwaveKun
===============================
GPU: GeForce GTX960
CPU: Inte(R)Core(Tm)i5-4460 CPU @3.20GHz
Memory: 8.00GB RAM (7.93 GB usable)
Current resolution: 1600x900 60Hz
Driver version: 355.82
Operating system: Microsoft Windows 7 Ultimate
memory mapping 在 VVFwave Kung Youtube 的精選貼文
ดาวโหลดได้ที่ http://www.minecraftforum.net/forums/mapping-and-modding/maps/2542633-pve-the-unseen-forces-200k-dls
ใครสนใจเซิฟมายคราฟ แนะนำ http://www.minefest.in.th/
อย่าลืมกดติดตามด้วยนะ และก็ขอขอบคุณทุกๆคนด้วยนะ
ที่ติดตามกันมา
===============================
คำเตือน
คลิปนี้เต็มไปด้วยคำหยาบ ไม่มีสาระ ใครจะเอาสาระ
ไปดูคลิปอื่นเลย ช่องเราไม่มีให้ นะแจะ
===============================
เข้าไปกดติดตามเพจ ไวด้วยก็ดีนะ 5555+
https://www.facebook.com/VVFwave-%E0%B9%81%E0%B8%84%E0%B8%AA%E0%B9%80%E0%B8%81%E0%B8%A1%E0%B8%A1%E0%B8%B4%E0%B9%88%E0%B8%87-1315354705147598/
เข้าไปเพิ่มเพื่อนก็ได้นะ เฟสส่วนตัวอะ
https://www.facebook.com/SLMwaveKun
===============================
GPU: GeForce GTX960
CPU: Inte(R)Core(Tm)i5-4460 CPU @3.20GHz
Memory: 8.00GB RAM (7.93 GB usable)
Current resolution: 1600x900 60Hz
Driver version: 355.82
Operating system: Microsoft Windows 7 Ultimate
memory mapping 在 visualcomplexity.com | Memory Mapping - Pinterest 的推薦與評價
visualcomplexity.com | Memory Mapping Map Design, Graphic Design, Map Diagram, ... Urban Mapping, Gps Map, Black And White Face, Face Sketch, Sonic Art. ... <看更多>
memory mapping 在 Memory mapping — The Linux Kernel documentation 的推薦與評價
For efficiency reasons, the virtual address space is divided into user space and kernel space. For the same reason, the kernel space contains a memory mapped ... ... <看更多>