EVM Testnet with Metamask Wallet
This tutorial is for how to set up your Metamask wallet to use with the testnet on Bittensor. You must run this step before you can run other tutorials in this section.
If you are new to EVM, read this simplified blog post explaining this feature.
For all the EVM tutorials we will use the following:
- The Bittensor Testnet URL: wss://test.finney.opentensor.ai:443
- EVM Subtensor Chain ID: 945 (This is UTF-8 encoding for alpha character)
- Opentensor EVM-Bittensor GitHub repo: https://github.com/opentensor/evm-bittensor/tree/main
EVM features on the mainnet will be available only after the Bittensor 8.4.0 is released. In the mean time use this mainnet node: wss://evm.chain.opentensor.ai
to access EVM on the mainnet.
Step 1. Create a Metamask wallet
- If you don't already have it, install Metamask wallet browser extension.
- Create a new account.
Step 2. Add testnet to Metamask
Add the testnet to Metamask from within the Metamask wallet. Follow the below steps:
- Open Metamask Wallet extension on your browser. Click on the ⋮ (three vertical dots, i.e., vertical ellipsis) at the top right.
- Select Settings from the drop-down menu.
- Select Networks > Add network.
- Click on Add a network manually at the bottom of the networks list.
- Enter the following details:
- Network name: "Subtensor"
- New RPC URL: wss://evm.chain.opentensor.ai
- Chain ID: 945 (This is UTF-8 encoding for Alpha character)
- Currency symbol: TAO
- Click Save.
- Then click on Switch network.
With the above steps, you have successfully configured your Metamask wallet with the testnet.
Step 3
Next, request testnet TAO in the Bittensor community Discord.
Step 4. Copy Metamask wallet private key into config
Before you proceed, make sure you finished the Install step.
In this step you will copy the private key from your Metamask wallet account and paste it into the configuration file in the repo. This step will ensure that you are not prompted with password each and every step as you run these tutorials.
-
Navigate to the
examples
directory of the EVM-Bittensor repo:cd examples
-
Create
config.js
file by copying theconfig-example.js
file:cp config-example.js config.js
-
On Metamask wallet extension, your wallet account will have a H160 account address, starting with the
0x
prefix (for example:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
), and also your wallet account name. -
Click on your wallet account name, which will open the drop-down menu.
-
Click on the ⋮ (three vertical dots, i.e., vertical ellipsis) next to the wallet account and select Account details. It will open a view with a QR code, your wallet account H160 address and a Show private key button.
-
Click on the Show private key button, enter the password. You will then see the private key for your wallet account. Copy this private key.
-
Paste this private key into
ethPrivateKey
string in yourconfig.js
file as shown below (mangled for security):
const ethPrivateKey = "02c1c4112233snipsnipsnipgh933aca491e090e0b7xxyy1b124b86d9382b01a8";
Save the config.js
file. Now your setup is ready to run the tutorials with EVM testnet.