Skip to content

Commit 9b51bc9

Browse files
authored
docs: add deploy command for all contract examples with clear description (axelarnetwork#130)
1 parent 2d1aa1d commit 9b51bc9

File tree

8 files changed

+32
-0
lines changed

8 files changed

+32
-0
lines changed

examples/evm/call-contract-with-token-express/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ To deploy the contract, run the following command:
1010
npm run deploy evm/call-contract-with-token-express [local|testnet]
1111
```
1212

13+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
14+
15+
An example of its usage is demonstrated as follows: `npm run deploy evm/call-contract-with-token-express local` or `npm run deploy evm/call-contract-with-token-express testnet`.
16+
1317
### Execution
1418

1519
To execute the example, use the following command:

examples/evm/call-contract-with-token/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ To deploy the contract, run the following command:
1717
npm run deploy evm/call-contract-with-token [local|testnet]
1818
```
1919

20+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
21+
22+
An example of its usage is demonstrated as follows: `npm run deploy evm/call-contract-with-token local` or `npm run deploy evm/call-contract-with-token testnet`.
23+
2024
### Execution
2125

2226
To execute the example, use the following command:

examples/evm/call-contract/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ To deploy the contract, use the following command:
1717
npm run deploy evm/call-contract [local|testnet]
1818
```
1919

20+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
21+
22+
An example of its usage is demonstrated as follows: `npm run deploy evm/call-contract local` or `npm run deploy evm/call-contract testnet`.
23+
2024
### Execution
2125

2226
To execute the example, use the following command:

examples/evm/cross-chain-lending/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ To execute the example, use the following command:
2020
npm run execute evm/cross-chain-lending [local|testnet]
2121
```
2222

23+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
24+
25+
An example of its usage is demonstrated as follows: `npm run execute evm/cross-chain-lending local` or `npm run execute evm/cross-chain-lending testnet`.
26+
2327
## Example
2428

2529
This example runs the test on a local network.

examples/evm/cross-chain-token/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ To deploy the contract, use the following command:
1717
npm run deploy evm/cross-chain-token [local|testnet]
1818
```
1919

20+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
21+
22+
An example of its usage is demonstrated as follows: `npm run deploy evm/cross-chain-token local` or `npm run deploy evm/cross-chain-token testnet`.
23+
2024
### Execution
2125

2226
To execute the example, use the following command:

examples/evm/nft-linker/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ To deploy the NFT Linker, run the following command:
1717
npm run deploy evm/nft-linker [local|testnet]
1818
```
1919

20+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
21+
22+
An example of its usage is demonstrated as follows: `npm run deploy evm/nft-linker local` or `npm run deploy evm/nft-linker testnet`.
23+
2024
A single NFT is minted to the deployer (`0xBa86A5719722B02a5D5e388999C25f3333c7A9fb`) on each chain.
2125

2226
## Execution

examples/evm/nonced-execution/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ To deploy the contract, use the following command:
2525
npm run deploy evm/nonced-execution [local|testnet]
2626
```
2727

28+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
29+
30+
An example of its usage is demonstrated as follows: `npm run deploy evm/nonced-execution local` or `npm run deploy evm/nonced-execution testnet`.
31+
2832
### Execution
2933

3034
To execute the example, use the following command:

examples/evm/send-ack/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Make sure you've already followed the following steps:
1515
npm run deploy evm/send-ack [local|testnet]
1616
```
1717

18+
The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either `local` or `testnet` after the command.
19+
20+
An example of its usage is demonstrated as follows: `npm run deploy evm/send-ack local` or `npm run deploy evm/send-ack testnet`.
21+
1822
### Execution
1923

2024
```bash

0 commit comments

Comments
 (0)