Appearance
Useful Links
Quick access to all ASI:Chain DevNet resources and tools.
Web Applications
ASI Wallet
Create accounts, manage assets, deploy smart contracts, and interact with the ASI:Chain network.
Block Explorer
Monitor real-time blockchain activity, search transactions, and view network statistics.
Faucet
Request test ASI tokens for development and testing.
Indexer
URL: explorer.dev.asichain.io/indexer-status
Access indexed blockchain data.
Network Endpoints
Bootstrap Node
rnode://e5e6faf012f36a30176d459ddc0db81435f6f1dc@54.152.57.201?protocol=40400&discovery=40404Use this endpoint to connect your node to the DevNet.
Validator Node (HTTP)
http://54.152.57.201:40413For transaction submission and contract deployment.
Observer Node (HTTP)
http://54.152.57.201:40453For read-only operations and blockchain queries.
Repositories
ASI Chain Core
GitHub: asi-alliance/asi-chain
Main repository containing:
- Node Docker configurations
- Network setup scripts
- Documentation source
- Example contracts
Rust Client (CLI)
GitHub: singnet/rust-client
Command-line interface for:
- Deploying smart contracts
- Proposing blocks
- Interacting with the network
Block Explorer
GitHub: asi-alliance/asi-chain-explorer
Web-based block explorer application.
Web Wallet
GitHub: asi-alliance/asi-chain-wallet
Web wallet application for ASI:Chain.
Faucet
GitHub: asi-alliance/asi-chain-faucet
Faucet service for distributing test ASI tokens.
Wallet CLI
GitHub: asi-alliance/asi-chain-wallet-cli
Command-line wallet interface for ASI:Chain.
Docker Images
Official Node Image
public.ecr.aws/f6y9h6x4/asi-chain/node:latestDocker image for running validator and observer nodes.
Documentation Sections
Quick Start
- Join DevNet as Validator - Become a validator
- Get DevNet ASI Tokens - Request test tokens
Shard & Nodes
- DevNet Structure & Entities - Network architecture
- Validator Node Image - Validator setup
- Observer Node Image - Observer setup
Tools
- Wallet Usage Guide - Wallet documentation
- Explorer Usage Guide - Explorer documentation
- Faucet Usage Guide - Faucet documentation
Development Tools
Smart Contract Development
- Language: Rholang
- IDE: Built into ASI Wallet
- Examples: Available in wallet and GitHub
Network Interaction
- CLI Tool: Rust Client
- HTTP API:
http://54.152.57.201:40413(Validator) - gRPC API:
54.152.57.201:40401(Validator)
Network Information
Current Configuration
- Network: DevNet (Development Network)
- Bootstrap Nodes: 1
- Validators: 3 active
- Observer Nodes: 1
- Average Block Time: ~20 seconds
System Requirements
Minimum:
- CPU: 4 cores
- RAM: 16 GB
- Storage: 250+ GB
- Network: Stable internet connection
Recommended:
- CPU: 8 cores
- RAM: 32 GB
- Storage: 250+ GB
- Network: Stable internet connection
Support
Getting Help
- Documentation: Browse this site using the sidebar
- GitHub Issues: Report bugs or request features
- FAQ: Check the FAQ section for common questions
Quick Troubleshooting
- Wallet Issues: Clear browser cache, check network settings
- Node Connection: Verify bootstrap endpoint and firewall settings
- Transaction Failures: Ensure sufficient balance and correct parameters
Quick Command Reference
Deploy Smart Contract
bash
cargo run -- deploy -f ./contract.rho --private-key <key> -H localhost -p 40402Propose Block
bash
cargo run -- propose --private-key <key> -H localhost -p 40402Check Balance
bash
curl -X POST http://54.152.57.201:40453/explore-deploy \
-H 'Content-Type: application/json' \
-d '{"term": "new rl(`rho:registry:lookup`) in { rl!(\"rho:rchain:asiVault\") }"}'Query Block History
bash
curl http://54.152.57.201:40453/blocksBookmark this page for quick access to all ASI:Chain resources.