Skip to content

feat: update controller to inherit from BaseControllerV2 #397

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

Merged
merged 20 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
34bfb10
feat: update controller to inherit from BaseControllerV2
cryptodev-2s Aug 1, 2024
f523051
fix: Prototype-polluting assignment
cryptodev-2s Aug 1, 2024
96cd0ec
Merge remote-tracking branch 'origin/main' into feature/update-to-bas…
cryptodev-2s Aug 15, 2024
af1db81
fix: remove useless async on network state change listener
cryptodev-2s Aug 15, 2024
8245c58
fix: checkPoll spy comment
cryptodev-2s Aug 15, 2024
be1d0fa
fix: unit test
cryptodev-2s Aug 15, 2024
018d76c
fix: make confirmExternalTransaction private
cryptodev-2s Aug 19, 2024
acb52b9
fix: make getRegularTransactions private
cryptodev-2s Aug 19, 2024
2a5396b
fix: remove public from timeoutHandle
cryptodev-2s Aug 19, 2024
9700274
fix: prototype-polluting assignment
cryptodev-2s Aug 19, 2024
f5b125e
fix: add missing transaction types
cryptodev-2s Aug 19, 2024
6f5cc06
fix: coverage
cryptodev-2s Aug 19, 2024
492ad25
fix: add missing types
cryptodev-2s Aug 19, 2024
fd0b432
fix: add annotations for type fixes todo
cryptodev-2s Aug 21, 2024
d3d5a3c
fix: Prototype-polluting assignment
cryptodev-2s Aug 21, 2024
d1bc484
fix: Prototype-polluting assignment
cryptodev-2s Aug 21, 2024
b7fc327
fix: include other approved PRs changes
cryptodev-2s Aug 22, 2024
abfc7b2
Merge remote-tracking branch 'origin/main' into feature/update-to-bas…
cryptodev-2s Aug 22, 2024
b9e69fc
fix: add missing type definition for metametric event
cryptodev-2s Aug 22, 2024
3e181e8
Merge remote-tracking branch 'origin/main' into feature/update-to-bas…
cryptodev-2s Aug 22, 2024
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
6 changes: 3 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ module.exports = {
coverageReporters: ['text', 'html'],
coverageThreshold: {
global: {
branches: 76.5,
branches: 75.52,
functions: 92.5,
lines: 93.35,
statements: 93.35,
lines: 92.64,
statements: 92.65,
},
},
moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node'],
Expand Down
Loading
Loading