Skip to content

Commit

Permalink
Merge pull request #22 from DLC-link/feat/modified-vault-loading
Browse files Browse the repository at this point in the history
feat: modified vault loading and endpoints
  • Loading branch information
Polybius93 authored Dec 5, 2023
2 parents aaf10c8 + d0dd0a4 commit 4bad3a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/hooks/use-endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function useEndpoints(): UseEndpointsReturnType {
return {
routerWalletURL: "https://devnet.dlc.link/eth-wallet",
ethereumExplorerAPIURL: "https://sepolia.etherscan.io/tx/",
bitcoinExplorerAPIURL: "https://blockstream.info/testnet/tx/",
bitcoinExplorerAPIURL: "http://devnet.dlc.link/electrs/tx/",
};
case EthereumNetwork.Goerli:
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/hooks/use-vaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function useVaults(
): UseVaultsReturnType {
const { vaults } = useSelector((state: RootState) => state.vault);
const { address, network } = useSelector((state: RootState) => state.account);
const [isLoading, setIsLoading] = useState(false);
const [isLoading, setIsLoading] = useState(true);

useEffect(() => {
if (!address || !network || !ethereum) return;
Expand Down

0 comments on commit 4bad3a5

Please sign in to comment.