0xWeb
  • 0xWeb
  • πŸ’»Installation
  • πŸ—ƒοΈBlockchains
  • πŸ“¦Package Manager
    • πŸ“‚Folder structure
    • πŸš€Dequanto dependency
    • πŸŽ†Installing contracts
    • πŸ”’Versioning
  • πŸ”Wallet
    • πŸ”‘Keys notice
    • πŸ™‚Accounts
  • πŸ’»CLI
    • Commands Overview
  • πŸ—„οΈGnosis Safe
    • πŸ™†β€β™‚οΈZero Trust Wallet
  • πŸš€Dequanto
    • ℹ️Info
    • πŸ•ΈοΈRPC Client Pool
    • πŸ—οΈTx Builder
    • πŸ“€Tx Writer
    • ⛓️Blockchain Explorers
    • πŸͺ™Token Services
    • πŸ—ƒοΈIndexer
    • ✨Utilities
  • ⛑️Hardhat
    • ℹ️Info
    • ⬇️Installation
    • 🧩Compile
    • πŸ’«Deploy
  • 0️Openzeppelin
    • Openzeppelin contracts
Powered by GitBook
On this page
  • Configuration
  • Additional Common Flags

Installation

Previous0xWebNextBlockchains

Last updated 1 year ago

The CLI tool is installed as global npm package

npm i 0xweb -g
0xweb --help

Right away you can start using available commands. Like getting the Gas Price for a chain.

> 0xweb gas -c polygon

Chain polygon
Price 60 gwei

⚠️ We ship our public API keys and Node Endpoints for Ethereum, Polygon, Gnosis Chain, etc. So we would like you to ask to create your keys and replace them in the configuration.

Configuration

0xweb config --edit

This creates the configuration file (%APPDATA%/.dequanto/config.yml) with the default values, and you are free to add/replace the values. After you saved the file, you can check the configuration with

0xweb config --view

Additional Common Flags

--color none

Doesn't print colored output

--silent

Doesn't print information logs

--endpoint http://some:port

Overrides the RPC Url loaded from config

πŸ’»