Bitcoin Forum
May 09, 2024, 08:36:56 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Altcoin Discussion / Masternode, good or bad for cryptocurrency ? on: May 14, 2018, 12:25:34 AM

I am looking for a clear answer about this question please, do masternodes good or not for futur of any cryptocurrency ?

Advantages & inconvignence ?
2  Bitcoin / Development & Technical Discussion / Set send limit for particular bitcoin address ? on: May 13, 2018, 11:18:22 PM
Hi,

I want know if someone can integrate a send limit for a particular bitcoin address ?

For example, i set maximum send limit: 0.001 BTC in one transaction under 24 hours !

This will prevent stealing big amount of BTC in a major exchanger and even from owners.

Any idea about this, is it possible to implement it on bitcoin core ?
3  Alternate cryptocurrencies / Altcoin Discussion / Do masternodes good for cryptos ? on: May 13, 2018, 12:48:55 AM
What i get from my searchs that masternodes kill altcoins and give power for rich, is it right ?
4  Economy / Digital goods / WTB Amazon AWS method to create free VPS on: May 08, 2018, 09:49:31 PM
I want buy the method to create unlimited free VPS for one year in amazon aws.

Please contact me if you know the method with your price.
5  Alternate cryptocurrencies / Altcoin Discussion / Cheap VPS for new altcoin node ? on: May 08, 2018, 07:08:44 PM
Hi,

Is there any cheap VPS for a new created altcoin node ?

With minimum 10/20 GO space.

Thank you
6  Alternate cryptocurrencies / Altcoin Discussion / Technical questions about premine ? on: May 07, 2018, 11:30:18 PM
Hi,

Do genesis block spendable ? if yes, why other altcoins use the block 1 instead of genesis block to premine ?

How much time do AUROCOIN, CANADACOIN or other countrycoins took time to premine that amount of coins ?

Some members will say just to change the block reward difficulty, yes but programmatically where and how to do that ?

For example:

Code:
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return 0;
    if (nHeight == 1)
        return 10500000 * COIN;

    CAmount nSubsidy = 50 * COIN;
    // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
    nSubsidy >>= halvings;
    return nSubsidy;
}

Here we set 1050000 coins for the first block, but how to get all that coin to a newly generated address ?

Do i have to use a miner or a fast method to get them there in no time ? if i use a miner, how time this will take to get them all into my wallet ?

The last question is, if i premine about 80% of max money supply, do this algo will be ok for the new altcoin or you can give a suggestion for it:
Code:
    CAmount nSubsidy = 50 * COIN;

    if (nHeight < consensusParams.nSubsidySlowStartInterval / 2) {
        nSubsidy /= consensusParams.nSubsidySlowStartInterval;
        nSubsidy *= nHeight;
        return nSubsidy;
    } else if (nHeight < consensusParams.nSubsidySlowStartInterval) {
        nSubsidy /= consensusParams.nSubsidySlowStartInterval;
        nSubsidy *= (nHeight+1);
        return nSubsidy;
    }

    assert(nHeight > consensusParams.SubsidySlowStartShift());
    int halvings = (nHeight - consensusParams.SubsidySlowStartShift()) / consensusParams.nSubsidyHalvingInterval;

    if (halvings >= 64)
        return 0;

    if (nHeight == 1)
        return 10500000 * COIN;

    nSubsidy >>= halvings;
return nSubsidy;

Hope i will get some answers from experimented users.
7  Alternate cryptocurrencies / Altcoin Discussion / DELETE on: May 07, 2018, 02:07:25 PM
delete
8  Alternate cryptocurrencies / Altcoin Discussion / How the Bitcoin Private pubkey prefix is generated ? on: May 06, 2018, 06:05:22 PM
Hi,

I noticied that bitcoin private contain two bytes !

Code:
        // guarantees the first 2 characters, when base58 encoded, are "b1"
        base58Prefixes[PUBKEY_ADDRESS]     = {0x13,0x25};
        // guarantees the first 2 characters, when base58 encoded, are "bx"
        base58Prefixes[SCRIPT_ADDRESS]     = {0x13,0xAF};
        // the first character, when base58 encoded, is "5" or "K" or "L" (as in Bitcoin)
        base58Prefixes[SECRET_KEY]         = {0x80};
        // do not rely on these BIP32 prefixes; they are not specified and may change
        base58Prefixes[EXT_PUBLIC_KEY]     = {0x04,0x88,0xB2,0x1E};
        base58Prefixes[EXT_SECRET_KEY]     = {0x04,0x88,0xAD,0xE4};
        // guarantees the first 2 characters, when base58 encoded, are "zk"
        base58Prefixes[ZCPAYMENT_ADDRRESS] = {0x16,0xA8};
        // guarantees the first 2 characters, when base58 encoded, are "SK"
        base58Prefixes[ZCSPENDING_KEY] = {0xAB,0x36};

How is that calculated ?

Thank you in advance.
9  Bitcoin / Development & Technical Discussion / What IDE used for Bitcoin developement (Ubuntu) ? on: April 27, 2018, 05:42:03 PM
Hi,

What IDE used for Bitcoin developement on Ubuntu ?

For fast compilation, error logs, etc.
10  Bitcoin / Development & Technical Discussion / Is it possible to use Bitcoin Blockchain for Litecoin ? on: April 24, 2018, 10:03:29 PM
Hi,

Litecoin have her own Blockchain, so is it possible to adapte Litecoin in order to use Bitcoin blockchain ?

I just want to know if it's possible ? and if yes, theorically what is the process ?

Second question if the respond is no for the first question:

Is it possible to use Bitcoin Blockchain for another Altcoin that use her own one (This altcoin is based on bitcoin core technology) ? What is the process ?

Thank you in advance.
11  Bitcoin / Bitcoin Discussion / Bitcoin become centralized with Lightning Network ? on: April 22, 2018, 10:44:33 PM
Hi,

I hear a lot of comments claiming that this last days, is that right ?

If yes, can you provide more infos ?

Thank you
12  Bitcoin / Project Development / Looking for blockchain developer on: April 22, 2018, 08:43:10 PM
Hi,

We are working on a new cryptocurrency based on Bitcoin technology.

If you are familiar with it and already did a project in this way, pm me with your portfolio.

You must known well C++ programming and the ability to modify an existing code to integer new functions.

More details from PM.

Possibility to join our team if interested from the project .

Thank you
13  Economy / Services / Looking for blockchain developer on: April 22, 2018, 08:16:29 PM
Hi,

We are working on a new cryptocurrency based on Bitcoin technology.

If you are familiar with it and already did a project in this way, pm me with your portfolio.

You must known well C++ programming and the ability to modify an existing code to integer new functions.

More details from PM.

Possibility to join our team if interested from the project .

Thank you
14  Alternate cryptocurrencies / Altcoin Discussion / How to extract my CLAMS coins ? on: March 10, 2018, 08:07:05 PM
Hi,

I have a clams coins on my wallet, but i can't extract them !

Is there an online wallet for this coin please ?

I download the clams coin client but i have to download 3years and some weeks of blockchain, and my internet connexion do not allow that !


Any possible solution ?
15  Economy / Digital goods / [WTB] Anime & Manga Facebook Page on: January 28, 2018, 12:37:40 PM
Buying Manga and Anime page with good engagments, interaction and english speaking audience.

Page size must be over 8k, Bigger is better.

If you have one, PM me directly.
16  Economy / Invites & Accounts / [WTS] Old Bitcointalk Newbe Accounts (2011) on: January 10, 2018, 10:06:52 PM
Hi,

I have created on 2011 some bitcointalk accounts, with 0 Activities and posts.

Want to sell them now.

PM me with your price if you are interested.

CREATED DATE: 2011

Thank you.
17  Alternate cryptocurrencies / Altcoin Discussion / Reason why there no Electrum for Bitcoin Gold ? on: December 21, 2017, 07:31:26 PM
Hi,

What is the reason why there no eletrum wallet for bitcoin gold ?

At my opinion, the first thing to think for before creating new cryptocurrency, is the ability to manage the coins on a web wallet, desktop wallet and especially ELECTRUM !!!

I checked the few options present on the bitcoin gold website, all seem to be not trusting at 100% !

Because i can't share my private keys elsewhere that my own PC, since there 2 forks today, there will be many new forks in the futur !!! Even Fork of Forked cryptocurrencies.

Any good solution whithout risky way please ?
18  Economy / Service Announcements / BitcoinCashForum.net | A Bitcoin Cash Forum on: December 17, 2017, 06:18:30 PM
Hi,

Just to announce our forum about Bitcoin Cash.

Thank's to join us: https://bitcoincashforum.net

Official Bitcoin Cash website: https://bitcoincash.org

You are welcome.
19  Economy / Web Wallets / Blocktrail / BTC.com problem ! Transactions unconfirmed and Hold my bitcoins ! on: August 25, 2017, 08:44:10 PM
Hi,

I have problem with my Blocktrail wallet !

One week ago i sent 3 transactions to my friends, until now not confirmed ! Blocktrail supposed to calculate the min fees when sending !

And now i have around 0.08 BTC on my account, when i try to send to another wallet, i get everytime this error message:

Code:
Failed
Wallet balance too low to pay the fee [7398620]

And this for any amount ! Even 0.001 / 0.0005 / 0.08 / 0.06 All this amount tried but the same error message !

When i tried to send all the wallet here the error message:

Code:
a fee of 0.09398620 BTC is required to spend all your coins 
WTF !!! I have 0.08 And sayyou must have 0.09XXX to pay fees !!!

Contacted the support, but everytime no answer ! I already contacted them for another problem 5 month ago, no answer too !!!

Any one know how to solve this ?

How to export my private keys to another wallet service ?

Please help !
20  Economy / Digital goods / [WTS] Steam :: Counter-Strike :: Condition Zero on: July 21, 2016, 07:15:15 PM
Hi

I want sell my account on steampowered (Counter-Strike: Condition Zero)

Redeem limited only for this countries: Indonesia, Malaisia, Philippines, Singapour, Thaïlande, Vietnam

Price: 0.008 BTC

Buy it on Satoshi Bin: http://www.satoshibin.com/FNukmK92RZzTOroKyZmR1zID-8309MOW_Q46e3YeNx$iXBqJ.El7jwLdTACYkbaqdJWj5MwRriZW

Or contact me from MP

Can't vouch since i have only one account.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!