Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 408 Bytes

arkane.md

File metadata and controls

26 lines (19 loc) · 408 Bytes

Arkane

  1. Install Provider Package
npm install --save @arkane-network/web3-arkane-provide

# OR

yarn add @arkane-network/web3-arkane-provide
  1. Set Provider Options
import Arkane from "@arkane-network/web3-arkane-provider";

const providerOptions = {
  arkane: {
    package: Arkane, // required
    options: {
      clientId: "ARKANE_CLIENT_ID" // required
    }
  }
};