Retrieves all nodes from an auction AVL tree.
An array of all auction nodes in the tree, in allocation order
const tree = await fetchAuctionAVLTreeV1(umi, treePda);const allNodes = getAllAuctionTreeNodes(tree);console.log(`Tree contains ${allNodes.length} nodes`);
The auction AVL tree to extract nodes from
Generated using TypeDoc
Retrieves all nodes from an auction AVL tree.
Returns
An array of all auction nodes in the tree, in allocation order
Example