Note: This file should be removed once the migration is complete and merged.
Tezos is replacing Ghostnet with Shadownet as the long-term testnet. This document tracks what needs to change for Homebase to support Shadownet.
Reference: https://teztnets.com/shadownet-about
- RPC:
https://rpc.shadownet.teztnets.com - Faucet:
https://faucet.shadownet.teztnets.com - Network Name:
TEZOS_SHADOWNET_2025-08-07T20:00:00Z - Activation Date: 2025-08-07
| Service | Status | Endpoint |
|---|---|---|
| TzKT API | ✅ Ready | api.shadownet.tzkt.io |
| TzKT Explorer | ✅ Ready | shadownet.tzkt.io |
| Shadownet Faucet | ✅ Ready | faucet.shadownet.teztnets.com |
| SmartPy RPC | ❓ Unknown | May not support shadownet |
| Beacon Wallet SDK | ✅ Ready | Upgraded to 4.7.0 with native NetworkType.SHADOWNET |
| Better Call Dev | ❓ Unknown | May not support shadownet |
| File | Change |
|---|---|
src/services/beacon/utils.ts |
Replace ghostnet with shadownet in Network type, RPC nodes, colors, and wallet config |
src/services/config/constants.ts |
Rename env key to REACT_APP_RPC_NETWORK_SHADOWNET |
src/modules/common/Footer.tsx |
Update explorer link to shadownet.tzkt.io |
src/modules/creator/state/context.tsx |
Update network checks from ghostnet to shadownet |
src/services/tzprofiles/hooks/useProfileClaim.tsx |
Update network validation |
.env |
Update env var name |
The Homebase indexer needs to be reconfigured:
- Point indexer to shadownet RPC (
https://rpc.shadownet.teztnets.com) - Reset/migrate database (shadownet is a new chain)
- Redeploy Hasura instance
- Update any hardcoded network references
Indexer endpoints:
- V1:
https://v3-homebase-indexer.tezos-homebase.io/v1/graphql - V2:
https://v2-homebase-indexer.w3api.dev/v1/graphql
All contracts must be redeployed on Shadownet (it's a completely new chain):
- Token contracts (FA1.2/FA2)
- BaseDAO contracts
- Registry contracts
- Metadata carrier contracts
- DAO deployer service contracts
# Old
REACT_APP_RPC_NETWORK_GHOSTNET=https://ghostnet.smartpy.io
# New
REACT_APP_RPC_NETWORK_SHADOWNET=https://rpc.shadownet.teztnets.com- Get tez from shadownet faucet
- Test wallet connection with Temple/Kukai (Kukai works with Beacon SDK 4.7.0)
- Fix: Wallet was connecting to mainnet instead of shadownet (now passes network to
requestPermissions) - Test token creation (on correct network)
- Test DAO creation flow
- Test staking
- Test proposal creation
- Test voting
- Test proposal execution
- Verify TzKT links work correctly
- Verify indexer picks up new DAOs
Approach: Replace ghostnet with shadownet
Since Ghostnet is being deprecated, we're replacing it entirely rather than adding shadownet alongside it. Users will lose access to existing ghostnet DAOs, but those would become inaccessible anyway once Ghostnet shuts down.
If issues arise:
- Revert this branch
- Re-enable ghostnet configuration
- Investigate and fix shadownet issues in a new branch