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

## [Unreleased]

## [7.74.2]

### Fixed

- Updated Polymarket adapter contracts so Polymarket prediction transactions continue working after the relayer migration. (#29573)

## [7.74.1]

### Fixed

- Fixed the environmental issue that push notifications not received on Android

## [7.74.0]

### Added
Expand Down Expand Up @@ -11288,7 +11300,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#957](https://github.com/MetaMask/metamask-mobile/pull/957): fix timeouts (#957)
- [#954](https://github.com/MetaMask/metamask-mobile/pull/954): Bugfix: onboarding navigation (#954)

[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.0...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.2...HEAD
[7.74.2]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.1...v7.74.2
[7.74.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.0...v7.74.1
[7.74.0]: https://github.com/MetaMask/metamask-mobile/compare/v7.73.2...v7.74.0
[7.73.2]: https://github.com/MetaMask/metamask-mobile/compare/v7.73.1...v7.73.2
[7.73.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.73.0...v7.73.1
Expand Down
4 changes: 2 additions & 2 deletions app/components/UI/Predict/providers/polymarket/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ export const COLLATERAL_OFFRAMP_ADDRESS =
'0x2957922Eb93258b93368531d39fAcCA3B4dC5854';

export const CTF_COLLATERAL_ADAPTER_ADDRESS =
'0xADa100874d00e3331D00F2007a9c336a65009718';
'0xAdA100Db00Ca00073811820692005400218FcE1f';

export const NEG_RISK_CTF_COLLATERAL_ADAPTER_ADDRESS =
'0xAdA200001000ef00D07553cEE7006808F895c6F1';
'0xadA2005600Dec949baf300f4C6120000bDB6eAab';

export const POLYGON_USDC_CAIP_ASSET_ID =
`${POLYGON_MAINNET_CAIP_CHAIN_ID}/erc20:${MATIC_CONTRACTS.collateral}` as const;
Expand Down
2 changes: 1 addition & 1 deletion app/constants/ota.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import otaConfig from '../../ota.config.js';
* Reset when releasing a new native build as appropriate for that line.
* Kept here (not only in ota.config.js) so changes there do not alter the Expo fingerprint and break CI.
*/
export const OTA_VERSION: string = 'vX.XX.X';
export const OTA_VERSION: string = 'v7.74.2';
export const RUNTIME_VERSION = otaConfig.RUNTIME_VERSION;
export const PROJECT_ID = otaConfig.PROJECT_ID;
export const UPDATE_URL = otaConfig.UPDATE_URL;
3 changes: 2 additions & 1 deletion tests/smoke/predict/predict-open-position.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const PredictionMarketFeature = async (mockServer: Mockttp) => {
await POLYMARKET_POSITIONS_WITH_WINNINGS_MOCKS(mockServer, false); // do not include winnings. Claim Button is animated and problematic for e2e
};

describe(SmokePredictions('Predictions'), () => {
// Disabling because of https://consensys.slack.com/archives/C02U025CVU4/p1777884336901849
describe.skip(SmokePredictions('Predictions'), () => {
it('opens position on Celtics vs. Nets market', async () => {
await withFixtures(
{
Expand Down
Loading