Skip to content
Draft
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- **BREAKING:** Upgrade TypeScript from `~4.8.4` to `~5.3.3` ([#574](https://github.com/MetaMask/smart-transactions-controller/pull/574))
- Consumers on TypeScript 4.x may experience type errors and should upgrade to TypeScript 5.x.
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/controller-utils` from `^11.0.0` to `^11.19.0` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/eth-json-rpc-provider` from `^4.1.6` to `^6.0.1` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/network-controller` from `^30.0.0` to `^30.0.1` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/polling-controller` from `^16.0.0` to `^16.0.4` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/remote-feature-flag-controller` from `^4.1.0` to `^4.2.0` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.3.1` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))
- Bump `@metamask/utils` from `^11.0.0` to `^11.9.0` ([#576](https://github.com/MetaMask/smart-transactions-controller/pull/576))

## [23.0.0]

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/keccak256": "^5.8.0",
"@ethersproject/transactions": "^5.7.0",
"@metamask/base-controller": "^9.0.0",
"@metamask/controller-utils": "^11.0.0",
"@metamask/eth-json-rpc-provider": "^4.1.6",
"@metamask/base-controller": "^9.0.1",
"@metamask/controller-utils": "^11.19.0",
"@metamask/eth-json-rpc-provider": "^6.0.1",
"@metamask/eth-query": "^4.0.0",
"@metamask/messenger": "^0.3.0",
"@metamask/network-controller": "^30.0.0",
"@metamask/polling-controller": "^16.0.0",
"@metamask/remote-feature-flag-controller": "^4.1.0",
"@metamask/messenger": "^1.0.0",
"@metamask/network-controller": "^30.0.1",
"@metamask/polling-controller": "^16.0.4",
"@metamask/remote-feature-flag-controller": "^4.2.0",
"@metamask/superstruct": "^3.1.0",
"@metamask/transaction-controller": "^63.0.0",
"@metamask/utils": "^11.0.0",
"@metamask/transaction-controller": "^63.3.1",
"@metamask/utils": "^11.9.0",
"bignumber.js": "^9.0.1",
"fast-json-patch": "^3.1.0",
"lodash": "^4.17.21",
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { providerFromEngine } from '@metamask/eth-json-rpc-provider';
import { InternalProvider } from '@metamask/eth-json-rpc-provider';
import { JsonRpcEngine } from '@metamask/json-rpc-engine';

/**
Expand Down Expand Up @@ -40,5 +40,5 @@ export async function advanceTime({
}

export function getFakeProvider() {
return providerFromEngine(new JsonRpcEngine());
return new InternalProvider({ engine: new JsonRpcEngine() });
}
Loading
Loading