-
-
Notifications
You must be signed in to change notification settings - Fork 216
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
base: main
Are you sure you want to change the base?
Conversation
e6486b7
to
5a1fed2
Compare
packages/assets-controllers/src/DeFiPositionsController/DeFiPositionsController.ts
Outdated
Show resolved
Hide resolved
); | ||
|
||
this.messagingSystem.subscribe( | ||
'NetworkController:stateChange', |
There was a problem hiding this comment.
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.
packages/assets-controllers/src/DeFiPositionsController/DeFiPositionsController.ts
Show resolved
Hide resolved
packages/assets-controllers/src/DeFiPositionsController/DeFiPositionsController.ts
Show resolved
Hide resolved
packages/assets-controllers/src/DeFiPositionsController/fetch-positions.test.ts
Outdated
Show resolved
Hide resolved
packages/assets-controllers/src/DeFiPositionsController/fetch-positions.ts
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,77 @@ | |||
export type DefiPositionResponse = AdapterResponse<{ |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Notifications does this here:
Lines 3 to 12 in 6eeac72
/** | |
* 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. | |
*/ |
There was a problem hiding this comment.
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.
Need to update readme |
53f5b3d
to
5bb3ea5
Compare
5bb3ea5
to
9b02be3
Compare
@metamaskbot publish-preview |
Preview builds have been published. See these instructions for more information about preview builds. Expand for full list of packages and versions.
|
console.log( | ||
'DEFI POSITIONS CONTROLLER EVENT: NetworkController:stateChange', | ||
address, | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log
console.log( | ||
'DEFI POSITIONS CONTROLLER EVENT: AccountsController:selectedAccountChange', | ||
selectedAccount.address, | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log
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
Checklist