0xWeb
By using dequanto library we export the most common WEB3 commands to be accessible straight from your command line interface.
Generate
TypeScript classes for validated smart contracts and import them as regular modules. Read methods, Write methods, Event listeners, and Log parsers — everything is already included. Access private storage variables with auto-generated getter functions.

0xWeb
is built on top of dequanto library — the blockchain communication layer, which is integrated under the hood.
We believe in the openness and transparency of the web. And we want to provide anybody with a quick and easy way to integrate blockchain solutions.
An example of what you will get
- Install the contract
0xweb install 0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419 --name chainlink/oracle-eth --chain eth
- Get the price
const oracle = new ChainlinkOracleEth();
const price: bigint = await oracle.latestAnswer();
Last modified 10mo ago