UNPKG
@hippocampus-web3/blockfrost-js
Version:
latest (6.0.4)
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
@hippocampus-web3/blockfrost-js
/
lib
/
src
/
endpoints
/
api
/
root
/
index.d.ts
12 lines
(11 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
BlockFrostAPI
}
from
'../../../index'
;
/** * Obtains backend version number. * *
@returns
Backend version in a format `{ url: string; version: string }` * */
export
declare
function
root
(
this
:
BlockFrostAPI
):
Promise
<{
url
:
string
;
version
:
string
; }>;