Skip to content

Commit d707971

Browse files
committed
Merge branch 'develop' into chore/ddw-1220-cardano-node-8.1.1
2 parents 129e354 + 8d31311 commit d707971

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## vNext
44

5+
### Features
6+
7+
- Switched to the new Catalyst API ([PR 3129](https://github.com/input-output-hk/daedalus/pull/3129))
8+
59
### Fixes
610

711
- Fixed decimals for syncing percentage ([PR 3106](https://github.com/input-output-hk/daedalus/pull/3106))

source/renderer/app/api/voting/requests/getCatalystFund.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { externalRequest } from '../../utils/externalRequest';
2-
import { MAINNET_SERVICING_STATION_URL } from '../../../config/urlsConfig';
2+
import { CATALYST_API_URL } from '../../../config/urlsConfig';
33
import { GetCatalystFundResponse } from '../types';
44

55
export const getCatalystFund = (): Promise<GetCatalystFundResponse> =>
66
externalRequest({
7-
hostname: MAINNET_SERVICING_STATION_URL,
7+
hostname: CATALYST_API_URL,
88
path: '/api/v0/fund',
99
method: 'GET',
1010
protocol: 'https',

source/renderer/app/config/urlsConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const DEVELOPMENT_NEWS_HASH_URL = 'newsfeed.daedaluswallet.io';
1111
export const MAINNET_NEWS_HASH_URL = 'newsfeed.daedaluswallet.io';
1212
export const TESTNET_NEWS_HASH_URL = 'newsfeed.daedaluswallet.io';
1313
export const STAGING_NEWS_HASH_URL = 'newsfeed.daedaluswallet.io';
14-
export const MAINNET_SERVICING_STATION_URL = 'servicing-station.gov.iog.io';
14+
export const CATALYST_API_URL = 'core.projectcatalyst.io';
1515
export const ALLOWED_EXTERNAL_HOSTNAMES = [
1616
MAINNET_EXPLORER_URL,
1717
STAGING_EXPLORER_URL,
@@ -25,5 +25,5 @@ export const ALLOWED_EXTERNAL_HOSTNAMES = [
2525
TESTNET_NEWS_HASH_URL,
2626
STAGING_NEWS_HASH_URL,
2727
coingeckoConfig.hostname,
28-
MAINNET_SERVICING_STATION_URL,
28+
CATALYST_API_URL,
2929
];

0 commit comments

Comments
 (0)