-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add airdrop example #7
base: master
Are you sure you want to change the base?
Conversation
airdrop/test/airdrop.test.ts
Outdated
{ | ||
address: defaultSigner.address, | ||
asset: { | ||
alphAmount: DUST_AMOUNT * BigInt(11), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, we need to consider gas fee.
If we add more ALPH here the test should pass (you can try adding ONE_ALPH
for example, which is more than enough)
We will improve the error message 👍
Question: What is the advantage of using the airdrop contract compared to simple transfers? Simple transfer can have multiple recipients as well. |
No description provided.