You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our Rpc.sendNativeTransaction implementation needs a string for the value of the transaction.
This was this.dai.toBigNumber.minus(totalCost.toString()).toString() before. I tried out the gift card fund feature with the fake-bee and even though it is a mock environment, I ran into an issue which seemed to be client side only in Bee Dashboard.
This string is provided wrongly, and the correct expression may be '0x' + this.dai.toBigNumber.minus(totalCost.toString()).toString(16), that is hexademical and leading 0x (ethers hexlify).
This should be investigated with a proper mainnet gift card fund manual test. BTW I attempted to transfer 13.9529 xDAI
The text was updated successfully, but these errors were encountered:
Our
Rpc.sendNativeTransaction
implementation needs astring
for thevalue
of the transaction.This was
this.dai.toBigNumber.minus(totalCost.toString()).toString()
before. I tried out the gift card fund feature with the fake-bee and even though it is a mock environment, I ran into an issue which seemed to be client side only in Bee Dashboard.This string is provided wrongly, and the correct expression may be
'0x' + this.dai.toBigNumber.minus(totalCost.toString()).toString(16)
, that is hexademical and leading0x
(ethers hexlify).This should be investigated with a proper mainnet gift card fund manual test. BTW I attempted to transfer 13.9529 xDAI
The text was updated successfully, but these errors were encountered: