1.0.68 • Published 8 months ago

merklebase-sdk v1.0.68

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

Merklebase SDK

Introduction

The Merklebase SDK is a software development kit that provides a convenient way to interact with the Merklebase API. This SDK simplifies the integration process and offers a set of methods for managing accounts, balances, entities, links, markets, tokens, and common functionality.

Installation

To use the Merklebase SDK, follow these steps:

  1. Install Node.js on your system.
  2. Create a new directory for your project.
  3. Open a terminal and navigate to the project directory.
  4. Run the following command to initialize a new Node.js project: npm init -y

  5. Install the Merklebase SDK by running the following

    npm install merklebase-sdk

Getting Started

To start using the Merklebase SDK, import the SDK and initialize it with your API key. Here's an example of how to use the SDK:

import { MerklebaseAPI } from 'merklebase-sdk';

// Initialize the SDK with your API key
const apiKey = 'YOUR_API_KEY';
const merklebase = new MerklebaseAPI(apiKey);

// Example: Get accounts
const userToken = 'USER_TOKEN';

try {
    const { accounts } = await merklebase.accounts.get(userToken);
} catch(error) {
    console.log(error);
}

API Reference

The Merklebase SDK provides the following interfaces and methods:

Accounts

get(userToken: string)

Retrieves the accounts associated with the user.

Balances

get(userToken: string)

Retrieves the balances of the user's accounts.

Common

supportedCurrencies()

Retrieves the list of supported currencies.

supportedProviders()

Retrieves the list of supported providers.

Entities

get(userToken: string)

Retrieves the entities associated with the user.

create(userToken: string, entity: IEntitiesParams)

Creates a new entity.

update(userToken: string, id: string, entity: IEntitiesParams)

Updates an existing entity.

remove(userToken: string, id: string)

Removes an entity.

Links

get(userToken: string)

Retrieves the links associated with the user.

connect(userToken: string, link: ILinksProps)

Connects a link to the user's account.

disconnect(userToken: string, id: string)

Disconnects a link from the user's account.

refresh(userToken: string, id: string)

Refreshes a link's data.

generate.ed25519()

Generates an ed25519 link.

generate.rsacsr()

Generates an rsacsr link.

Markets

prices(userToken: string)

Retrieves market prices.

Tokens

create(userToken: string)

Creates a new token.

Please refer to the official API documentation for detailed information about each method and its parameters.

Example Usage

Here's an example that demonstrates how to use multiple methods from the Merklebase SDK:

Example 1: Retrieve Supported Currencies

import { MerklebaseAPI } from 'merklebase-sdk';

// Initialize the SDK with your API key
const apiKey = 'YOUR_API_KEY';
const merklebase = new MerklebaseAPI(apiKey);

async function retrieveSupportedCurrencies() {
  try {
    const currencies = await merklebase.common.supportedCurrencies();
    console.log('Supported Currencies:', currencies);
  } catch (error) {
    console.error('Error:', error);
  }
}

retrieveSupportedCurrencies();

Example 2: Get Account Balances

import { MerklebaseAPI } from 'merklebase-sdk';

// Initialize the SDK with your API key
const apiKey = 'YOUR_API_KEY';
const merklebase = new MerklebaseAPI(apiKey);

async function getAccountBalances() {
  const userToken = 'USER_TOKEN';

  try {
    const balances = await merklebase.balances.get(userToken);
    console.log('Account Balances:', balances);
  } catch (error) {
    console.error('Error:', error);
  }
}

getAccountBalances();
1.0.68

8 months ago

1.0.67

8 months ago

1.2.0

11 months ago

1.1.0

11 months ago

1.0.66

11 months ago

1.0.65

11 months ago

1.0.64

11 months ago

1.0.63

11 months ago

1.0.62

11 months ago

1.0.61

11 months ago

1.0.60

11 months ago

1.0.59

11 months ago

1.0.58

11 months ago

1.0.57

11 months ago

1.0.56

11 months ago

1.0.55

11 months ago

1.0.54

11 months ago

1.0.53

11 months ago

1.0.52

11 months ago

1.0.51

11 months ago

1.0.50

11 months ago

1.0.49

11 months ago

1.0.48

11 months ago

1.0.47

11 months ago

1.0.46

11 months ago

1.0.45

11 months ago

1.0.44

11 months ago

1.0.43

11 months ago

1.0.42

11 months ago

1.0.41

11 months ago

1.0.40

11 months ago

1.0.39

11 months ago

1.0.38

11 months ago

1.0.36

11 months ago

1.0.35

11 months ago

1.0.34

11 months ago

1.0.33

11 months ago

1.0.32

11 months ago

1.0.31

11 months ago

1.0.30

11 months ago

1.0.29

11 months ago

1.0.28

11 months ago

1.0.27

11 months ago

1.0.26

11 months ago

1.0.25

11 months ago

1.0.24

11 months ago

1.0.23

11 months ago

1.0.22

11 months ago

1.0.21

11 months ago

1.0.20

11 months ago

1.0.19

11 months ago

1.0.18

11 months ago

1.0.17

11 months ago

1.0.16

11 months ago

1.0.15

11 months ago

1.0.14

11 months ago

0.1.13

11 months ago

0.1.12

11 months ago

0.1.11

11 months ago

0.1.10

11 months ago

0.1.9

11 months ago

0.1.8

11 months ago

0.1.7

11 months ago

0.1.6

11 months ago

0.1.5

11 months ago

0.1.4

11 months ago

0.1.3

11 months ago

0.1.2

11 months ago

0.1.1

11 months ago

0.1.0

11 months ago

1.0.0

11 months ago