Questions tagged [altcoin]

8 questions
10
votes
1 answer

Are atomic swaps possible between Monero and other altcoins or Bitcoin?

Are atomic swaps possible between Monero and Bitcoin / altcoins? What features are needed to make this work?
Patoshi パトシ
  • 4,608
  • 4
  • 27
  • 69
2
votes
0 answers

How to start my own altcoin based on Monero code?

How can I start new altcoin based on Monero source?
Michal
  • 121
  • 2
2
votes
1 answer

EXCEPTION FOR BLOCK 202612 , from what's it bassed and where it was fixed?

who can asnwer me this for litle qustion , i find this at code // EXCEPTION FOR BLOCK 202612 const std::string correct_blob_hash_202612 = "3a8a2b3a29b50fc86ff73dd087ea43c6f0d6b8f936c849194d5c84c737903966"; const std::string…
tseries
  • 141
  • 5
1
vote
1 answer

How does one change Monero's block reward for chosen blocks?

For what I mean, see this example in bitcoin-based coins. We can do this: CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams) { int halvings = nHeight / consensusParams.nSubsidyHalvingInterval; // Force block…
mraksoll
  • 11
  • 2
1
vote
1 answer

How to change the total coin supply in monero?

How to decrease coin supply in monero ? I know it uses: #define MONEY_SUPPLY ((uint64_t)(-1)) // =18446744073709551616 but how make it 9223372036854775808 or lower ? at int's it posible change to 8 16 32 bit's 2^2 = 4 2^4 = 16 2^8 = 256 2^16…
tseries
  • 141
  • 5
1
vote
1 answer

Monero fork that does not support pooling?

I saw a few days ago while getting my miner figured out someone mention on Reddit plans for a Monero fork that only allows solo mining to prevent 51% attacks from pools. I'm thinking it might be profitable to mine with a high end cpu. Does anyone…
ZeroPhase
  • 121
  • 3
0
votes
1 answer

block 202612 , how been findet this value?

how been findet this value bool get_block_longhash(const block& b, crypto::hash& res, uint64_t height) { // block 202612 bug workaround const std::string longhash_202612 =…
tseries
  • 141
  • 5
-4
votes
1 answer

How can I make a coin using Monero?

I am developing a coin using the Monero git code, so I want to know what is the setup we need to follow to create our own coin using Monero. Coin development Coin Api development Coin explore Coin Web wallet Coin pool Let me know of any document…