Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Learn how to use SecretPath on EVM to encrypt payloads.
SecretPath seamlessly handles encrypted payloads on the EVM, which means EVM developers can use SecretPath to encrypt and decrypt messages cross-chain with little-to-no Rust experience required.
Check out the Key Value store demo here to see what you will build
This tutorial explains how to:
Upload your own Key-value store contract on Secret Network
Encrypt data on the EVM and transmit encrypted data cross-chain to Secret Network
Connect your key value store contract to a React frontend.
After this tutorial, you will have the tools you need to use SecretPath to encrypt messages on any EVM-compatible chain.
To get started, clone the EVM key value store repository:
cd
into secret-contract/node
Install the dependencies:
In the node
folder, open the upload.js file and review the instantiate message at line 56:
gatewayAddress
is the SecretPath gateway contract address for testnet
gatewayHash
is the SecretPath gateway contract hash for testnet
gatewayKey
is public key used for SecretPath encryption on Secret testnet
These three parameters remain constant and must be passed for every Secret Network contract that implements SecretPath. They can be found here for testnet.
To upload and instantiate the contract, run node upload
:
Upon successful upload, a contractHash
and address
will be returned:
If you want to make any changes to the Secret smart contract before uploading it to Secret Network, you can do that too! Simply update the contract and then compile it by running make build-mainnet:
The compiled contract, called contract.wasm.gz
, will be outputted in the secret-contract folder.
Now that you have your key value store smart contract uploaded to Secret Network, let's use it to store encrypted messages passed from the EVM. Most of the ECDH cryptography has been abstracted away so there are only a few values you need to change.
cd
into evm-kv-store-demo/kv-store-frontend:
Install the dependencies:
Open .env
and change the routing_contract
and routing_code_hash
to the address and code hash for your contract:
That's it! You dApp is now connected to your Secret smart contract and ready to encrypt key value pairs. To start the application, run:
Now that you have successfully uploaded a key-value contract to Secret Network and connected it to a React frontend, let's examine the code to understand how SecretPath passes encrypted data from the EVM to Secret Network.
From a high-level, all that you need to know is there is a public SecretPath contract deployed on every EVM chain listed here, which communicates with a private SecretPath contract deployed on Secret Network, and it is these public/private contract pairs that encrypt your data and pass messages from the EVM to Secret Network.
When you create your cross-chain dApp, you simply need to format your data so that it can be transmitted successfully from the public SecretPath contract to the private SecretPath contract.
All of the data formatting for the public EVM contract happens in submit.js. This is almost entirely boilerplate code except for the variables handle
and data
:
handle
is the name of the function that we are executing in our private Secret smart contract, and data
is the data that we pass to the function that we are executing in the Secret contract, which in the case of the key value contract is key,
value,
and viewing_key.
Let's now look at the Secret Network contract that we uploaded to better understand the store_value
function and how it uses the parameters key,
value,
and viewing_key.
At line 109, we have a match
statement, which includes the handle "store_value":
Since we pass the handle store_value
from your dApp to your Secret contract, it knows to execute the store_value
function!
Inside of the store_value
function, we use the key,
value,
and viewing_key
parameters that we pass from the EVM in order to create a key map with our key-value pairs:
This data is encrypted and stored inside of your Secret smart contract. The data can now only be revealed with a query that uses the proper viewing_key:
In this tutorial, you've learned how to deploy a key-value store smart contract on Secret Network, encrypt and transmit messages from an EVM-compatible chain, and integrate the contract with a React frontend. Using SecretPath, you can now seamlessly handle encrypted payloads cross-chain with minimal Rust experience. By following the steps outlined, you're equipped to build decentralized applications that leverage SecretPath for secure, cross-chain communication and data storage.
If you have any questions or run into any issues, post them on the Secret Developer Discord and somebody will assist you shortly.
One of SecretPath's key features is the ability to use encrypted payloads to send over confidential messages to a Secret Smart contract.
SecretPath can seamlessly handle encrypted payloads, as the master gateway contract on Secret automatically decrypts the payload and hands the decrypted payload over to the target contract.
The encryption of the payload is done using the , an algorithm.
The key for this symmetric encryption is created by using the (ECDH) scheme, comprising of two components:
An extra encryption public key provided from the Secret Gateway Contract
A randomly created (ephemeral) encryption private key on the user side (independent of the user wallet's private key)
Combining both of these keys together via the ECDH Scheme yields our encryption key, which we use to encrypt the payload with ChaCha20-Poly1305.
As a first example for this, we have used SecretPath to encrypt a string
and subsequently store it in a Secret contract.
A first-price sealed-bid auction, also known as a "blind auction", is a type of auction in which all bidders simultaneously submit sealed bids so that no bidder knows the bid of any other participant. The highest bidder pays the price that was submitted. In this tutorial you will learn how to create a cross-chain sealed bid auction dApp with encrypted bids using.
See a live demo !
Contract Deployment: Participants initiate the process by deploying a Sealed Bid Contract to the Secret Network. This contract contains their auction items and encrypted bids, safeguarding the bid details from public exposure.
Contract Execution via Public Gateway:
The execution sequence begins when the Sealed Bid Contract is interacted with via the Ethereum Virtual Machine (EVM).
The SecretPath Public Gateway Smart Contract serves as the intermediary, facilitating communication between the EVM and Secret Network.
Secure Message Transmission:
Messages and transactions pass through the Public Gateway to the Private Gateway Smart Contract, utilizing ECDH to ensure that the data exchanged remains confidential and tamper-proof, maintaining the integrity of the sealed bid throughout the process.
Finalization:
Once the bidding period concludes, the Sealed Bid Contract processes the bids to determine the winner securely.
The outcome is then communicated back through the gateway contracts to the relevant parties on the EVM.
A first-price sealed-bid auction, also known as a "blind auction", is a type of auction in which all bidders simultaneously submit sealed bids so that no bidder knows the bid of any other participant. The highest bidder pays the price that was submitted. In this tutorial you will learn how to create a cross-chain sealed bid auction dApp with encrypted bids using.
See a live demo ! See the fullstack frontend code implementation .
You will start by configuring your developer environment and then learn how to use SecretPath to enable cross-chain encryption and decryption, using Secret Network as a Confidential Computing Layer (CCL) for the EVM.
To get started, clone the SecretPath tutorials repository:
your Sepolia wallet.
.
.
cd
into sealed-bid-auctions/sealed-bid-contract
Compile the contract
cd
into secret-contract/node:
Install the node dependencies
Set SecretPath parameters:
Upload and instantiate the contract:
Now that you've instantiated a sealed bid contract on Secret Network, it's time to create your first auction item with SecretPath!
cd
into sealed-bid-auctions/evm-contract
:
Install the dependencies
Configure env
Configure SecretPath
If you wanted to do this for mainnet, you would simply use the mainnet encryption key.
Now that you have all of your SecretPath code configured, execute the SecretPath Sepolia public gateway contract to send your auction item to the Secret contract:
Each auction item you create will have an associated ID; the first auction item has ID 1, the second has ID 2, and so on.
Upon successful execution, info about your SecretPath payload will be returned:
Note that the sealed bid contract is designed so that each auction item has an ascending index number starting with 1. So the first auction item you list is index 1, the second is index 2, and so on.
Once you have set your bid, execute the bid function:
Upon successful execution, info about your SecretPath payload will be returned. Now let's query your auction item and bids with secret.js.
cd
into sealed-bid-auctions/sealed-bid-contract/node
:
Make sure you have added your Sealed bid contract address and codehash to your env file, and then query the auction item with node query_auction
:
Note that you are querying with key 1, because the first auction item is stored at index 1, the second auction item is stored at index 2, and so on.
If your auction item was submitted successfully, it should be returned like so:
If the bidding is still open, it will return the message:
If the bidding is closed, it will return the highest bid:
Note that 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.
Congrats! You now have now deployed a fullstack cross-chain decentralized application that passes encrypted key-value pairs from the EVM and stores them on Secret Network
You can view the frontend component for querying your Secret contract here!
Update the with your Secret Network wallet mnemonic, and rename it ".env" instead of ".env.example"
Open upload.js and configure the SecretPath , , and :
gatewayAddress, gatewayHash, and gatewayPublicKey are needed for instantiating contracts that utilize SecretPath and can be found in the docs . You will always use these same 3 parameters for instantiating a SecretPath-compatible contract on testnet.
Upon successful upload and instantiation, add the contract codehash and address to your .
Configure the with your sealed bid auction contract address and codehash, and rename it ".env" instead of ".env.example".
Open and navigate to , the publicClientAddress
. This is the SecretPath gateway address for .
If you wanted to send messages on another chain, such as Base or Polygon, you would simply update this publicClientAddress with the corresponding address found.
Similarly, there is a SecretPath gateway encryption key, which is on This is used for ChaCha20-Poly1305 Payload encryption and can be found in the docs
Next, configure the auction to your liking (end_time
is the amount of minutes that the auction will be live for), and note the handle
variable, which is the function that is actually being called in the Secret contract that you deployed. You are executing the handle, which executes the in your sealed bid contract.
Now it's time to place an encrypted bid on your listed auction item. Open and adjust the that you want to bid as well as the of the auction item.
NOTE: end_time
is converted from minutes to Secret Network block height 😎
Now, query the by running node query_bid
:
This is programmed in the of the Sealed Bid contract and can be adjusted to your liking 😊
NOTE: Be sure to update the for subsequent auction item queries
Congrats! You deployed your very own sealed bid auction contract on Secret Network and used SecretPath to send cross-chain encrypted bids on Sepolia testnet. See the fullstack demo . You now have all of the tools you need to start building your own cross-chain SecretPath contracts on the EVM 🎉
If you have any questions or run into any issues, post them on the and somebody will assist you shortly.
Confidential voting on Secret Network enables developers to create and manage voting systems where proposals and votes remain encrypted and secure. This ensures confidentiality and integrity in voting processes across EVM-compatible chains. There are 2 cross-chain voting solutions on Secret Network, the first uses SecretPath, and the other ECDH cryptography.
Overview: Introduction to using SecretPath as a Confidential Computation Layer for EVM chains, allowing encrypted data transfer and storage on Secret Network. Description of how SecretPath functions as a bridge for encrypted data, facilitating the creation and voting on proposals within a Secret smart contract.
Setup and Deployment: Step-by-step guide on setting up the development environment, compiling and uploading the Secret contract, and configuring the frontend to interact with the SecretPath-enabled voting system.
Passing Encrypted Data: Detailed explanation of how to pass encrypted proposals and votes from the EVM to the Secret Network using SecretPath.
Introduction: Guide to encrypting and decrypting votes using Secret Network smart contracts, aimed at building confidential voting on any EVM chain.
Setup and Configuration: Instructions for setting up the developer environment, configuring environment variables, and generating cryptographic keys for encryption. Steps to upload and instantiate the Secret Network and Polygon smart contracts, enabling creation and voting on proposals.
Executing Contracts: Processes for creating proposals, voting, and decrypting votes using the deployed smart contracts on the Polygon testnet and Secret Network.
Learn how to use SecretPath on EVM to access on-chain verifiable random numbers.
SecretVRF over SecretPath enables EVM developers to access on-chain verifiable random numbers at a fraction of the cost and block time of traditional RNG oracles such as ChainlinkVRF. With fewer than 100 lines of code, you will have access to an infinite supply of randomness.
See a fullstack cross-chain SecretVRF demo here
To learn how SecretVRF works underneath the hood, refer to the docs here. 🤓
To get started, clone the repo:
Install the node dependencies:
Update the env
file with your EVM wallet private key and Infura API key.
Make sure your Infura API key is configured for Amoy testnet 😎
Compile your Solidity smart contract:
Once the contract is compiled successfully, upload the contract to Polygon testnet:
Note the contract address:
Add the RandomnessReceiver
contract address to your env
file:
Now that you've uploaded your contract, it's time to set the SecretPath gateway address for Polygon Amoy and then request on-chain verifiable random numbers!
Gateways are the on-chain smart contracts that handle the broadcasting, receipt, packaging, and verification of messages.
First, set the gateway address for Polygon Amoy testnet. You can do this by executing set_gateway.js
:
This tutorial is for Polygon testnet, but you can find a list of additional EVM gateway contract addresses here.
Next, create an event listener so you can listen to when the random numbers that you request have been fulfilled.
Create the event listener by executing fulfill_randomness_event.js
:
Now it's time to request random numbers! Currently, request_random.js
is configured to request 3 random numbers, but you can update how many numbers you would like to request here (up to 2000 for this example).
Once you have configured how many random numbers you want to request, execute request_random.js
:
Upon successful execution, your terminal will log the following:
Navigate to your event listener terminal to see the returned random numbers:
Congrats! You've just used SecretPath to request your first verifiable on-chain random numbers! 🎉
Secret VRF offers an innovative and cost-effective solution for EVM developers seeking access to verifiable random numbers. By following this guide, you've successfully set up your environment, deployed the RandomnessReceiver.sol
contract, and interacted with the SecretPath network to request and receive random numbers. Dive into the world of decentralized randomness with SecretPath, where security meets simplicity. 🌟
Coming soon :D
Learn how to use SecretPath to vote confidentially on the EVM
SecretPath enables EVM developers to use Secret Network as a Confidential Computation Layer (CCL) for all EVM-compatible chains.
In this developer tutorial, you will learn how to use SecretPath to enable confidential voting on the EVM.
See a fullstack cross-chain voting demo here.
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:
Create proposals
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.
To get started, clone the examples repo:
cd into secretpath-tutorials/secretpath-voting/voting-contract:
Open contract.rs and examine the match
statement at line 67:
This handle msg
is where you define the functionality of your SecretPath contract. For our purposes, we have written the functions create_proposal
and create_vote
. You can examine those functions in more detail if you'd like and make adjustments as you see fit 🤓.
Update the env
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.js 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 here. 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 env
.
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! 🤯
Let's create and vote on your first proposal with SecretPath!
cd
into secretpath-voting/frontend
:
Install the dependencies
Configure env
Configure the env
with your confidential voting contractAddress
and codeHash.
Run the application
You should see the following React application running locally in the browser:
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: CreateProposal and VoteonProposal.
Create a Voting Proposal
Open CreateProposal.js and navigate to the handleSubmit function, which contains all of our SecretPath logic.
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 88 and handle
on line 218.
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 ProposalStoreMsg
in the Secret contract.
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_proposal
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 hash will be logged in the console.
Vote on a Proposal
Open VoteonProposal.js and navigate to the handleSubmit
function, which, again, contains all of our SecretPath logic.
data
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 VoteStoreMsg
in the Secret contract.
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 🙂
handle:
You are passing the create_vote
handle, which executes the create_vote
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 hash 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.js, the javascript SDK for Secret Network.
We have 2 query functions 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.
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 here. You now have all of the tools you need to start building your own cross-chain SecretPath contracts on the EVM 🎉
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 and somebody will assist you shortly.
Got improvements or suggestions on how to improve SecretVRF or this tutorial ? Please ask in the Secret Network Telegram or Discord.
For a detailed demonstration, you can watch our video tutorial available here:
After we've gone through an extensive example on how our example contract works, here's how to implement SecretVRF via SecretPath in your own contract in 4 easy steps:
First, import the ISecretVRF
interface into your Solidity Contract:
Second, set your gateway address to the Secret VRF Gateways that you can find and . You only need to make sure that your contract knows the correct SecretVRF Gateway address, for example:
Now, we implement the function that calls the SecretVRF Gateway on EVM. Note that you have to pay an extra amount of your gas token as CallbackGas:
The callback gas is the amount of gas that you have to pay for the message coming on the way back. If you do pay less than the amount specified below, your Gateway TX will fail:
Since this check is dependent on the current block.basefee
of the block it is included in, it is recommended that you estimate the gas fee beforehand and add some extra overhead to it. An example of how this can be implemented in your frontend can be found in this example and here:
From here, the SecretVRF Gateway will take care of everything, just wait 1-2 blocks for Gateway to provide you the random number by getting it from the Secret Networks on chain VRF and do the callback.
The SecretVRF gateway contract will always call the contract that called the VRF contract (using msg.sender
) with the function selector bytes 0x38ba4614
, which is the function:
Now, the SecretVRF Gateway contract will verify the validity of the call and when all checks pass, it will call this function. In this case, we just emit a log as an example to finish our demo. Emitting a log is not obligatory and optional.
SecretVRF stands out in the competitive landscape of verifiable random functions (VRFs) by offering a significant cost and speed advantage over its principal competitors. Notably, it provides approximately a 4 times cost benefit, which is a massive saving for projects that rely on random number generation at scale. This economic efficiency is largely due to its optimized gas usage, which minimizes the on-chain transaction cost.
In addition to its cost benefits, SecretVRF is also twice as fast as its closest competitor. This speed improvement is critical for applications that require almost real-time randomness, such as gaming, lotteries, and various DeFi protocols.
To demonstrate, we have this small video here outlining all of the advantages of SecretVRF vs. its biggest competitor:
An example contract call using SecretVRF on Ethereum Sepolia which requests 20 random words is compared for its gas usage. Here, we use the example contracts provided in the documentation of Chainlink. In both cases, response time for Secret VRF is at around 1-2 blocks, so around 10s.
94k Gas with Secretpath: Etherscan Sepolia
300k+ Gas for Chainlink VRF with their example project: Etherscan Sepolia
55k gas with Secretpath: Etherscan Sepolia
200k+ gas for Chainlink VRF with their example project: Etherscan Sepolia
In total, we also do not need to pay in special LINK tokens and instead can just pay in the native gas token of the chain (here: Sepolia ETH), which saves you additional costs.
To summarize, SecretVRF's combination of cost efficiency, speed, and EVM chain compatibility makes it a compelling choice for developers and projects seeking reliable and economical verifiable random functions. Its technical innovations position it as a leader in the space, offering tangible benefits that can significantly enhance the performance and cost-effectiveness of a wide range of blockchain applications.
Learn how to mint cross-chain privacy-preserving NFTs with SecretPath
enables EVM developers to use Secret Network as a Confidential Computation Layer (CCL) for .
In this developer tutorial, you will learn how to use SecretPath to enable cross-chain NFTs on the EVM. You will mint an NFT on Sepolia testnet that uses a on Secret Network to store private metadata, which can only be accessed by a private password stored in the Secret Contract. And to spice things up, we will generate the NFT image with OpenAI 🔥.
Generate an AI image with OpenAI
Pin the newly generated image with Pinata to create the token URI
Mint the NFT on Sepolia with your token URI
Send the confidential metadata to your Secret Contract with SecretPath
Git clone the repository:
cd into secretpath-nft/secret-contract
Compile the contract:
If you are on a Mac and run into compilation error:
error occurred: Command “clang”
cargo clean
AR=/opt/homebrew/opt/llvm/bin/llvm-ar CC=/opt/homebrew/opt/llvm/bin/clang cargo build --release --target wasm32-unknown-unknown
Once the contract compiles successfully, install the dependencies to upload it to testnet:
Upload the contract:
Upon successful upload, your contract address will be returned:
Before we upload the EVM contract which mints the NFT, let's examine what the Secret Network sister contract does.
Navigate to the state.rs
file to the ConfidentialMetadata
struct:
This is the confidential metadata that you will be storing in the Secret Network smart contract for each NFT that you mint on the EVM. There is an owner
, token_id
, uri
, private_metdata
, and password
, all of which will be associated with each NFT you mint.
Now open contract.rs
and navigate to the execute_store_confidential_metadata
function.
Here we have a keymap
called CONFIDENTIAL_METADATA
, which maps the token id
of your EVM NFT to a ConfidentialMetadata
struct. So for every NFT you mint on EVM, it has an associated private metadata stored in the Secret Contract. Pretty cool, right!
Note that this is for demo purposes only, if you were doing this in production you should use a more secure way of linking the EVM NFT to the Secret Network sister contract, such as a ZK proof.
Now let's deploy our EVM Minting contract 😊
cd
into evm-contract:
Install the dependencies:
Once you have your env file configured, upload the minting contract:
Upon successful upload, a contract address will be returned:
Congrats! You now have a private metadata contract deployed on Secret Network and a minting contract deployed on Sepolia testnet! Now let's learn how to use SecretPath to send data confidentially from the EVM to Secret Network 😎
It's time to connect your EVM minting contract and your Secret confidential metadata contract to a frontend and SecretPath! You will need to create a Pinata JWT key as well as an OpenAI API key, which is outlined below :D
cd into secretpath-nft/frontend and install the dependencies:
Once you have added all of your environment variables, it's time to execute the contracts with our frontend!
We will dive into the SecretPath code shortly, but first, let's create your first cross-chain NFT with SecretPath :D
cd into frontend:
Then run the program:
The frontend is designed so that the description of your NFT will be sent to OpenAI to as the prompt to generate your NFT image. So choose wisely, or not. 😂
The NFT confidential message and password is stored in your Secret Contract, which is linked to the tokenID of the NFT stored on Ethereum. Only your unique password can reveal the private metadata.
Better yet, view the NFT on your frontend to see it paired with the Secret Network sister contract with confidential metadata:
Congrats on minting your first cross-chain encrypted NFT! 🚀
Let's walkthrough the minting steps, and then examine the SecretPath code:
The majority of the SecretPath encryption code is boilerplate; you don't need to change a thing!
The only code you are updating is:
SecretPath allows EVM developers to leverage Secret Network as a Confidential Computation Layer (CCL) for EVM-compatible chains, enabling cross-chain NFTs with confidential metadata. This tutorial guides developers through minting an NFT on Sepolia testnet, using a sister contract on Secret Network to store private metadata accessible only via a private password in the Secret Contract. The process includes generating an NFT image with OpenAI, pinning it with Pinata, minting the NFT on Sepolia, and sending confidential metadata to Secret Network using SecretPath.
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 😮💨
Learn how to store and share confidential documents on the EVM using Secret Network.
In this tutorial you will learn how to implement the to store, view, and share confidential documents on the EVM using Secret Network as a confidential storage layer.
By using our SDK, you will have the possibility to:
Store a new document
See the contents of this document
Grant/Revoke access to the document to another wallet address
When using our SDK, your EVM wallet address is linked to a Secret Network wallet address that enables you/your users to retrieve confidential documents.
Note that when you want to share a document with another wallet address, you need to provide the Secret Network address of the person you want to share it with.
See the fullstack Polygon Mainnet demo .
Create an empty wagmi
project:
During the install process, wagmi
will ask you to select a framework
and a variant
. To follow along with this tutorial, select React
for framework, and Next
for variant. Once you have installed your wagmi
project, cd
into your project:
Install the dependencies & the sdk:
This tutorial will teach you how to use the SDK on Polygon Mainnet. Update your wagmi.ts
file for Polygon Mainnet configuration like so:
Create a .env
file with the following content since we are interacting with the Polygon Mainnet contract:
Navigate to /src/page.tsx
.
Configure your React imports + state viarables like so:
Your environment is now configured to store confidential documents on Polygon Mainnet using Secret Network!
Configure the SDK client like so:
You also have the ability to get existing file access, delete viewing access, and transfer file ownership. See the commented out code above for examples.
This documentation provides a step-by-step guide on how to implement the @secret-network/share-document
SDK to securely store, view, and share confidential documents on the EVM using Secret Network as a confidential storage layer. You learned how to create a new wagmi project, configure it for Polygon Mainnet, and integrate the Secret Network SDK. By following this guide, you can now store documents, view their content, and manage access permissions all on the EVM chain of your choosing.
Got improvements or suggestions on how to convert your ChainlinkVRF contract to SecretVRF ? Please ask in the Secret Network or Discord.
Converting from Chainlink VRF to Secret VRF is easier than you expect. Within four easy steps you can free your contract from bloat and use the lightweight and faster Secret VRF solution.
We start off with the example code from Chainlink from :
In the first step, we remove the imports and the inheritance of the VRFConsumerBaseV2 and add our SecretVRF interface from this. There is no
to get to this:
Here, the behavior of the callbackGasLimit
is different than in ChainlinkVRF. The callback Gas limit is simply all of the gas that you need to pay in order to make callback, which includes the verification of the result as well. The callback gas is the amount of gas that you have to pay for the message coming on the way back. We recommend at least using 100_000+
in Callback gas to ensure that enough gas is available. In case you did not pay enough gas, the contract callback execution will fail.
Next, we can also simplify the constructor since we do not need to define any extra variables or subscriptionIds. Going from this:
to this
Next, we need to slightly adjust the behavior of the function rollDice(address roller)
function and how it calls the Request Randomness function within Secret VRF. Here, we need to use the Secret VRF gateway and call it directly instead.
Make sure to now mark this function as payable
!
Please make sure to actually prepay the right amount of callback gas directly as a value transfer into the contract. The callback gas is the amount of gas that you have to pay for the message coming on the way back. If you do pay less than the amount specified below, your Gateway TX will fail:
Lastly, we'll add a small check to ensure that we actually got an incoming call from the SecretVRF gateway contract. For this, remove the internal
and override
flags on the function and add the require:
That's all that you need to convert your contract from ChainlinkVRF to SecretVRF.
Need help with using encrypted payloads with Secretpath or want to discuss use cases for your dApp? Please ask in the Secret Network or Discord.
First, install all of the the dependencies via NPM:
Next, import the following into your code:
In your vite.config.ts
in the project, you need to add the support for bigInt
into the esbuildOptions:
To start, we first define all of our variables that we need for the encryption, as well as the gateway information:
Next, init the Ethereum client that you are using to call the contract with. Here, we init the chainId to use the Ethereum sepolia testnet and use ethers.js to retrieve the address.
Next, you define all of the information that you need for calling the private contract on Secret + add the callback information for the message on its way back.
We begin by defining the function that we are going to call on the private secret contract, here it's request_random
. Next, we add the parameters/calldata for this function, which is ("{ numWords: Number(numWords) }"
and convert it into a JSON string.
Next, we define the callback Information. In this case, we are using the gateway contract as an example callback. Here, you would typically put in your own custom callback address and callback selector in.
After defining the contract call and callback, we now construct the payload:
Next, we encrypt the payload using ChaCha20-Poly1305. Then, we hash the encrypted payload into a ciphertextHash
using Keccak256.
Next, we use Metamask to sign the ciphertextHash
using personal_sign
. Then, we recover the user_pubkey
from this signed message, which will be also passed into the Public Gateway.
Internally, Metamask takes the ciphertextHash
, preprends the "\x19Ethereum Signed Message:\n32"
string and then hashes it using Keccak256, which results the payloadHash
. Metamask actually signs the payloadHash
to get the signature. Keep this in mind when verifying the signature against the payloadHash
and NOT the ciphertextHash
.
The callback gas is the amount of gas that you have to pay for the message coming on the way back. If you do pay less than the amount specified below, your Gateway TX will fail:
Lastly, we pack all the information we collected during previous steps into an info
struct that we send into the Gateway contract. We the encode the function data. Finally, we set the tx_params. Please make sure to set an approiate gas amount for your contract call, here we used 150k gas. For the value of the TX, we send over the estimated callback gas that we calculated above.
Learn how to send tokens cross-chain from EVM to Secret Network and vice versa
An Axelar is a temporary one-time address created and monitored by Axelar’s Relayer Services.
Deposit addresses generally function for up to 24 hours.
The following tutorials will teach you how to create Axelar deposit addresses to send Axelar USDC cross-chain from EVM to Secret Network and from Secret Network to EVM.
Learn how to send testnet USDC from EVM to Secret Network using Axelar
Create a new package.json file and install axelarjs
Add type "module" to package.json:
Run node evm-to-secret
to execute createDepositAddress
:
A deposit address will be returned in your terminal:
Add the Sepolia USDC token to your wallet. Sepolia USDC token contract address:
Fund your wallet with testnet Sepolia USDC by bridging AXL to sepolia USDC.
Now, simply send Sepolia USDC from your wallet to the deposit address that you created earlier!
See Cross-Chain NFT demo .
Get Secret Network testnet tokens from
Get Sepolia testnet tokens from
Make sure you have the of Xcode installed and then update your clang path by running the following in your terminal:
See for instructions on updating your clang path.
Create an and add your Secret wallet mnemonic:
Create a and add your EVM PRIVATE_KEY
and for Sepolia testnet:
Create an and add the following:
Create a Pinata JWT key
Create an OpenAI API key
Once you mint your NFT, navigate to to see it in all its glory.
to create the token URI
with your token URI
with SecretPath
the Secret Network
the that you pass to the Secret Network sister contract
and the function that you are calling in the Secret sister contract
The execute_store_confidential_metadata
handle executes the
If you have any questions or run into any issues, post them on the and somebody will assist you shortly.
If you want to deploy your own EVM contract on a different chain rather than using the deployed contract on Polygon, you can do so by deploying the contract . Make sure that you deploy your contract to an ⚠️
Next, navigate to and generate a new API key
+ JWT token
to use for storing documents. Make sure you save the credentials in a safe place because we will use them shortly :D
We are using Pinata as our storage solution for this tutorial, but you can use any of the provided in the SDK, or even build your own!
To see a barebones implementation of all of the React logic, view the completed repo . Simply clone it to your machine and run npm run dev
to run it locally.
Special thanks to the team for building out this SDK as part of the Secret Network Q1 2024 grants cohort :D
Since this check is dependent on the current block.basefee
of the block it is included in, it is recommended that you estimate the gas fee beforehand and add some extra overhead to it. An example of how this can be implemented in your frontend can be found in this and here:
First, we define the Gateway address that is specific to each chain, which can you can look up here .
Second, you need to input the private contract that you are going to call, in our case the Secret VRF RNG contact on Secret Network. The code for this example contract can be found in case you want to deploy it yourself.
Next, you generate ephermal keys and load in the public encryption key for the Secret Gateway that you can look up in . Then, use ECDH to create the encryption key:
Since this check is dependent on the current block.basefee
of the block it is included in, it is recommended that you estimate the gas fee beforehand and add some extra overhead to it. An example of how this can be implemented in your frontend can be found in this and here:
Create a new file named evm-to-secret.js
(or whatever you would like to name it) and add the following code to create an :
Make sure you have the correct for testnet. You can either send USDC or AXL cross-chain . Also make sure to update destinationAddress
with your Secret testnet wallet address 🤗
See all USDC token addresses in the Axelar .
First, go to the and request testnet tokes from the faucet:
Then, send testnet USDC from your Axelar wallet address to your Sepolia address using
You can track your token transfer's status on
Congrats! You've successfully sent cross-chain USDC from Sepolia testnet to Secret Network using Axelarjs! If you have any questions, ping on Discord and a developer from the Secret community will assist you shortly.