diff --git a/src/app/hooks/use-endpoints.ts b/src/app/hooks/use-endpoints.ts index 70e1eae4..cd287b2f 100644 --- a/src/app/hooks/use-endpoints.ts +++ b/src/app/hooks/use-endpoints.ts @@ -37,19 +37,19 @@ export function useEndpoints(): UseEndpointsReturnType { switch (network?.id) { case EthereumNetwork.Sepolia: return { - routerWalletURL: 'https://devnet.dlc.link/router-wallet', + routerWalletURL: 'https://devnet.dlc.link/wallet', ethereumExplorerAPIURL: 'https://sepolia.etherscan.io/tx/', bitcoinExplorerAPIURL: 'http://devnet.dlc.link/electrs/tx/', }; case EthereumNetwork.Goerli: return { - routerWalletURL: 'https://devnet.dlc.link/router-wallet', + routerWalletURL: 'https://devnet.dlc.link/wallet', ethereumExplorerAPIURL: 'https://goerli.etherscan.io/tx/', bitcoinExplorerAPIURL: 'https://blockstream.info/testnet/tx/', }; case EthereumNetwork.X1Testnet: return { - routerWalletURL: 'https://devnet.dlc.link/router-wallet', + routerWalletURL: 'https://devnet.dlc.link/wallet', ethereumExplorerAPIURL: 'https://www.oklink.com/x1-test/tx/', bitcoinExplorerAPIURL: 'http://devnet.dlc.link/electrs/tx/', };