Search content
Sort by

Showing 9 of 9 results by chicodosbitcoin
Post
Topic
Board Development & Technical Discussion
How to modify the look bitcoin GUI Client.
by
chicodosbitcoin
on 11/04/2018, 22:13:16 UTC
I was playing in the file:
Code:
bitcoingui.cpp

but I still can't find where I could change the whole background of the GUI.


any ideas guys?
Post
Topic
Board Services
I am paying 0.01 btc to someone explain me how to fix 2 things
by
chicodosbitcoin
on 11/04/2018, 20:24:46 UTC
I am paying 0.01 btc to someone explain me how to fix 2 things



hey guys i have 2 questions if u could help me i will give to u 0.01 btc for the help Smiley


I am cloning altcoins and POW + POS coins but ....


first question:

I am clonning btc and litecoin, I can create the genesis block mine and start a new coin fine ...  works very well but ... if I change MAX_MONEY = 21000000 to 2000 or 5000 this simply does not work i knwo few people have told it is not about just change max_money need change some other stufff, i am kinda confuse so if u could me help understand what i need to do in the code i will pay u in btc.


second question:
i am clonning perfeclty POW+ POS and POS coins, but..... setgenerate true does not work got absolete so i can mine any coin Sad

so how I can mine a block in a POS coin, at least the first block to start the chain?


thanks/.... if u interested to help me on this i will pay u in btc, just PM me.

thank you
Post
Topic
Board Beginners & Help
Re: how to clone bitcoin 1:1 and create another chain like bitcoin cash?
by
chicodosbitcoin
on 10/04/2018, 16:34:53 UTC
the users will keep using the old wallet file from bitcoin ?
questions like that I cant understand.
If you copy bitcoin 1 to 1 you just have bitcoin Tongue, if you don't change the code, its still bitcoin no matter how many times you copy it.
You should just change address formula for example to start from 9 instead 1 or 3 and now you need to modify client for it and people need to use that ur new client etc Tongue
Deep technical knowledge is needed here to understand what you are doing. Its above my head a little bit, but if im interested enough i would dig into it.

many thanks man, u kinda clarify me, I have knowledge in cloning coins and starting new chains, I was trying understand how can I do this.

when u said: change address formula   for example to start from 9 instead 1 or 3,

u mean the wallet address right?

I am trying understand how a new chain is created and the users still holding the same ammount running in a diferent blockchain as I need the btc blockchain to make it possible, understand?
Post
Topic
Board Beginners & Help
how to clone bitcoin 1:1 and create another chain like bitcoin cash?
by
chicodosbitcoin
on 10/04/2018, 16:20:40 UTC
guys I could not find the process for this, I know how to clone bitcoin and make a new altcoin.

but using the bitcoin chain 1:1 and create another coin and chain I don't know.

how the users will receive 1 coin? if the blockchain will change?

the users will keep using the old wallet file from bitcoin ?

questions like that I cant understand.

anywhere I can search about it?

the same process has be done for litecoin and ethereum.

thank you.
Post
Topic
Board Speculation (Altcoins)
Re: What is best PoS coin to invest into right now?
by
chicodosbitcoin
on 08/04/2018, 21:19:37 UTC
nice topic, reading about POS
Post
Topic
Board Service Announcements
Re: Crex24.com - Cryptocurrency Exchange [Official Thread] (Fiat deposit/withdrawal)
by
chicodosbitcoin
on 08/04/2018, 11:40:06 UTC
Hi, how can include a coin in your exchange?  thank you.
Post
Topic
Board Beginners & Help
Re: cloning bitcoin MAX_MONEY not working
by
chicodosbitcoin
on 03/04/2018, 00:02:04 UTC
up
Post
Topic
Board Altcoin Discussion
Re: *** Complete Guide on How to Create a New Alt Coin ***
by
chicodosbitcoin
on 02/04/2018, 23:55:13 UTC
nice tutorial,

I have created the altcoin it is working perfeclty.

but my MAX_MONEY it is not working.

how can i fix this?

seams very complicated, my wallet it is creating more coins then suppose to have.

I created this but nobody helped.
https://bitcointalk.org/index.php?topic=3236523.msg33709414#msg33709414


someone can help me with this?
Post
Topic
Board Beginners & Help
cloning bitcoin MAX_MONEY not working
by
chicodosbitcoin
on 01/04/2018, 20:08:33 UTC
I just clonned bitcoin and created a altcoin, the altcoin it is working , but the coin ammount seams not working well.

total of coins I chosed was: 1000

I have changed the amount of coins to be mined, to be 1000 but looks did not work, I have already 8000 coins mined, can someone explain why it is not working?

main.h

Code:
static const int64 MAX_MONEY = 1000 * COIN;  //coin limit

someone answer this but i kinda did not understand:

Code:
static const int64 MAX_MONEY = 1000 * COIN;  //coin limit

Maximum amount (in satoshi) allowed anywhere (in the whole network). COIN is equal to 10^8 This is NOT the total amount of coins which your software is going to produce.     Huh Huh Huh Huh Huh

I could find litecoin uses:
Code:
static const int64 MAX_MONEY = 84000000 * COIN;

potcoin uses:
Code:
static const int64 MAX_MONEY = 420000000 * COIN;

feathercoin uses:
Code:
static const CAmount MAX_MONEY = 336000000 * COIN;

why when I changed my coin did not work?

I found some links on google talking about it but I still not understand well how to fix the coin limit:
https://bitcointalk.org/index.php?topic=331069.0
https://bitcoin.stackexchange.com/questions/36612/why-doesnt-changing-max-money-change-the-maximum-number-of-coins

how the calculation I need to do?

can someone explain me that.


thank you.