Skip to content

Commit

Permalink
Terra Station
Browse files Browse the repository at this point in the history
  • Loading branch information
sim committed Dec 27, 2021
0 parents commit 4356aeb
Show file tree
Hide file tree
Showing 465 changed files with 73,528 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SASS_PATH=node_modules:src/styles
2 changes: 2 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
HTTPS=true
BROWSER=none
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run pre-commit
Binary file added Banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Terraform Labs, PTE.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Terra Station

![Banner](Banner.png)

**Terra Station** is a web application to interact with [Terra Core](https://github.com/terra-money/core).

Terra Station allows users to:

- View key macroeconomic metrics for Terra.
- View the balances and values of coins and tokens held in the connected wallet.
- View a list of transactions signed by the connected wallet.
- View and transfer NFTs from a custom list of NFT collections.
- View details of active validators on Terra.
- Send tokens to another Terra wallet.
- Swap currencies on the Terra network at the effective exchange rate.
- Stake LUNA to an active validator or unstake by undelegating.
- Earn rewards generated by staking LUNA.
- Participate in governance by voting on proposals and submitting your own.
- Upload and instantiate new contracts and query from and execute messages to existing contracts.
- Deposit and withdraw UST from Anchor Protocol.

## Running Terra Station

This project was bootstrapped with [Create React App](https://create-react-app.dev/).

Run Terra Station with the following commands:

```
git clone https://github.com/terra-money/station.git
cd station
npm i
npm run start
```

Runs the app in development mode.
Open http://localhost:3000 to view it in the browser.
Loading

0 comments on commit 4356aeb

Please sign in to comment.