npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

solpilot

v1.3.4

Published

SolPilot is a command-line interface (CLI) tool designed to interact with the Solana blockchain. It allows users to perform essential wallet operations such as generating keypairs, requesting airdrops of SOL tokens, and sending SOL tokens to other wallets

Downloads

33

Readme

SolPilot

=================

SolPilot is a command-line interface (CLI) tool designed to interact with the Solana blockchain. It allows users to perform essential wallet operations such as generating keypairs, requesting airdrops of SOL tokens, and sending SOL tokens to other wallets. The tool is built using the Oclif framework and leverages Solana's Web3.js library for blockchain interactions.

oclif Version Downloads/week

Usage

$ npm install -g solpilot
$ solpilot COMMAND
running command...
$ solpilot (--version)
solpilot/1.1.0 linux-x64 node-v18.20.4
$ solpilot --help [COMMAND]
USAGE
  $ solpilot COMMAND
...

Commands

solpilot airdrop

Request an airdrop to a provided Solana address.

Usage

solpilot airdrop --address <wallet_address> --amount <amount>

Flags

  • --address, -a: Solana wallet address to receive the airdrop.
  • --amount, -m: Amount of SOL to airdrop.

Description

Request an airdrop to a provided Solana address.

Example

solpilot airdrop --address <wallet_address> --amount <amount>

See code: src/commands/airdrop.ts

solpilot generate-keypair

Generate a Solana keypair and save it as one of the user's wallets.

Usage

solpilot generate-keypair --file <path/to/save/keypair.json>

Flags

  • --file, -f: Path to the directory to save the keypair (optional).

Description

Generate a Solana keypair and save it as one of the user's wallets.

Example

solpilot generate-keypair --file ./wallets/my-keypair.json

See code: src/commands/generate-keypair.ts

solpilot help [COMMAND]

Display help for solpilot.

Usage

solpilot help [COMMAND...]

Arguments

  • COMMAND...: Command to show help for.

Flags

  • --nested-commands, -n: Include all nested commands in the output.

Description

Display help for solpilot.

Example

solpilot help airdrop

See code: @oclif/plugin-help

solpilot list-selected-wallet

List the details of the selected wallet.

Usage

solpilot list-selected-wallet --file <path/to/wallets>

Flags

  • --file, -f: Path to the directory where the selected wallet is saved (optional).

Description

List the details of the selected wallet.

Example

solpilot list-selected-wallet --file ./wallets

See code: src/commands/list-selected-wallet.ts

solpilot list-wallets

List all wallets and their data.

Usage

solpilot list-wallets --file <path/to/wallets>

Flags

  • --file, -f: Path to the directory where wallets are saved (optional).

Description

List all wallets and their data.

Example

solpilot list-wallets --file ./wallets

See code: src/commands/list-wallets.ts

solpilot select-wallet

Select a wallet to use.

Usage

solpilot select-wallet --file <path/to/wallets>

Flags

  • --file, -f: Path to the directory where wallets are saved (optional).

Description

Select a wallet to use.

Example

solpilot select-wallet --file ./wallets

See code: src/commands/select-wallet.ts

solpilot send

Send SOL to a specified address.

Usage

solpilot send --to <to_wallet> --amount <amount>

Flags

  • --amount, -a: Amount of SOL to send (optional).
  • --to, -t: Recipient Solana wallet address (optional).

Description

Send SOL to a specified address.

Example

solpilot send --to <to_wallet> --amount <amount>

See code: src/commands/send.ts

solpilot set-config

Set the network configuration to devnet, testnet, or mainnet.

Usage

solpilot set-config --network <network>

Flags

  • --network, -n: Network to set (devnet, testnet, mainnet).

Description

Set the network configuration to devnet, testnet, or mainnet.

Example

solpilot set-config --network devnet

See code: src/commands/set-config.ts

solpilot show-private-key

Show the private key of a selected wallet.

Usage

solpilot show-private-key --file <path/to/wallets>

Flags

  • --file, -f: Path to the directory where wallets are saved (optional).

Description

Show the private key of a selected wallet.

Example

solpilot show-private-key --file ./wallets

See code: src/commands/show-private-key.ts