Skip to content

ZK based Energy Trading Platform in zkVM / Boundless powered by RISC Zero

License

Notifications You must be signed in to change notification settings

masaun/ZK-energy-trading-platform-in-RISC0

Repository files navigation

ZK Energy Trading Platform ⚡️

Tech stack


Actors

This project would assume the M2M (machine-to-machine) interaction by following actors:

  • Energy Producer's (Energy Seller's) smart meter, which has a wallet.
  • Energy Consumer's (Energy Buyer's) smart meter, which has a wallet.
  • Energy Aggregator smart contract

Overview

  • This is the ZK (Zero-Knowledge) based Energy Trading Platform, which is the decentralized energy trading platform that consists of the ZK programs in zkVM / Boundless powered by RISC Zero and smart contracts in Solidity/Foundry.

  • By trading energy through this platform, each actor would get the following merits:

    • an energy producer ('s smart meter) can create a sell order of a specified-amount of energy without revealing a whole amount of energy-produced.

    • meanwhile, an energy consumer ('s smart meter) can buy create a buy order of a desired-amount of energy, which is validated and a proof is attested via a ZK program (ZK circuit).


Userflow - Diagram


Userflow - Details

  • 1/ A energy producer's smart meter would measure a whole amount of energy avaialble.

  • 2/ A energy producer's smart meter create a sell order with a specified-amount of energy.

    • 2-1/ At this point, the energy producer's smart meter would generate (prove) a proof via a ZK program (ZK circuit) off-chain.

      • During the process of generating (proving) a proof in a ZK program, it would be validated whether or not the amount of energy-created with a sell order is equal to or less than the whole amount of energy-measured by the producer's smart meter. (This is called a "constraint")
      • Once the validation (constraint) would be passed in the ZK program, a proof wold be generated and a energy producer will receive it off-chain.
    • 2-2/ Then, the energy producer would call the EnergyAggregator#createSellOrder() with a proof and public inputs (icl. amount of energy to be sold) as the arguments.

  • 3/ A energy consumer would deposit certain amount of native ETH into the EnergyAggregator contract via the EnergyAggregator#depositNativeETH()

    • By doing so, the amount of native ETH to be send would be added to the buyer's account in the EnergyAggregator contract (buyerBalances[buyer's address]).
  • 4/ The energy consumer would create a buy order with a desired-amount of energy via the EnergyAggregator#createBuyOrder().

    • At this point, if this buy order would be matched with a sell order, the EnergyAggregator contract will transfer the payment to the producer's smart meter.
  • NOTE:

    • In this scenario, we assume that both a producer's smart meter and a consumer's smart meter would hold a wallet (i.e. EOA /or smart contract wallet)

    • In this scenario, an energy price would be set as a fixed-price (0.00000001 ETH / kWh). In the future, a seller and a buyer should be able to specify a dynamic price (desired-price).

    • In the step 2/ above, the remained-amount of energy goes to a home battery stroage like Tesla's Powerwall


Deployed-addresses on Ethereum Sepolia testnet

Contract Name Descripttion Deployed-contract addresses on Sonic Testnet
EnergyAggregator This contract allow an energy producer's/consumer's smart meter to create a sell/buy order and match them. This contract also allow a energy consumer to deposit the amount of native ETH into this contract. Once these order would be matched, this contract will proceed the payment to a energy producer's smart meter instead of a energy consumer. 0x1c501E0e73157c39dfa5f5eCe0EC25C70b522bF9

Installations

Install the cargo packages

  • 1/ Install the Cargo packages
cargo build
  • 2/ Within the contracts/test/Elf.sol, the path (SMART_METER_PATH) should be fixed like this:
library Elf {
    string public constant SMART_METER_PATH =
        "../../target/riscv-guest/guests/smart-meter/riscv32im-risc0-zkvm-elf/release/smart-meter";
}

Compile the smart contracts

  • Compile the smart contracts
forge build

Running the test of the ZK guest program

  • Run the test of the smart-meter ZK program (called a guest program in zkVM / Boundless powered by RISC Zero)
sh guests/tests/runningGuestProgram_smart-meter.sh

Set up your environment

Add your Sepolia testnet wallet private key to an env file:

WALLET_PRIVATE_KEY="YOUR_WALLET_PRIVATE_KEY"

To allow provers to access your zkVM guest binary, it must be uploaded to a public URL. For this example we will upload to IPFS using Pinata. Pinata has a free tier with plenty of quota to get started. Sign up at [Pinata](https://pinata.cloud/), generate an API key, and set the JWT as an environment variable:

PINATA_JWT="YOUR_PINATA_JWT"

A .env file is provided with the Boundless contract deployment information for Sepolia. The example app reads from this .env file automatically.


Deploy the smart contracts

sh ./contracts/scripts/runningScript_Deploy.sh
  • 2/ Save the EnergyAggregator contract address on Ethereum Sepolia to an .env file:
ENERGY_AGGREGATOR_ADDRESS="<Deployed-address of the EnergyAggregator.sol contract on Ethereum Sepolia testnet>" 

Running the Test of SCs on Ethereum Sepolia testnet

  • Run the test of the EnergyAggregator contract (./contracts/test/EnergyAggregator.t.sol):
sh ./contracts/test/runningTest_EnergyAggregator.sh

Running the (backend) App

  • 1/ Add the input data for the ZK guest program (main() in the ./guests/smart-meter/src/main.rs):
AMOUNT_OF_ENERGY_TO_BE_SOLD=""              # --amount-of-energy-to-be-sold ${AMOUNT_OF_ENERGY_TO_BE_SOLD:?} 
TOTAL_EXACT_AMOUNT_OF_ENERGY_AVAILABLE=""   # --total_exact_amount_of_energy_available
AMOUNT_OF_ENERGY_TO_BE_SOLD=""              # --current_time ${AMOUNT_OF_ENERGY_TO_BE_SOLD:?}
MONITORED_TIME=""                           # --monitored_time ${MONITORED_TIME:?}
MONITORED_MERKLE_ROOT=""                    # --monitored_merkle_root ${MONITORED_MERKLE_ROOT:?}
MONITORED_NULLIFIER=""                      # --monitored_nullifier ${MONITORED_NULLIFIER:?} 

  • 2/ Run the ./apps/src/main.rs:
sh ./apps/runningApp_main.sh

References and Resources

About

ZK based Energy Trading Platform in zkVM / Boundless powered by RISC Zero

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published