movement
  • Movement Labs
  • Test Subnet Rust SDK Env
  • Run an Avalanche Node Manually
  • Install Avalanche-CLI
  • What's the Subnet Development Lifecycle?
  • Deploy a Permissioned Subnet on Testnet
  • Connect to Fuji Testnet
  • Setup Movement Env
  • Connect to the Fuji Testnet through M1
  • How to add the Movement network?
  • Move Language
    • Modules and Scripts
    • Primitive Types
      • Integers
      • Bool
      • Address
      • Vector
      • Signer
      • References
      • Tuples and Unit
Powered by GitBook
On this page

Was this helpful?

Connect to Fuji Testnet

PreviousDeploy a Permissioned Subnet on TestnetNextSetup Movement Env

Last updated 1 year ago

Was this helpful?

Connect to Fuji Testnet

To connect to the Fuji Testnet instead of the Mainnet, use argument --network-id=fuji. You can get funds on the Testnet from the

./avalanchego --network-id=fuji

To check is done bootstrapping, in another terminal window call by copying and pasting the following command:

curl -X POST --data '{
    "jsonrpc":"2.0",
    "id"     :1,
    "method" :"info.isBootstrapped",
    "params": {
        "chain":"X"
    }
}' -H 'content-type:application/json;' 127.0.0.1:9650/ext/info

If this returns true, the chain is bootstrapped; otherwise, it returns false

faucet
info.isBootstrapped