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
  1. Package Manager

Folder structure

PreviousBlockchainsNextDequanto dependency

Last updated 3 years ago

See the πŸ”— project

For the installed contract you'll get:

  • Generated TypeScript classes

  • ABI json source file

  • Solidity source file(s)

The files are saved under 0xweb folder in the project's root directory, additionally the 0xweb.json will include all installed contracts (similar to package.json)

my-project/
β”œβ”€β”€ 0xweb/
β”‚   └── eth/
β”‚       └── %package-name%/
β”‚           β”œβ”€β”€ %class-name%.ts
β”‚           β”œβ”€β”€ %class-name%.json
β”‚           └── %class-name%/
β”‚               └── %sources%.sol
└── 0xweb.json

πŸ“¦
πŸ“‚
Demo