Skip to content

Commit

Permalink
temp+fix: @metamask/transaction-controller version to exact 45.0.0 (
Browse files Browse the repository at this point in the history
#13690)

<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

<!--
Write a short description of the changes included in this pull request,
also include relevant motivation and context. Have in mind the following
questions:
1. What is the reason for the change?
2. What is the improvement/solution?
-->

## **Related issues**

Fixes: #13570 

## **Manual testing steps**

1. Go to this page...
2.
3.

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [ ] I’ve followed [MetaMask Contributor
Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile
Coding
Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md).
- [ ] I've completed the PR template to the best of my ability
- [ ] I’ve included tests if applicable
- [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [ ] I’ve applied the right labels on the PR (see [labeling
guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)).
Not required for external contributors.

## **Pre-merge reviewer checklist**

- [ ] I've manually tested the PR (e.g. pull and build branch, run the
app, test code being changed).
- [ ] I confirm that this PR addresses all acceptance criteria described
in the ticket it closes and includes the necessary testing evidence such
as recordings and or screenshots.

---------

Co-authored-by: jpuri <jyotipuri@gmail.com>
  • Loading branch information
runway-github[bot] and jpuri authored Feb 24, 2025
1 parent a91f630 commit 8e5849e
Show file tree
Hide file tree
Showing 513 changed files with 7,450 additions and 26,266 deletions.
24 changes: 7 additions & 17 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ app/component-library/ @MetaMask/design-system-engineers
# Platform Team
.github/CODEOWNERS @MetaMask/mobile-platform
patches/ @MetaMask/mobile-platform
app/core/Engine/Engine.ts @MetaMask/mobile-platform
app/core/Engine/Engine.test.ts @MetaMask/mobile-platform
app/core/Engine/index.ts @MetaMask/mobile-platform
app/core/Engine/types.ts @MetaMask/mobile-platform
app/core/Engine/controllers/RemoteFeatureFlagController/ @MetaMask/mobile-platform
app/core/Analytics/ @MetaMask/mobile-platform
app/util/metrics/ @MetaMask/mobile-platform
app/components/hooks/useMetrics/ @MetaMask/mobile-platform
Expand All @@ -19,15 +24,6 @@ bitrise.yml @MetaMask/mobile-pla
yarn.lock @MetaMask/mobile-platform
ios/Podfile.lock @MetaMask/mobile-platform
app/components/Views/BrowserTab/BrowserTab.tsx @MetaMask/mobile-platform
app/core/Engine/messengers/ @MetaMask/mobile-platform
app/core/Engine/utils/ @MetaMask/mobile-platform
app/core/Engine/constants/ @MetaMask/mobile-platform
app/core/Engine/Engine.test.ts @MetaMask/mobile-platform
app/core/Engine/Engine.ts @MetaMask/mobile-platform
app/core/Engine/index.ts @MetaMask/mobile-platform
app/core/Engine/README.md @MetaMask/mobile-platform
app/core/Engine/types.ts @MetaMask/mobile-platform
app/core/Engine/controllers/remote-feature-flag-controller/ @MetaMask/mobile-platform

# Ramps Team
app/components/UI/Ramp/ @MetaMask/ramp
Expand All @@ -51,13 +47,11 @@ app/reducers/sdk @MetaMask/sdk-devs
app/util/walletconnect.js @MetaMask/sdk-devs

# Accounts Team
app/core/Encryptor/ @MetaMask/accounts-engineers
app/core/Engine/controllers/accounts-controller @MetaMask/accounts-engineers
app/core/Engine/messengers/accounts-controller-messenger @MetaMask/accounts-engineers
app/core/Encryptor/ @MetaMask/accounts-engineers
app/core/Engine/controllers/AccountsController @MetaMask/accounts-engineers

# Swaps Team
app/components/UI/Swaps @MetaMask/swaps-engineers
app/components/UI/Bridge @MetaMask/swaps-engineers

# Notifications Team
app/components/Views/Notifications @MetaMask/notifications
Expand All @@ -77,10 +71,6 @@ e2e/specs/identity @MetaMask/identity
ses.cjs @MetaMask/supply-chain
patches/react-native+0.*.patch @MetaMask/supply-chain

# Portfolio Team
app/components/hooks/useTokenSearchDiscovery @MetaMask/portfolio
app/core/Engine/controllers/TokenSearchDiscoveryController @MetaMask/portfolio

# Snaps Team
**/snaps/** @MetaMask/snaps-devs
**/Snaps/** @MetaMask/snaps-devs
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/create-bug-report-issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async function main(): Promise<void> {
const regressionLabelProduction: Label = craftRegressionLabel(RegressionStage.Production, releaseVersion);
const teamLabel: Label = craftTeamLabel(`${platformName}-platform`);

// Create or retrieve the different labels
// Create of retrieve the different labels
await createOrRetrieveLabel(octokit, repoOwner, codeRepoName, regressionLabelProduction);
await createOrRetrieveLabel(octokit, repoOwner, codeRepoName, regressionLabelTesting);
await createOrRetrieveLabel(octokit, repoOwner, planningRepoName, regressionLabelProduction);
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/create-bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@ jobs:
echo "version=$version" >> "$GITHUB_OUTPUT"
else
echo "Not a release branch, skip next steps"
exit 1
fi
- name: Checkout repository
if: steps.extract_version.outputs.version
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 1 # This retrieves only the latest commit.

- name: Set up Node.js
if: steps.extract_version.outputs.version
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'

- name: Install dependencies
if: steps.extract_version.outputs.version
run: yarn --immutable
working-directory: '.github/scripts'

- name: Create bug report issue on planning repo
if: steps.extract_version.outputs.version
id: create-bug-report-issue
env:
BUG_REPORT_TOKEN: ${{ secrets.BUG_REPORT_TOKEN }}
RELEASES_GITHUB_PROJECT_BOARD_NUMBER: ${{ vars.RELEASES_GITHUB_PROJECT_BOARD_NUMBER }}
RELEASES_GITHUB_PROJECT_BOARD_VIEW_NUMBER: ${{ vars.RELEASES_GITHUB_PROJECT_BOARD_VIEW_NUMBER }}
RELEASE_VERSION: ${{ steps.extract_version.outputs.version }}
run: yarn create-bug-report-issue
run: npm run create-bug-report-issue
working-directory: '.github/scripts'
2 changes: 1 addition & 1 deletion .js.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export IS_TEST=""
# but have to be defined here for local tests
export MM_TEST_ACCOUNT_SRP=""
export MM_TEST_ACCOUNT_PRIVATE_KEY=""
export MM_STAKE_TEST_ACCOUNT_PRIVATE_KEY=""
export TENDERLY_NETWORK_ID=""

# address is the address of the first account generated from the previous SRP
export MM_TEST_ACCOUNT_ADDRESS=""
Expand Down
Loading

0 comments on commit 8e5849e

Please sign in to comment.