Skip to content

Commit 15486fd

Browse files
explorer url update (#234)
1 parent 4d94152 commit 15486fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ yarn
3333
export const config = {
3434
RPC_URL: 'https://rpc.flixnet.omniflix.network',
3535
REST_URL: 'https://rest.flixnet.omniflix.network',
36-
EXPLORER_URL: 'https://www.mintscan.io/omniflix',
36+
EXPLORER_URL: 'https://explorer.chainroot.io/omniflix',
3737
STAKING_URL: 'https://flix.omniflix.co/stake',
3838
NETWORK_NAME: 'OmniFlix',
3939
NETWORK_TYPE: 'testnet',

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const config = {
22
RPC_URL: 'https://rpc.omniflix.network',
33
REST_URL: 'https://rest.omniflix.network',
4-
EXPLORER_URL: 'https://www.mintscan.io/omniflix',
4+
EXPLORER_URL: 'https://explorer.chainroot.io/omniflix',
55
STAKING_URL: 'https://flix.omniflix.co/stake',
66
NETWORK_NAME: 'OmniFlix',
77
NETWORK_TYPE: 'mainnet',

src/containers/Stake/DelegateDialog/SuccessDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const CustomTooltip = withStyles(() => ({
3636
const SuccessDialog = (props) => {
3737
const handleRedirect = () => {
3838
if (config.EXPLORER_URL) {
39-
const link = `${config.EXPLORER_URL}/txs/${props.hash}`;
39+
const link = `${config.EXPLORER_URL}/transactions/${props.hash}`;
4040
window.open(link, '_blank');
4141
}
4242
};

0 commit comments

Comments
 (0)