Skip to content
Merged
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
5 changes: 0 additions & 5 deletions .changeset/moo-413-ethereum-multireward-distributor.md

This file was deleted.

6 changes: 6 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonwell-fi/moonwell-sdk

## 0.20.2

### Patch Changes

- [#306](https://github.com/moonwell-fi/moonwell-sdk/pull/306) [`5c709c5d2341d06a7ee8f446a7a14abebfd1f12d`](https://github.com/moonwell-fi/moonwell-sdk/commit/5c709c5d2341d06a7ee8f446a7a14abebfd1f12d) Thanks [@bprofiro](https://github.com/bprofiro)! - Add the Ethereum `multiRewardDistributor` (MRD_PROXY `0x60142B8d76FaC5b88cfB422Ba1aA905d2171851c`, the comptroller's `rewardDistributor()`) to the Ethereum environment config, mirroring Base and Optimism (MOO-413). The SDK derives reward APRs from the `views` contract, but the frontend's reward-claim flow branches on this address: when present it claims via the comptroller's `claimReward`, and when absent it falls back to the Moonbeam `0x…0808` precompile `batchAll` path, which reverts on Ethereum. Without it, the WELL rewards MIP-X59 starts accruing on the four Ethereum Core markets (ETH, USDC, USDT, cbBTC) would be displayed but not claimable.

## 0.20.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/errors/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "0.20.1";
export const version = "0.20.2";
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@moonwell-fi/moonwell-sdk",
"description": "TypeScript Interface for Moonwell",
"version": "0.20.1",
"version": "0.20.2",
"type": "module",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down
Loading