Socket
Book a DemoInstallSign in
Socket

@siafoundation/explored-react

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@siafoundation/explored-react

React hooks for interacting with `explored`.

latest
npmnpm
Version
0.9.0
Version published
Weekly downloads
124
226.32%
Maintainers
2
Weekly downloads
 
Created
Source

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

  • types
  • sdk
  • react hooks (this repo)

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.

FAQs

Package last updated on 24 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts