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
4 changes: 4 additions & 0 deletions packages/money-account-balance-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Add optional `trace` constructor option to `MoneyAccountBalanceService` for tracing network requests (RPC calls and the Veda APY API fetch). Tracing is best-effort and does not affect query results if it fails. ([#9434](https://github.com/MetaMask/core/pull/9434))

### Changed

- Bump `@metamask/messenger` from `^1.2.0` to `^2.0.0` ([#9392](https://github.com/MetaMask/core/pull/9392))
Expand Down
3 changes: 3 additions & 0 deletions packages/money-account-balance-service/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export type {
MoneyAccountBalanceServiceActions,
MoneyAccountBalanceServiceEvents,
MoneyAccountBalanceServiceMessenger,
MoneyAccountBalanceServiceOptions,
MoneyAccountBalanceServiceTraceCallback,
MoneyAccountBalanceServiceTraceRequest,
} from './money-account-balance-service';
export type {
MoneyAccountBalanceServiceGetMoneyAccountBalanceAction,
Expand Down
Loading