Quickstart Guide
Get started with Pilier Stylobate testnet in under 5 minutes.
Prerequisites
- Web browser (Chrome, Firefox, Brave)
- No installation required
Step 1: Get a Wallet
Option A: Polkadot.js Extension (Recommended)
- Install the Polkadot.js extension
- Create a new account
- Save your seed phrase securely
- Copy your account address
Option B: Subwallet
- Install Subwallet
- Create or import an account
- Switch to Substrate accounts
Step 2: Connect to Testnet
- Open Polkadot.js Apps
- Click the network dropdown (top left corner)
- Select: Development → Custom endpoint
- Enter:
wss://rpc.testnet.pilier.network - Click Switch
You should see:
Connected to Pilier Stylobate Testnet
Step 3: Get Testnet Tokens
Request PIL tokens from the faucet:
curl -X POST https://faucet.testnet.pilier.network \
-H "Content-Type: application/json" \
-d '{
"address": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"
}'
Replace the address with your own.
Response:
{
"success": true,
"amount": "1000000000",
"txHash": "0x1234..."
}
You'll receive 1000 PIL (with 6 decimals = 1000.000000 PIL).
Step 4: Check Your Balance
In Polkadot.js Apps:
- Navigate to Accounts
- Find your account
- Verify balance shows
1000.0000 PIL
Step 5: Make a Transfer
Try sending tokens:
- Click Send next to your account
- Enter recipient address
- Enter amount (e.g.,
10 PIL) - Click Make Transfer
- Sign with your extension
Block Explorer: View your transaction at:
https://explorer.testnet.pilier.network
Step 6: Explore the Chain
View Recent Blocks
# Using curl
curl -H "Content-Type: application/json" \
-d '{"id":1, "jsonrpc":"2.0", "method": "chain_getHeader"}' \
https://rpc.testnet.pilier.network
Query Chain State
In Polkadot.js Apps:
- Go to Developer → Chain State
- Select module:
system - Select call:
account(AccountId) - Enter your address
- Click +
See your account nonce, balance, and reserved funds.
Next Steps
For Developers
For Validators
For Users
- Learn about Digital Product Passports
- Explore Autonomous Agents
- Understand Tokenomics
Common Issues
"Cannot connect to endpoint"
Problem: RPC endpoint not reachable
Solution:
- Check your internet connection
- Verify URL:
wss://rpc.test.pilier.net - Try HTTP endpoint:
https://rpc.test.pilier.net
"Faucet returns error"
Problem: Rate limit exceeded
Solution:
- Wait 24 hours between requests
- Use different IP address
- Contact us on Telegram
"Transaction fails"
Problem: Insufficient balance or nonce issues
Solution:
- Verify balance > transaction amount + fee
- Refresh the page to sync nonce
- Try again in a new block
Support
Need help?
- Telegram: @pilier_dev
- Email: support@pilier.net