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
1 change: 0 additions & 1 deletion declarations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ declare module '@env' {
export const DOSH_WHITELIST: string;
export const GIT_COMMIT_HASH: string;
export const MIXPANEL_PROJECT_TOKEN: string;
export const MORALIS_API_KEY: string;
export const WALLET_CONNECT_V2_PROJECT_ID: string;
export const ZENLEDGER_CLIENT_ID: string;
export const ZENLEDGER_CLIENT_SECRET: string;
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"translation:download": "crowdin download --identity crowdin-credentials.yml"
},
"dependencies": {
"@bitpay-labs/bitcore-wallet-client": "11.10.0",
"@bitpay-labs/bitcore-wallet-client": "11.10.6",
"@braze/react-native-sdk": "20.1.0",
"@ethersproject/shims": "5.7.0",
"@freakycoder/react-native-bounceable": "0.2.5",
Expand Down Expand Up @@ -113,7 +113,6 @@
"lodash.uniqby": "4.7.0",
"mixpanel-react-native": "3.3.0",
"moment": "2.29.1",
"moralis": "2.25.2",
"papaparse": "5.3.2",
"path-browserify": "1.0.1",
"react": "19.1.1",
Expand Down
3 changes: 0 additions & 3 deletions src/store/app/app.effects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,6 @@ jest.mock('../location', () => ({
jest.mock('../wallet-connect-v2/wallet-connect-v2.effects', () => ({
walletConnectV2Init: jest.fn(() => ({type: 'WALLET_CONNECT_INIT'})),
}));
jest.mock('../moralis/moralis.effects', () => ({
moralisInit: jest.fn(() => ({type: 'MORALIS_INIT'})),
}));
jest.mock('../external-services/external-services.effects', () => ({
prefetchExternalServicesData: jest.fn(() => ({
type: 'PREFETCH_EXTERNAL_SERVICES',
Expand Down
2 changes: 0 additions & 2 deletions src/store/app/app.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ import {prefetchExternalServicesData} from '../external-services/external-servic
import {receiveCrypto, sendCrypto} from '../wallet/effects/send/send';
import moment from 'moment';
import {FeedbackRateType} from '../../navigation/tabs/settings/about/screens/SendFeedback';
import {moralisInit} from '../moralis/moralis.effects';
import {walletConnectV2Init} from '../wallet-connect-v2/wallet-connect-v2.effects';
import {InAppNotificationMessages} from '../../components/modal/in-app-notification/InAppNotification';
import axios from 'axios';
Expand Down Expand Up @@ -291,7 +290,6 @@ export const startAppInit = (): Effect => async (dispatch, getState) => {
if (getState().WALLET_CONNECT_V2?.sessions?.length > 0) {
dispatch(walletConnectV2Init());
}
dispatch(moralisInit());

// Update Coinbase
dispatch(coinbaseInitialize());
Expand Down
Loading
Loading