Skip to content

Commit 35cae36

Browse files
authored
move default sync server to railway (#357)
1 parent 51d6775 commit 35cae36

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

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.fly.dev"
2+
VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://hypergraph-sync.up.railway.app"
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.fly.dev`.
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`.
2222

2323
## useHypergraphApp
2424

packages/hypergraph-react/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- dd4746a: remove unsupported dataType Url
77
- fd0a13f: extract Mapping to @graphprotocol/typesync
88
- 114d743: breaking changes of the authentication flow to improve security and fix invitations
9+
- Update the default syncServerUri to https://hypergraph-sync.up.railway.app
910
- Updated dependencies [dd4746a]
1011
- Updated dependencies [fd0a13f]
1112
- Updated dependencies [114d743]

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.fly.dev',
241+
syncServerUri = 'https://hypergraph-sync.up.railway.app',
242242
chainId = Connect.GEO_TESTNET.id,
243243
appId,
244244
children,

0 commit comments

Comments
 (0)