From fb17dcd4c58149afe0d7f7e733f4faf339d301fd Mon Sep 17 00:00:00 2001 From: Mackenzie Wildman Date: Thu, 3 Aug 2023 13:37:38 -0700 Subject: [PATCH 1/5] replace alex video --- docs/hub/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hub/introduction.md b/docs/hub/introduction.md index 53f8650..4808aaf 100644 --- a/docs/hub/introduction.md +++ b/docs/hub/introduction.md @@ -15,7 +15,7 @@ Combining a year of experience working with Fortune 500 companies & big brands, Thus, we've made sure that the NFT experience is smoother than ever before! - + ## Why use Hub? From 8131280ae966ba8153ee46fa0e38881e72398ff7 Mon Sep 17 00:00:00 2001 From: Mackenzie Wildman Date: Thu, 3 Aug 2023 13:40:21 -0700 Subject: [PATCH 2/5] add transfer video --- docs/hub/Guides/transfer-out-of-hub-wallet.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/hub/Guides/transfer-out-of-hub-wallet.md b/docs/hub/Guides/transfer-out-of-hub-wallet.md index d590afa..96cae21 100644 --- a/docs/hub/Guides/transfer-out-of-hub-wallet.md +++ b/docs/hub/Guides/transfer-out-of-hub-wallet.md @@ -59,4 +59,8 @@ mutation TransferAsset($input:TransferAssetInput!) { } ``` -Note that the API only supports transfering an NFT out of a Hub wallet. If a transfer is requested from an external wallet (even if the token was minted by Hub), Hub will return an error. \ No newline at end of file +Note that the API only supports transfering an NFT out of a Hub wallet. If a transfer is requested from an external wallet (even if the token was minted by Hub), Hub will return an error. + +## Follow along + + \ No newline at end of file From 93052fb8d10200bb2c9083436ed187432a373156 Mon Sep 17 00:00:00 2001 From: Mackenzie Wildman Date: Thu, 3 Aug 2023 13:41:33 -0700 Subject: [PATCH 3/5] add import video --- docs/hub/Guides/import-collection.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/hub/Guides/import-collection.md b/docs/hub/Guides/import-collection.md index 311263e..fd0bdb5 100644 --- a/docs/hub/Guides/import-collection.md +++ b/docs/hub/Guides/import-collection.md @@ -61,4 +61,8 @@ Once the collection is imported, it will be visible on Hub, under the "Collectio ## Step 2: Transfer update authority -In order to mint tokens to the collection, transfer the collection's update authority to the Hub project treasury wallet. Transfer the update authority using the Metaboss `set-update-authority-all` command: https://metaboss.rs/set.html#set-update-authority. \ No newline at end of file +In order to mint tokens to the collection, transfer the collection's update authority to the Hub project treasury wallet. Transfer the update authority using the Metaboss `set-update-authority-all` command: https://metaboss.rs/set.html#set-update-authority. + +## Follow along + + \ No newline at end of file From 025ac2b54c324f13e040310af55129f65deb29c3 Mon Sep 17 00:00:00 2001 From: Mackenzie Wildman Date: Thu, 3 Aug 2023 13:44:22 -0700 Subject: [PATCH 4/5] add drop video --- docs/hub/overview/drops.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/hub/overview/drops.md b/docs/hub/overview/drops.md index 7333910..40d3eef 100644 --- a/docs/hub/overview/drops.md +++ b/docs/hub/overview/drops.md @@ -78,4 +78,8 @@ And you're done! You've just set up a drop! You should be able to see your drop on the Manage Drops screen now - ![Manage Drops Screen](./ListOfDrops.png) -To learn how to mint your drop, check out the Guides, below. \ No newline at end of file +To learn how to mint your drop, check out the [Guides](../../category/guides), below. + +## Follow along + + \ No newline at end of file From 103cf70503267e00da428a71e1652e31013a650c Mon Sep 17 00:00:00 2001 From: Mackenzie Wildman Date: Thu, 3 Aug 2023 13:48:38 -0700 Subject: [PATCH 5/5] add api mint video --- docs/hub/developers/minting-drops.md | 33 ++++++---------------------- 1 file changed, 7 insertions(+), 26 deletions(-) diff --git a/docs/hub/developers/minting-drops.md b/docs/hub/developers/minting-drops.md index 15dc9c9..1239584 100644 --- a/docs/hub/developers/minting-drops.md +++ b/docs/hub/developers/minting-drops.md @@ -8,25 +8,12 @@ This guide will walk you through minting a drop using Holaplex Hub. You can try it out using our GraphiQL explorer: [https://api.holaplex.com/](https://api.holaplex.com/). -We'll assume you've already created an account in Hub and set up an organization, project, and drop. If you haven't, please take a look at ADDLINK. - - +We'll assume you've already created an account in Hub and set up an organization, project, and drop. If you haven't, please take a look at our [Drops](../overview/drops) page. ## Step 1: Authenticate All API calls need a header of the form -``` +```json { "Authorization": "Your_API_Token" } ``` @@ -38,16 +25,6 @@ To get an API token:   c. Click "Generate token" -## Step 2: Create a customer and destination wallet - -Each Hub token is minted *to* a specific customer and *into* a customer's wallet. Thus, the first step to mint a token is to create a customer and associated wallet where that token will be sent. - -If you've already created a customer and customer wallet, skip to step N. - -### Create a customer - -Customers are assigned to a - ## Minting a Drop To mint a drop, you need to send the `mintEdition` mutation with the required input parameters. @@ -124,7 +101,7 @@ Replace `ACCESS-TOKEN`, `DROP-ID`, and `RECIPIENT-WALLET-ADDRESS` - `recipient`: The wallet address where the minted drop should be sent. This should be the address of the wallet created on the Holaplex Hub. Note to find a customer's wallet address, perform the following query, e.g.: -``` +```json { project(id:"a56e7745-37a2-40b7-9d25-d5c20b6fc137") { name @@ -144,6 +121,10 @@ Replace `ACCESS-TOKEN`, `PROJECT-ID`, and `CUSTOMER-ID` After successfully minting the drop, you will receive a response containing the collection address and the owner wallet address. The collection address can be used to manage and query the drop on the Holaplex Hub platform. +## Follow along + + + ## Next Steps After minting a drop, you can perform additional actions, such as querying the drop, etc. Check out the API docs to figure out what is possible!