Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/warm-jeans-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@graphprotocol/hypergraph-react": patch
---

update default sync server url

2 changes: 1 addition & 1 deletion apps/connect/.env.production
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://syncserver.hypergraph.thegraph.com"
VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://hypergraph-sync.up.railway.app"
VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://sync.geobrowser.io"
VITE_HYPERGRAPH_CHAIN="geo-testnet"
VITE_HYPERGRAPH_RPC_URL="https://rpc-geo-test-zc16z3tcvf.t.conduit.xyz"
VITE_PRIVY_APP_ID="cmcccikza007bjy0niawgutl0"
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const App = () => {

It has one mandatory prop: `mapping`. This is the mapping of your schema to the public Knowledge Graph schema. You can find more information about the mapping in the [Mapping](/docs/mapping) section later.

Further it has an optional prop: `syncServerUri`. This is the URL of the sync server. By default it is set to `https://hypergraph-sync.up.railway.app`.
Further it has an optional prop: `syncServerUri`. This is the URL of the sync server. By default it is set to `https://sync.geobrowser.io`.

## useHypergraphApp

Expand Down
2 changes: 1 addition & 1 deletion packages/hypergraph-react/src/HypergraphAppContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const mockStorage = {
// (and store it in the sync server)
export function HypergraphAppProvider({
storage = typeof window !== 'undefined' ? localStorage : mockStorage,
syncServerUri = 'https://hypergraph-sync.up.railway.app',
syncServerUri = 'https://sync.geobrowser.io',
chainId = Connect.GEO_TESTNET.id,
appId,
children,
Expand Down
Loading