Follow the installation instructions here to set up Powergate, which combines IPFS and Lotus.
- Follow the instructions here to install Ganache.
- Start a Docker container with Ganache:
docker run --detach --publish 8545:8545 trufflesuite/ganache:latest
- Import one of the generated accounts into MetaMask.
- Download and install the Monero CLI wallet binaries from the official Monero website.
- Use
monero-wallet-cli
to interact with the daemon. Refer to the user guide for details.
Start two nodes on a stagenet that only communicate with each other:
monerod --stagenet
Then start the client's CLI wallet on the same machine:
monero-wallet-cli --stagenet
Mine some blocks:
start_mining <yourwalletaddress> 1
Repeat the above steps for the Service Provider's (SP) CLI wallet:
monero-wallet-cli --stagenet
Mine some blocks as well:
start_mining <yourwalletaddress> 1
After a short time, both wallets should show a balance. Check the balance with the refresh
command.
- Client's address:
5Azsn5VgEje8ocGTJcyXNcj2rGdNHEbyNQBJJjrYvCxrJjNCDZuQxoT6caF12TSoNr77WwoEGUsfofQxHG2s84htP7K918K
- SP's address:
5B6PgosHHqXNRgMhGyN25pewMf1VjoCWvGQJRzFYkj3UYZwvTaHfG2gdrSAWxLmgHphhh1Zt1AsvgRj6eBYQb3MW5YSXiUr
- Enable per-transaction proof generation by setting:
set store-tx-info 1
- Send a transaction from the client to SP and generate a proof:
get_tx_key <key>
- Verify the transaction using:
check_tx_key TXID TXKEY ADDRESS
- Navigate to the smart contracts directory:
cd smartcontracts
- Connect to the Ganache blockchain with Truffle:
truffle console
- Deploy the smart contract:
This will compile the smart contract and output the ABI to
migrate --network development
webapp/src/contracts/AnonSer.json
.
- Navigate to the web app directory:
cd webapp
- Start the npm server:
npm start
- Client: Opens the web app, which generates a DHKE-compliant key pair and a random
provisionId
. - QR Code: The app generates a QR code containing the public key and
provisionId
, which the client downloads and prints as a label. - Package: The QR code is attached to the materials package (
pkg
) and delivered to the service provider, optionally with cash. - SP: Scans the QR code to retrieve the public key and
provisionId
. - Payment:
- If paid in cash, SP can immediately publish a Proof of Delivery on the Ethereum smart contract.
- If not, SP generates a new integrated address for the client, calculates a payment ID, and publishes the Proof of Delivery along with the dedicated payment address.
- Client: Listens for events on the Ethereum smart contract.
- Payment: If not paid in cash, the client sends payment to the specified address.
- Service Provision: SP processes the payment, provides the service, and uploads the results to the Powergate network.
- Result Delivery: SP publishes the proof of provision to the Ethereum smart contract.
- Client: Retrieves and decrypts the results from IPFS/Lotus using the smart contract information.
- Generate a random key pair and
provisionId
. - Encode the public key and
provisionId
, generate a QR code, and download it as a printable label. - Listen for smart contract events and fetch/decrypt provision results from IPFS/Lotus.
- Scan and decode the QR code.
- Publish transactions to the Ethereum smart contract.
- Listen for payments on supported methods.
- Upload provision results to IPFS/Lotus.
- Use the web app, print the QR code, and attach it to the package.
- Deliver the package to the Service Provider.
- Pay for the service, either in cash or via another supported method.
- Notify authorities in case of a conflict.
- Accept the package with the printed QR code label.
- Handle payments and service provision according to the protocol.
- Initialized using
create-react-app
. - Integrated with
web3js
for blockchain interaction. - User interface with options to start new provisions or check provision status.
- Accept packages and handle payment verification.
- Manage the lifecycle of service provision.