Skip to content

Commit 9e74e0b

Browse files
Change to Shadownet
1 parent b090b5f commit 9e74e0b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/tutorials/marketpulse/deploy.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Deploy the contract locally is fine for doing simple tests, but we recommend to
5151
5252
1. Check that your deployment logs do not contain any error and stop the Hardhat node.
5353
54-
1. Deploy the contract on Etherlink Ghostnet Testnet:
54+
1. Deploy the contract on Etherlink Shadownet Testnet:
5555
56-
1. In the Hardhat configuration file `hardhat.config.ts`, add Etherlink Mainnet and Ghostnet Testnet as custom networks:
56+
1. In the Hardhat configuration file `hardhat.config.ts`, add Etherlink Mainnet and Shadownet Testnet as custom networks:
5757
5858
```TypeScript
5959
import "@nomicfoundation/hardhat-toolbox-viem";
@@ -76,7 +76,7 @@ Deploy the contract locally is fine for doing simple tests, but we recommend to
7676
accounts: [deployerPrivateKey],
7777
},
7878
etherlinkTestnet: {
79-
url: "https://node.ghostnet.etherlink.com",
79+
url: "https://node.shadownet.etherlink.com",
8080
accounts: [deployerPrivateKey],
8181
},
8282
},
@@ -98,8 +98,8 @@ Deploy the contract locally is fine for doing simple tests, but we recommend to
9898
network: "etherlinkTestnet",
9999
chainId: 128123,
100100
urls: {
101-
apiURL: "https://testnet.explorer.etherlink.com/api",
102-
browserURL: "https://testnet.explorer.etherlink.com",
101+
apiURL: "https://shadownet.explorer.etherlink.com/api",
102+
browserURL: "https://shadownet.explorer.etherlink.com",
103103
},
104104
},
105105
],
@@ -109,7 +109,7 @@ Deploy the contract locally is fine for doing simple tests, but we recommend to
109109
export default config;
110110
```
111111
112-
1. Set up an Etherlink Ghostnet Testnet account with some native tokens to deploy the contract. See [Using your wallet](/get-started/using-your-wallet) connect your wallet to Etherlink. Then use the faucet to get XTZ tokens on Etherlink Ghostnet Testnet, as described in [Getting testnet tokens](/get-started/getting-testnet-tokens).
112+
1. Set up an Etherlink Shadownet Testnet account with some native tokens to deploy the contract. See [Using your wallet](/get-started/using-your-wallet) connect your wallet to Etherlink. Then use the faucet to get XTZ tokens on Etherlink Shadownet Testnet, as described in [Getting testnet tokens](/get-started/getting-testnet-tokens).
113113
114114
1. Export your account private key from your wallet application.
115115
@@ -121,7 +121,7 @@ Deploy the contract locally is fine for doing simple tests, but we recommend to
121121
122122
On the prompt, enter or paste the value of your exported private key. Hardhat use its custom env var system for storing keys, we will see later how to override this on a CICD pipeline
123123
124-
1. Deploy the contract to Etherlink Ghostnet Testnet network specifying the `--network` option:
124+
1. Deploy the contract to Etherlink Shadownet Testnet network specifying the `--network` option:
125125
126126
```bash
127127
npx hardhat ignition deploy ignition/modules/Marketpulse.ts --network etherlinkTestnet

docs/tutorials/marketpulse/frontend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,4 +953,4 @@ dependencies:
953953

954954
The page's right-hand corner refreshes and displays the winner of the poll and the application automatically pays the winning bets.
955955

956-
1. Find your transaction `resolveResult` on the Etherlink Ghostnet Testnet explorer at `https://testnet.explorer.etherlink.com`. In the **Transaction details>Internal txns tab**, you should see, if you won something, the expected amount transferred to you from the smart contract address.
956+
1. Find your transaction `resolveResult` on the Etherlink Shadownet Testnet explorer at `https://shadownet.explorer.etherlink.com`. In the **Transaction details>Internal txns tab**, you should see, if you won something, the expected amount transferred to you from the smart contract address.

0 commit comments

Comments
 (0)