Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 385 Bytes

venly.md

File metadata and controls

26 lines (19 loc) · 385 Bytes

Venly (Previously Arkane Network)

  1. Install Provider Package
npm install --save @venly/web3-provider

# OR

yarn add @venly/web3-provider
  1. Set Provider Options
import Venly from "@venly/web3-provider";

const providerOptions = {
  venly: {
    package: Venly, // required
    options: {
      clientId: "VENLY_CLIENT_ID" // required
    }
  }
};