Skip to content

Commit 29140b3

Browse files
committed
patch: update blockbook api endpoint
1 parent 61d3843 commit 29140b3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

components/Bridge/Steps/CompleteNevmToSys.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Alert, Box, Typography, Link } from "@mui/material";
33

44
import React from "react";
55

6-
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
6+
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
77
const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";
88

99
type Props = {

components/Bridge/Steps/CompleteSysToNevm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Alert, Box, Typography, Link } from "@mui/material";
33

44
import React from "react";
55

6-
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
6+
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
77
const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";
88

99
type Props = {

constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const RELAY_CONTRACT_ADDRESS =
77
export const ERC20_MANAGER_CONTRACT_ADDRESS =
88
"0xA738a563F9ecb55e0b2245D1e9E380f0fE455ea1";
99

10-
export const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
10+
export const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
1111
export const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";
1212

1313
export const ADMIN_LOGIN_MESSAGE = "Login to Syscoin Bridge Admin";

contexts/Transfer/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const SYSX_ASSET_GUID = "123456";
2-
export const BlockbookAPIURL = "https://blockbook.elint.services/";
2+
export const BlockbookAPIURL = "https://blockbook.syscoin.org/";
33

44
export const NEVMNetwork = {
55
chainId: "0x39",

pages/admin/transfer/[id].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ const TransferDetailsPage: NextPage<Props> = ({ initialTransfer }) => {
141141
<Typography variant="body1" sx={{ mb: 2 }}>
142142
UTXO Address:
143143
<MuiLink
144-
href={`https://blockbook.elint.services/address/${transfer.utxoAddress}`}
144+
href={`https://blockbook.syscoin.org/address/${transfer.utxoAddress}`}
145145
target="_blank"
146146
sx={{ ml: 2 }}
147147
>

0 commit comments

Comments
 (0)