githubEdit

Confidential Voting Developer Tutorial with SecretPath

Learn how to use SecretPath to vote confidentially on the EVM

Overview

SecretPatharrow-up-right enables EVM developers to use Secret Network as a Confidential Computation Layer (CCL) for all EVM-compatible chainsarrow-up-right.

In this developer tutorial, you will learn how to use SecretPath to enable confidential voting on the EVM.

circle-info

See a fullstack cross-chain voting demo herearrow-up-right.

Understanding SecretPath

At a high level, you can think of SecretPath as a confidential bridge that passes encrypted data from your EVM chain to a Secret Network smart contract where the data remains encrypted.

To work with SecretPath, you must first create a Secret smart contract that stores the encrypted data that you want to send from the EVM. For our purposes, we have created a Secret smart contract with 2 functionalities:

  1. Create proposals

  2. Vote on existing proposals

You create and vote on proposals from the EVM, and then that data is sent to your Secret smart contract via SecretPath where it remains encrypted . Pretty cool, right!? 😎 Let's start by examining our Secret voting contract, and then we will breakdown how to send messages to it from the EVM with SecretPath.

Secret Network Prerequisites

Getting Started with Secret Network

To get started, clone the examples repoarrow-up-right:

cd into secretpath-tutorials/secretpath-voting/voting-contract:

Open contract.rsarrow-up-right and examine the match statement at line 67arrow-up-right:

This handle msg is where you define the functionality of your SecretPath contract. For our purposes, we have written the functions create_proposalarrow-up-right and create_votearrow-up-right. You can examine those functions in more detail if you'd like and make adjustments as you see fit 🤓.

Compiling and uploading the Secret contract

Update the envarrow-up-right file with your Secret Network wallet mnemonic, and rename it ".env" instead of ".env.example"

Compile the contract

cd into voting-contract/node:

Install the node dependencies

Set SecretPath parameters:

Open upload.jsarrow-up-right and configure the SecretPath gatewayAddress, gatewayHash, and gatewayPublicKey:

gatewayAddress, gatewayHash, and gatewayPublicKey are needed for instantiating contracts that utilize SecretPath and can be found in the docs herearrow-up-right. You will always use these same 3 parameters for instantiating a SecretPath-compatible contract on testnet.

Upload and instantiate the contract:

Upon successful upload and instantiation, add the contract codeHash and address to your envarrow-up-right.

Send encrypted data to your Secret Contract on the EVM

Now that you have instantiated your confidential voting contract on Secret Network, it's time to pass your encrypted data from the EVM to Secret Network. Remember the create_proposal and create_vote functions from the Secret contract? Now you will execute those functions and send encrypted data to the voting contract! 🤯

Bootstrapping the frontend

Let's create and vote on your first proposal with SecretPath!

cd into secretpath-voting/frontend:

Install the dependencies

Configure env

Configure the envarrow-up-rightwith your confidential voting contractAddress and codeHash.

Run the application

You should see the following React application running locally in the browser:

Cross-chain EVM voting frontend

Now, create and vote on a proposal to understand the frontend functionality. Then, let's look at the underlying code to understand how we are passing encrypted data from the EVM to Secret Network 🙂

Passing Encrypted Data with SecretPath

As stated above, we have two functions we are executing with SecretPath: create_proposal and create_vote. In our React application, there are two corresponding components which execute these functions: CreateProposalarrow-up-right and VoteonProposalarrow-up-right.

Create a Voting Proposal

Open CreateProposal.js and navigate to the handleSubmitarrow-up-right function, which contains all of our SecretPath logic.

circle-info

The majority of the handleSubmit function is boilerplate code used for SecretPath verification, signing, and converting contract inputs into correctly formatted packets and vice versa.

For our purposes, we only need to examine 2 lines of code, data on line 88arrow-up-right and handle on line 218.arrow-up-right

  1. data is the encrypted data that we are passing from the EVM to the Secret Network voting contract. It takes a user input of name, description, and end_time. This corresponds with the ProposalStoreMsgarrow-up-right in the Secret contract.

  2. handle is the function that is actually being called in the Secret contract that you deployed. You are passing the create_proposal handle, which executes the create_proposalarrow-up-right function in your Secret voting contract.

Now that you have all of your SecretPath code configured, execute the frontend to send your voting proposal to the Secret contract!

Upon successful execution, your SecretPath transaction hasharrow-up-right will be logged in the console.

Vote on a Proposal

Open VoteonProposal.jsarrow-up-right and navigate to the handleSubmitarrow-up-right function, which, again, contains all of our SecretPath logic.

  1. dataarrow-up-right is the encrypted data that we are passing from the EVM to the Secret Network voting contract. It takes a user input of vote, ("yes" or "no"), wallet_address (the wallet address of the voter), and index.This corresponds with the VoteStoreMsgarrow-up-right in the Secret contract.

circle-info

The voting contract is designed so that each proposal has an ascending index starting with 1. The first proposal you create is index 1, the second is index 2, etc. So when you vote, the React application passes the corresponding index of the proposal that is to be voted on 🙂

  1. handle: You are passing the create_vote handle, which executes the create_votearrow-up-right function in your Secret voting contract.

Execute the frontend to vote on an existing proposal and send the encrypted vote to the Secret contract!

Upon successful execution, your SecretPath transaction hasharrow-up-right will be logged in the console.

Secret Queries - retrieving proposals and votes from Secret contract storage

Perhaps you are wondering how the React frontend queries the Secret voting contract to display the data that we pass from the EVM. This is possible with secret.jsarrow-up-right, the javascript SDK for Secret Network.

We have 2 query functionsarrow-up-right defined in our Secret voting contract, RetrieveProposals and RetrieveVotes. Once you have created proposals with votes, you can use execute these query functions with secret.js to:

These queried proposals and their associated votes are then displayed in our React frontend.

Conclusion

Congrats! You deployed your very own confidential voting contract on Secret Network and used SecretPath to send cross-chain encrypted votes on an EVM chain. See the fullstack demo herearrow-up-right. You now have all of the tools you need to start building your own cross-chain SecretPath contracts on the EVM 🎉

circle-info

Note: the end user of the application is not exposed to Secret Network and is only working directly in the EVM environment. However, the data is fully protected and cannot be viewed by anyone because it is stored in encrypted Secret contracts 😮‍💨

If you have any questions or run into any issues, post them on the Secret Developer Discord arrow-up-rightand somebody will assist you shortly.

chevron-rightSecretPath - a deep dive hashtag

Let's dive a little deeper into the boilerplate SecretPath code to understand how our data is encrypted, signed, and formatted by SecretPath. The following comments are for the handleSubmitarrow-up-right function of our CreateProposal component:

Last updated

Was this helpful?