|
3 | 3 | The EVM Block Explorer example demonstrates how an ICP smart contract can obtain information directly from other blockchain networks. Using HTTPS outcalls, smart contracts on ICP can interact with other networks without needing to go through a third-party service such as a bridge or an oracle. Supported interactions with other chains include querying network data, signing transactions, and submitting transactions directly to other networks.
|
4 | 4 | In this example, you'll also see how to sign transactions with canister ECDSA or Schnorr signatures.
|
5 | 5 |
|
6 |
| -This application's logic is written in [Rust](https://internetcomputer.org/docs/building-apps/developer-tools/cdks/rust/intro-to-rust), a primary programming language for developing canisters on ICP. |
7 |
| - |
8 | 6 | ## Deploying from ICP Ninja
|
9 | 7 |
|
10 | 8 | When viewing this project in ICP Ninja, you can deploy it directly to the mainnet for free by clicking "Deploy" in the upper right corner. Open this project in ICP Ninja:
|
11 | 9 |
|
12 | 10 | [](https://icp.ninja/i?g=https://github.com/dfinity/examples/rust/evm_block_explorer)
|
13 | 11 |
|
14 |
| -## Project structure |
| 12 | +## Build and deploy from the command-line |
| 13 | + |
| 14 | +### 1. [Download and install the IC SDK.](https://internetcomputer.org/docs/building-apps/getting-started/install) |
15 | 15 |
|
16 |
| -The `/backend` folder contains the Rust smart contract: |
| 16 | +### 2. Download your project from ICP Ninja using the 'Download files' button on the upper left corner, or [clone the GitHub examples repository.](https://github.com/dfinity/examples/) |
17 | 17 |
|
18 |
| -- `Cargo.toml`, which defines the crate that will form the backend |
19 |
| -- `lib.rs`, which contains the actual smart contract, and exports its interface |
| 18 | +### 3. Navigate into the project's directory. |
20 | 19 |
|
21 |
| -The `/frontend` folder contains web assets for the application's user interface. The user interface is written using the React framework. |
| 20 | +### 4. Deploy the project to your local environment: |
22 | 21 |
|
23 |
| -## Build and deploy from the command-line |
| 22 | +``` |
| 23 | +dfx start --background --clean && dfx deploy |
| 24 | +``` |
24 | 25 |
|
25 |
| -To migrate your ICP Ninja project off of the web browser and develop it locally, follow these steps. These steps are necessary if you want to deploy this project for long-term, production use on the mainnet. |
| 26 | +## Security considerations and best practices |
26 | 27 |
|
27 |
| -### 1. Download your project from ICP Ninja using the 'Download files' button on the upper left corner under the pink ninja star icon. |
| 28 | +If you base your application on this example, it is recommended that you familiarize yourself with and adhere to the [security best practices](https://internetcomputer.org/docs/building-apps/security/overview) for developing on ICP. This example may not implement all the best practices. |
28 | 29 |
|
29 |
| -### 2. Open the `BUILD.md` file for further instructions. |
0 commit comments