moneroexamples

Results 170 comments of moneroexamples
trafficstars

Have you check the json api for the explorer: https://github.com/moneroexamples/onion-monero-blockchain-explorer#apinetworkinfo It returns `fee_per_kb` which is estimate of a fee per kb (10 blocks).

Its only based on current blocks. Is there any API in monero itself to get a fee estimate for any block?

Will look into. > rx_vm is still null! issue

The issue is that `rx_vm` in https://github.com/monero-project/monero/blob/master/src/crypto/rx-slow-hash.c#L65 is `static` now. This make it private variable, thus I could relay on monero's randomx virtual machine like before.

Yes I started doing it, but then other things needed for creating my own vm also become static, e,g, `rx_initdata` https://github.com/monero-project/monero/blob/master/src/crypto/rx-slow-hash.c#L65 Basically I think I would have to fork-off `rx-slow-hash.c`...

I forked `rx-slow-hash.c` and made the rx code work again. The changes are in this branch: https://github.com/moneroexamples/onion-monero-blockchain-explorer/tree/fix_randomx_code for now You can also preview how it works on my testned node,...

Did you use the `devel` branch of the explorer?

I'm not running it. Its @Gingeropolous who hosts it. But I will check now how it works on public testnet. So far I've been using private chain.

@emesik Its working on the public testnet. So https://testnet.xmrchain.net/ just needs updating. I will PM @Gingeropolous to have a look. Thanks for letting me know.

@j-berman Thanks again. I will probably wrap `crypto::view_tag` with `boost::optional` when scanning the outputs.