A cryptocurrency "faucet" is a site that gives away cryptocurrency. Faucets are especially common on test networks such as NEAR TestNet to allow developers to test apps with tokens which have no monetary value.
Faucets can run out of tokens, especially if people abuse them and purposely attempt to drain available funds. While test network tokens can be replenished one way or another, doing so can be a hassle, so it's useful to deter this sort of behavior.
To this end, some faucets require that token requests be accompanied by a post on Twitter. But it's easy for one person to spin up many fake Twitter accounts to drain a faucet. This sort of behavior would be classified as a Sybil attack.
This demo uses a different approach.
First, each new account created with this faucet receives 1/1000 of the funds remaining at the time it was created.
Second, this faucet requires Proof of Work: before the faucet creates your new account, you need to wait while the JavaScript on the page churns through some complex computation (in this demo, that specific computation is to compute a u64
salt for a given account id + public key in such a way that the sha256(account_id + ':' + public_key + ':' + salt)
has min_difficulty
leading zeroes).
You can try out a live version of this demo: https://near-examples.github.io/pow-faucet/
This demo version creates new NEAR TestNet accounts with a .meta
suffix.
The code lives in two different places:
The smart contract source code lives in the contract-rs
folder, and specifically in contract-rs/src/lib.rs
.
After you make changes, run tests by entering the contract-rs
directory (cd contract-rs
) and running:
cargo test
To recompile the smart contract in preparation for deploying it, again enter the contract-rs
directory and run:
./build.sh
This contains the JavaScript that shows the UI and runs the proof-of-work algorithm. It lives in the frontend
folder.
It was bootstrapped with create-react-app
. Check out the https://github.com/near-examples/pow-faucet/blob/master/frontend/README.md in the frontend
folder to learn how to play with the code.
The Contract and the Frontend need to be deployed separately.
Build and deploy this smart contract to a development account. Dev Accounts are auto-generated accounts to assist in developing and testing smart contracts. Please see the Standard deploy section for creating a more personalized account to deploy to.
near dev-deploy --wasmFile res/faucet.wasm
Behind the scenes, this is creating an account and deploying a contract to it. On the console, notice a message like:
Done deploying to dev-1234567890123
In this instance, the account is dev-1234567890123
. A file has been created containing a key pair to
the account, located at neardev/dev-account
. To make the next few steps easier, we're going to set an
environment variable containing this development account id and use that when copy/pasting commands.
Run this command to the environment variable:
source neardev/dev-account.env
You can tell if the environment variable is set correctly if your command line prints the account name after this command:
echo $CONTRACT_NAME
The next command will initialize the contract using the new
method:
near call $CONTRACT_NAME new '{"account_suffix":"aloha", "min_difficulty": 10}' --accountId $CONTRACT_NAME
To retrieve the number of created accounts, call get_num_created_accounts
with the following:
near call $CONTRACT_NAME get_num_created_accounts '' --accountId $CONTRACT_NAME
- See instructions on docs.near.org for how to deploy the contract to the NEAR blockchain.
- The frontend compiles to static assets – HTML, CSS, and JavaScript. The demo frontend is deployed to GitHub Pages using gh-pages. Feel free to re-use this approach or find another.
As a follow-up to this demo, we created a Proof of Work Transfer Faucet. This "Transfer Faucet" differs from the current example in two main ways:
- Rather than create a new account, it sends NEAR Tokens to an existing account
- Rather than send 1/1000th of the remaining funds, it always sends 100Ⓝ
By using Gitpod in this project, you agree to opt-in to basic, anonymous analytics. No personal information is transmitted. Instead, these usage statistics aid in discovering potential bugs and user flow information.