Skip to content

0xChin/FaucetDiscordBot

Repository files navigation

Faucet Bot

Simple Discord Bot that allows token faucet. It uses the Kevin Novak's Typescript Discord Bot Template. I've made it a template and gave it some functionalities so you can add it in your own server :)

If you need support by my side don't hesitate in DMing me via Discord: Chiin#4895

Command Structure

The Discord bot accepts a command that looks like this:

/faucet <network> <token> <address> and then disburse a predefined amount of funds (specific to that token on that network) to the address sent.

Demo

Sending funds (attach link to block explorer)

Screen Shot 2022-11-07 at 03 42 11

Tokens not supported

Screen Shot 2022-11-07 at 03 48 56

Request in cooldown

Screen Shot 2022-11-08 at 13 53 21

Insufficient funds

Screen Shot 2022-11-07 at 03 45 57

Supported networks

Currently, the following networks are supported by default:

  • Ethereum Goerli (ETH & LINK)
  • Polygon Mumbai (MATIC & LINK)

Anyways, it is possible to add any token of any network (EVM) by using the following interface:

interface Networks {
    [network: string]: {
        chainId: number;
        tokens: {
            [token: string]: {
                amount: number; // @notice that this amount is measured in ETH
                address?: string;
                isNativeToken?: boolean;
            };
        };
        blockExplorer: string;
    };
}

Features

Faucet:

  • People can request tokens via the /faucet <network> <token> <address> command.
  • Embeds usage for better UI :).
  • Validations with warning/error messages.
  • Cooldown for requesting tokens (based on Discord User ID).
  • Easy to add/remove networks and tokens.

Developer Friendly:

  • Written with TypeScript.
  • Uses the discord.js framework.
  • Written with ESM for future compatibility with packages.
  • Easy setup with Docker Compose.

Setup

  1. Copy example config files.
    • Navigate to the config folder of this project.
    • Copy the config.example.json as config.json.
  2. Obtain a bot token.
    • You'll need to create a new bot in your Discord Developer Portal.
      • See here for detailed instructions.
      • At the end you should have a bot token.
  3. Modify the config file.
    • Open the config/config.json file.
    • You'll need to edit the following values:
      • client.id - Your discord bot's user ID.
      • client.token - Your discord bot's token.
      • privateKey - The private key of the account that will be sending funds. Please be careful with the PK that you use, by my side, I've always done the tests with accounts that have funds only in testnets
      • networks.{network}.nodeUri - The URI to the node providers. You can find them in Chainlist
      • database - All fields in this object are for the database connection. Note: You can create a local database by running docker-compose up -d thanks to the docker-compose.yml file
  4. Start the bot.
    • Run docker-compose build followed by docker-compose up and let the faucet send funds to your community :).

Support

"networks": {
        "GOERLI": {
            "chainId": 5,
            "tokens": {
                "ETH": {
                    "amount": 0.001,
                    "isNativeToken": true
                }
            },
            "blockExplorer": "https://goerli.etherscan.io/tx/",
            "nodeUri": "<node-uri>"
        },
Adding new tokens

We have to add a new property in the tokens object with the name of our token, and add a amount and address field. For example, for adding the LINK token, we should do it this way:

"networks": {
        "GOERLI": {
            "chainId": 5,
            "tokens": {
                "ETH": {
                    "amount": 0.001,
                    "isNativeToken": true
                },
                "LINK": {
                    "amount": 0.1,
                    "address": "0x326C977E6efc84E512bB9C30f76E30c160eD06FB"
                }
            },
            "blockExplorer": "https://goerli.etherscan.io/tx/",
            "nodeUri": "<node-uri>"
        },

After making this change, run npm run update:faucet to update the commands

Adding new networks

We have to add a new property in the networks object with the name of the network and add the fields: chainId, blockExplorer & nodeUri. For adding the mumbai network with the LINK token, we should do it this way:

        "GOERLI": {
            "chainId": 5,
            "tokens": {
                "ETH": {
                    "amount": 0.001,
                    "isNativeToken": true
                },
                "LINK": {
                    "amount": 0.1,
                    "address": "0x326C977E6efc84E512bB9C30f76E30c160eD06FB"
                }
            },
            "blockExplorer": "https://goerli.etherscan.io/tx/",
            "nodeUri": "<node-uri>"
        },
        "MUMBAI": {
            "chainId": 80001,
            "tokens": {
                "LINK": {
                    "amount": 0.1,
                    "address": "0x326C977E6efc84E512bB9C30f76E30c160eD06FB"
                }
            },
            "blockExplorer": "https://mumbai.polygonscan.com/tx/",
            "nodeUri": "<node-uri>"
        }

After making this change, run npm run update:faucet to update the commands

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published