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