Skip to content

Latest commit

 

History

History

explored-react

explored-react

React hooks for interacting with the explored API.

installation

npm install @siafoundation/explored-react

usage

import { useTxpoolFee } from '@siafoundation/explored-react'
import { LoadingSpinner } from 'some-component-library'

export function TransactionPoolFeeIndicator() {
  const { data: fee, isValidating, error } = useTxpoolFee()

  if (fee) {
    return <span>{fee}<span>
  }
  if (isValidating) {
    return <LoadingSpinner />
  }
  return <span>{error.message}</span>
}

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.