@@ -6,7 +6,7 @@ import { useConfig } from 'wagmi'
66export function PDPDatasetLink ( { id } : { id : string } ) {
77 const config = useConfig ( )
88 const chain = config . state . chainId === 314 ? 'mainnet' : 'calibration'
9- const explorerUrl = `https://pdp.vxb.ai /${ chain } /dataset/${ id } `
9+ const explorerUrl = `https://pdp.filecoin.cloud /${ chain } /dataset/${ id } `
1010 return (
1111 < a
1212 className = "hover:underline wrap-anywhere text-gray-400"
@@ -22,7 +22,7 @@ export function PDPDatasetLink({ id }: { id: string }) {
2222export function PDPProviderLink ( { address, name } : { address : string ; name : string } ) {
2323 const config = useConfig ( )
2424 const chain = config . state . chainId === 314 ? 'mainnet' : 'calibration'
25- const explorerUrl = `https://pdp.vxb.ai /${ chain } /providers/${ address } `
25+ const explorerUrl = `https://pdp.filecoin.cloud /${ chain } /providers/${ address } `
2626 return (
2727 < a
2828 className = "hover:underline wrap-anywhere text-gray-400"
@@ -38,7 +38,7 @@ export function PDPProviderLink({ address, name }: { address: string; name: stri
3838export function PDPPieceLink ( { cid, name } : { cid : string ; name ?: string } ) {
3939 const config = useConfig ( )
4040 const chain = config . state . chainId === 314 ? 'mainnet' : 'calibration'
41- const explorerUrl = `https://pdp.vxb.ai /${ chain } /piece/${ cid } `
41+ const explorerUrl = `https://pdp.filecoin.cloud /${ chain } /piece/${ cid } `
4242 return (
4343 < a className = "hover:underline wrap-anywhere" href = { explorerUrl } rel = "noopener noreferrer" target = "_blank" >
4444 { name || cid }
0 commit comments