Skip to content

Commit

Permalink
Use teztnets.com instead of .xyz (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymcmackin authored Jan 8, 2024
1 parent 0c0753e commit 9936653
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion docs/architecture/rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ By default, RPC servers are private and do not accept all requests from every cl

When you work with a Tezos client, such as the Octez command-line client or the Taquito SDK, you select a public RPC node to send transactions to, or you can use a private RPC node that you have access to.

If you're using a testnet, you can get a list of public RPC nodes for that network at https://teztnets.xyz.
If you're using a testnet, you can get a list of public RPC nodes for that network at https://teztnets.com.

Other sources of public nodes include:

Expand Down
4 changes: 2 additions & 2 deletions docs/developing/octez-client/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ Then, initialize it to use the RPC node of your choice:
1. Set the RPC node to use:
1. Get the URL of a public RPC node or a private node that you have access to.
For example, you can get the URL of a testnet node from https://teztnets.xyz/, such as `https://rpc.ghostnet.teztnets.xyz` for Ghostnet.
For example, you can get the URL of a testnet node from https://teztnets.com/, such as `https://rpc.ghostnet.teztnets.com` for Ghostnet.
1. Set your Octez client to use this node by running this command on the command line, replacing the Ghostnet URL with the URL that you copied:
```bash
octez-client --endpoint https://rpc.ghostnet.teztnets.xyz config update
octez-client --endpoint https://rpc.ghostnet.teztnets.com config update
```
If you are using a testnet, Octez shows a warning that you are not using Mainnet.
Expand Down
6 changes: 3 additions & 3 deletions docs/developing/testnets.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ last_update:
---

:::note
The current testnets and a description of what each is used for are listed at https://teztnets.xyz/.
The current testnets and a description of what each is used for are listed at https://teztnets.com/.
:::

## Testing without a node
Expand Down Expand Up @@ -56,7 +56,7 @@ As the protocol on `Ghostnet` migrates to the newly adopted amendment a few days
#### Getting tez testnet tokens

In order to get tez tokens to use when testing your application on testnet, you can use a faucet. You
can request some tokens from the [Ghostnet faucet](https://faucet.ghostnet.teztnets.xyz/)
can request some tokens from the [Ghostnet faucet](https://faucet.ghostnet.teztnets.com/)


### Protocol test networks
Expand Down Expand Up @@ -93,7 +93,7 @@ The two periodic protocols currently are `Mondaynet` and `Dailynet`.

### Public nodes and faucets

To connect to existing public nodes for these networks, or to get some testnet-only tez on these from a faucet, check [https://teztnets.xyz](https://teztnets.xyz/).
To connect to existing public nodes for these networks, or to get some testnet-only tez on these from a faucet, check [https://teztnets.com](https://teztnets.com/).

Other sources of public nodes include:

Expand Down
6 changes: 3 additions & 3 deletions docs/developing/wallet-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ On testnets, tokens are free so you don't have to spend real currency to work wi
The process for changing the network is different for each wallet type.
These steps are for the Temple wallet:

1. Go to https://teztnets.xyz/, which lists Tezos testnets.
1. Go to https://teztnets.com/, which lists Tezos testnets.
1. Click **Ghostnet**.
1. Copy one of the public RPC endpoints for Ghostnet, such as `https://rpc.ghostnet.teztnets.xyz`.
1. Copy one of the public RPC endpoints for Ghostnet, such as `https://rpc.ghostnet.teztnets.com`.
These URLs accept Tezos transactions from wallets and other applications.
1. In the Temple app, open the settings and then click **Default node (RPC)**.
1. Click the plus `+` symbol to add an RPC node.
Expand All @@ -47,7 +47,7 @@ Follow these steps to get testnet tez for the wallet:
1. From your wallet, get the address of your account, which starts with `tz1`.
This is the address that applications use to work with your wallet.

1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.xyz.
1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of tez to add to your wallet.
20 tez is enough to work with, and you can return to the faucet later if you need more tez.
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/build-an-nft-marketplace/part-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,14 +318,14 @@ Follow these steps to create a contract that is based on the template and implem
```

Then make sure that the account has tez on Ghostnet.
Use the faucet at https://faucet.ghostnet.teztnets.xyz to get tez if you need it.
Use the faucet at https://faucet.ghostnet.teztnets.com to get tez if you need it.

- To let Taqueria generate an account for you, follow these steps:

1. Run the command `taq deploy nft.tz -e "testing"`, which will fail because you do not have an account configured in Taqueria.
The response includes the address of an account that Taqueria generated for you and added to the `.taq/config.local.testing.json` file automatically.

1. Fund the account from the faucet at https://faucet.ghostnet.teztnets.xyz.
1. Fund the account from the faucet at https://faucet.ghostnet.teztnets.com.

1. Compile and deploy the contract to Ghostnet by running this command:

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/build-your-first-app/sending-transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,10 @@ Here is the completed code of the `App.svelte` file at the end of this section:
<p>Its balance in tez is {balance}.</p>
<p>
To get tez, go to <a
href="https://faucet.ghostnet.teztnets.xyz/"
href="https://faucet.ghostnet.teztnets.com/"
target="_blank"
>
https://faucet.ghostnet.teztnets.xyz/
https://faucet.ghostnet.teztnets.com/
</a>.
</p>
<p>
Expand Down
10 changes: 5 additions & 5 deletions docs/tutorials/build-your-first-app/wallets-tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Ghostnet is a network for testing Tezos applications where tokens are free so yo
1. From your wallet, get the address of your account, which starts with `tz1`.
This is the address that applications use to work with your wallet.

1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.xyz.
1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of tez to add to your wallet.
20 tez is enough to work with the tutorial application, and you can return to the faucet later if you need more tez.
Expand Down Expand Up @@ -138,8 +138,8 @@ If you add more components, you should move these objects to a separate file to
{#if wallet}
<p>The address of the connected wallet is {address}.</p>
<p>Its balance in tez is {balance}.</p>
<p>To get tez, go to <a href="https://faucet.ghostnet.teztnets.xyz/" target="_blank">
https://faucet.ghostnet.teztnets.xyz/
<p>To get tez, go to <a href="https://faucet.ghostnet.teztnets.com/" target="_blank">
https://faucet.ghostnet.teztnets.com/
</a>.
</p>
<p>
Expand Down Expand Up @@ -206,10 +206,10 @@ The complete `App.svelte` file looks like this:
<p>Its balance in tez is {balance}.</p>
<p>
To get tez, go to <a
href="https://faucet.ghostnet.teztnets.xyz/"
href="https://faucet.ghostnet.teztnets.com/"
target="_blank"
>
https://faucet.ghostnet.teztnets.xyz/
https://faucet.ghostnet.teztnets.com/
</a>.
</p>
<p>
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/create-an-nft/nft-taquito.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ The network changes to the Ghostnet testnet, as in this picture:

1. Send funds to the account from the testnet faucet:

1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.xyz/.
1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.com/.

1. Put the new account address in the **Or fund any address** field.

Expand Down Expand Up @@ -639,7 +639,7 @@ To test the application, you must have a Tezos wallet and a small amount of XTZ

1. Send funds to the wallet from the testnet faucet:

1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.xyz/.
1. Go to the Ghostnet faucet at https://faucet.ghostnet.teztnets.com/.

1. Put the wallet account address in the **Or fund any address** field.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/create-an-nft/nft-tznft.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Make sure to start Docker Desktop after you install it.
tznft init
```

The resulting file, named `tznft.config`, contains information about the Tezos networks that are available for you to work with, including the [Ghostnet](https://teztnets.xyz/ghostnet-about) test network and the local sandbox that you set up in the next steps.
The resulting file, named `tznft.config`, contains information about the Tezos networks that are available for you to work with, including the [Ghostnet](https://teztnets.com/ghostnet-about) test network and the local sandbox that you set up in the next steps.
The `tznft` tool requires this file, so the commands in the following steps work only from the directory that you ran `tznft init` in.

4. Check that the default active network is "sandbox:"
Expand Down Expand Up @@ -465,7 +465,7 @@ You can do this in either of these two ways:
tznft add-alias my-account $TEZOS_PRIVATE_KEY
```

1. Add funds to the new wallet by going to the Ghostnet faucet at https://faucet.ghostnet.teztnets.xyz/, pasting the wallet's hash in the "Or fund any address" field, and clicking a button to request tokens.
1. Add funds to the new wallet by going to the Ghostnet faucet at https://faucet.ghostnet.teztnets.com/, pasting the wallet's hash in the "Or fund any address" field, and clicking a button to request tokens.
The wallet needs tokens to pay the fees to create the collection and mint the tokens on Ghostnet.
1. Create the collection on the testnet.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/dapp/part-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ The default Tezos testing testnet is called **Ghostnet**.
Warning: the faucet field in network configs has been deprecated and will be ignored.
A keypair with public key hash tz1XXXXXXXXXXXXXXXXXXXXXX was generated for you.
To fund this account:
1. Go to https://teztnets.xyz and click "Faucet" of the target testnet.
1. Go to https://teztnets.com and click "Faucet" of the target testnet.
2. Copy and paste the above key into the 'wallet address field.
3. Request some Tez (Note that you might need to wait for a few seconds for the network to register the funds).
No operations performed.
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/smart-contract/archetype.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ https://github.com/completium/completium-cli/issues/45
Before you deploy your contract to the main Tezos network (referred to as *Mainnet*), you can deploy it to a testnet.
Testnets are useful for testing Tezos operations because testnets provide tokens for free so you can work with them without spending real tokens.

Tezos testnets are listed on this site: https://teztnets.xyz/.
Tezos testnets are listed on this site: https://teztnets.com/.

The [Ghostnet](https://teztnets.xyz/ghostnet-about) testnet is a good choice for testing because it is intended to be long-lived, as opposed to shorter-term testnets that allow people to test new Tezos features.
The [Ghostnet](https://teztnets.com/ghostnet-about) testnet is a good choice for testing because it is intended to be long-lived, as opposed to shorter-term testnets that allow people to test new Tezos features.

By default, completium-cli uses Ghostnet, but these steps verify the network:

Expand Down Expand Up @@ -143,7 +143,7 @@ You could use the default accounts that are included in completium-cli, but foll
1. Copy the address for the account, which is labeled as the "public key hash" in the response to the previous command.
The address starts with "tz1".

1. On the testnets page at https://teztnets.xyz/, click the faucet link for the Ghostnet testnet, which is at https://faucet.ghostnet.teztnets.xyz.
1. On the testnets page at https://teztnets.com/, click the faucet link for the Ghostnet testnet, which is at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of XTZ to add to your wallet.
1 XTZ is enough for the tutorial.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/smart-contract/cameligo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Ghostnet is a network for testing Tezos applications where tokens are free so yo
1. From your wallet, get the address of your account, which starts with `tz1`.
This is the address that applications use to work with your wallet.

1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.xyz.
1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of tez to add to your wallet.
20 tez is enough to work with the tutorial contract, and you can return to the faucet later if you need more tez.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/smart-contract/jsligo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Ghostnet is a network for testing Tezos applications where tokens are free so yo
1. From your wallet, get the address of your account, which starts with `tz1`.
This is the address that applications use to work with your wallet.

1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.xyz.
1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of tez to add to your wallet.
20 tez is enough to work with the tutorial contract, and you can return to the faucet later if you need more tez.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/smart-contract/smartpy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Ghostnet is a network for testing Tezos applications where tokens are free so yo
1. From your wallet, get the address of your account, which starts with `tz1`.
This is the address that applications use to work with your wallet.

1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.xyz.
1. Go to the Ghostnet faucet page at https://faucet.ghostnet.teztnets.com.

1. On the faucet page, paste your wallet address into the input field labeled "Or fund any address" and click the button for the amount of tez to add to your wallet.
20 tez is enough to work with the tutorial contract, and you can return to the faucet later if you need more tez.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/smart-rollup/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ To continue your work with Smart Rollups, you can you can explore examples from
- [Smart Rollup kernel SDK](https://gitlab.com/tezos/tezos/-/tree/master/src/kernel_sdk)
- [Smart Rollup kernel examples](https://gitlab.com/tezos/kernel-gallery/-/tree/main/)
- [Tezos Smart Rollups resources](https://airtable.com/shrvwpb63rhHMiDg9/tbl2GNV1AZL4dkGgq)
- [Tezos testnets](https://teztnets.xyz/)
- [Tezos testnets](https://teztnets.com/)
- [Originating the installer kernel](https://tezos.stackexchange.com/questions/4784/how-to-originating-a-smart-rollup-with-an-installer-kernel/5794#5794)
- [Docker documentation](https://docs.docker.com/get-started/)

0 comments on commit 9936653

Please sign in to comment.