Skip to content

Commit f2a6e6f

Browse files
committed
changed matic references
1 parent ceecddf commit f2a6e6f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/tools/dApp-development/common-tools/hardhat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ contract Lock {
8686
### Setting up the contract
8787

8888
- Go to `hardhat.config.js`
89-
- Update the `hardhat-config` with matic-network-credentials
89+
- Update the `hardhat-config` with polygon-amoy-credentials
9090
- Create `.env` file in the root to store your private key
9191
- Add Polygonscan API key to `.env` file to verify the contract on Polygonscan. You can generate an API key by [creating an account](https://polygonscan.com/register)
9292

docs/tools/dApp-development/common-tools/remix.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,20 +89,20 @@ To deploy to the Amoy testnet, we have to connect to the web3 with a service lik
8989
- **RPC URL (public endpoint):** <https://rpc-amoy.polygon.technology/>.
9090
- **RPC URL (dedicated endpoint):** <https://polygon-amoy.g.alchemy.com/v2/{your-api-key}>. You need a [free API key](https://docs.alchemy.com)
9191
- **Chain ID:** 80002
92-
- **Currency Symbol:** MATIC
92+
- **Currency Symbol:** POL
9393
- **Block explorer URL:** <https://amoy.polygonscan.com/>
9494

9595
- Go ahead and click **Save**
9696

9797
- Copy your wallet address from MetaMask by clicking over your account name
9898

99-
- Head over to [the faucet](https://faucet.polygon.technology/) and request test MATIC to pay for gas on the Polygon network. Select **Amoy** as the network and **MATIC Token** as the token in the faucet. You can also use the [Alchemy Amoy faucet](https://www.alchemy.com/faucets/polygon-amoy).
99+
- Head over to [the faucet](https://faucet.polygon.technology/) and request test POL to pay for gas on the Polygon network. Select **Amoy** as the network and **POL Token** as the token in the faucet. You can also use the [Alchemy Amoy faucet](https://www.alchemy.com/faucets/polygon-amoy).
100100

101101
- Finally, to deploy to Amoy, refer to the instructions in the [Remix deployment](#remix-deployment) section below.
102102

103103
## Deploying to Polygon mainnet
104104

105-
After deploying on Amoy without any errors, you can deploy the smart contract on the Polygon mainnet. Remember this costs real $ in the form of MATIC tokens.
105+
After deploying on Amoy without any errors, you can deploy the smart contract on the Polygon mainnet. Remember this costs real $ in the form of POL tokens.
106106

107107
1. Open your MetaMask wallet.
108108
2. Click on the network dropdown menu (set to **Ethereum Mainnet** by default) and click on the **Add Network** button.
@@ -113,14 +113,14 @@ After deploying on Amoy without any errors, you can deploy the smart contract on
113113
- **Network Name**: Polygon Mainnet
114114
- **New RPC URL**: <https://polygon-mainnet.g.alchemy.com/v2/{your-api-key}>
115115
- **Chain ID**: 137
116-
- **Currency Symbol**: MATIC
116+
- **Currency Symbol**: POL
117117
- **Block Explorer URL**: <https://polygonscan.com/>
118118

119119
- Go ahead and click **Save**
120120

121121
- Copy your wallet address from MetaMask by clicking over your account name
122122

123-
5. Make sure your MetaMask wallet has MATIC tokens to pay the deployment's gas fees.
123+
5. Make sure your MetaMask wallet has POL tokens to pay the deployment's gas fees.
124124

125125

126126
## Remix deployment

0 commit comments

Comments
 (0)