Skip to content

Commit

Permalink
disable fractal history
Browse files Browse the repository at this point in the history
  • Loading branch information
slient-coder committed Aug 13, 2024
1 parent 7c340cc commit 40767d5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/shared/constant/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ type TypeChain = {
ordinalsUrl: string;
unisatExplorerUrl: string;
okxExplorerUrl: string;
isViewTxHistoryInternally?:boolean;
isViewTxHistoryInternally?: boolean;
};

export const CHAINS_MAP: { [key: string]: TypeChain } = {
Expand All @@ -245,8 +245,8 @@ export const CHAINS_MAP: { [key: string]: TypeChain } = {
mempoolSpaceUrl: 'https://mempool.space',
unisatUrl: 'https://unisat.io',
ordinalsUrl: 'https://ordinals.com',
unisatExplorerUrl:'',
okxExplorerUrl:'',
unisatExplorerUrl: '',
okxExplorerUrl: ''
},
[ChainType.BITCOIN_TESTNET]: {
enum: ChainType.BITCOIN_TESTNET,
Expand All @@ -258,8 +258,8 @@ export const CHAINS_MAP: { [key: string]: TypeChain } = {
mempoolSpaceUrl: 'https://mempool.space/testnet',
unisatUrl: 'https://testnet.unisat.io',
ordinalsUrl: 'https://testnet.ordinals.com',
unisatExplorerUrl:'',
okxExplorerUrl:'',
unisatExplorerUrl: '',
okxExplorerUrl: ''
},
[ChainType.BITCOIN_TESTNET4]: {
enum: ChainType.BITCOIN_TESTNET4,
Expand All @@ -271,8 +271,8 @@ export const CHAINS_MAP: { [key: string]: TypeChain } = {
mempoolSpaceUrl: 'https://mempool.space/testnet4',
unisatUrl: 'https://testnet4.unisat.io',
ordinalsUrl: 'https://testnet4.ordinals.com',
unisatExplorerUrl:'',
okxExplorerUrl:'',
unisatExplorerUrl: '',
okxExplorerUrl: ''
},
[ChainType.BITCOIN_SIGNET]: {
enum: ChainType.BITCOIN_SIGNET,
Expand All @@ -284,8 +284,8 @@ export const CHAINS_MAP: { [key: string]: TypeChain } = {
mempoolSpaceUrl: 'https://mempool.space/signet',
unisatUrl: 'https://signet.unisat.io',
ordinalsUrl: 'https://signet.ordinals.com',
unisatExplorerUrl:'',
okxExplorerUrl:'',
unisatExplorerUrl: '',
okxExplorerUrl: ''
},
[ChainType.FRACTAL_BITCOIN_MAINNET]: {
enum: ChainType.FRACTAL_BITCOIN_MAINNET,
Expand All @@ -297,9 +297,9 @@ export const CHAINS_MAP: { [key: string]: TypeChain } = {
mempoolSpaceUrl: 'https://mempool.fractalbitcoin.io',
unisatUrl: 'https://fractal.unisat.io',
ordinalsUrl: 'https://ordinals.fractalbitcoin.io',
unisatExplorerUrl:'https://explorer.fractalbitcoin.io',
okxExplorerUrl:'',
isViewTxHistoryInternally:true,
unisatExplorerUrl: 'https://explorer.fractalbitcoin.io',
okxExplorerUrl: '',
isViewTxHistoryInternally: false
}
};

Expand Down

0 comments on commit 40767d5

Please sign in to comment.