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

Remove filtering of morpho legacy token from rewards #713

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dma-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oasisdex/dma-library",
"version": "0.6.79",
"version": "0.6.80",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ export const morphoBlueClaimRewards: MorphoBlueClaimRewardsOperation = async (
proofs: proofs,
}),
actions.common.returnMultipleTokens(network, {
assets: rewards.filter(
// for now we need to filter our MORPHO token as it is not transferable and it will stay on dpm proxy
// until they will update transferability
item => item.toLowerCase() !== '0x9994e35db50125e0df82e4c2dde62496ce330999',
),
assets: rewards,
}),
]

Expand Down
Loading