talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
May 21, 2020, 05:37:33 PM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
May 22, 2020, 05:32:43 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful!
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
May 23, 2020, 10:25:20 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
May 24, 2020, 01:37:40 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
May 25, 2020, 06:13:56 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)!
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
May 27, 2020, 03:50:12 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
May 27, 2020, 03:54:26 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome!
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
May 28, 2020, 02:59:52 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop)
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
May 31, 2020, 09:25:50 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
June 01, 2020, 02:15:47 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important Yes, it's really important, no doubt. Because the product must have an end-user!
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
June 03, 2020, 01:47:36 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important Yes, it's really important, no doubt. Because the product must have an end-user! As I told you in the other topic, the product will definitely find its end-user, because the project is very good!
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
June 04, 2020, 09:23:57 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important Yes, it's really important, no doubt. Because the product must have an end-user! As I told you in the other topic, the product will definitely find its end-user, because the project is very good! Since the project is very technically oriented, it avoids any unwanted folks, which is a kind of a plus
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
June 04, 2020, 08:42:38 PM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important Yes, it's really important, no doubt. Because the product must have an end-user! As I told you in the other topic, the product will definitely find its end-user, because the project is very good! Since the project is very technically oriented, it avoids any unwanted folks, which is a kind of a plus It's okay, it's not a hindrance at all
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
June 06, 2020, 02:48:23 AM |
|
- New Proof-of-Work scheme, Autolykos – a variant of Equihash with better ASIC-resistance
How does it have better ASIC resistance, when Equihash is claimed to have superlinear time-memory tradeoffs (TMTO) while Autolykos can be solved with no memory and constant slowdown? IMHO it's closer to Ethash than to Equihash. Autolykos is pretty close to Equihash, it is based on k-sum problem , but also adds a signature component for somewhat pool-resistance. Parameters are chosen in order to be much more memory-intensive (and memory-bandwidth intensive) than ZCash's and other popular Equihash coins PoWs. Autolykos is very different from Equihash in memory requirements. Equihash searches for an arbitrary size 2^k subset of indices, whose corresponding items must xor to 0 (as well as satisfy other conditions on the ordered binary tree of indices and items). Memory is needed to sort and combine partial solutions. Without memory, finding a solution would take longer than the age of the universe. Autolykos instead generates the possible subsets as genIndexes(m||nonce), as shown in Algorithm 1 of https://docs.ergoplatform.com/ErgoPow.pdfThe element at an index j is trivially computed as H(j||M||pk||m||w) No memory at all is required for that. It could be used to cache the hash computation of elements, but that is at best a constant factor speedup. Ah I see. We're discussing it, see https://github.com/ergoplatform/ergo/issues/1100 (are you BigEvilSoloMiner aka AsicResearcher maybe though? ) Oh actually I was wondering about it too, thanks Yeah, that's definitely very helpful and useful! I totally agree with you When Ergo pump All in good time, but I think on the wave of good news (and I'm sure there will be more)! You're definitely right, and a little marketing will help They're marketing, they're getting Ergo on social networks more and more, and it's pretty awesome! Yeah, I've noticed that, as well as the fact that the community is increasing a lot (there is really a percentage of people who came because of the recent airdrop) Yeah, and it's very awesome, and, I hope, important Yes, it's really important, no doubt. Because the product must have an end-user! As I told you in the other topic, the product will definitely find its end-user, because the project is very good! Since the project is very technically oriented, it avoids any unwanted folks, which is a kind of a plus It's okay, it's not a hindrance at all Well, I agree, but only partially, and also, listing to other exchanges will be very helpful to the project
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
June 07, 2020, 08:22:03 PM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
|
|
|
|
Satanastya
Newbie
Offline
Activity: 51
Merit: 0
|
|
June 08, 2020, 06:34:37 PM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
Isn't it too soon for it?
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
June 10, 2020, 03:58:17 AM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
Isn't it too soon for it? They announced a collaboration with the emurgo, there are a lot of interesting things, completely awesome!
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
June 11, 2020, 02:50:24 AM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
Isn't it too soon for it? They announced a collaboration with the emurgo, there are a lot of interesting things, completely awesome! Yeah, exactly! It's very very important and significant
|
|
|
|
SteamCoin
Newbie
Offline
Activity: 144
Merit: 0
|
|
June 12, 2020, 02:51:04 AM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
Isn't it too soon for it? They announced a collaboration with the emurgo, there are a lot of interesting things, completely awesome! Yeah, exactly! It's very very important and significant You're absolutely right! This event is big enough, it's a whole lot of new opportunities for both the team and us
|
|
|
|
talkmeout
Newbie
Offline
Activity: 107
Merit: 0
|
|
June 13, 2020, 05:05:34 AM |
|
Ergo said they're preparing smth new. I'm intrigued. Maybe it's a new exchange?
Isn't it too soon for it? They announced a collaboration with the emurgo, there are a lot of interesting things, completely awesome! Yeah, exactly! It's very very important and significant You're absolutely right! This event is big enough, it's a whole lot of new opportunities for both the team and us Now let's look at what this cooperation will lead to (cool joint projects I guess)
|
|
|
|
|