- ZK program (
ZK circuit
): Implemented inzkVM / Boundless
powered by RISC Zero (Written in Rust) - Smart Contract: Written in Solidity (Framework: Foundry)
- Blockchain:
Ethereum Sepolia
(Testnet)
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
-
This is the
ZK
(Zero-Knowledge
) based Energy Trading Platform, which is the decentralized energy trading platform that consists of the ZK programs inzkVM / 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).
-
- The diagram of the userflow: https://github.com/masaun/ZK-energy-trading-platform-in-RISC0/blob/main/docs/diagrams/diagram_userflow_ZK-energy-trading-platform-in-RISC0.jpg
-
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]
).
- By doing so, the amount of native ETH to be send would be added to the buyer's account in the EnergyAggregator contract (
-
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 |
- 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
forge build
- Run the test of the
smart-meter
ZK program (called aguest
program in zkVM / Boundless powered by RISC Zero)
sh guests/tests/runningGuestProgram_smart-meter.sh
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.
- 1/ Deploy the
EnergyAggregator
contract onEthereum Sepolia
testnet:
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>"
- Run the test of the EnergyAggregator contract (
./contracts/test/EnergyAggregator.t.sol
):
sh ./contracts/test/runningTest_EnergyAggregator.sh
- 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
-
RISC Zero: https://risczero.com/
- Doc (zkVM / Bonsai): https://dev.risczero.com/api
- Boundless: https://beboundless.xyz/
- Boundless Doc: https://docs.beboundless.xyz/introduction/why-boundless
-
Ethereum Sepolia testnet:
- Block Explorer: https://sepolia.etherscan.io/