neeboo

Results 47 comments of neeboo
trafficstars

> I've already contacted the forum... Might be, I'm the active commentator in there at the moment... > > They asked me to know the EVM version that Harmony is...

These option came from Geth, the sdk is designed to adapt from ethereum to Harmony. Michael So ------------- neeboo@FireStack Team Github: https://github.com/FireStack-Lab Team WebSite: https://firestack.one/ On Feb 7, 2020, 7:02...

> Any chance to get at least a reply on the above? > > I've noticed the SDK hasn't had attention in recent months. Is Harmony moving away from maintaining...

> > > Any chance to get at least a reply on the above? > > > I've noticed the SDK hasn't had attention in recent months. Is Harmony moving...

> Hi neebo. I'm still not sure what you mean. The while loop is being used to iterate through my own data structure. The call to `hmy.blockchain.getTransactionCount` is happening ONCE,...

> Some more information which should be very helpful in getting to the bottom of this. > > We get the same `Maximum call stack size error`, regardless of which...

Hi, @hmexx , can you try this ```typescript try { let sendoptions = { from: from, gasLimit: '250000', gasPrice: new hmy.utils.Unit(GAS_PRICE_GWEI).asGwei().toWei(), }; const txn= contract.methods .transfer(to, new Unit(amount).asOne().toWei()) .send(sendoptions); txn.on("transactionHash",...

> I'm putting your suggestion into production now, although having had a second look at it, I think it might semantically identical to what I had before. Will let you...

> Afraid it didn't work. Exception from the SDK took down the process again: > > ```js > 11:20:07: Withdraw: send failure within Harmony, reverting balance for wallet 11949 >...

in newTx. We accept both 0xchecksumed and bech32 addr. In contract params, currently it supports 0xchecksumed addr. To convert address format for now. we can use crypto.getAddress(addr).checksum to convert. I...