diff --git a/src/pages/dev/send-tokens/interchain-tokens/developer-guides/programmatically-create-a-token.mdx b/src/pages/dev/send-tokens/interchain-tokens/developer-guides/programmatically-create-a-token.mdx index b35c55595..7ad4dbfb3 100644 --- a/src/pages/dev/send-tokens/interchain-tokens/developer-guides/programmatically-create-a-token.mdx +++ b/src/pages/dev/send-tokens/interchain-tokens/developer-guides/programmatically-create-a-token.mdx @@ -35,7 +35,7 @@ npm init -y ### Install Hardhat and the AxelarJS SDK -Install Hardhat and the AxelarJS SDK with the following commands: +Install [Hardhat](https://hardhat.org/) and the [AxelarJS SDK](https://github.com/axelarnetwork/axelarjs-sdk) with the following commands: ```bash npm install --save-dev hardhat@2.18.1 dotenv@16.3.1 @@ -58,7 +58,7 @@ Next, set up an RPC for the Fantom testnet, which you will be using as your loca ### Create an `.env` file -To make sure you’re not accidentally publishing your private key, create an **`[.env`** file](https://blog.bitsrc.io/a-gentle-introduction-to-env-files-9ad424cc5ff4) to store it in: +To make sure you’re not accidentally publishing your private key, create an [**`.env`** file](https://blog.bitsrc.io/a-gentle-introduction-to-env-files-9ad424cc5ff4) to store it in: ```bash touch .env @@ -66,7 +66,7 @@ touch .env ### Add your private key to `.env` and `hardhat.config.js` -[Export your private key](https://support.metamask.io/hc/en-us/articles/360015289632-How-to-Export-an-Account-Private-Key) and add it to the  **`.env`** file you just created: +[Export your private key](https://support.metamask.io/hc/en-us/articles/360015289632-How-to-Export-an-Account-Private-Key) and add it to the `.env` file you just created: ```bash PRIVATE_KEY= // Add your account private key here