Skip to content

Commit a755f7c

Browse files
authored
update default sync server url (#412)
1 parent c0035eb commit a755f7c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.changeset/warm-jeans-reply.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@graphprotocol/hypergraph-react": patch
3+
---
4+
5+
update default sync server url
6+

apps/connect/.env.production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://syncserver.hypergraph.thegraph.com"
2-
VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://hypergraph-sync.up.railway.app"
2+
VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://sync.geobrowser.io"
33
VITE_HYPERGRAPH_CHAIN="geo-testnet"
44
VITE_HYPERGRAPH_RPC_URL="https://rpc-geo-test-zc16z3tcvf.t.conduit.xyz"
55
VITE_PRIVY_APP_ID="cmcccikza007bjy0niawgutl0"

docs/docs/providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const App = () => {
1818

1919
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.
2020

21-
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`.
21+
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`.
2222

2323
## useHypergraphApp
2424

packages/hypergraph-react/src/HypergraphAppContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const mockStorage = {
238238
// (and store it in the sync server)
239239
export function HypergraphAppProvider({
240240
storage = typeof window !== 'undefined' ? localStorage : mockStorage,
241-
syncServerUri = 'https://hypergraph-sync.up.railway.app',
241+
syncServerUri = 'https://sync.geobrowser.io',
242242
chainId = Connect.GEO_TESTNET.id,
243243
appId,
244244
children,

0 commit comments

Comments
 (0)