A Typescript SDK for interacting with the explored
API.
npm install @siafoundation/explored-js
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)
}
}
- types
- sdk (this repo)
- react hooks
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.