Volo
WebsiteTwitterLinktree
  • Introduction
    • Volo DAO
    • vSUI Contracts
    • Contract Audits
    • Official Links & Partners
  • Liquid Staking
    • Liquid Staking 101
    • vSUI Contract Infrastructure
    • Supported Wallets
    • Governance and Tokenomics
      • Volo Token
    • How to Stake and Unstake
    • How to request Testnet Tokens
    • Frequently Asked Questions
  • Terms of Use
  • Privacy Policy
  • Sui Documentation
  • Ankr Documentation
  • Cetus Documentation
  • NAVI Documentation
  • Scallop Documentation
  • Turbos Documentation
  • Surf Dev Documentation
  • Kriya Dex Documentation
  • Bucket Documentation
  • SupraOracles Documentation
  • Pyth Documentation
Powered by GitBook
On this page
  • Prerequisites#
  • 1. Request test tokens through Discord#
  • 2. Request test tokens through wallet#
  • 3. Request test tokens through cURL#
  • 4. Request test tokens through TypeScript SDK#
  1. Liquid Staking

How to request Testnet Tokens

PreviousHow to Stake and UnstakeNextFrequently Asked Questions

Last updated 1 year ago

Sui faucet is a helpful tool where Sui developers can get free test SUI tokens to deploy and interact with their programs on Sui's Devnet and Testnet networks. There is no faucet for Sui Mainnet.

Prerequisites

To request tokens from the faucet, you must own a wallet address that can receive the SUI tokens. You can generate an address via the or the .

1. Request test tokens through Discord

  1. Join . If you try to join the Sui Discord channel using a newly created Discord account, you may need to wait a few days for validation.

  2. Request test SUI tokens in the Sui or Discord channels. Send the following message to the channel with your client address: !faucet <Your client address>

2. Request test tokens through wallet

You can request test tokens within .

3. Request test tokens through cURL

Use the following cURL command to request tokens directly from the faucet server:

curl --location --request POST 'https://faucet.devnet.sui.io/gas' \
--header 'Content-Type: application/json' \
--data-raw '{
    "FixedAmountRequest": {
        "recipient": "<YOUR SUI ADDRESS>"
    }
}'

Replace 'https://faucet.devnet.sui.io/gas' with http://127.0.0.1:5003/gas when working with a local network.

You can also access the faucet through the TS-SDK.

import { JsonRpcProvider, devnetConnection } from '@mysten/sui.js';
// connect to Devnet
const provider = new JsonRpcProvider(devnetConnection);
// get tokens from the Devnet faucet server
await provider.requestSuiFromFaucet(
  '<YOUR SUI ADDRESS>'
);

4. Request test tokens through TypeScript SDK

#
Sui CLI tool
Sui wallet
#
Discord
#devnet-faucet
#testnet-faucet
#
Sui Wallet
#
#