Using MetaMask

Interacting with a CLV Node Using MetaMask

Using Metamask for Local Node

This guide will show you how to use MetaMask wallet connecting to a self-run CLV standalone node, and sending tokens between accounts. There are two ways to interact with CLV: using Substrate RPC endpoints, or by using Web3-compatible RPC endpoints, which is served from the same Substrate RPC RPC server. In this tutorial, we will use Web3 RPC endpoints.

Installing MetaMask Chrome Extension

First of all, install the MetaMask Extension from the Chrome Store. After installation is done, follow the "Get Started" guide to create a wallet, set a password, and keep your secret backup phrases in a secure place.

Now import the development account:

The information for the pre-funded development account for standalone build are:

  • Private key: 0xa504b64992e478a6846670237a68ad89b6e42e90de0490273e28e74f084c03c8

  • Public address: 0xe6206C7f064c7d77C6d8e3eD8601c9AA435419cE

Select β€œPrivate Key” and paste the key on the "Import" page, then click the "import" button.

You will see an imported β€œAccount 2” looks like this:

Connecting to the Local CLV Node

Now connect MetaMask to your locally running CLV node. It should be producing blocks now:

Back to MetaMask, navigate to Settings -> Networks -> Add Network. Fill in the following Contents:

  • Network Name: CLV Dev

  • New RPC URL: http://127.0.0.1:9933

  • ChainID: 1023

  • Symbol (Optional): CLV

When done, click on the "save" button. MetaMask should be connected to the local CLV standalone node via its Web3 RPC. Now you should see the CLV dev account with a balance of 10,000,000 CLV.

Initiating a Transfer

Now we can try sending tokens with MetaMask. Let's transfer from this dev account to the account we just created while setting up MetaMask, so that we can simply use the β€œTransfer between my accounts” option.

First let’s send 100 tokens. Input an amount of 100 ETH and leave all other settings as default.

Note that the token name may be changed to ETH when you re-login, which is OK for the development purpose.

Then Click the "Confirm" button to confirm the transaction:

Once done, you will see the status as β€œpending” until it is confirmed after a short period.

The Account 2 balance should now have been decreased by the amount sent plus a gas fee. When switch to Account 1, you should see the 100 tokens has arrived:

Last updated