Bitcoin Forum
April 19, 2024, 11:04:39 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 ... 377 »
  Print  
Author Topic: [ANN] Expanse (EXP) - 1st Stable fork of Ethereum (New Algo + PirlGuard)  (Read 961400 times)
defaced (OP)
Legendary
*
Offline Offline

Activity: 2184
Merit: 1011


Franko is Freedom


View Profile WWW
September 09, 2015, 09:43:14 PM
 #121


As for the reserve, 90% will be locked and released slowly over time no matter what, and this will be controlled by the Expanse Organization as a whole, not just the team. The time frame for this could be one year, five years, or whatever the community thinks is best. I personally think one year isn't long enough as it is likely funds will be spent as available on bounties and this could create an issue a year down the line, even if it is a year away. Although it is possible POS or something else might be implemented later, or perhaps voluntary mining percentage going to the community fund later. This would be up to the Expanse Organization as a whole. I personally prefer keeping it proof of work as many might not find out about this until years later, and I would like them to be able to mine it even then, but that is just my own view.

We are certainly open to suggestions on what time frame the community funds should be dispersed over, and it is critical that the community has control of them as laid out in the Organization plans. That is the point of smart contracts and having everything transparent.




Just remove it. Let core team take premine they want and that's all. You can't guarantee that reserve will be community reserve so it will be considered as more or less hidden premine.

Actually you can. Smiley

Code:
contract token { mapping (address => uint) public coinBalanceOf;   function token() { }   function sendCoin(address receiver, uint amount) returns(bool sufficient) {  } }


contract Democracy {

    uint public minimumQuorum;
    uint public debatingPeriod;
    token public voterShare;
    address public founder;
    Proposal[] public proposals;
    uint public numProposals;

    event ProposalAdded(uint proposalID, address recipient, uint amount, bytes32 data, string description);
    event Voted(uint proposalID, int position, address voter);
    event ProposalTallied(uint proposalID, int result, uint quorum, bool active);

    struct Proposal {
        address recipient;
        uint amount;
        bytes32 data;
        string description;
        uint creationDate;
        bool active;
        Vote[] votes;
        mapping (address => bool) voted;
    }

    struct Vote {
        int position;
        address voter;
    }

    function Democracy(token _voterShareAddress, uint _minimumQuorum, uint _debatingPeriod) {
        founder = msg.sender; 
        voterShare = token(_voterShareAddress);
        minimumQuorum = _minimumQuorum || 10;
        debatingPeriod = _debatingPeriod * 1 minutes || 30 days;
    }


    function newProposal(address _recipient, uint _amount, bytes32 _data, string _description) returns (uint proposalID) {
        if (voterShare.coinBalanceOf(msg.sender)>0) {
            proposalID = proposals.length++;
            Proposal p = proposals[proposalID];
            p.recipient = _recipient;
            p.amount = _amount;
            p.data = _data;
            p.description = _description;
            p.creationDate = now;
            p.active = true;
            ProposalAdded(proposalID, _recipient, _amount, _data, _description);
            numProposals = proposalID+1;
        }
    }

    function vote(uint _proposalID, int _position) returns (uint voteID){
        if (voterShare.coinBalanceOf(msg.sender)>0 && (_position >= -1 || _position <= 1 )) {
            Proposal p = proposals[_proposalID];
            if (p.voted[msg.sender] == true) return;
            voteID = p.votes.length++;
            p.votes[voteID] = Vote({position: _position, voter: msg.sender});
            p.voted[msg.sender] = true;
            Voted(_proposalID,  _position, msg.sender);
        }
    }

    function executeProposal(uint _proposalID) returns (int result) {
        Proposal p = proposals[_proposalID];
        /* Check if debating period is over */
        if (now > (p.creationDate + debatingPeriod) && p.active){   
            uint quorum = 0;
            /* tally the votes */
            for (uint i = 0; i <  p.votes.length; ++i) {
                Vote v = p.votes[i];
                uint voteWeight = voterShare.coinBalanceOf(v.voter);
                quorum += voteWeight;
                result += int(voteWeight) * v.position;
            }
            /* execute result */
            if (quorum > minimumQuorum && result > 0 ) {
                p.recipient.call.value(p.amount)(p.data);
                p.active = false;
            } else if (quorum > minimumQuorum && result < 0) {
                p.active = false;
            }
            ProposalTallied(_proposalID, result, quorum, p.active);
        }
    }
}

This is just the basic example provided by Ethereum.. and not to cast stones or anything but... even the Ethereum reserve contract doesnt use a DAO like we are.

Fortune Favors the Brave
Borderless CharityEXPANSEEXRAllergy FinderFranko Is Freedom
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
1713567879
Hero Member
*
Offline Offline

Posts: 1713567879

View Profile Personal Message (Offline)

Ignore
1713567879
Reply with quote  #2

1713567879
Report to moderator
Zackgeno96
Hero Member
*****
Offline Offline

Activity: 1778
Merit: 520



View Profile
September 09, 2015, 09:50:19 PM
 #122

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
defaced (OP)
Legendary
*
Offline Offline

Activity: 2184
Merit: 1011


Franko is Freedom


View Profile WWW
September 09, 2015, 09:53:32 PM
 #123

And Ethereum had 12m ETH in their simple multisig premine reserve contract.. which they have already withdrew 7m :x

Our DAO contract limits the withdraw to 1% of the total contract balance per 24 hours.

Furthermore, Anyone trying to discredit our network by claiming its just a clone blahblahbalh is painfully ignorant to the nature of the ETH codebase. ETH was specifically designed to give anyone the ability to create their own chain with relative ease. They even encourage users to create their own private network if ETH's parameters dont fit their needs.. and ETH doesnt fit my needs so I'm creating EXP.

Fortune Favors the Brave
Borderless CharityEXPANSEEXRAllergy FinderFranko Is Freedom
randywald
Hero Member
*****
Offline Offline

Activity: 600
Merit: 500


View Profile
September 09, 2015, 09:54:32 PM
 #124

1. Mine as much as you can
2. Dump when price pumps
3. Next clone please

Lots of money will be made. It's like we are back in 2013 with all the litecoin clones.

That's just how i see it, don't get mad at me Grin.

NextGenCrypto
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile WWW
September 09, 2015, 09:54:54 PM
 #125

And Ethereum had 12m ETH in their simple multisig premine reserve contract.. which they have already withdrew 7m :x

Our DAO contract limits the withdraw to 1% of the total contract balance per 24 hours.

Furthermore, Anyone trying to discredit our network by claiming its just a clone blahblahbalh is painfully ignorant to the nature of the ETH codebase. ETH was specifically designed to give anyone the ability to create their own chain with relative ease. They even encourage users to create their own private network if ETH's parameters dont fit their needs.. and ETH doesnt fit my needs so I'm creating EXP.

And taking a ridiculous premine which will stun the growth of the coin.  We don't care how you hold it.  The fact of the matter is that you're being greedy.  End of story.

defaced (OP)
Legendary
*
Offline Offline

Activity: 2184
Merit: 1011


Franko is Freedom


View Profile WWW
September 09, 2015, 10:03:29 PM
 #126

And Ethereum had 12m ETH in their simple multisig premine reserve contract.. which they have already withdrew 7m :x

Our DAO contract limits the withdraw to 1% of the total contract balance per 24 hours.

Furthermore, Anyone trying to discredit our network by claiming its just a clone blahblahbalh is painfully ignorant to the nature of the ETH codebase. ETH was specifically designed to give anyone the ability to create their own chain with relative ease. They even encourage users to create their own private network if ETH's parameters dont fit their needs.. and ETH doesnt fit my needs so I'm creating EXP.

And taking a ridiculous premine which will stun the growth of the coin.  We don't care how you hold it.  The fact of the matter is that you're being greedy.  End of story.

1) Expanse isnt a "coin" its a tokenized dapp platform
2) You keep missing the point. No central authority is holding it. You, if you choose to participate in the network, will be one of many holding it and actively deciding how it gets spent.

Fortune Favors the Brave
Borderless CharityEXPANSEEXRAllergy FinderFranko Is Freedom
CowboyKiller
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250


View Profile
September 09, 2015, 10:14:57 PM
 #127



1) Expanse isnt a "coin" its a tokenized dapp platform
2) You keep missing the point. No central authority is holding it. You, if you choose to participate in the network, will be one of many holding it and actively deciding how it gets spent.

You guys continue to dodge the questions about the 1.1 million coins you will have in your hands ready to dump on first exchange. Put your money where your mouth is. Delete the 1.1 million part you have up front, entirely. Go with 100% contract only community vote released over time fund and this might not be DOA.
NextGenCrypto
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile WWW
September 09, 2015, 10:20:22 PM
 #128

And Ethereum had 12m ETH in their simple multisig premine reserve contract.. which they have already withdrew 7m :x

Our DAO contract limits the withdraw to 1% of the total contract balance per 24 hours.

Furthermore, Anyone trying to discredit our network by claiming its just a clone blahblahbalh is painfully ignorant to the nature of the ETH codebase. ETH was specifically designed to give anyone the ability to create their own chain with relative ease. They even encourage users to create their own private network if ETH's parameters dont fit their needs.. and ETH doesnt fit my needs so I'm creating EXP.

And taking a ridiculous premine which will stun the growth of the coin.  We don't care how you hold it.  The fact of the matter is that you're being greedy.  End of story.

1) Expanse isnt a "coin" its a tokenized dapp platform
2) You keep missing the point. No central authority is holding it. You, if you choose to participate in the network, will be one of many holding it and actively deciding how it gets spent.

Then why are you posting in the "Alternate cryptocurrencies" section?  It's a fucking altcoin.

fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
September 09, 2015, 10:24:30 PM
 #129


As for the reserve, 90% will be locked and released slowly over time no matter what, and this will be controlled by the Expanse Organization as a whole, not just the team. The time frame for this could be one year, five years, or whatever the community thinks is best. I personally think one year isn't long enough as it is likely funds will be spent as available on bounties and this could create an issue a year down the line, even if it is a year away. Although it is possible POS or something else might be implemented later, or perhaps voluntary mining percentage going to the community fund later. This would be up to the Expanse Organization as a whole. I personally prefer keeping it proof of work as many might not find out about this until years later, and I would like them to be able to mine it even then, but that is just my own view.

We are certainly open to suggestions on what time frame the community funds should be dispersed over, and it is critical that the community has control of them as laid out in the Organization plans. That is the point of smart contracts and having everything transparent.




Just remove it. Let core team take premine they want and that's all. You can't guarantee that reserve will be community reserve so it will be considered as more or less hidden premine.

Actually you can. Smiley

Code:
contract token { mapping (address => uint) public coinBalanceOf;   function token() { }   function sendCoin(address receiver, uint amount) returns(bool sufficient) {  } }


contract Democracy {

    uint public minimumQuorum;
    uint public debatingPeriod;
    token public voterShare;
    address public founder;
    Proposal[] public proposals;
    uint public numProposals;

    event ProposalAdded(uint proposalID, address recipient, uint amount, bytes32 data, string description);
    event Voted(uint proposalID, int position, address voter);
    event ProposalTallied(uint proposalID, int result, uint quorum, bool active);

    struct Proposal {
        address recipient;
        uint amount;
        bytes32 data;
        string description;
        uint creationDate;
        bool active;
        Vote[] votes;
        mapping (address => bool) voted;
    }

    struct Vote {
        int position;
        address voter;
    }

    function Democracy(token _voterShareAddress, uint _minimumQuorum, uint _debatingPeriod) {
        founder = msg.sender; 
        voterShare = token(_voterShareAddress);
        minimumQuorum = _minimumQuorum || 10;
        debatingPeriod = _debatingPeriod * 1 minutes || 30 days;
    }


    function newProposal(address _recipient, uint _amount, bytes32 _data, string _description) returns (uint proposalID) {
        if (voterShare.coinBalanceOf(msg.sender)>0) {
            proposalID = proposals.length++;
            Proposal p = proposals[proposalID];
            p.recipient = _recipient;
            p.amount = _amount;
            p.data = _data;
            p.description = _description;
            p.creationDate = now;
            p.active = true;
            ProposalAdded(proposalID, _recipient, _amount, _data, _description);
            numProposals = proposalID+1;
        }
    }

    function vote(uint _proposalID, int _position) returns (uint voteID){
        if (voterShare.coinBalanceOf(msg.sender)>0 && (_position >= -1 || _position <= 1 )) {
            Proposal p = proposals[_proposalID];
            if (p.voted[msg.sender] == true) return;
            voteID = p.votes.length++;
            p.votes[voteID] = Vote({position: _position, voter: msg.sender});
            p.voted[msg.sender] = true;
            Voted(_proposalID,  _position, msg.sender);
        }
    }

    function executeProposal(uint _proposalID) returns (int result) {
        Proposal p = proposals[_proposalID];
        /* Check if debating period is over */
        if (now > (p.creationDate + debatingPeriod) && p.active){   
            uint quorum = 0;
            /* tally the votes */
            for (uint i = 0; i <  p.votes.length; ++i) {
                Vote v = p.votes[i];
                uint voteWeight = voterShare.coinBalanceOf(v.voter);
                quorum += voteWeight;
                result += int(voteWeight) * v.position;
            }
            /* execute result */
            if (quorum > minimumQuorum && result > 0 ) {
                p.recipient.call.value(p.amount)(p.data);
                p.active = false;
            } else if (quorum > minimumQuorum && result < 0) {
                p.active = false;
            }
            ProposalTallied(_proposalID, result, quorum, p.active);
        }
    }
}

This is just the basic example provided by Ethereum.. and not to cast stones or anything but... even the Ethereum reserve contract doesnt use a DAO like we are.



Some people just don't understand how much better Ethereum is than BitCoin.



defaced (OP)
Legendary
*
Offline Offline

Activity: 2184
Merit: 1011


Franko is Freedom


View Profile WWW
September 09, 2015, 11:11:16 PM
 #130

And Ethereum had 12m ETH in their simple multisig premine reserve contract.. which they have already withdrew 7m :x

Our DAO contract limits the withdraw to 1% of the total contract balance per 24 hours.

Furthermore, Anyone trying to discredit our network by claiming its just a clone blahblahbalh is painfully ignorant to the nature of the ETH codebase. ETH was specifically designed to give anyone the ability to create their own chain with relative ease. They even encourage users to create their own private network if ETH's parameters dont fit their needs.. and ETH doesnt fit my needs so I'm creating EXP.

And taking a ridiculous premine which will stun the growth of the coin.  We don't care how you hold it.  The fact of the matter is that you're being greedy.  End of story.

1) Expanse isnt a "coin" its a tokenized dapp platform
2) You keep missing the point. No central authority is holding it. You, if you choose to participate in the network, will be one of many holding it and actively deciding how it gets spent.

Then why are you posting in the "Alternate cryptocurrencies" section?  It's a fucking altcoin.

Because there isnt a "dapp platform" section. You should send Theymos a section if it hurts your feelings so bad.

Fortune Favors the Brave
Borderless CharityEXPANSEEXRAllergy FinderFranko Is Freedom
CryptoClub
Legendary
*
Offline Offline

Activity: 1470
Merit: 1000


cryptocollectorsclub.com


View Profile
September 09, 2015, 11:25:54 PM
 #131

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.

...
Zackgeno96
Hero Member
*****
Offline Offline

Activity: 1778
Merit: 520



View Profile
September 09, 2015, 11:50:09 PM
 #132

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.
ya, i know there is basically no point to joining the test mine, but it gives me the chance to make sure i have my miners set up properly, when i tried to mine eth i struggled for a few days and just gave up, hoping this will be a lot smoother and hopefully me and my pea sized brain will be able to figure it out  Grin

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
defaced (OP)
Legendary
*
Offline Offline

Activity: 2184
Merit: 1011


Franko is Freedom


View Profile WWW
September 09, 2015, 11:54:03 PM
 #133

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.
ya, i know there is basically no point to joining the test mine, but it gives me the chance to make sure i have my miners set up properly, when i tried to mine eth i struggled for a few days and just gave up, hoping this will be a lot smoother and hopefully me and my pea sized brain will be able to figure it out  Grin

Well there is a point, to do exactly what you said ^_^ get your mining gear ready and everything.

Fortune Favors the Brave
Borderless CharityEXPANSEEXRAllergy FinderFranko Is Freedom
Rage19420
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


View Profile
September 10, 2015, 02:09:57 AM
 #134

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.
ya, i know there is basically no point to joining the test mine, but it gives me the chance to make sure i have my miners set up properly, when i tried to mine eth i struggled for a few days and just gave up, hoping this will be a lot smoother and hopefully me and my pea sized brain will be able to figure it out  Grin

Here a tutorial for solo mining ether coins: https://bitcointalk.org/index.php?topic=1155284.msg12306597#msg12306597

It has bat files too.

Zackgeno96
Hero Member
*****
Offline Offline

Activity: 1778
Merit: 520



View Profile
September 10, 2015, 02:13:55 AM
 #135

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.
ya, i know there is basically no point to joining the test mine, but it gives me the chance to make sure i have my miners set up properly, when i tried to mine eth i struggled for a few days and just gave up, hoping this will be a lot smoother and hopefully me and my pea sized brain will be able to figure it out  Grin

Here a tutorial for solo mining ether coins: https://bitcointalk.org/index.php?topic=1155284.msg12306597#msg12306597

It has bat files too.


thanks that really helps!, but when i was trying to mine eth there was only 30 gigs on the network, last time i checked there was 400GH+? im not sure if it's still as high but that's pretty insane for cpu power only.... so i stopped bothering with it, the one random pool feature really boggled my mind somuch $ invested into a project without a dedicated mining pool/server...  Huh

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
Rage19420
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


View Profile
September 10, 2015, 02:17:59 AM
 #136

what time will the test net launch be happening tomorrow, looking forward to test mining this kinda had a hard time setting up miners for eth hopefully this will be more clear and a little simpler  Wink

No time set for the test launch, but once everything is ready tomorrow. It should run for a couple days so there is no rush trying to test mine first. As this is just a test there is no value with anything mined with it, so don't worry about being early.
ya, i know there is basically no point to joining the test mine, but it gives me the chance to make sure i have my miners set up properly, when i tried to mine eth i struggled for a few days and just gave up, hoping this will be a lot smoother and hopefully me and my pea sized brain will be able to figure it out  Grin

Here a tutorial for solo mining ether coins: https://bitcointalk.org/index.php?topic=1155284.msg12306597#msg12306597

It has bat files too.


thanks that really helps!, but when i was trying to mine eth there was only 30 gigs on the network, last time i checked there was 400GH+? im not sure if it's still as high but that's pretty insane for cpu power only.... so i stopped bothering with it

suprnova pool really helps for when the diff is gets too high. You basically just have to run the gpuminer and that's it. I struggled as well but i think I have it worked out pretty well now.
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
September 10, 2015, 02:40:15 AM
 #137

this doesnt look like secure investment

yolo
Zackgeno96
Hero Member
*****
Offline Offline

Activity: 1778
Merit: 520



View Profile
September 10, 2015, 02:56:39 AM
 #138

this doesnt look like secure investment
what do you mean by that it's not like there asking for crowdfunding nor any ICO funds, so you really plan on not spending a few hours on what these talented people of the crypto community have to bring to the table? i would be ashamed if i missed another great project such as this i for one am excited as hell....

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
abstractednerve
Hero Member
*****
Offline Offline

Activity: 752
Merit: 500


Bcnex - The Ultimate Blockchain Trading Platform


View Profile
September 10, 2015, 04:27:13 AM
 #139

this doesnt look like secure investment

whats a secure investment to you m8? bot, exclusive coin, mapcoin, and negativity?

▄▄██████████▄▄
▄██████████████████▄
▄██████████▌ ██████████▄
▄████████▀       ▀███████▄
▄████████  ▄██████▄████████▄
█████████  ▀██▀  ▄██████████
▐██████████▄     ▀███████████▌
▐█████████████  ▄  ▀█████████▌
█████████████ ▐██  █████████
▀████████▀██████▀  ████████▀
▀███████▄       ▄████████▀
▀██████████▌ ██████████▀
▀██████████████████▀
▀▀██████████▀▀
.$martFund.

  ▄▄▀▀▀▄▄
▀       ▀
▀▄▄   ▄▄▀█      ▄▄▀▀▀▄▄
   ▀█▀   █    ▄▀       ▀
▄   █   ▄█▄   █▀▄▄   ▄▄▀
  ▀▀▄█▄▀▀   ▀▀▄█   ▀█▀   
     █▄       ▄▄   █   ▄█▄
     █ ▀▀▄▄▄▀▀ █ ▀▀▄█▄▀▀   ▀▀
     █    █    █    █▄       ▄█
  ▄▄▀▀▀▄▄ █ ▄▄▀▀▀▄▄ █ ▀▀▄▄▄▀▀
▀       ▀▀       ▀    █   
▀▄▄   ▄▄▀▀▄▄   ▄▄▀█▀▄▄ █ ▄▄
   ▀█▀      ▀█▀   █   ▀▀▀
▄   █   ▄▄   █   ▄
  ▀▀▄█▄▀▀   ▀▀▄█▄▀▀
..One-stop Blockchain..
..Investment Solution..
▄▄████████▄▄
▄████████████████▄
▄████████████████████▄
███████████▀    ▐███████
███████████    ▄▄█████████
▐██████████▀    ▀▀█████████▌
▐█████████▌       █████████▌
▐███████████    ███████████▌
███████████    ███████████
██████████    ██████████
▀████████▄  ▄████████▀
▀████████████████▀
▀▀████████▀▀



kadrek
Sr. Member
****
Offline Offline

Activity: 327
Merit: 250



View Profile
September 10, 2015, 06:13:22 AM
 #140

Anyone have a link to a miner for AMD cards, and a guide about how to mine with a pool/solo?

SWIPE         │

│   Monetizing mobile engagement data,
on the blockchain            [      
SWIPE
.
WHITEPAPER
]            
TELEGRAM
TWITTER
MEDIUM
REDDIT
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 ... 377 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!