Skip to content

Commit

Permalink
Switch to prod route for R2 (#3729)
Browse files Browse the repository at this point in the history
  • Loading branch information
danield9tqh authored and jowparks committed Apr 5, 2023
1 parent 5ebe6df commit b236f7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ironfish-cli/src/commands/ceremony/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,15 @@ export default class CeremonyService extends IronfishCommand {
char: 'b',
parse: (input: string) => Promise.resolve(input.trim()),
required: false,
description: 'S3 bucket to download and upload params to',
description: 'S3/R2 bucket to download and upload params to',
default: 'ironfish-contributions',
}),
downloadPrefix: Flags.string({
char: 'b',
parse: (input: string) => Promise.resolve(input.trim()),
required: false,
description: 'Prefix for contribution download URLs',
// TODO: update this to non-dev endpoint to avoid rate limiting
default: 'https://pub-6a239e04e140459087cf392ffc3245b1.r2.dev',
default: 'https://contributions.ironfish.network',
}),
contributionTimeoutMs: Flags.integer({
required: false,
Expand All @@ -49,7 +48,8 @@ export default class CeremonyService extends IronfishCommand {
}),
presignedExpirationSec: Flags.integer({
required: false,
description: 'How many seconds the S3 pre-signed upload URL is valid for a contributor',
description:
'How many seconds the S3/R2 pre-signed upload URL is valid for a contributor',
default: PRESIGNED_EXPIRATION_SEC,
}),
startDate: Flags.integer({
Expand Down

0 comments on commit b236f7d

Please sign in to comment.