Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Latest commit

 

History

History

apps

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Apps

In typical applications, an off-chain app is needed to do two main actions:

  • Produce a proof e.g. by sending a proof request to Bonsai.
  • Send a transaction to Ethereum to execute your on-chain logic.

This template provides the publisher CLI as an example application to execute these steps. In a production application, a back-end server or your dApp client may take on this role.

Publisher

The publisher CLI, is an example application that sends an off-chain proof request to the Bonsai proving service, and publishes the received proofs to your deployed app contract.

Usage

Run the publisher with:

cargo run --bin publisher
$ cargo run --bin publisher -- --help

Usage: publisher --chain-id <CHAIN_ID> --eth-wallet-private-key <ETH_WALLET_PRIVATE_KEY> --rpc-url <RPC_URL> --contract <CONTRACT> --input <INPUT> --input-2 <INPUT_2>

Options:
      --chain-id <CHAIN_ID>
          Ethereum chain ID
      --eth-wallet-private-key <ETH_WALLET_PRIVATE_KEY>
          Ethereum Node endpoint [env: ETH_WALLET_PRIVATE_KEY=]
      --rpc-url <RPC_URL>
          Ethereum Node endpoint
      --contract <CONTRACT>
          Application's contract address on Ethereum
      --input <INPUT>
          The input to provide to the guest binary
      --input-2 <INPUT_2>
          The second input to provide to the guest binary
  -h, --help
          Print help
  -V, --version
          Print version