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

## useHypergraphApp

Expand Down
1 change: 1 addition & 0 deletions packages/hypergraph-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- dd4746a: remove unsupported dataType Url
- fd0a13f: extract Mapping to @graphprotocol/typesync
- 114d743: breaking changes of the authentication flow to improve security and fix invitations
- Update the default syncServerUri to https://hypergraph-sync.up.railway.app
- Updated dependencies [dd4746a]
- Updated dependencies [fd0a13f]
- Updated dependencies [114d743]
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.fly.dev',
syncServerUri = 'https://hypergraph-sync.up.railway.app',
chainId = Connect.GEO_TESTNET.id,
appId,
children,
Expand Down
Loading