From 613f8c2095d5cd55dee6b4a7a45721ca669645c1 Mon Sep 17 00:00:00 2001 From: Salim <54984459+metasal1@users.noreply.github.com> Date: Tue, 21 Nov 2023 13:29:23 +1100 Subject: [PATCH 1/2] Updated link to createAllocTreeIx function --- docs/src/developing/guides/compressed-nfts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/guides/compressed-nfts.md b/docs/src/developing/guides/compressed-nfts.md index 3dd613dfaf33a5..a059020ad94072 100644 --- a/docs/src/developing/guides/compressed-nfts.md +++ b/docs/src/developing/guides/compressed-nfts.md @@ -282,7 +282,7 @@ two related instructions: 2. actually create the tree, owned by the Bubblegum program Using the -[`createAllocTreeIx`](https://solana-labs.github.io/solana-program-library/account-compression/sdk/docs/modules/index.html#createAllocTreeIx) +[`createAllocTreeIx`](https://github.com/solana-labs/solana-program-library/blob/e4908b929f69f108f978b586bd0cd5b43f24cb1e/account-compression/sdk/src/instructions/index.ts#L169) helper function, we allocate enough space on-chain for our tree. ```ts From 9e1d5baceb8c749867283a9298cf2660e119960a Mon Sep 17 00:00:00 2001 From: Jon Cinque Date: Thu, 14 Dec 2023 13:46:30 +0100 Subject: [PATCH 2/2] Update docs/src/developing/guides/compressed-nfts.md --- docs/src/developing/guides/compressed-nfts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/guides/compressed-nfts.md b/docs/src/developing/guides/compressed-nfts.md index a059020ad94072..2129e8915a5f22 100644 --- a/docs/src/developing/guides/compressed-nfts.md +++ b/docs/src/developing/guides/compressed-nfts.md @@ -282,7 +282,7 @@ two related instructions: 2. actually create the tree, owned by the Bubblegum program Using the -[`createAllocTreeIx`](https://github.com/solana-labs/solana-program-library/blob/e4908b929f69f108f978b586bd0cd5b43f24cb1e/account-compression/sdk/src/instructions/index.ts#L169) +[`createAllocTreeIx`](https://solana-labs.github.io/solana-program-library/account-compression/sdk/modules/index.html#createAllocTreeIx) helper function, we allocate enough space on-chain for our tree. ```ts