
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sui-cli-web-server
Advanced tools
Local server that bridges your browser to Sui CLI. Manage addresses, transfer SUI, deploy Move contracts - all from a beautiful web UI. Private keys never leave your machine.
Your private keys stay on YOUR machine. This package runs a local server that connects the web interface to your locally installed Sui CLI. No keys are ever transmitted to external servers.
Browser (cli.firstmovers.io) ←→ Local Server (this package) ←→ Sui CLI (your machine)
# Make sure Sui CLI is installed
sui --version
# Run the server (no installation needed!)
npx sui-cli-web
Then open https://cli.firstmovers.io - it connects automatically.
| Feature | Description |
|---|---|
| Address Management | Create, switch, view addresses with balances |
| Transfer SUI | Send tokens with gas estimation |
| Gas Management | Split and merge gas coins |
| Network Switching | Mainnet, testnet, devnet, localnet |
| Faucet Integration | Request test tokens |
| Move Development | Build, test, publish, upgrade packages |
| Transaction Inspector | Inspect and replay transactions |
| Community Tiers | On-chain membership with progression |
npx sui-cli-web
npm install -g sui-cli-web
sui-cli-web
npm install sui-cli-web
npx sui-cli-web
# Install Sui CLI
brew install sui # macOS
cargo install --locked sui # All platforms
The server exposes a REST API at http://localhost:3001/api
| Method | Endpoint | Description |
|---|---|---|
GET | /health | Health check |
GET | /status | Sui CLI status |
GET | /addresses | List all addresses |
GET | /addresses/active | Get active address |
POST | /addresses/create | Create new address |
POST | /addresses/switch | Switch active address |
| Method | Endpoint | Description |
|---|---|---|
POST | /transfers/sui | Transfer SUI tokens |
POST | /transfers/sui/dry-run | Estimate gas |
POST | /transfers/object | Transfer object/NFT |
GET | /transfers/sui/coins/:address | Get transferable coins |
| Method | Endpoint | Description |
|---|---|---|
POST | /gas/split | Split gas coin |
POST | /gas/merge | Merge gas coins |
| Method | Endpoint | Description |
|---|---|---|
GET | /environments | List environments |
POST | /environments/switch | Switch network |
POST | /environments | Add custom RPC |
| Method | Endpoint | Description |
|---|---|---|
POST | /move/build | Build package |
POST | /move/test | Run tests |
POST | /packages/publish | Publish on-chain |
POST | /packages/upgrade | Upgrade package |
| Method | Endpoint | Description |
|---|---|---|
GET | /community/membership | Check membership |
POST | /community/join | Join community |
GET | /community/tier/:address | Get tier info |
curl -X POST http://localhost:3001/api/transfers/sui \
-H "Content-Type: application/json" \
-d '{
"to": "0x1234...abcd",
"amount": "1.5"
}'
curl http://localhost:3001/api/addresses
curl -X POST http://localhost:3001/api/environments/switch \
-H "Content-Type: application/json" \
-d '{"alias": "testnet"}'
The server runs on port 3001 by default and binds to localhost only.
| Setting | Value | Notes |
|---|---|---|
| Port | 3001 | Fixed |
| Host | localhost | Security: no external access |
| CORS | Configured | cli.firstmovers.io + localhost |
# Check if port 3001 is in use
lsof -ti:3001 | xargs kill -9
# Verify Sui is installed
sui --version
# If not, install it
brew install sui # macOS
cargo install --locked sui # Other
Make sure you're accessing via:
https://cli.firstmovers.iohttp://localhost:5173 (dev mode)# Clone the repo
git clone https://github.com/hien-p/raycast-sui-cli.git
cd raycast-sui-cli/packages/server
# Install dependencies
npm install
# Run in dev mode
npm run dev
# Build
npm run build
MIT © hien-p
cli.firstmovers.io · Made with ❤️ for the Sui community
FAQs
Local server that bridges your browser to Sui CLI. Manage addresses, transfer SUI, deploy Move contracts - all from a beautiful web UI. Private keys never leave your machine.
We found that sui-cli-web-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.