diff --git a/README.md b/README.md
index d43af58c6..dddfcbc85 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# Terra Docs
diff --git a/docs/develop/feather-js/ibc.mdx b/docs/develop/feather-js/ibc.mdx
index f77650f2d..a09d70015 100644
--- a/docs/develop/feather-js/ibc.mdx
+++ b/docs/develop/feather-js/ibc.mdx
@@ -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.
diff --git a/docs/develop/feather-js/terra-classic.mdx b/docs/develop/feather-js/terra-classic.mdx
index 821cff983..e9f915c0d 100644
--- a/docs/develop/feather-js/terra-classic.mdx
+++ b/docs/develop/feather-js/terra-classic.mdx
@@ -4,6 +4,6 @@ import Admonition from '@theme/Admonition';
-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.
diff --git a/docs/develop/open-source.mdx b/docs/develop/open-source.mdx
index bd629228f..9e6c23e95 100644
--- a/docs/develop/open-source.mdx
+++ b/docs/develop/open-source.mdx
@@ -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.
diff --git a/docs/develop/resources.mdx b/docs/develop/resources.mdx
index 53b709a6d..72ce532bd 100644
--- a/docs/develop/resources.mdx
+++ b/docs/develop/resources.mdx
@@ -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.
diff --git a/docs/develop/terrain/cw20-factory.mdx b/docs/develop/terrain/cw20-factory.mdx
index 60f00d5ec..51e19aade 100644
--- a/docs/develop/terrain/cw20-factory.mdx
+++ b/docs/develop/terrain/cw20-factory.mdx
@@ -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.
@@ -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,
}
@@ -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,
}
@@ -1042,7 +1042,7 @@ fn query_minted_tokens(deps: Deps) -> StdResult {
/* 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 {
Ok(Response::default())
diff --git a/docs/index.mdx b/docs/index.mdx
index b6e344d0e..b9be57452 100644
--- a/docs/index.mdx
+++ b/docs/index.mdx
@@ -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/).
diff --git a/docs/migration/exchange-faq.mdx b/docs/migration/exchange-faq.mdx
index 34aec93ca..082c722be 100644
--- a/docs/migration/exchange-faq.mdx
+++ b/docs/migration/exchange-faq.mdx
@@ -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"?
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 1ad9304c8..2ff7ea7ec 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -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',
@@ -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",
},
],
],