Skip to content

Commit

Permalink
patch: update blockbook api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
osiastedian committed Mar 2, 2024
1 parent 61d3843 commit 29140b3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/Bridge/Steps/CompleteNevmToSys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Alert, Box, Typography, Link } from "@mui/material";

import React from "react";

const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";

type Props = {
Expand Down
2 changes: 1 addition & 1 deletion components/Bridge/Steps/CompleteSysToNevm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Alert, Box, Typography, Link } from "@mui/material";

import React from "react";

const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";

type Props = {
Expand Down
2 changes: 1 addition & 1 deletion constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const RELAY_CONTRACT_ADDRESS =
export const ERC20_MANAGER_CONTRACT_ADDRESS =
"0xA738a563F9ecb55e0b2245D1e9E380f0fE455ea1";

export const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.elint.services/tx/";
export const SYSCOIN_TX_BLOCKCHAIN_URL = "https://blockbook.syscoin.org/tx/";
export const NEVM_TX_BLOCKCHAIN_URL = "https://explorer.syscoin.org/tx/";

export const ADMIN_LOGIN_MESSAGE = "Login to Syscoin Bridge Admin";
2 changes: 1 addition & 1 deletion contexts/Transfer/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const SYSX_ASSET_GUID = "123456";
export const BlockbookAPIURL = "https://blockbook.elint.services/";
export const BlockbookAPIURL = "https://blockbook.syscoin.org/";

export const NEVMNetwork = {
chainId: "0x39",
Expand Down
2 changes: 1 addition & 1 deletion pages/admin/transfer/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const TransferDetailsPage: NextPage<Props> = ({ initialTransfer }) => {
<Typography variant="body1" sx={{ mb: 2 }}>
UTXO Address:
<MuiLink
href={`https://blockbook.elint.services/address/${transfer.utxoAddress}`}
href={`https://blockbook.syscoin.org/address/${transfer.utxoAddress}`}
target="_blank"
sx={{ ml: 2 }}
>
Expand Down

0 comments on commit 29140b3

Please sign in to comment.