Skip to content

Commit

Permalink
fix (devx) update explorer url
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-tortora committed Nov 18, 2024
1 parent b4e3741 commit 4840111
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/content/about-iota/iota-wallet/how-to/stake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To start staking your IOTA tokens, follow these steps:

![Set Stake Amount](/img/about-iota/iota-wallet/how-to/stake/set-stake-amount.png)

5. Track the transaction in the [Explorer](https://explorer.iota.cafe/) by clicking `View on Explorer`.
5. Track the transaction in the [Explorer](https://explorer.rebased.iota.org/) by clicking `View on Explorer`.

![View on Explorer](/img/about-iota/iota-wallet/how-to/stake/view-on-explorer.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/content/about-iota/tokenomics/gas-in-iota.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Finally, storage rebates are provided whenever a transaction deletes previously

`net_gas_fees = computation_fee + storage_deposit - storage_rebate`

The information on net gas fees displays in the [IOTA network explorer](https://explorer.iota.cafe/) for each transaction block.
The information on net gas fees displays in the [IOTA network explorer](https://explorer.rebased.iota.org/) for each transaction block.

## Gas prices

Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/getting-started/client-tssdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function OwnedObjects({ address }: { address: string }) {
<ul>
{data.data.map((object) => (
<li key={object.data?.objectId}>
<a href={`https://explorer.iota.cafe/object/${object.data?.objectId}`}>
<a href={`https://explorer.rebased.iota.org/object/${object.data?.objectId}`}>
{object.data?.objectId}
</a>
</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/content/developer/getting-started/local-network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ The response resembles the following, but with different IDs:

:::tip explorer

In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the [Explorer](https://explorer.iota.cafe/) page in the top right corner.
In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [http://explorer.rebased.iota.org/?network=http%3A%2F%2F127.0.0.1%3A9000](http://explorer.rebased.iota.org/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the [Explorer](http://explorer.rebased.iota.org/) page in the top right corner.

:::

:::warning HTTPS only

The [IOTA Explorer](https://explorer.iota.cafe) requires a secure HTTPS connection. If your local network doesn't support HTTPS, consider [running your own instance of the Explorer](https://github.com/iotaledger/iota/tree/develop/apps/explorer#iota-explorer).
The [IOTA Explorer](https://explorer.rebased.iota.org) requires a secure HTTPS connection. If your local network doesn't support HTTPS, consider [running your own instance of the Explorer](https://github.com/iotaledger/iota/tree/develop/apps/explorer#iota-explorer).

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import questions from '/json/developer/iota-101/move-overview/package-upgrades/i
A Move package consists of one or more modules that define how the package interacts with on-chain objects.
These modules are written in Move, compiled into a package object, and then published on-chain.
Once a package is on the IOTA network,
its content and logic are transparent and accessible to anyone through an [IOTA network explorer](https://explorer.iota.cafe/).
its content and logic are transparent and accessible to anyone through an [IOTA network explorer](https://explorer.rebased.iota.org/).

## Packages Are Immutable

Expand Down
4 changes: 2 additions & 2 deletions docs/content/operator/snapshots.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To restore from a RocksDB snapshot, follow these steps:
--skip-indexes \
--no-sign-request
```
- `--epoch`: The epoch that you want to download, for example `200`. The buckets hosted by the IOTA Foundation will only keep the last 90 epochs, you can check the most recent epoch on the [IOTA Explorer](https://explorer.iota.cafe).
- `--epoch`: The epoch that you want to download, for example `200`. The buckets hosted by the IOTA Foundation will only keep the last 90 epochs, you can check the most recent epoch on the [IOTA Explorer](https://explorer.rebased.iota.org).
- `--latest`: Rather than explicitly passing a epoch via `--epoch`, you can pass the `--latest` flag, which will automatically select the latest snapshot`
- `--network`: Network to download snapshot for. Defaults to "mainnet".
- `--path`: Path to snapshot directory on local filesystem.
Expand Down Expand Up @@ -99,7 +99,7 @@ The following steps can be used to restore a node from a Formal snapshot:
--network <NETWORK> --snapshot-bucket <BUCKET-NAME> --snapshot-bucket-type <TYPE> \
--path <PATH-TO-NODE-DB> --num-parallel-downloads 50 --no-sign-request
```
- `--epoch`: The epoch that you want to download, for example `200`. The buckets hosted by the IOTA Foundation will only keep the last 90 epochs, you can check the most recent epoch on the [IOTA Explorer](https://explorer.iota.cafe).
- `--epoch`: The epoch that you want to download, for example `200`. The buckets hosted by the IOTA Foundation will only keep the last 90 epochs, you can check the most recent epoch on the [IOTA Explorer](https://explorer.rebased.iota.org).
- `--genesis`: The path to the location of the network's `genesis.blob`.
- `--network`: Network to download snapshot for. Defaults to "mainnet".
- `--path`: Path to snapshot directory on local filesystem.
Expand Down
4 changes: 2 additions & 2 deletions docs/site/src/components/constant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const Networks = {
indexerRpc: 'https://indexer.testnet.iota.cafe',
graphqlRpc: 'https://graphql.testnet.iota.cafe',
faucetUrl: 'https://faucet.testnet.iota.cafe',
explorerUrl: 'https://explorer.iota.cafe/?network=testnet'
explorerUrl: 'https://explorer.rebased.iota.org/?network=testnet'
},
iota_move_devnet: {
baseToken: 'IOTA Token (no value)',
Expand All @@ -180,7 +180,7 @@ export const Networks = {
indexerRpc: 'https://indexer.devnet.iota.cafe',
graphqlRpc: 'https://graphql.devnet.iota.cafe',
faucetUrl: 'https://faucet.devnet.iota.cafe',
explorerUrl: 'https://explorer.iota.cafe/?network=devnet'
explorerUrl: 'https://explorer.rebased.iota.org/?network=devnet'
},
iota_localnet: {
baseToken:"IOTA Token",
Expand Down

0 comments on commit 4840111

Please sign in to comment.