Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: naming #578

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions docs/landing-pages/station.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ slug: /learn/station
---

import CardSection from '/src/components/Cards/CardSection';
import terraStationCards from '/src/components/Cards/card-data/station-cards';
import stationCards from '/src/components/Cards/card-data/station-cards';

# Station

Station is the official wallet of the Terra blockchain. If this is your first time using Station, visit the [download tutorial](../learn/station/download/station-desktop.mdx) to create a wallet.

<CardSection cards={terraStationCards} />
<CardSection cards={stationCards} />
6 changes: 3 additions & 3 deletions docs/learn/station/contracts.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Contract

Smart contracts are an advanced feature of Terra Station. If you’re using Terra Station for the first time, follow the [Terra Station tutorial](download/station-desktop.mdx).
Smart contracts are an advanced feature of Station. If you’re using Station for the first time, follow the [Station tutorial](download/station-desktop.mdx).

## Prerequisites

Compile a contract locally and create a `.wasm` file.

## Upload

Deploy a contract by uploading your `.wasm` file to Terra Station.
Deploy a contract by uploading your `.wasm` file to Station.

1. Open Terra Station and connect your wallet. Click **Contracts**.
1. Open Station and connect your wallet. Click **Contracts**.

2. Click **Upload**.

Expand Down
6 changes: 3 additions & 3 deletions src/components/Cards/card-data/station-cards.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CardProps } from '../Card';

const terraStationCards: CardProps[] = [
const stationCards: CardProps[] = [
{
href: '/learn/station/download/station-desktop.html',
lightSVG: '/img/icons/station/station.svg',
darkSVG: '/img/icons/dark/station.svg',
header: 'Download Station',
summary: "Download Station, Terra's official wallet.",
summary: "Download Station wallet.",
},
{
href: '/learn/station/migration',
Expand Down Expand Up @@ -61,4 +61,4 @@ const terraStationCards: CardProps[] = [
},
];

export default terraStationCards;
export default stationCards;
Loading