|
1 | 1 | # v1.7.0 Multi Chain |
2 | 2 |
|
3 | | -**Use this template to draft changelog and submit PR to review by the team** |
| 3 | +The multichain release enables AVSs to launch their services and make verified Operator outputs available on any EVM chain, meeting their customers where they are. AVSs can specify custom operator weights to be transported to any destination chain. The release has 3 components: |
4 | 4 |
|
| 5 | +1. Core Contracts |
| 6 | +2. AVS Contracts |
| 7 | +3. Offchain Infrastructure |
5 | 8 |
|
6 | | -## Release Manager |
| 9 | +The below release notes cover Core Contracts. For more information on the end to end protocol, see our [docs](../docs/multichain/README.md) and [ELIP-008](https://github.com/eigenfoundation/ELIPs/blob/main/ELIPs/ELIP-008.md). |
7 | 10 |
|
8 | | -@ypatil12 |
| 11 | +## Release Manager |
9 | 12 |
|
| 13 | +@ypatil12 @eigenmikem |
10 | 14 |
|
11 | 15 | ## Highlights |
12 | 16 |
|
13 | | -🚀 New Features – Highlight major new functionality |
14 | | -- ... |
15 | | -- ... |
| 17 | +This multichain release only introduces new standards and contracts. As a result, there are no breaking changes or deprecations. |
16 | 18 |
|
17 | | -⛔ Breaking Changes – Call out backward-incompatible changes. |
18 | | -- ... |
19 | | -- ... |
| 19 | +🚀 New Features – Highlight major new functionality |
20 | 20 |
|
21 | | -📌 Deprecations – Mention features that are being phased out. |
22 | | -- ... |
23 | | -- ... |
| 21 | +Source-Chain Contracts |
| 22 | +- `KeyRegistrar`: Manages cryptographic keys for operators across different operator sets. It supports both ECDSA and BN254 key types and ensures global uniqueness of keys across all operator sets |
| 23 | +- `CrossChainRegistry`: Enables AVSs to register to have their operator stakes transported to supported destination chains |
| 24 | +- `ReleaseManager`: Provides a standardized way for AVSs to publish software artifacts (binaries, docker images, etc.) that operators in their operator sets should upgrade to by specified deadlines |
24 | 25 |
|
25 | | -🛠️ Security Fixes – Specify patched vulnerabilities. |
26 | | -- ... |
27 | | -- ... |
| 26 | +Destination Chain Contracts |
| 27 | +- `CertificateVerifier`: Proves the offchain execution of a task, via a Certificate, by the operators of an operatorSet. Two types of key material are supported: ECDSA and BN254 |
| 28 | +- `OperatorTableUpdater`: Updates operator tables in the `CertificateVerifier` to have tasks validated against up-to-date operator stake weights |
28 | 29 |
|
29 | 30 | 🔧 Improvements – Enhancements to existing features. |
30 | | -- ... |
31 | | -- ... |
32 | | - |
33 | | -🐛 Bug Fixes – List resolved issues. |
34 | | -- ... |
35 | | -- ... |
36 | 31 |
|
| 32 | +- The multichain protocol has protocol-ized several AVS-deployed contracts, enabling an simpler AVS developer experience. These include: |
| 33 | + - `KeyRegistrar`: Manages BLS and ECDSA signing keys. AVSs no longer have to deploy a `BLSAPKRegistry` |
| 34 | + - `CertificateVerifier`: Handles signature verification for BLS and ECDSA keys. AVSs no longer have to deploy a `BLSSignatureChecker` |
| 35 | + - Offchain Multichain Transport: AVSs no longer have to maintain [avs-sync](https://github.com/Layr-Labs/avs-sync) to keep operator stakes fresh |
37 | 36 |
|
38 | 37 | ## Changelog |
39 | 38 |
|
40 | | -Copy the one that's auto generated from github by default to here, and submit PR for review |
41 | | - |
42 | | - |
43 | | -- merged PRs in diff from last release |
44 | | -- contributors |
45 | | -- etc |
| 39 | +- feat: multichain deploy scripts [PR #1487](https://github.com/layr-labs/eigenlayer-contracts/pull/1487) |
| 40 | +- feat: operator table updater pauser [PR #1501](https://github.com/layr-labs/eigenlayer-contracts/pull/1501) |
| 41 | +- feat: add `publishMetadataURI` [PR #1492](https://github.com/layr-labs/eigenlayer-contracts/pull/1492) |
| 42 | +- refactor: `globalRootConfirmerSet` -> `generator` [PR #1500](https://github.com/layr-labs/eigenlayer-contracts/pull/1500) |
| 43 | +- fix: circular dependency for initial global root update [PR #1499](https://github.com/layr-labs/eigenlayer-contracts/pull/1499) |
| 44 | +- chore: remove stale bindings [PR #1498](https://github.com/layr-labs/eigenlayer-contracts/pull/1498) |
| 45 | +- fix: zero length [PR #1490](https://github.com/layr-labs/eigenlayer-contracts/pull/1490) |
| 46 | +- docs: multichain docs [PR #1488](https://github.com/layr-labs/eigenlayer-contracts/pull/1488) |
| 47 | +- refactor: remove table calculators [PR #1493](https://github.com/layr-labs/eigenlayer-contracts/pull/1493) |
| 48 | +- refactor: `KeyRegistry` unit testing [PR #1482](https://github.com/layr-labs/eigenlayer-contracts/pull/1482) |
| 49 | +- feat: disable root [PR #1481](https://github.com/layr-labs/eigenlayer-contracts/pull/1481) |
| 50 | +- refactor: `ECDSATableCalculator` testing [PR #1479](https://github.com/layr-labs/eigenlayer-contracts/pull/1479) |
| 51 | +- refactor: operators can deregister keys if not slashable [PR #1480](https://github.com/layr-labs/eigenlayer-contracts/pull/1480) |
| 52 | +- refactor: `ECDSACertificateVerifier` testing [PR #1478](https://github.com/layr-labs/eigenlayer-contracts/pull/1478) |
| 53 | +- refactor: `Bn254CertificateVerifierUnitTests` [PR #1476](https://github.com/layr-labs/eigenlayer-contracts/pull/1476) |
| 54 | +- feat: ecdsa table calculator [PR #1473](https://github.com/layr-labs/eigenlayer-contracts/pull/1473) |
| 55 | +- feat: ecdsacv views [PR #1475](https://github.com/layr-labs/eigenlayer-contracts/pull/1475) |
| 56 | +- refactor: `BN254OperatorTableCalculator` [PR #1463](https://github.com/layr-labs/eigenlayer-contracts/pull/1463) |
| 57 | +- feat: add `referenceBlockNumber` [PR #1472](https://github.com/layr-labs/eigenlayer-contracts/pull/1472) |
| 58 | +- feat: release manager [PR #1469](https://github.com/layr-labs/eigenlayer-contracts/pull/1469) |
| 59 | +- feat: ecdsa cert verifier [PR #1470](https://github.com/layr-labs/eigenlayer-contracts/pull/1470) |
| 60 | +- feat: add view function for `getGlobalConfirmerSetReferenceTimestamp` [PR #1471](https://github.com/layr-labs/eigenlayer-contracts/pull/1471) |
| 61 | +- chore: add helper view function [PR #1465](https://github.com/layr-labs/eigenlayer-contracts/pull/1465) |
| 62 | +- chore: add sig digest functions to interface [PR #1464](https://github.com/layr-labs/eigenlayer-contracts/pull/1464) |
| 63 | +- refactor: `CrossChainRegistry` [PR #1457](https://github.com/layr-labs/eigenlayer-contracts/pull/1457) |
| 64 | +- fix: global table update message hash [PR #1460](https://github.com/layr-labs/eigenlayer-contracts/pull/1460) |
| 65 | +- refactor: sig verification into library [PR #1455](https://github.com/layr-labs/eigenlayer-contracts/pull/1455) |
| 66 | +- fix: `OperatorTableUpdater` encoding [PR #1456](https://github.com/layr-labs/eigenlayer-contracts/pull/1456) |
| 67 | +- chore: add latest `referenceTimestamp` to OTC interface [PR #1454](https://github.com/layr-labs/eigenlayer-contracts/pull/1454) |
| 68 | +- chore: bindings [PR #1452](https://github.com/layr-labs/eigenlayer-contracts/pull/1452) |
| 69 | +- feat: add operator table updater to CCR [PR #1451](https://github.com/layr-labs/eigenlayer-contracts/pull/1451) |
| 70 | +- chore: multichain deploy scripts [PR #1449](https://github.com/layr-labs/eigenlayer-contracts/pull/1449) |
| 71 | +- feat: cross chain registry [PR #1439](https://github.com/layr-labs/eigenlayer-contracts/pull/1439) |
| 72 | +- chore: update BN254CertificateVerifier [PR #1447](https://github.com/layr-labs/eigenlayer-contracts/pull/1447) |
| 73 | +- feat: bn254 operator table contracts [PR #1429](https://github.com/layr-labs/eigenlayer-contracts/pull/1429) |
| 74 | +- feat: KeyRegistrar [PR #1421](https://github.com/layr-labs/eigenlayer-contracts/pull/1421) |
| 75 | +- feat: operator table updater [PR #1436](https://github.com/layr-labs/eigenlayer-contracts/pull/1436) |
| 76 | +- feat: bn254 certificate verifier [PR #1431](https://github.com/layr-labs/eigenlayer-contracts/pull/1431) |
| 77 | +- chore: bindings + interface update [PR #1438](https://github.com/layr-labs/eigenlayer-contracts/pull/1438) |
| 78 | +- chore: update multichain interfaces [PR #1433](https://github.com/layr-labs/eigenlayer-contracts/pull/1433) |
| 79 | +- feat: multi chain interfaces [PR #1423](https://github.com/layr-labs/eigenlayer-contracts/pull/1423) |
| 80 | +- docs: update version matrix [PR #1491](https://github.com/layr-labs/eigenlayer-contracts/pull/1491) |
| 81 | +- chore: add multisend parser to scripts directory [PR #1486](https://github.com/layr-labs/eigenlayer-contracts/pull/1486) |
| 82 | +- chore: update eigenpod and eigen impls addresses in holesky and hoodi [PR #1448](https://github.com/layr-labs/eigenlayer-contracts/pull/1448) |
0 commit comments