Status After Block
GET /v2/status/wait-for-block-after/{round}
Gets the node status after waiting for a round after the given round.
Waits for a block to appear after round {round} and returns the node’s status at the time. There is a 1 minute timeout, when reached the current status is returned regardless of whether or not it is the round after the given round.
Properties
Name | Type | Description |
---|---|---|
round* | string | The round to wait until returning status |
* indicates required property
Packages
Node.js
Install
npm install algosdk --save
Usage
import { Algodv2 } from "algosdk";
const data = {round: 1}const client = new Algodv2( "", "https://testnet-api.algonode.cloud", 443 );const result = await client.statusAfterBlock(data.round).do();
Algosdk Documentation Learn more at the official documentation for algosdk
Coming Soon!
Algokit Documentation Learn more at the official documentation for algokit
import { AlgodClient } from '@awesome-algorand/algod-fetch';
const data = {round: 1}const client = new AlgodClient();const result = await client.public.waitForBlock(data);
Algo-fetch Documentation Learn more at the experimental documentation for algo-fetch
React
Install
npm install @awesome-algorand/react-query @txnlab/use-wallet-react @tanstack/react-query algosdk --save
Usage
import { useWaitForBlock } from '@awesome-algorand/react-query';
export function WaitForBlockViewer() { const data = {round: 1} const query = useWaitForBlock(data);}
Tutorial Learn how to use the useWaitForBlock hook in a React application.
Install
npm install @awesome-algorand/query-core @txnlab/use-wallet-react @tanstack/react-query algosdk --save
Usage
import { useQuery } from 'react-query';import { waitForBlock } from '@awesome-algorand/query-core';import { useWallet } from "@txnlab/use-wallet-react";
export function WaitForBlockViewer() { const walletManager = useWallet(); const data = {round: 1} const query = useQuery(waitForBlock(data));}
Svelte [WIP]
Coming Soon!
Solid [WIP]
Coming Soon!
Vue [WIP]
Coming Soon!
Angular [WIP]
Coming Soon!