Skip to content

Commit

Permalink
rename "console" to "explorer" (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparkallas authored Sep 10, 2024
1 parent 9796451 commit d94a15f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Welcome to Superfluid Console repository 👋</h1>
<h1 align="center">Welcome to Superfluid Explorer repository 👋</h1>

<p>
<a href="https://twitter.com/Superfluid_HQ/status/" target="_blank">
Expand All @@ -10,17 +10,17 @@

### [Superfluid App](https://app.superfluid.finance/)

### [Superfluid Console](https://console.superfluid.finance/)
### [Superfluid Explorer](https://explorer.superfluid.finance/)

### 📖 [Docs](https://docs.superfluid.finance)

The Superfluid Protocol is a framework that realizes the real-time finance vision
where user accounts are connected together, and transactions can happen between
user accounts instantaneously as a result.

# Superfluid Console
# Superfluid Explorer

Superfluid Console is an explorer meant for developers and advanced users of the Superfluid Protocol.
Superfluid Explorer is an explorer meant for developers and advanced users of the Superfluid Protocol.

## How to use

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "superfluid-console",
"name": "superfluid-explorer",
"version": "1.0.0",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/AddressBook/AddressBookDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const AddressBookDialog: FC<{

const [nameTag, setNameTag] = useState<string>(getInitialNameTag())

// Fixes: https://github.com/superfluid-finance/superfluid-console/issues/21
// Fixes: https://github.com/superfluid-finance/superfluid-explorer/issues/21
useEffect(() => {
setNameTag(getInitialNameTag())
// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_app.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function MyApp(props: MyAppProps) {
return (
<CacheProvider value={emotionCache}>
<Head>
<title>Superfluid Console</title>
<title>Superfluid Explorer</title>
{/* "theme-mode" is required to be in the head element by `useSfTheme`. */}
<meta id="theme-mode" name="theme-mode" content={theme.palette.mode} />
<meta name="theme-color" content={theme.palette.primary.main} />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ const Home: NextPage = () => {
color="text.primary"
gutterBottom
>
Welcome to Superfluid Console
Welcome to Superfluid Explorer
</Typography>
<Typography
variant="body1"
align="center"
color="text.secondary"
paragraph
>
Superfluid Console is an explorer meant for developers and advanced
Superfluid Explorer is an explorer meant for developers and advanced
users of the{' '}
<AppLink
data-cy={'protocol-link'}
Expand Down

0 comments on commit d94a15f

Please sign in to comment.