Using the SDK

Getting Started with Verified Sdk.

The Verified SDK has been used to create web and mobile applications.

To install the Verified SDK, install nodejs and the node package manager. And then install the Verified SDK.

D:\Code\your-project>npm install @verified-network/verified-sdk

Once installed, you should see the Verified SDK in dependencies in the package.json file in your project.

The Verified SDK provides access to Verified Network contracts deployed on ethereum test networks such as Sepolia. You can use the SDK to develop applications and test them.

To interact with Verified Sdk and integrate it into your project:

//Common Js
const {VerifiedWallet, Provider, contractAddress} = require('@verified-network/verified-sdk');
//ES Module
import {VerifiedWallet, Provider, contractAddress} from '@verified-network/verified-sdk';

Once ready, you can connect your applications to the production deployment of the Verified Network which is a permissionless network of licensed financial intermediaries.

Users of applications on the Verified Network do not incur gas fees and instead pay fees using cash tokens for products and services consumed on the Verified Network.

Last updated