0.7.2 • Published 2 months ago

@siafoundation/explored-js v0.7.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

explored-js

A Typescript SDK for interacting with the explored API.

installation

npm install @siafoundation/explored-js

usage

import { Explored } from '@siafoundation/explored-js'

export async function exampleExploredDataFetch() {
  const explored = Explored({
    api: 'http://localhost:9980/api',
    password: 'password1337',
  })

  try {
    const transactionFeeResponse = await explored.txpoolFee()

    if (transactionFeeResponse.status !== 200)
      throw new Error(transactionFeeResponse.statusText)

    const transactionFee = transactionFeeResponse.data
    // Do Transaction Fee things.
    console.log(transactionFee)
  } catch (e) {
    // Handle the error
    console.log(e)
  }
}

explored libraries

API documentation

https://api.sia.tech/explored

The Sia Foundation

This library is brought to you by The Sia Foundation, Inc.--a registered 501(c)(3) non-profit dedicated to revolutionizing data storage through decentralization.

0.7.1-beta.0

3 months ago

0.7.1-beta.1

3 months ago

0.7.2

2 months ago

0.6.3

4 months ago

0.7.1

2 months ago

0.6.2

5 months ago

0.5.0

8 months ago

0.4.0

8 months ago

0.7.0

3 months ago

0.6.1

5 months ago

0.6.0

6 months ago

0.5.1

6 months ago

0.3.1

9 months ago

0.3.0

10 months ago

0.2.1

10 months ago

0.2.2

10 months ago

0.2.0

11 months ago

0.1.2

11 months ago

0.1.1

11 months ago

0.1.0

12 months ago

0.0.1

12 months ago