Create account and use the faucet
In this section, we show you how to create a new local Miden account and how to receive funds from the public Miden faucet website.
Configure the Miden client¶
The Miden client facilitates interaction with the Miden rollup and provides a way to execute and prove transactions.
Tip
Check the Miden client documentation for more information.
-
If you haven’t already done so as part of another tutorial, open your terminal and create a new directory to store the Miden client.
mkdir miden-client cd miden-client
-
Install the Miden client.
You can now use thecargo install miden-cli --features testing,concurrent
miden --version
command, and you should seeMiden 0.6.0
. -
Initialize the client. This creates the
miden-client.toml
file.
miden init --rpc 18.203.155.106
Create a new Miden account¶
-
Create a new account of type
mutable
using the following command:miden new-wallet --mutable
-
List all created accounts by running the following command:
You should see something like this:miden account -l
Save the account ID for a future step.
Request tokens from the public faucet¶
-
To request funds from the faucet navigate to the following website: Miden faucet website.
-
Copy the Account ID printed by the
miden account -l
command in the previous step. Feel free to change the amount of tokens to issue. -
Paste this ID into the Request test tokens input field on the faucet website and click Send Private Note.
Tip
You can also click Send Public Note. If you do this, the note’s details will be public and you will not need to download and import it, so you can skip to Sync the client.
-
After a few seconds your browser should download - or prompt you to download - a file called
note.mno
(mno = Miden note). It contains the funds the faucet sent to your address. -
Save this file on your computer, you will need it for the next step.
Import the note into the Miden client¶
-
Import the private note that you have received using the following commands:
miden import <path-to-note>/note.mno
-
You should see something like this:
Successfully imported note 0x0ff340133840d35e95e0dc2e62c88ed75ab2e383dc6673ce0341bd486fed8cb6
-
Now that the note has been successfully imported, you can view the note’s information using the following command:
miden notes
-
You should see something like this:
The importance of syncing
- As you can see, the note is listed as
Expected
. - This is because you have received a private note but have not yet synced your view of the rollup to check that the note is the result of a valid transaction.
- Hence, before consuming the note we will need to update our view of the rollup by syncing.
- Many users could have received the same private note, but only one user can consume the note in a transaction that gets verified by the Miden operator.
Sync the client¶
Do this periodically to keep informed about any updates on the node by running the sync
command:
miden sync
You will see something like this as output:
State synced to block 179672
New public notes: 0
Tracked notes updated: 1
Tracked notes consumed: 0
Tracked accounts updated: 0
Commited transactions: 0
Consume the note & receive the funds¶
-
Now that we have synced the client, the input-note imported from the faucet should have a
Committed
status, confirming it exists at the rollup level:miden notes
-
You should see something like this:
-
Find your account and note id by listing both
accounts
andnotes
:miden account miden notes
-
Consume the note and add the funds from its vault to our account using the following command:
miden consume-notes --account <Account-Id> <Note-Id>
-
You should see a confirmation message like this:
-
After confirming you can view the new note status by running the following command:
miden notes
-
You should see something like this:
-
The note is
Processing
. This means that the proof of the transaction was sent, but there is no network confirmation yet. You can update your view of the rollup by syncing again:miden sync
-
After syncing, you should have received confirmation of the consumed note. You should see the note as
Consumed
after listing the notes:miden notes
Amazing! You just have created a client-side zero-knowledge proof locally on your machine and submitted it to the Miden rollup.
Tip
You only need to copy the top line of characters of the Note ID.
View confirmations¶
-
View your updated account’s vault containing the tokens sent by the faucet by running the following command:
miden account --show <Account-Id>
-
You should now see your accounts vault containing the funds sent by the faucet.
Congratulations!¶
You have successfully configured and used the Miden client to interact with a Miden rollup and faucet.
You have performed basic Miden rollup operations like submitting proofs of transactions, generating and consuming notes.
For more information on the Miden client, refer to the Miden client documentation.
Debugging tips (clear state and folder)¶
-
Need a fresh start? All state is maintained in
store.sqlite3
, located in the directory defined in themiden-client.toml
file. If you want to clear all state, delete this file. It recreates on any command execution. -
Getting an error? Only execute the
miden-client
command in the folder where yourmiden-client.toml
is located.