Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Trying to send GNT to my Ledger Nano S -- insufficient funds? #423

Closed
ckcollab opened this issue Apr 17, 2017 · 3 comments
Closed

Trying to send GNT to my Ledger Nano S -- insufficient funds? #423

ckcollab opened this issue Apr 17, 2017 · 3 comments
Labels

Comments

@ckcollab
Copy link

First of all... thanks for this project! Really appreciate all the hard work.

I'm trying to send .99 GNT to my Poloniex deposit address. Everything seems fine, Gas gets set to ~56000 (I guess that's good?) and I confirm the transaction on my Nano. However, I get this message:

image

(For people googling in the future: Insufficient funds. The account you tried to send transaction from does not have enough funds. Required 1134400000000000 and got: 0.)

Is it maybe trying to send ETH instead of GNT? That's why it says I have 0? Could just be rounding my 0.9 GNT to 0, though?

Again, thanks for this project and all the hard work! Receiving GNT worked great.

@tayvano
Copy link
Contributor

tayvano commented Apr 17, 2017

This means you do not have enough Ether in your account to cover the cost of gas. Each transaction (including token and contract transactions) require gas and that gas is paid in Ether. You can think of this like a transaction fee.

A standard TX will be 21000 gas & a gas price of 0.00000002 ETH so the total TX fee will be 0.00042 Ether. With tokens, the amount of gas is typically 50000 gas - 100000 gas, so the total TX fee increases to 0.001 ETH - 0.002 ETH.

The number displayed in that error message is the amount required to cover the cost of the transaction in Wei. Take that number, divide by 1000000000000000000. This will give you the amount of Ether you need to send to that account to make the transaction.

So sending GNT (any amount of GNT) will cost you 0.0011344 ETH in gas.

@ckcollab
Copy link
Author

Thank ya!

Take that number, divide by 1000000000000000000.

That... seems weird, but cool, ok, thanks :)

@tayvano
Copy link
Contributor

tayvano commented Apr 17, 2017

LOL - tell me about it. Unfortunately, that's an error from the client itself, not ours. Basically everything you do is actually calculated in Wei, not ETH. So you are essentially converting WEI -> ETH when you do that division. You can get a better idea of what you are doing with this tool: http://ether.fund/tool/converter

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants