Contract package manager and other web3 tools
npm install 0xweb0xweb - Contract package manager and CLI Web3 Toolkit

----




| | |
|--|--|
|Demo: Backend |  |
|Demo: Storage |  |
|Demo: Hardhat |  |
|Demo: Price Loader |  |
- Generate TypeScript or ES6 classes for contracts fetched from Etherscan and Co.
- CLI commands to query the contracts or to submit transactions
- RESTful API for the installed contracts
- Deploy and track deployed contracts with ease
> Dequanto library š¦ is used for the wrapped classes
Here the example of generated classes: 0xweb-org/0xweb-sample š
``bash
$ npm i 0xweb -g
> Use the
--hardhat flag, if you want to develop|compile|deploy|test contracts: 0xweb init --hardhat#### API Usage
> Use autogenerated TypeScript classes for much safer and faster backend implementation
`ts
import { ChainlinkOracleEth } from '0xc/eth/chainlink/oracle-eth/oracle-eth';
import { Config } from 'dequanto/config/Config';
import { $bigint } from 'dequanto/utils/$bigint';await Config.fetch();
let oracle = new ChainlinkOracleEth();
let decimals = await oracle.decimals();
let price = await oracle.latestAnswer();
console.log(
ETH Price, $bigint.toEther(price, decimals));
`$3
> READ and WRITE to installed contracts directly from the command line
`bash
$ 0xweb contract chainlink/oracle-eth latestAnswer
`#### WEB Usage
The package has the built-in web interface to make the blockchain analyze and interaction simpler.
1. If you initialize the Transaction via CMD, you may want to sign the transaction with your browser wallet. For this, 0xweb spins up the HTTP server and redirects your browser to visit local page where the details of the transaction being shown, and you can sign and submit the transaction.
2. Launch local server to view the validated contract in UI interface to interact with.
`bash
0xweb server start
`Config
> āā£ļøā We include our default KEYs for etherscan/co and infura. They are rate-limited. Please, create and insert your keys. Thank you!
`bash
$ 0xweb config --editoptionally, you can provide the Nodes Endpoint with
--endpoint flag
$ 0xweb COMMAND --endpoint https://my-node-url-here
`Commands overview š
Various Blockchain tools
> Get the commands overview
`bash
$ 0xweb --help
$ 0xweb install --help
`$3
1. Get current block info
`bash
$ 0xweb block get latest
`$3
1. Get Token Price
`bash
$ 0xweb token price WETH
`$3
š Wallet feature allows to store accounts in encrypted local storage. We use local machine KEY and provided PIN in arguments or environment to create cryptographically strong secrets š for account encryption.
When calling contracts
WRITE methods, you should first add an account to the wallet, and then use PIN to unlock the storage`bash
$ 0xweb account add --name foo --key the_private_key --pin foobar
$ 0xweb token transfer USDC --from foo --to 0x123456 --amount 20 --pin foobar
``š
----
Ā©ļø MIT License.