Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Multichain API to @metamask/multichain #4813

Draft
wants to merge 97 commits into
base: main
Choose a base branch
from

Conversation

jiexi
Copy link
Contributor

@jiexi jiexi commented Oct 17, 2024

Explanation

This PR updates @metamask/multichain to add method handlers and middleware specific to the new Multichain API and which can be shared across the extension & mobile clients. The package includes implementations for managing multichain sessions, handling multichain RPC methods, and integrating multichain functionalities into the MetaMask extension. Key features of this package include:

  • Method Handlers: Implementations of the new RPC method handlers like wallet_createSession, wallet_invokeMethod, wallet_revokeSession, and wallet_getSession.

These tools and utilities will be used in both clients (mobile + extension)'s multichain API implementations.

File Overview

  • packages/multichain/src/adapters/caip-permission-adapter-middleware.ts: Middleware for the EIP-1193 API that enforces a CAIP-25 permission for each request if that CAIP-25 permission was granted via wallet_createSession
  • packages/multichain/src/handlers/wallet-getSession.ts: Handlers for CAIP Multichain lifecycle methods except for wallet_createSession which seemed a little too platform specific to belong in a shared package currently
  • packages/multichain/src/middlewares/: Middleware for the Multichain API that helps facilitate concurrent eth subscriptions and for using @metamask/api-specs for method param validation for new CAIP Multichain methods
  • packages/multichain/src/scope/authorization.ts: Adds helpers that sort scopes based on if they are currently supported by the wallet (i.e. a network already exists the eip155 scope), if they could be supported by the wallet (i.e. the network does not already exist for the eip155 scope, but the dapp has provided EIP-3085 details for adding the network in the scopedProperties property of the wallet_createSession request), or if they cannot be served.
  • packages/multichain/src/scope/filter.ts: provides helpers used for the bucketing above in authorization.ts
  • types/@metamask/eth-json-rpc-filters.d.ts: Typedef for missing types in @metamask/eth-json-rpc-filters/subscriptionManager

References

Upstream: #4784
Downstream: None. This is the end.

Key Multichain API Standards implemented here:

Open PR that uses this new package for exposing the multichain API in the extension: MetaMask/metamask-extension#27782

Changelog

@metamask/multichain

  • ADDED: TODO

Checklist

  • I've updated the test suite for new or updated code as appropriate
  • I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate
  • I've highlighted breaking changes using the "BREAKING" category above as appropriate
  • I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes

jiexi and others added 30 commits October 10, 2024 14:02
## Explanation
This PR fixes a lot of the linting and typescript errors. still some
left but this covers a lot of it.


<!--
Thanks for your contribution! Take a moment to answer these questions so
that reviewers have the information they need to properly understand
your changes:

* What is the current state of things and why does it need to change?
* What is the solution your changes offer and how does it work?
* Are there any changes whose purpose might not obvious to those
unfamiliar with the domain?
* If your primary goal was to update one package but you found you had
to update another one along the way, why did you do so?
* If you had to upgrade a dependency, why did you do so?
-->

## References

<!--
Are there any issues that this pull request is tied to?
Are there other links that reviewers should consult to understand these
changes better?
Are there client or consumer pull requests to adopt any breaking
changes?

For example:

* Fixes #12345
* Related to #67890
-->

## Changelog

<!--
If you're making any consumer-facing changes, list those changes here as
if you were updating a changelog, using the template below as a guide.

(CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or
FIXED. For security-related issues, follow the Security Advisory
process.)

Please take care to name the exact pieces of the API you've added or
changed (e.g. types, interfaces, functions, or methods).

If there are any breaking changes, make sure to offer a solution for
consumers to follow once they upgrade to the changes.

Finally, if you're only making changes to development scripts or tests,
you may replace the template below with "None".
-->

### `@metamask/package-a`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

### `@metamask/package-b`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

## Checklist

- [ ] I've updated the test suite for new or updated code as appropriate
- [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [ ] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
- [ ] I've prepared draft pull requests for clients and consumer
packages to resolve any breaking changes

---------

Co-authored-by: Jiexi Luan <[email protected]>
## Explanation

<!--
Thanks for your contribution! Take a moment to answer these questions so
that reviewers have the information they need to properly understand
your changes:

* What is the current state of things and why does it need to change?
* What is the solution your changes offer and how does it work?
* Are there any changes whose purpose might not obvious to those
unfamiliar with the domain?
* If your primary goal was to update one package but you found you had
to update another one along the way, why did you do so?
* If you had to upgrade a dependency, why did you do so?
-->
Added ESM exports for multichain package

## References

<!--
Are there any issues that this pull request is tied to?
Are there other links that reviewers should consult to understand these
changes better?
Are there client or consumer pull requests to adopt any breaking
changes?

For example:

* Fixes #12345
* Related to #67890
-->

## Changelog

<!--
If you're making any consumer-facing changes, list those changes here as
if you were updating a changelog, using the template below as a guide.

(CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or
FIXED. For security-related issues, follow the Security Advisory
process.)

Please take care to name the exact pieces of the API you've added or
changed (e.g. types, interfaces, functions, or methods).

If there are any breaking changes, make sure to offer a solution for
consumers to follow once they upgrade to the changes.

Finally, if you're only making changes to development scripts or tests,
you may replace the template below with "None".
-->

### `@metamask/package-a`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

### `@metamask/package-b`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

## Checklist

- [ ] I've updated the test suite for new or updated code as appropriate
- [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [ ] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
- [ ] I've prepared draft pull requests for clients and consumer
packages to resolve any breaking changes
@jiexi
Copy link
Contributor Author

jiexi commented Oct 22, 2024

@metamaskbot publish-preview

Copy link
Contributor

Preview builds have been published. See these instructions for more information about preview builds.

Expand for full list of packages and versions.
{
  "@metamask-previews/accounts-controller": "18.2.2-preview-257618a8",
  "@metamask-previews/address-book-controller": "6.0.1-preview-257618a8",
  "@metamask-previews/announcement-controller": "7.0.1-preview-257618a8",
  "@metamask-previews/approval-controller": "7.1.0-preview-257618a8",
  "@metamask-previews/assets-controllers": "39.0.0-preview-257618a8",
  "@metamask-previews/base-controller": "7.0.1-preview-257618a8",
  "@metamask-previews/build-utils": "3.0.1-preview-257618a8",
  "@metamask-previews/chain-controller": "0.1.3-preview-257618a8",
  "@metamask-previews/composable-controller": "9.0.1-preview-257618a8",
  "@metamask-previews/controller-utils": "11.3.0-preview-257618a8",
  "@metamask-previews/ens-controller": "14.0.1-preview-257618a8",
  "@metamask-previews/eth-json-rpc-provider": "4.1.5-preview-257618a8",
  "@metamask-previews/gas-fee-controller": "21.0.0-preview-257618a8",
  "@metamask-previews/json-rpc-engine": "10.0.0-preview-257618a8",
  "@metamask-previews/json-rpc-middleware-stream": "8.0.4-preview-257618a8",
  "@metamask-previews/keyring-controller": "17.3.0-preview-257618a8",
  "@metamask-previews/logging-controller": "6.0.1-preview-257618a8",
  "@metamask-previews/message-manager": "11.0.0-preview-257618a8",
  "@metamask-previews/multichain": "0.0.0-preview-257618a8",
  "@metamask-previews/name-controller": "8.0.1-preview-257618a8",
  "@metamask-previews/network-controller": "21.1.0-preview-257618a8",
  "@metamask-previews/notification-controller": "7.0.0-preview-257618a8",
  "@metamask-previews/notification-services-controller": "0.11.0-preview-257618a8",
  "@metamask-previews/permission-controller": "11.0.2-preview-257618a8",
  "@metamask-previews/permission-log-controller": "3.0.1-preview-257618a8",
  "@metamask-previews/phishing-controller": "12.0.3-preview-257618a8",
  "@metamask-previews/polling-controller": "11.0.0-preview-257618a8",
  "@metamask-previews/preferences-controller": "13.1.0-preview-257618a8",
  "@metamask-previews/profile-sync-controller": "0.9.7-preview-257618a8",
  "@metamask-previews/queued-request-controller": "5.1.0-preview-257618a8",
  "@metamask-previews/rate-limit-controller": "6.0.1-preview-257618a8",
  "@metamask-previews/selected-network-controller": "18.0.2-preview-257618a8",
  "@metamask-previews/signature-controller": "20.1.0-preview-257618a8",
  "@metamask-previews/transaction-controller": "37.3.0-preview-257618a8",
  "@metamask-previews/user-operation-controller": "16.0.0-preview-257618a8"
}

@jiexi
Copy link
Contributor Author

jiexi commented Oct 22, 2024

@metamaskbot publish-preview

Copy link
Contributor

Preview builds have been published. See these instructions for more information about preview builds.

Expand for full list of packages and versions.
{
  "@metamask-previews/accounts-controller": "18.2.2-preview-ead2f439",
  "@metamask-previews/address-book-controller": "6.0.1-preview-ead2f439",
  "@metamask-previews/announcement-controller": "7.0.1-preview-ead2f439",
  "@metamask-previews/approval-controller": "7.1.0-preview-ead2f439",
  "@metamask-previews/assets-controllers": "39.0.0-preview-ead2f439",
  "@metamask-previews/base-controller": "7.0.1-preview-ead2f439",
  "@metamask-previews/build-utils": "3.0.1-preview-ead2f439",
  "@metamask-previews/chain-controller": "0.1.3-preview-ead2f439",
  "@metamask-previews/composable-controller": "9.0.1-preview-ead2f439",
  "@metamask-previews/controller-utils": "11.3.0-preview-ead2f439",
  "@metamask-previews/ens-controller": "14.0.1-preview-ead2f439",
  "@metamask-previews/eth-json-rpc-provider": "4.1.5-preview-ead2f439",
  "@metamask-previews/gas-fee-controller": "21.0.0-preview-ead2f439",
  "@metamask-previews/json-rpc-engine": "10.0.0-preview-ead2f439",
  "@metamask-previews/json-rpc-middleware-stream": "8.0.4-preview-ead2f439",
  "@metamask-previews/keyring-controller": "17.3.0-preview-ead2f439",
  "@metamask-previews/logging-controller": "6.0.1-preview-ead2f439",
  "@metamask-previews/message-manager": "11.0.0-preview-ead2f439",
  "@metamask-previews/multichain": "0.0.0-preview-ead2f439",
  "@metamask-previews/name-controller": "8.0.1-preview-ead2f439",
  "@metamask-previews/network-controller": "21.1.0-preview-ead2f439",
  "@metamask-previews/notification-controller": "7.0.0-preview-ead2f439",
  "@metamask-previews/notification-services-controller": "0.11.0-preview-ead2f439",
  "@metamask-previews/permission-controller": "11.0.2-preview-ead2f439",
  "@metamask-previews/permission-log-controller": "3.0.1-preview-ead2f439",
  "@metamask-previews/phishing-controller": "12.0.3-preview-ead2f439",
  "@metamask-previews/polling-controller": "11.0.0-preview-ead2f439",
  "@metamask-previews/preferences-controller": "13.1.0-preview-ead2f439",
  "@metamask-previews/profile-sync-controller": "0.9.7-preview-ead2f439",
  "@metamask-previews/queued-request-controller": "5.1.0-preview-ead2f439",
  "@metamask-previews/rate-limit-controller": "6.0.1-preview-ead2f439",
  "@metamask-previews/selected-network-controller": "18.0.2-preview-ead2f439",
  "@metamask-previews/signature-controller": "20.1.0-preview-ead2f439",
  "@metamask-previews/transaction-controller": "37.3.0-preview-ead2f439",
  "@metamask-previews/user-operation-controller": "16.0.0-preview-ead2f439"
}

## Explanation

Loosen `getEthAccounts` and `getPermittedEthChainIds` param type

## References

<!--
Are there any issues that this pull request is tied to?
Are there other links that reviewers should consult to understand these
changes better?
Are there client or consumer pull requests to adopt any breaking
changes?

For example:

* Fixes #12345
* Related to #67890
-->

## Changelog

<!--
If you're making any consumer-facing changes, list those changes here as
if you were updating a changelog, using the template below as a guide.

(CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or
FIXED. For security-related issues, follow the Security Advisory
process.)

Please take care to name the exact pieces of the API you've added or
changed (e.g. types, interfaces, functions, or methods).

If there are any breaking changes, make sure to offer a solution for
consumers to follow once they upgrade to the changes.

Finally, if you're only making changes to development scripts or tests,
you may replace the template below with "None".
-->

### `@metamask/package-a`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

### `@metamask/package-b`

- **<CATEGORY>**: Your change here
- **<CATEGORY>**: Your change here

## Checklist

- [ ] I've updated the test suite for new or updated code as appropriate
- [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [ ] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
- [ ] I've prepared draft pull requests for clients and consumer
packages to resolve any breaking changes
@jiexi
Copy link
Contributor Author

jiexi commented Oct 22, 2024

@metamaskbot publish-preview

Copy link
Contributor

Preview builds have been published. See these instructions for more information about preview builds.

Expand for full list of packages and versions.
{
  "@metamask-previews/accounts-controller": "18.2.2-preview-e34032be",
  "@metamask-previews/address-book-controller": "6.0.1-preview-e34032be",
  "@metamask-previews/announcement-controller": "7.0.1-preview-e34032be",
  "@metamask-previews/approval-controller": "7.1.0-preview-e34032be",
  "@metamask-previews/assets-controllers": "39.0.0-preview-e34032be",
  "@metamask-previews/base-controller": "7.0.1-preview-e34032be",
  "@metamask-previews/build-utils": "3.0.1-preview-e34032be",
  "@metamask-previews/chain-controller": "0.1.3-preview-e34032be",
  "@metamask-previews/composable-controller": "9.0.1-preview-e34032be",
  "@metamask-previews/controller-utils": "11.3.0-preview-e34032be",
  "@metamask-previews/ens-controller": "14.0.1-preview-e34032be",
  "@metamask-previews/eth-json-rpc-provider": "4.1.5-preview-e34032be",
  "@metamask-previews/gas-fee-controller": "21.0.0-preview-e34032be",
  "@metamask-previews/json-rpc-engine": "10.0.0-preview-e34032be",
  "@metamask-previews/json-rpc-middleware-stream": "8.0.4-preview-e34032be",
  "@metamask-previews/keyring-controller": "17.3.0-preview-e34032be",
  "@metamask-previews/logging-controller": "6.0.1-preview-e34032be",
  "@metamask-previews/message-manager": "11.0.0-preview-e34032be",
  "@metamask-previews/multichain": "0.0.0-preview-e34032be",
  "@metamask-previews/name-controller": "8.0.1-preview-e34032be",
  "@metamask-previews/network-controller": "21.1.0-preview-e34032be",
  "@metamask-previews/notification-controller": "7.0.0-preview-e34032be",
  "@metamask-previews/notification-services-controller": "0.11.0-preview-e34032be",
  "@metamask-previews/permission-controller": "11.0.2-preview-e34032be",
  "@metamask-previews/permission-log-controller": "3.0.1-preview-e34032be",
  "@metamask-previews/phishing-controller": "12.0.3-preview-e34032be",
  "@metamask-previews/polling-controller": "11.0.0-preview-e34032be",
  "@metamask-previews/preferences-controller": "13.1.0-preview-e34032be",
  "@metamask-previews/profile-sync-controller": "0.9.7-preview-e34032be",
  "@metamask-previews/queued-request-controller": "5.1.0-preview-e34032be",
  "@metamask-previews/rate-limit-controller": "6.0.1-preview-e34032be",
  "@metamask-previews/selected-network-controller": "18.0.2-preview-e34032be",
  "@metamask-previews/signature-controller": "20.1.0-preview-e34032be",
  "@metamask-previews/transaction-controller": "37.3.0-preview-e34032be",
  "@metamask-previews/user-operation-controller": "16.0.0-preview-e34032be"
}

@adonesky1 adonesky1 force-pushed the caip-multichain branch 5 times, most recently from 1e2e990 to d10f7d0 Compare November 12, 2024 22:52
adonesky1 added a commit that referenced this pull request Nov 13, 2024
…4784)

## Explanation

This PR updates `@metamask/multichain` to provide types, CAIP-25
permission, and helpers/adapters for the new permission, which can be
shared across the extension & mobile clients.

These tools and utilities will be used in both clients (mobile +
extension)'s multichain API implementations.

### File Overview

* `packages/multichain/src/adapters/`: Helpers that get and set legacy
permission values from and to the new CAIP-25 permission
* `packages/multichain/src/caip25Permission.ts`: Constants, types,
mutators, and a specification builder for a CAIP-25 permission
*  `packages/multichain/src/index.ts`: Barrel export
* `packages/multichain/src/scope/`: Types for [CAIP-217
](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-217.md)
and our internal normalized/flattened version of them. Additionally
contains helpers for validating shape, normalizing/merging, and checking
support (i.e. if the wallet is able to serve the chain with it's
requested methods and notifications)

## References

Upstream: #4812
Downstream: #4813

Key Multichain API Standards implemented here:
-
[CAIP-217](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-217.md)
- `scope` defintion

Open PR that uses this new package for migrating the legacy permissions
to CAIP-25 permission in the extension:
MetaMask/metamask-extension#27847

## Changelog


### `@metamask/multichain`

- **ADDED**: TODO

## Checklist

- [X] I've updated the test suite for new or updated code as appropriate
- [X] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [ ] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
- [X] I've prepared draft pull requests for clients and consumer
packages to resolve any breaking changes

---------

Co-authored-by: Alex <[email protected]>
Co-authored-by: Mark Stacey <[email protected]>
Co-authored-by: Elliot Winkler <[email protected]>
Base automatically changed from caip-multichain to main November 13, 2024 21:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants