Skip to content

Commit 6f2b62c

Browse files
chore: update PDP explorer URL to pdp.filecoin.cloud (#894)
chore: update PDP explorer URL from vxb.ai to filecoin.cloud
1 parent 6dd6a0b commit 6f2b62c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/synapse-playground/src/components/pdp-link.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { useConfig } from 'wagmi'
66
export 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 }) {
2222
export 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
3838
export 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}

docs/src/content/docs/resources/additional-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ FIL is needed for gas fees on the Filecoin network.
3737

3838
Track proofs submitted to the PDP contract.
3939

40-
- **Mainnet**: <https://pdp.vxb.ai/mainnet>
41-
- **Calibration Testnet**: <https://pdp.vxb.ai/calibration>
40+
- **Mainnet**: <https://pdp.filecoin.cloud/mainnet>
41+
- **Calibration Testnet**: <https://pdp.filecoin.cloud/calibration>
4242

4343
### Filecoin Pay Explorer
4444

0 commit comments

Comments
 (0)