Skip to content

Commit

Permalink
Migrate to station
Browse files Browse the repository at this point in the history
docs.terra -> docs.station
  • Loading branch information
evanorti committed Aug 24, 2023
1 parent 1bb73d3 commit ba56420
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Terra Docs

<div align="center">
<a href="https://docs.terra.money/">
<a href="https://docs.station.money/">
<img src="./static/img/docs_logo.svg" width=500>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/develop/feather-js/ibc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ const result = await lcd.tx.broadcast(tx, 'pisco-1');
console.log(result);
```

Instructions for initializing LCDClient can be found in the [common examples](https://docs.terra.money/develop/feather-js/common-examples#configuring-lcdclient) section.
Instructions for initializing LCDClient can be found in the [common examples](https://docs.station.money/develop/feather-js/common-examples#configuring-lcdclient) section.
2 changes: 1 addition & 1 deletion docs/develop/feather-js/terra-classic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import Admonition from '@theme/Admonition';

<Admonition type='caution'>

Feather.js doesn't support Terra Classic at this time. Please use the [Terra Classic docs site](https://classic-docs.terra.money/) for more information.
Feather.js doesn't support Terra Classic at this time. Please use the [Terra Classic docs site](https://classic-docs.station.money/) for more information.

</Admonition>
2 changes: 1 addition & 1 deletion docs/develop/open-source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Ethereum | Solana | Terra | Description
[ERC721](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/token/ERC721) | [Token Metadata Standard](https://docs.metaplex.com/token-metadata/Versions/v1.0.0/nft-standard) | [CW721](https://github.com/CosmWasm/cw-nfts/tree/67afea4c31824ad55839ff3f0e18331cdce9306d/contracts/cw721-metadata-onchain) | Base implementation for creating NFTs.
[PaymentSplitter](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/finance/PaymentSplitter.sol) | | [cw-payment-splitter](https://github.com/ebaker/cw-payment-splitter) | Contract to split incoming payments between a number of addresses.
[Gnosis Safe](https://gnosis.io/safe/) | [SPL Governance](https://github.com/solana-labs/solana-program-library/tree/master/governance) | [CW3](https://github.com/CosmWasm/cw-plus/tree/0.9.x/contracts/cw3-fixed-multisig) | Contracts for making DAOs or managing multisigs.
[Proxy](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/proxy) | Native upgrades | [Native upgrades](https://docs.terra.money/docs/develop/dapp/quick-start/contract-migration.html) | Upgradable smart contracts.
[Proxy](https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/proxy) | Native upgrades | [Native upgrades](https://docs.station.money/docs/develop/dapp/quick-start/contract-migration.html) | Upgradable smart contracts.
[Multicall](https://github.com/makerdao/multicall) | | [Multicall](https://github.com/scb-10x/multicall) | Query multiple contracts in a single request.
| | [merkle-distributor](https://github.com/saber-hq/merkle-distributor) | [cw20-merkle-airdrop](https://github.com/CosmWasm/cw-plus/tree/0.9.x/contracts/cw20-merkle-airdrop) | Contract to allow airdropping tokens to a large list of addresses.
[ENS (Ethereum Name Service)](https://github.com/ensdomains/ens-contracts) | [Name service program](https://github.com/solana-labs/solana-program-library/tree/master/name-service) | [TNS (Terra Name Service)](https://github.com/jormungandr12/tns) | Contracts for mapping string domains to on-chain addresses.
Expand Down
4 changes: 2 additions & 2 deletions docs/develop/resources.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Developer links

- [Terra Docs](http://docs.terra.money) - The official documentation for Terra.
- [Terra Docs](http://docs.station.money) - The official documentation for Terra.
- [Terra Wiki](https://terrawiki.org/) - Maintained by the community, for the community.
- [Terra Academy](https://academy.terra.money/) - Learn CosmWasm Smart Contract development!
- [Feather.js](https://docs.terra.money/develop/feather-js) - Interact with the Terra blockchain within JavaScript runtimes such as Node.js and the browser.
- [Feather.js](https://docs.station.money/develop/feather-js) - Interact with the Terra blockchain within JavaScript runtimes such as Node.js and the browser.
- [Terra.py](https://terra-money.github.io/terra.py/) - The official documentation for the Terra Python SDK.
- [Agora developer forum](https://agora.terra.money/c/developer/20) - A community-managed forum to address commonly asked questions by developers.

Expand Down
12 changes: 6 additions & 6 deletions docs/develop/terrain/cw20-factory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ To modify the _`cw20_factory_token`_ contract, follow the procedure below.
First, add the [CW20 Base](https://github.com/CosmWasm/cw-plus/tree/main/contracts/cw20-base), which implements the base CW20 token functionalities. This allows for:

- the smart contract to be easily deployed to LocalTerra.
- extended functionality using the [migration implementation](https://docs.terra.money/docs/develop/dapp/quick-start/contract-migration.html).
- extended functionality using the [migration implementation](https://docs.station.money/docs/develop/dapp/quick-start/contract-migration.html).

To add the CW20 Base to the _`cw20_factory_token`_ contract, do the following.

Expand Down Expand Up @@ -594,11 +594,11 @@ use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct InstantiateMsg {
/* Denomination of the stable asset
https://docs.terra.money/docs/develop/module-specifications/spec-market.html#market */
https://docs.station.money/docs/develop/module-specifications/spec-market.html#market */
pub stable_denom: String,

/* Id of the contract uploaded for the first time to the chain
https://docs.terra.money/docs/develop/module-specifications/spec-wasm.html#code-id */
https://docs.station.money/docs/develop/module-specifications/spec-wasm.html#code-id */
pub token_contract_code_id: u64,
}

Expand Down Expand Up @@ -664,12 +664,12 @@ use cw_storage_plus::Item;
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct Config {
/* Denomination of the stable asset
https://docs.terra.money/docs/develop/module-specifications/spec-market.html#market */
https://docs.station.money/docs/develop/module-specifications/spec-market.html#market */
pub stable_denom: String,

/* Id of the contract uploaded to the chain used to instantiate
the different tokens
https://docs.terra.money/docs/develop/module-specifications/spec-wasm.html#code-id */
https://docs.station.money/docs/develop/module-specifications/spec-wasm.html#code-id */
pub token_contract_code_id: u64,
}

Expand Down Expand Up @@ -1042,7 +1042,7 @@ fn query_minted_tokens(deps: Deps) -> StdResult<MintedTokens> {

/* In case you want to upgrade this contract you can find information about
how to migrate the contract in the following link:
https://docs.terra.money/docs/develop/dapp/quick-start/contract-migration.html*/
https://docs.station.money/docs/develop/dapp/quick-start/contract-migration.html*/
#[cfg_attr(not(feature = "library"), entry_point)]
pub fn migrate(_deps: DepsMut, _env: Env, _msg: MigrateMsg) -> StdResult<Response> {
Ok(Response::default())
Expand Down
2 changes: 1 addition & 1 deletion docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import homeCards from '/src/components/Cards/card-data/home-cards';

# Terra Docs

Welcome to the official documentation for Terra, a decentralized, [open-source blockchain](https://github.com/terra-money/core) which hosts a vibrant ecosystem of decentralized applications (dApps) and offers cutting-edge [developer tools](./develop/which-tools.mdx). If you are looking for the documentation for Terra Classic, visit the [Terra Classic docs site](https://classic-docs.terra.money/).
Welcome to the official documentation for Terra, a decentralized, [open-source blockchain](https://github.com/terra-money/core) which hosts a vibrant ecosystem of decentralized applications (dApps) and offers cutting-edge [developer tools](./develop/which-tools.mdx). If you are looking for the documentation for Terra Classic, visit the [Terra Classic docs site](https://classic-docs.station.money/).

<CardSection cards={homeCards} />
2 changes: 1 addition & 1 deletion docs/migration/exchange-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ It will be up to each team to decide whether their tokens will be supported on t
- Old format:
https://phoenix-lcd.terra.dev/txs/136825A738053AC6B7E8D03FB1C43696BA560AD9A8D5DB8AE49C55642CE64310

Please visit the following link for more information: https://docs.terra.money/docs/develop/guides/sign-with-multisig.html
Please visit the following link for more information: https://docs.station.money/docs/develop/guides/sign-with-multisig.html

### How do I get the "threshold number of signatures"?

Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = async function config() {
return {
title: 'Terra Docs',
tagline: 'The official docs for the Terra blockchain',
url: 'https://docs.terra.money',
url: 'https://docs.station.money',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
Expand All @@ -29,7 +29,7 @@ module.exports = async function config() {
{
siteId: "1",
matomoUrl: "https://terradocs.matomo.cloud/",
siteUrl: "https://docs.terra.money",
siteUrl: "https://docs.station.money",
},
],
],
Expand Down

0 comments on commit ba56420

Please sign in to comment.