Verified Network
  • What is the Verified Network
  • How to use it
  • Reference
    • Verified SDK
      • Using the SDK
      • Wallet and Contracts
      • Know your Customer
        • Using the KYC plugin
      • Delegated permissions
      • Investment products
        • Product lifecycle
        • Example of a Product
      • Security tokens
        • Issuing functions
      • Liquidity pools
        • Buy and Sell Orders workflow
        • Buy and Sell Order Complete workflow example
      • Secondary issues
      • Primary issues
        • Primary offer function
      • Margin traded issues
        • Offering collateral
      • Adding money to wallet
        • Paying in supported tokens
      • Issuing cash tokens
        • Issuing and Exchange functions
      • Making payments
        • Transferring cash tokens
      • Withdrawals
        • Redeeming cash tokens
      • Custody of Assets
        • Custody functions
      • Staking to invest
        • Liquidity functions
        • Market maker functions
      • Staking to borrow
        • Bond issuing function
      • Lending
        • Bond purchase function
      • Repayments
        • Bond redemption function
      • Claiming collateral
        • Defaults and Unsold bonds
      • Returns on Investment
        • Manager and Platform returns
    • Verified REST API
      • Market data
        • Get all assets
        • Get Tradable Asset Pairs
        • Get Ticker Information
        • Get Orderbook
      • Order data
        • Get Account Balance
        • Get Trade Balance
        • Get Open Orders
        • Get Closed Orders
        • Query Orders Info
        • Query Trades Info
        • Get Trades History
      • Order Management
        • Add Order
        • Edit Order
        • Cancel Order
    • Verified Subgraphs
    • Verified Applications
      • Doing KYC
        • Creating wallet
        • Using the Verified Dapp
        • Doing KYC
      • Primary issues
        • Creating a new issue
        • Subscribing to issue
        • Closing issue
      • Secondary trading
        • Market orders
        • Limit orders
        • Edit, Cancel, Settle orders
      • Margin trading
        • Post Margin collateral
        • Swaps
        • Edit, Cancel, Settle orders
      • Portfolio
        • Account statement
        • Corporate actions
        • Underwriting liquidity
Powered by GitBook
On this page
  1. Reference
  2. Verified SDK

Using the SDK

Getting Started with Verified Sdk.

PreviousVerified SDKNextWallet and Contracts

Last updated 1 year ago

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

To install the Verified SDK, . 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.

install nodejs and the node package manager