or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Gumdrop - Notes from the office hours
There is already a official documentation existing in the Metaplex docs. Nevertheless I want to extend them a little bit to show you my experiences and elaborate a bit.
What is Gumdrop?
Gumdrop can be used to create a candy machine whitelist, do airdrops of prints, distribute tokens… and for sure much more as soon as we get creative! Big thanks to Larry Wu for creating it!
Initially I was focusing on the candy machine whitelist here but already extended the document for token and edition drops.
Follow me on Twitter
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Have a look at
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Clone & install Metaplex
First things first:
cd js
)yarn install
that's it.
Host the frontend
To claim a gumdrop a frontend website is needed. Currently Larry Wu from Solana is hosting one. I think it's fine to use for testing, but no guarantee how long it will be up!
For your real gumdrop I would recommend your own gumdrop page. For that…
cd metaplex/js/packages/gumdrop
)yarn serve
yarn build
will be needed for sure. You can find some information for setting up vercel in the FAQ.How to use?
Step 1: Decide what can be claimed.
Depending on what to claim (SPL token, print) you either need to do different preparations (e.g. create SPL tokens, create edition mints).
Step 2: Prepare your drops
Depending on what you want to give out do one of the following two options:
Edition prints
SPL Token
solana config set --keypair <path to your keypair> --url devnet
spl-token create-token --decimals 0
and note the mint!spl-token create-account <mint>
spl-token mint <mint> <amount>
Step 3: Distribution List
First you need to understand that the users will receive a personal URL that they will need to use to claim their gumdrop.
You can send out your whitelist access through Email, SMS (both based on AWS) or Discord. SMS and E-Mail can also be combined with OTP to make sure that the airdrop / whitelist NFT goes to the right person. If you choose "wallets" as distribution methods you will have to inform your users manually, but their wallet will be verified on mint.
You can also add wallets or even a manual identifier, but in that case you need to distribute the links to claim the drop yourself.
-no validation of minting user
-DMs can look and fele like spam.
-Someone will scam users sooner or later with fake gumdrop DMs
-you need to collect the addresses
-you need to collect the addresses
Format of the distribution list is the following (stolen from the Metaplex docs).
where
Step 4: Create the gumdrop
There is only one command. But I will break it down a bit.
The beginning is always the same. You will always need the following, but do NOT run it yet. We will add more parameters to the command in the next steps.
What will be claimed?
Depending on what to claim (NFT from candy, token, print) you either need to add different parameters. Choose one of those:
edition prints
You should already have created your Master edition and noted down the mint. Therefore you only need to add this to your command:
Further information on edition prints with Meta Gumdrop
SPL token drops
You should already have created your Master edition and noted down the mint. Therefore you only need to add this to your command:
You can find more information on token drops in the official documentation.
Add your frontend
If you want to use your own frontend you need to use the –host parameter. Keep in mind that the standard host might not be up forever!
--host "https://lwus.github.io/metaplex"
Distribution method
Using E-Mails can make sense. I hate SMS. And love Discord. That's why I show you the discord example.
Discord
This function is bugged. Not everyone will receive a DM with it's custom link.
DM me and we will set up a bot for you which will work.
For Discord you will need to:
Email & SMS
More on Mails/SMS through AWS here.
Build your command
You should now have your command together. Just run it.
I've also collected some examples of whole commands for you to compare.
Excecuting the create command creates a new keypair json in the .log folder. SAVE IT. YOU NEED IT!
Close the gumdrop again!
Time's up? Alright. Again there are different things to consider depending on what can be claimed. You need this everytime:
Wondering where to find the base keypair? Have a look into the .log folder.
Editions
For edition prints the close command would look like
SPL Token
Collection of whole commands
This guide was somehow hard to follow?
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Don't worry. Here are all the commands you need:
Edition prints
Tokens
Caveats
Discord
The Discord integration has some minor caveats. E.g.
E-Mail / SMS
Currently only works with AWS.
Update Authority
Using gumdrop you will (currently) not have the update authority over your NFTs minted through candy machine anymore. So if you want to update them later on you should not use gumdrop for now. See Github Issue.
FAQ
1. What does Gumdrop cost?
The minting fees will be paid by your user. You only pay the costs for setting up the gumdrop. In my tests it was 0.00163168 SOL for a 450 Wallet drop.
2. How to host the frontend?
I did it on cloudflare pages, but if you want to host on vercel the following screenshot might be helpful for you.
If you receive a white page as a result it might make sense to have a look at the
package.json
and remove the line where the homepage is defined.3. Discord as distribution method?
Possible. And I already used it in mainnet-beta twice. But(!) the included implementation has caveats:
How to solve that?
From my point of view the best solution is to use "wallets" as distribution method to have user validation and collect the wallets and send the URLs yourself. To make it easier and better I've created a Discord bot where the users can register their wallet and later claim there gumdrop claim link.
DM me if you are interested in using this bot!
I am sure together we can work it out for you.
Common errors
TypeError: Max seed length exceeded
Make sure that the UUID is correct. You can find the correct one in the cache file. It should be exactly 6 characters long.
Module not found: Can't resolve '@oyster/common
js/packages/common
yarn install
yarn build
Error: Number can only safely store up to 53 bits
Most likely you are doing an SPL token drop and your token has decimals, right? You encountered a gumdrop bug! Solution:
metaplex/js/packages/cli/src/helpers/gumdrop/claimant.ts
and remove these three lines (Currently starting at line 205):