Skip to content

Commit a4362db

Browse files
kaz-CDCgitbook-bot
authored andcommitted
GITBOOK-365: Remove and Update Cronoscan Contents
1 parent 0367b6e commit a4362db

File tree

17 files changed

+181
-42
lines changed

17 files changed

+181
-42
lines changed

.gitbook/assets/BraveWallet.png

179 KB
Loading
138 KB
Loading
141 KB
Loading
110 KB
Loading

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
* [Contract Development on Testnet](for-dapp-developers/cronos-smart-contract/contract-deployment.md)
3636
* [Contract Deployment and Verification](for-dapp-developers/cronos-smart-contract/contract-verification.md)
3737
* [Contract Verification Export: Cronoscan To Cronos Explorer](for-dapp-developers/cronos-smart-contract/contract-verification-export-cronoscan-to-cronos-explorer.md)
38+
* [Contract Verification Export: Etherscan To Cronos Explorer](for-dapp-developers/cronos-smart-contract/contract-verification-export-etherscan-to-cronos-explorer.md)
3839
* [Best Practices](for-dapp-developers/cronos-smart-contract/defi-practice.md)
3940
* [Token Contract Addresses](for-dapp-developers/cronos-smart-contract/token-contract-addresses.md)
4041
* [💻 dApp Creation](for-dapp-developers/chain-integration/README.md)
@@ -137,7 +138,6 @@
137138

138139
* [Block Explorer and API Keys](block-explorers/block-explorer-and-api-keys.md)
139140
* [Cronos Explorer](https://explorer.cronos.org)
140-
* [Cronoscan](https://cronoscan.com/)
141141

142142
## CRONOS CHAIN PROTOCOL
143143

block-explorers/block-explorer-and-api-keys.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@
44

55
{% tabs %}
66
{% tab title="Cronos Mainnet" %}
7-
* **"Cronos Explorer"** - [https://explorer.cronos.org/](https://explorer.cronos.org/)
8-
* [https://cronos.org/explorer](https://cronos.org/explorer/)
9-
* [https://cronoscan.com/](https://cronoscan.com)
7+
* **Cronos Explorer:** [https://explorer.cronos.org/](https://explorer.cronos.org/)
108
{% endtab %}
119

1210
{% tab title="Testnet" %}
13-
* **"Cronos Testnet Explorer"** - [https://explorer.cronos.org/testnet](https://explorer.cronos.org/testnet)
14-
* [https://cronos.org/explorer/testnet3](https://cronos.org/explorer/testnet3)
11+
* **Cronos Testnet Explorer:** [https://explorer.cronos.org/testnet](https://explorer.cronos.org/testnet)
1512
{% endtab %}
1613
{% endtabs %}
1714

cronos-play/getting-started_cpp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ make # Compile with default compiler
110110
#include "sdk/include/defi-wallet-core-cpp/src/nft.rs.h" // crypto.org chain nft support
111111
#include "sdk/include/defi-wallet-core-cpp/src/uint.rs.h" // uint256 type support
112112
#include "sdk/include/defi-wallet-core-cpp/src/ethereum.rs.h" // dynamic contract support
113-
#include "sdk/include/extra-cpp-bindings/src/lib.rs.h" // etherscan/cronoscan, crypto.com pay, wallet connect support
113+
#include "sdk/include/extra-cpp-bindings/src/lib.rs.h" // etherscan, crypto.com pay, wallet connect support
114114
#include "sdk/include/rust/cxx.h" // the important data types, e.g., rust::String, rust::str, etc
115115

116116
using namespace rust;
@@ -212,7 +212,7 @@ function `new_privatekey_from_bytes` - Constructs private key from hex bytes
212212

213213
### ERC20, ERC721, ERC1155 related functions
214214

215-
#### [ERC20](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg\_1\_1defi\_\_wallet\_\_core\_1\_1\_erc20)
215+
#### [ERC20](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg_1_1defi__wallet__core_1_1_erc20)
216216

217217
function `balance_of` - Returns the decimal amount of tokens owned by account\_address.
218218

@@ -278,7 +278,7 @@ uint8_t decimals = erc20.decimals();
278278
assert(decimals == 6);
279279
```
280280

281-
#### [ERC721](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg\_1\_1defi\_\_wallet\_\_core\_1\_1\_erc721)
281+
#### [ERC721](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg_1_1defi__wallet__core_1_1_erc721)
282282

283283
function `balance_of` - Returns the number of tokens in owner's account\_address.
284284

@@ -350,7 +350,7 @@ function `safe_transfer_from_with_data` - Safely transfers token\_id token from
350350
) const
351351
```
352352

353-
#### [ERC1155](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg\_1\_1defi\_\_wallet\_\_core\_1\_1\_erc1155)
353+
#### [ERC1155](https://leslie-h-cheung.gitbook.io/cronos-play-c++-sdk/readme-1/classes/structorg_1_1defi__wallet__core_1_1_erc1155)
354354

355355
function `balance_of` - Returns the amount of tokens of `token_id` owned by `account_address`.
356356

cronos-play/getting-started_unreal/quick-start/get-tokens-or-transactions.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Get Tokens or Transactions
22

3-
Tokens and Transactions can be queried by Blockscout api or Cronoscan api. Please find the Blockscout api address or apply the Cronoscan API key before using them:
4-
53
{% content-ref url="../../../block-explorers/block-explorer-and-api-keys.md" %}
64
[block-explorer-and-api-keys.md](../../../block-explorers/block-explorer-and-api-keys.md)
75
{% endcontent-ref %}
@@ -70,8 +68,6 @@ returns the ERC721 transfers of a given address of a given contract.
7068

7169
default option is by address
7270

73-
The API key can be obtained from https://cronoscan.com
74-
7571
<figure><img src="../../../.gitbook/assets/cronos-gamefi-blueprint-geterc721transferhistory" alt=""><figcaption></figcaption></figure>
7672

7773
* `Address`: the address to query

for-dapp-developers/chain-integration/public-rpc-endpoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you are sending large numbers of transactions from your backend, consider set
2727
* **EVM HTTP JSON RPC (Web3 compatible)**
2828
* [https://evm.cronos.org/](https://evm.cronos.org/)
2929
* **Block explorer**
30-
* [https://cronoscan.com/](https://cronoscan.com/)
30+
* [https://explorer.cronos.org/](https://explorer.cronos.org/)
3131
* **Tendermint RPC**
3232
* [https://rpc.cronos.org/](https://rpc.cronos.org/)
3333
* **Cosmos RESTful**
@@ -44,7 +44,7 @@ If you are sending large numbers of transactions from your backend, consider set
4444
* **EVM HTTP JSON RPC (Web3 compatible)**
4545
* [https://evm-t3.cronos.org/](https://evm-t3.cronos.org/)
4646
* **Block explorer**
47-
* [https://cronos.org/explorer/testnet3/](https://testnet.cronoscan.com/)
47+
* [https://explorer.cronos.org/testnet](https://explorer.cronos.org/testnet)
4848
* **Tendermint RPC**
4949
* [https://rpc-t3.cronos.org/](https://rpc-t3.cronos.org/)
5050
* **Cosmos RESTful**

for-dapp-developers/cronos-smart-contract/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ canonicalUrl: https://docs.cronos.org/getting-started/cronos-smart-contract.html
3535

3636
Smart contracts hold an essential role in the blockchain ecosystem of dApps. It is critical to ensure they work as intended and remain as secure as possible. Complete and well-design smart contracts save us from unnecessary financial losses and help the project stay secure. Smart contract verification is sometimes overlooked when teams are rushing to ship, but it is vital to verify smart contracts on their correctness, validity and security.&#x20;
3737

38-
The following documentation demonstrates the deployment and verification of a smart contract by Solidity to Cronos. `@openzeppelin/contracts` is used for the demo Solidity script. Both Truffle and Hardhat for deployment are included in this documentation and you shall use one of your choices. We also walk through the steps of verifying a smart contract with the Hardhat Cronoscan plugin on Cronos. &#x20;
38+
The following documentation demonstrates the deployment and verification of a smart contract by Solidity to Cronos. `@openzeppelin/contracts` is used for the demo Solidity script. Both Truffle and Hardhat for deployment are included in this documentation and you shall use one of your choices. &#x20;
3939

4040
## Pre-requisites
4141

@@ -52,7 +52,7 @@ You can refer to [Downloading and installing Node.js and npm](https://docs.npmjs
5252

5353
### Sufficient funds on deployer address
5454

55-
You can access to [faucet](https://cronos.org/faucet) to obtain testnet TCRO and [explorer](https://testnet.cronoscan.com/) to view the address details.
55+
You can access to [faucet](https://cronos.org/faucet) to obtain testnet TCRO and [explorer](https://explorer.cronos.org/testnet) to view the address details.
5656

5757
### Git clone `smart-contract-example`
5858

0 commit comments

Comments
 (0)