Application Boxes
GET /v2/applications/{applicationId}/boxes?max={max}
Get all box names for a given application.
Given an application ID, return all Box names. No particular ordering is guaranteed. Request fails when client or server-side configured limits prevent returning all Box names.
Properties
Name | Type | Description |
---|---|---|
applicationId* | string | An application identifier |
max | number | Max number of box names to return. If max is not set, or max == 0, returns all box-names. |
* indicates required property
Packages
Node.js
Install
npm install algosdk --save
Usage
import { Algodv2 } from "algosdk";
const data = {applicationId: 62368684}const client = new Algodv2( "", "https://testnet-api.algonode.cloud", 443 );const result = await client.getApplicationBoxes(data.applicationId).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 = {applicationId: 62368684}const client = new AlgodClient();const result = await client.public.getApplicationBoxes(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 { useApplicationBoxes } from '@awesome-algorand/react-query';
export function ApplicationBoxesViewer() { const data = {applicationId: 62368684} const query = useApplicationBoxes(data);}
Tutorial Learn how to use the useApplicationBoxes 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 { getApplicationBoxes } from '@awesome-algorand/query-core';import { useWallet } from "@txnlab/use-wallet-react";
export function ApplicationBoxesViewer() { const walletManager = useWallet(); const data = {applicationId: 62368684} const query = useQuery(getApplicationBoxes(data));}
Svelte [WIP]
Coming Soon!
Solid [WIP]
Coming Soon!
Vue [WIP]
Coming Soon!
Angular [WIP]
Coming Soon!