Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion app/constants/ota.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import otaConfig from '../../ota.config.js';
* Reset to v0 when releasing a new native build
* We keep this OTA_VERSION here to because changes in ota.config.js will affect the fingerprint and break the workflow in Github Actions
*/
export const OTA_VERSION: string = 'v7.70.1';
export const OTA_VERSION: string = 'v7.71.1';
export const RUNTIME_VERSION = otaConfig.RUNTIME_VERSION;
export const PROJECT_ID = otaConfig.PROJECT_ID;
export const UPDATE_URL = otaConfig.UPDATE_URL;
5 changes: 2 additions & 3 deletions app/core/AppConstants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DEFAULT_SERVER_URL } from '@metamask/sdk-communication-layer';
import { CoreTypes } from '@walletconnect/types';
import Device from '../util/device';
import { DEFAULT_SERVER_URL } from '@metamask/sdk-communication-layer';

const DEVELOPMENT = 'development';

Expand Down Expand Up @@ -214,8 +214,7 @@ export default {
process.env.DECODING_API_URL ||
'https://signature-insights.api.cx.metamask.io/v1',
DIGEST_API_URL:
process.env.DIGEST_API_URL ||
'https://digest.dev-api.cx.metamask.io/api/v1',
process.env.DIGEST_API_URL || 'https://digest.api.cx.metamask.io/api/v1',
// Rewards/Baanx: GH Actions use builds.yml (env set per build). Fallback mapping for local when env not set.
REWARDS_API_URL: {
DEV: 'https://rewards.dev-api.cx.metamask.io',
Expand Down
Loading