Questions tagged [algorithm]
Questions about the details and implementation of various algorithms involved in Monero.
33 questions
0
votes
1
answer
176
views
How can I code monero mining algorithm from scratch?
I want to code a javascript-based monero mining algorithm from scratch. However, I couldn't find any training set, lectures, courses, books, etc. about it.
How can I code a javascript based monero ...
0
votes
1
answer
702
views
Is the RandomX only algorithm to go?
I'm bit lost with some of many stuff around the mining. I'm using xmrig to mine monero with rx/0.
This is by default.
As far as I was able to understand, the pool has to support algorithm I want to ...
1
vote
1
answer
1k
views
Encrypt and decrypt seed algorithms in Python
I am looking at Luigi's code here. When it comes to encrypting the seed, field 9 on xmr.llcoins.net, there is a comment about various ways that have been implemented for doing this. It mentions the ...
1
vote
1
answer
487
views
Monero address prefix creation algorithm
As I read in the monerobook:
uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 18;
Monero's main network uses '18' to indicate a primary address (this is
why Monero primary addresses begin ...
1
vote
1
answer
1k
views
Monero stratum on yiimp pool
Is there a way to add Monero XMR to YIIMP mining pool.
The randomx.conf at /var/stratum/config is below.
[TCP]
server = testpool.online
port = 8888
password = {password}
[SQL]
host = localhost
...
1
vote
1
answer
104
views
Possible error in book Zero to Monero: Second Edition
I am reading the book Zero to Monero: Second Edition from the GetMonero Library.
On the 3rd paragraph of page 15, the book mentions an algorithm for finding points inside the subgroup of order l, ...
0
votes
1
answer
302
views
Hash rate of three million mining Monero?
Is this article truthful when it quotes a hash rate of three million when mining Monero? If so, what is the way to learn and apply the RandomX algorithm in FPGA hardware? What knowledge is required?
...
0
votes
1
answer
393
views
How are fees computed?
Can someone explain the algorithm to compute Monero transaction fee?
I have seen somewhere it is based transaction size (or something called "weight"?), and some other vague explanation. But I would ...
4
votes
1
answer
3k
views
What's the difference between the CryptoNightR and RandomX algorithms?
My understanding is that CryptoNightR randomly creates different calculations for each block, and that RandomX does the same, but using a system where any bytecode can be translated into a calculation....
1
vote
1
answer
96
views
how does monero schedule an algorithm update?
Will the algorithm change affect the blockchains to be generated or saved?
How to deal with the new-generated blockchains and the old blockchains if the formers are changed?
0
votes
1
answer
168
views
How to update algorithm to cryptonight v1
I just tried to make a coin with source: https://github.com/seredat/karbowanec
and it works perfectly, then how do I update the algorithm of the code to make it Cryptonight v1?
is there any reference ...
0
votes
1
answer
171
views
Does anyone have test data that illustrates the CryptoNight 7 algorithm?
With the new CryptoNight 7 algorithm Monero introduced back in April, does anyone have an example of a data blob and a nonce that successfully hashes the block? I'm trying to figure out how to test ...
2
votes
1
answer
369
views
How can I tell what difficulty my solution is?
I read that sometimes a pool will report a "Low difficulty share" error if the solution indeed did not match the specified difficulty but it could also be reported if someone had already found a nonce ...
0
votes
1
answer
357
views
Implementing Cryptonightv1 PoW algo change but miners are able to mine with both Cryptonightv0 or Cryptonightv1 now
I am modifying a cryptonote to transition over to PoW algo cryptonightv1 from cryptonightv0 and I am having a weird issue that I can't figure out...I'm starting to pull out my hair over this. I've ...
1
vote
1
answer
422
views
Multiple CPU miners with low hashrate vs single CPU miner with high hashrate
I looked at the Monero algorythm (unfortunately not fully understood) and wonder if I could increase the probability of hitting a block with multiple CPU miners (low hashrate - for example 10 x 200h/s)...