@everstake/wallet-sdk-cardano
v1.1.2
Published
Cardano - Everstake Wallet SDK
Readme
Getting Started
You can use two different options to implement Cardano operations with the Everstake wallet SDK.
Option 1: REST API
You can use REST API to call methods which are described in Swagger with detailed examples
https://wallet-sdk-api.everstake.oneOption 2: TypeScript library
You can install and import Wallet SDK for Javascript/TypeScript.
Step. 1: Installing the Library
Install the npm library by copying the code below.
$ npm install @everstake/wallet-sdk-cardanoor you can also use yarn
$ yarn add @everstake/wallet-sdk-cardanoStep. 2: Import Wallet SDK
After installing the package, you can import the Cardano module and use the SDK:
Import ES6
// import module
import { Cardano } from '@everstake/wallet-sdk-cardano';
// or you can also use
import * as Cardano from '@everstake/wallet-sdk-cardano';Import ES5
// import module
const { Cardano } = require("@everstake/wallet-sdk-cardano");