Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
change pinata url to ensure https as http redirects -> failing
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelLHuber committed Mar 12, 2024
1 parent 3a5db21 commit 0ff0616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/public.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ export class PublicProvider extends HubProvider {
let name: string;

if (providerType === 'pinata') {
hubUrl = 'hub-grpc.pinata.cloud';
hubUrl = 'https://hub.pinata.cloud';
name = 'publicPinataHub';
} else {
hubUrl = 'nemes.farcaster.xyz:2283';
hubUrl = 'http://nemes.farcaster.xyz:2283';
name = 'publicFarcasterHub';
}
//no psqlUrl since there is no public PostgreSQL Replicator instance
Expand Down

0 comments on commit 0ff0616

Please sign in to comment.