简体   繁体   English

Solana 空投错误,需要帮助解决我的问题

[英]Solana airdrop error, need help to fix my problem

When I type this in the command prompt:当我在命令提示符下输入时:

solana airdrop 2 -k ./Wallet/.config/solana/Seller.json

I get this error我收到这个错误

Requesting airdrop of 2 SOL
Error: airdrop request failed. This can happen when the rate limit is reached.

What can I do?我能做什么?

you need to specify that you are on devnet.您需要指定您在 devnet 上。

solana airdrop 1 -k ./Wallet/.config/solana/Seller.json --url devnet

or if you are using pubkey或者如果您使用的是 pubkey

solana airdrop 2 6x5S2cL7fDwM27J7qmfActNJqXj3QcTeoyNTY8Gcujiq --url devnet  

Airdrops are typically limited to 1 SOL, so you can run:空投通常限制为 1 SOL,因此您可以运行:

$ solana airdrop 1 -k ./Wallet/.config/solana/Seller.json

Otherwise, the error says This can happen when the rate limit is reached.否则,错误This can happen when the rate limit is reached. , so you may also need to back off and wait. ,因此您可能还需要退出并等待。

You Could Also Try Airdropping a Smaller Amount like 0.1 If It's Still Not Working..如果仍然不起作用,您也可以尝试空投更小的数量,例如 0.1。

solana airdrop 0.1 pubkey --url devnet

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 [Solana / Solana/Web3.js]无法空投 Sol。 抛出内部错误 - [Solana / Solana/Web3.js]Unable to Airdrop Sol. Internal Error is thrown 在本地主机上将程序部署到 solana 的问题 - Problem with deploying program to solana on localhost 运行 solana 的测试验证器时出错 - Getting error on running test validator for solana 索拉纳。 需要将所有地址从区块链导出到数据库 - Solana. Need to export all addresses from the blockchain to the DB 如何使用 @solana/web3.js 从 Solana 中的自定义令牌中删除铸币权限? - How do I remove the minting authority from my custom token in Solana using @solana/web3.js? 如何在 devnet 上注册名称并登录我的 solana 令牌 - How to register name and log in my solana token on devnet solana spl-token 转移费用“错误:程序(IncorrectProgramId)” - solana spl-token transfer fee "Error: Program(IncorrectProgramId)" 错误:自定义:solana 程序部署时的块哈希无效 - Error: Custom: Invalid blockhash when solana program deploy Solana - 如何从我的 Phantom 钱包中获取余额? - Solana - How to get the balance from my Phantom wallet? 如何解决“私钥存储失败?” Error01问题? - How can I fix “Failed Storing private key?” Error01 problem?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM