From d3175160d2ef55ca43c4834b5a9e3d458aa76775 Mon Sep 17 00:00:00 2001 From: ronny-mysten <118224482+ronny-mysten@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:47:23 -0600 Subject: [PATCH] [docs] Removing Sui Explorer refs (#16692) ## Description Describe the changes or additions included in this PR. ## Test Plan How did you test the new or updated feature? --- If your changes are not user-facing and do not break anything, you can skip the following section. Otherwise, please briefly describe what has changed under the Release Notes section. ### Type of Change (Check all that apply) - [ ] protocol change - [ ] user-visible impact - [ ] breaking change for a client SDKs - [ ] breaking change for FNs (FN binary must upgrade) - [ ] breaking change for validators or node operators (must upgrade binaries) - [ ] breaking change for on-chain data layout - [ ] necessitate either a data wipe or data migration ### Release notes --- .../concepts/tokenomics/gas-in-sui.mdx | 6 ++--- .../developer/advanced/asset-tokenization.mdx | 2 +- .../guides/developer/app-examples/plinko.mdx | 2 +- .../developer/first-app/client-tssdk.mdx | 2 +- .../developer/getting-started/connect.mdx | 18 ++++++-------- .../developer/getting-started/get-address.mdx | 2 +- .../getting-started/local-network.mdx | 24 ++++--------------- .../getting-started/sui-environment.mdx | 3 +-- .../guides/developer/sui-101/using-events.mdx | 5 ---- .../content/guides/operator/sui-full-node.mdx | 9 +------ .../guides/operator/validator-tasks.mdx | 2 +- .../references/contribute/style-guide.mdx | 22 +++++++---------- 12 files changed, 29 insertions(+), 68 deletions(-) diff --git a/docs/content/concepts/tokenomics/gas-in-sui.mdx b/docs/content/concepts/tokenomics/gas-in-sui.mdx index c0c4a5e3ff211..4a33dbb6d547b 100644 --- a/docs/content/concepts/tokenomics/gas-in-sui.mdx +++ b/docs/content/concepts/tokenomics/gas-in-sui.mdx @@ -13,10 +13,10 @@ Finally, Sui [Storage mechanics](storage-fund.mdx#storage-fund-rewards) provide `net_gas_fees = computation_gas_fee + storage_gas_fee - storage_rebate` -The information on net gas fees displays in [Sui Explorer](https://suiexplorer.com/) for each transaction block: +The information on net gas fees displays in a Sui network explorer for each transaction block: -![Gas Fees displayed on Sui Explorer](images/gas-fees-explorer.png "The Gas Fees section displayed on Sui Explorer") -_The Gas Fees section for a transaction block displayed on Sui Explorer_ +![Gas Fees displayed on a Sui network explorer](images/gas-fees-explorer.png "The Gas Fees section displayed on a Sui network explorer") +_The Gas Fees section for a transaction block displayed on a Sui network explorer_ ## Gas prices {#gas-prices} diff --git a/docs/content/guides/developer/advanced/asset-tokenization.mdx b/docs/content/guides/developer/advanced/asset-tokenization.mdx index 1c7094c2b2cc4..7155556d71616 100644 --- a/docs/content/guides/developer/advanced/asset-tokenization.mdx +++ b/docs/content/guides/developer/advanced/asset-tokenization.mdx @@ -943,7 +943,7 @@ In a terminal or console within the project's setup directory, utilize the follo After executing the command, the console displays the effects of the transaction. - By searching the transaction digest in the Sui Explorer, you can locate the created objects. Subsequently, select and save the `TransferPolicy ID` and the `ProtectedTP ID` from these objects into the respective fields within your .env file. + By searching the transaction digest on a Sui network explorer, you can locate the created objects. Subsequently, select and save the `TransferPolicy ID` and the `ProtectedTP ID` from these objects into the respective fields within your .env file. - **Add Rules** diff --git a/docs/content/guides/developer/app-examples/plinko.mdx b/docs/content/guides/developer/app-examples/plinko.mdx index 1895d0004a894..2b8dfcf1c252b 100644 --- a/docs/content/guides/developer/app-examples/plinko.mdx +++ b/docs/content/guides/developer/app-examples/plinko.mdx @@ -784,7 +784,7 @@ The [`PlinkoSettings` component](https://github.com/MystenLabs/plinko-poc/blob/m ## User interaction and feedback -Game Initiation: After selecting the desired number of balls and setting the bet size for each, players can initiate a new game by pressing the **Play** button. This action starts the game, with the button becoming disabled during gameplay to prevent new games from being initiated until the current game concludes and the last ball has reached the end. Links are also provided for players to view game details on the Sui explorer for transparency and engagement. +Game Initiation: After selecting the desired number of balls and setting the bet size for each, players can initiate a new game by pressing the **Play** button. This action starts the game, with the button becoming disabled during gameplay to prevent new games from being initiated until the current game concludes and the last ball has reached the end. Links are also provided for players to view game details on a Sui network explorer for transparency and engagement. ## Related links diff --git a/docs/content/guides/developer/first-app/client-tssdk.mdx b/docs/content/guides/developer/first-app/client-tssdk.mdx index 3accd227a42c3..a78fb882325b2 100644 --- a/docs/content/guides/developer/first-app/client-tssdk.mdx +++ b/docs/content/guides/developer/first-app/client-tssdk.mdx @@ -200,7 +200,7 @@ function OwnedObjects({ address }: { address: string }) {