Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.solidscipt.zoracle.xyz/llms.txt

Use this file to discover all available pages before exploring further.

The wallet command manages local hot wallets for use with development nodes and disposable testnets. Wallets are stored under ~/.solidscript/wallets/ with file permissions set to 0600. You create a named wallet once and then reference it by name in deploy commands via the --wallet flag. Use balance to check funds before attempting a deploy.
solidscript wallet new <name>
solidscript wallet show <name>
solidscript wallet list
solidscript wallet balance <name> -n <network>

Subcommands

SubcommandDescription
wallet new <name>Generate a new key pair and save it as a named wallet
wallet show <name>Print the address for a named wallet
wallet listList all locally stored wallet names
wallet balance <name> -n <network>Query the on-chain balance of a named wallet on the given network

Examples

# Create a new wallet named dev
npx solidscript wallet new dev

# List all stored wallets
npx solidscript wallet list

# Check balance on a local Anvil node
npx solidscript wallet balance dev -n anvil
Hot wallets are for local development and disposable testnets only. Use the browser-wallet flow for any deployment that involves real funds.