-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: refetch interval for stale data
- Loading branch information
Showing
6 changed files
with
92 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
tools/obscuroscan_v3/frontend/components/modules/batches/batch-details.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
export const SocialLinks = { | ||
github: 'https://github.com/obscuro-protocol', | ||
discord: 'https://discord.gg/2JQ2Z3r', | ||
twitter: 'https://twitter.com/obscuroprotocol' | ||
} | ||
export const socialLinks = { | ||
github: "https://github.com/obscuronet", | ||
discord: "https://discord.gg/2JQ2Z3r", | ||
twitter: "https://twitter.com/obscuronet", | ||
}; | ||
|
||
export const pollingInterval = 5000; | ||
export const maxRetries = 3; | ||
export const pricePollingInterval = 60 * 1000; |