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: added DeFiPositionsController #5400

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

Conversation

bergarces
Copy link
Contributor

@bergarces bergarces commented Feb 26, 2025

Explanation

This PR adds a new controller that will be used to fetch DeFi positions for both extension and mobile.

It does so on network state or account change.

References

Changelog

Pending Changelog edits

@metamask/assets-controllers

  • : Your change here
  • : 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

@bergarces bergarces force-pushed the feat/MMASSETS-553-create-defi-controller branch from e6486b7 to 5a1fed2 Compare February 28, 2025 13:34
);

this.messagingSystem.subscribe(
'NetworkController:stateChange',
Copy link
Contributor Author

@bergarces bergarces Feb 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added this subscription because we need the positions to be fetched when logging into the wallet, and sicne the selectedAccountChange is not triggered at the start, this seems to be the only way I found to do it.

I'd appreciate to know if there's a more idiomatic way of doing it, as otherwise there's no need to refetch positions every time the chain changes.

@bergarces bergarces changed the title controller initial version feat: added DeFiPositionsController Feb 28, 2025
@@ -0,0 +1,77 @@
export type DefiPositionResponse = AdapterResponse<{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(personal pref) - does this DEFI api have an openAPI spec?
If yes, then we can generate these types and makes it easier to keep in sync.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Notifications does this here:

/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
* Script: `npx openapi-typescript <PATH TO NOTIFICATION API SPEC> -o ./schema.d.ts`
*/
/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
*/

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will need to look into this, as it'd definitely be better to automatically generate the types.

@jpsains
Copy link

jpsains commented Mar 7, 2025

Need to update readme

@bergarces bergarces force-pushed the feat/MMASSETS-553-create-defi-controller branch 3 times, most recently from 53f5b3d to 5bb3ea5 Compare March 14, 2025 13:12
@bergarces bergarces force-pushed the feat/MMASSETS-553-create-defi-controller branch from 5bb3ea5 to 9b02be3 Compare March 14, 2025 15:00
@jpsains
Copy link

jpsains commented Mar 19, 2025

@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": "26.1.0-preview-9b02be34",
  "@metamask-previews/address-book-controller": "6.0.3-preview-9b02be34",
  "@metamask-previews/announcement-controller": "7.0.3-preview-9b02be34",
  "@metamask-previews/approval-controller": "7.1.3-preview-9b02be34",
  "@metamask-previews/assets-controllers": "53.1.0-preview-9b02be34",
  "@metamask-previews/base-controller": "8.0.0-preview-9b02be34",
  "@metamask-previews/bridge-controller": "6.0.0-preview-9b02be34",
  "@metamask-previews/bridge-status-controller": "6.0.0-preview-9b02be34",
  "@metamask-previews/build-utils": "3.0.3-preview-9b02be34",
  "@metamask-previews/composable-controller": "11.0.0-preview-9b02be34",
  "@metamask-previews/controller-utils": "11.6.0-preview-9b02be34",
  "@metamask-previews/earn-controller": "0.8.0-preview-9b02be34",
  "@metamask-previews/ens-controller": "15.0.2-preview-9b02be34",
  "@metamask-previews/eth-json-rpc-provider": "4.1.8-preview-9b02be34",
  "@metamask-previews/gas-fee-controller": "22.0.3-preview-9b02be34",
  "@metamask-previews/json-rpc-engine": "10.0.3-preview-9b02be34",
  "@metamask-previews/json-rpc-middleware-stream": "8.0.7-preview-9b02be34",
  "@metamask-previews/keyring-controller": "21.0.0-preview-9b02be34",
  "@metamask-previews/logging-controller": "6.0.4-preview-9b02be34",
  "@metamask-previews/message-manager": "12.0.1-preview-9b02be34",
  "@metamask-previews/multichain": "4.0.0-preview-9b02be34",
  "@metamask-previews/multichain-network-controller": "0.2.0-preview-9b02be34",
  "@metamask-previews/multichain-transactions-controller": "0.7.0-preview-9b02be34",
  "@metamask-previews/name-controller": "8.0.3-preview-9b02be34",
  "@metamask-previews/network-controller": "22.2.1-preview-9b02be34",
  "@metamask-previews/notification-services-controller": "3.0.0-preview-9b02be34",
  "@metamask-previews/permission-controller": "11.0.6-preview-9b02be34",
  "@metamask-previews/permission-log-controller": "3.0.3-preview-9b02be34",
  "@metamask-previews/phishing-controller": "12.4.1-preview-9b02be34",
  "@metamask-previews/polling-controller": "12.0.3-preview-9b02be34",
  "@metamask-previews/preferences-controller": "17.0.0-preview-9b02be34",
  "@metamask-previews/profile-sync-controller": "10.1.0-preview-9b02be34",
  "@metamask-previews/queued-request-controller": "9.0.1-preview-9b02be34",
  "@metamask-previews/rate-limit-controller": "6.0.3-preview-9b02be34",
  "@metamask-previews/remote-feature-flag-controller": "1.6.0-preview-9b02be34",
  "@metamask-previews/sample-controllers": "0.0.0-preview-9b02be34",
  "@metamask-previews/selected-network-controller": "21.0.1-preview-9b02be34",
  "@metamask-previews/signature-controller": "25.0.0-preview-9b02be34",
  "@metamask-previews/token-search-discovery-controller": "2.1.0-preview-9b02be34",
  "@metamask-previews/transaction-controller": "49.0.0-preview-9b02be34",
  "@metamask-previews/user-operation-controller": "28.0.0-preview-9b02be34"
}

Comment on lines +142 to +145
console.log(
'DEFI POSITIONS CONTROLLER EVENT: NetworkController:stateChange',
address,
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

console.log

Comment on lines +128 to +131
console.log(
'DEFI POSITIONS CONTROLLER EVENT: AccountsController:selectedAccountChange',
selectedAccount.address,
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

console.log

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