Installation
Welcome to the Venn Network installation guide for protocols and developers. This guide details the steps needed to secure your protocols with Venn.
Overview
To protect your protocols with Venn you will need to:
Integrate the Firewall SDK into your smart contracts.
Register your smart contracts on-chain with Venn.
Install the dApp SDK on your frontend.
Step 1 - Integrate the Firewall SDK
Install the Venn CLI
Start by installing the Venn CLI. This will allow you to add the Firewall SDK to your smart contracts and register them on the chain.
This command installs the CLI globally, making the venn command available in your terminal.
Integrate the Firewall SDK
The Firewall SDK adds the security modifiers to your smart contracts. Run this command from the root folder of your project to integrate the SDK:
This command scans all smart contracts in the contracts folder and automatically adds the required import VennFirewallConsumer to the external functions.
Example:
Before Integration:
After Integration:
Now that your smart contracts include the Firewall SDK, deploy them as you normally would on any network - this will enable you to register them on-chain to Venn, in the next step.
Step 2 - Register your smart contracts with Venn.
Before You Begin
Complete step 1: Firewall SDK integration on your smart contracts.
Ensure your smart contracts are deployed on-chain.
Have your deployment private key ready (this must be the same key used for deployment).
Configuration
Create a configuration file named
venn.config.json
in your project’s root directory.Update the file with your deployed contract addresses. Example:
Each key in the
contracts
object is the Name of the contractEach value in the
contracts
object is the Address of the contract
Create an environment variable called VENN_PRIVATE_KEY with the private key that deployed your smart contracts.
IMPORTANT: This key must be the same key that deployed the smart contracts
Connect To Venn
Run this command to register your Firewall-protected smart contracts with Venn:
Your Venn Policy
After a successful connection to Venn, a new Venn Security Policy is created for you. The policy address is automatically saved in your venn.config.json file, for example:
Step 3 - Set Up the dApp SDK on your frontend.
Now that your smart contracts are secured, only approved transactions will be executed on-chain. To also approve transactions that go through your dApp frontend, you will need to install Venn-SDK in your dApp.
Install the SDK
In your dApp frontend project, open a new terminal and install the SDK.
Initialize a New VennClient Instance
Import the VennClient and create a new instance by providing the Venn node URL and your Venn policy address from step 2:
vennURL, a URL pointing to a Venn node operator:
vennPolicyAddress: the policyAddress You got from "Register With Venn" in step 2.
Approving Transactions
Use the SDK to validate transactions before sending them on-chain:
That's it! Welcome to Venn. 🎉 You can now view your activity on Venn in the Explorer.
Reference Documentation
Last updated
Was this helpful?