Bitcoin Forum
July 05, 2024, 01:20:15 PM *
News: Latest Bitcoin Core release: 27.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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 »
  Print  
Author Topic: ECASH  (Read 80406 times)
WhattaCOINcidence
Full Member
***
Offline Offline

Activity: 142
Merit: 100


View Profile
October 15, 2017, 01:07:14 AM
 #921

First I was really interested in this coin, but now it's getting confusing. Some things sound... let's say weird.

1. Nice Roadmap, but there is no proof that this coin will ever be applied (actual usage)
2. Most arguments sound like pie in the sky. Same market cap as ETH? Srsly? So you think ETH will only be used for payments in the future? No more smart contracts etc? Sorry but this is bullshit.
3. The whole credit card thing is a huge lie, as it's not possible. In many countries credit cards must be fiat based by law, so eth credit cards are illegal. Can't believe the team isn't aware of this.
4. I only read hype, not much content. Reminds me of several scams.
5. Mindin (user) only supports scams. He gets paid for hype. I would never invest in a coin he promotes.

Do your own research, for me it's not a trustworthy project.


Read it people!


I would add this:

- The sourcecode of the smart contract has not been published.

- There are 4 other projects with the exact same smart contract code:

https://etherscan.io/find-similiar-contracts?a=0x5D21eF5f25a985380B65c8e943A0082fEDa0Db84&lvl=5


0x50315Da8DeF43C14B8D45652745d9da9009F6524
unknown (test?)

0xfd95dF73AF6373376cdd155ac2de56aC9Bf85176
unknown (test?)

0xB606698E2A234dd0B6ae342e5A0ED0D241889D71
https://www.equisico.com/
source for this linkage to the smart contract address (scroll down, the address is there together with equisico.com email):
http://www.dailibu.cn/announcementsaltcoins/2017103459.html

0x84C2c31C04339c9938Adfe3F8013315c8906f071
https://www.ebitcoincash.solutions/
source is on the page itself, they list this as their contract address

So the op is running 3 scam projects with the same contract code: Ethereumcash, Equis and eBitcoinCash.

Or how does he explain why he plans to run a gambling contract with the same contract code as two cash contracts?

You're right, thanks for adding.
Actually I think it should be enough to look at the chart to realize this is a pump and dump scam:
https://coinmarketcap.com/currencies/ethereumcash/#charts
Who else is able to dump such amounts besides dev? Ninja still denying, he is just a liar.

European law is available online. There you will find all regulations regarding credit cards. Even a non-lawyer will understand that crypto credit cards are illegal. Furthermore cryptocurrencies will be classified as securities soon.
So no EU, no USA, no China, no Korea and probably no Russia. Not many markets remaining, huh? Maybe Africa is your market.

What I don't get is why some people still hype it. Are they all part of this scam? Or do they just try to pump the coin they bought?

This case is closed for me. People who still invest deserve to get scammed.


And also, the chart looks like because it just got listed yesterday on coinmarketcap. Coin was literally release a couple days ago. Any semi-intelligent investor knows there will be big fluctuations in the beginning until air drops are done and it goes to more exchanges.

I think i may have to stop coming to bitcointalk because of all the FUD and unnecessary negativity. Mods need to give warnings and then ban the FUDders. If ninjagod can delete their posts then i think he should.

 If someone has a geniuine question or concern about this project then great, ask away. If its this nonsense from this idiot then they deserve to be warned, then banned.
ninjagod (OP)
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
October 15, 2017, 01:10:31 AM
 #922



You're right, thanks for adding.
Actually I think it should be enough to look at the chart to realize this is a pump and dump scam:
https://coinmarketcap.com/currencies/ethereumcash/#charts
Who else is able to dump such amounts besides dev? Ninja still denying, he is just a liar.

European law is available online. There you will find all regulations regarding credit cards. Even a non-lawyer will understand that crypto credit cards are illegal. Furthermore cryptocurrencies will be classified as securities soon.
So no EU, no USA, no China, no Korea and probably no Russia. Not many markets remaining, huh? Maybe Africa is your market.

What I don't get is why some people still hype it. Are they all part of this scam? Or do they just try to pump the coin they bought?

This case is closed for me. People who still invest deserve to get scammed.

I HAVE NOT DUMPED ANY COINS. Check my addresses. There are NO transactions to EtherDelta. Nobody has dumped coins! The price went down the first time because I was in hospital and people thought that I had ditched the project. You can see that when I came back the price went up again. The price went down a second time because I just started distributing the airdrops and those who received decided to sell their airdrops immediately. There were NO dumps from my account. Please, please, please do your research before calling this a scam; You are helping to destroy a project that is totally legitimate.

THIS IS NOT SCAM ... THATS WHY I TRY TO TALK WITH YOU SO PLEASE READ MY LAST 2 MESSAGES   ninjagod

I cant log into my github, so Ill just post it here:

Code:
pragma solidity ^0.4.13;

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

contract TokenERC20 {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other ccount
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}

BYTECODE:

Code:
0x606060405236156100b75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100bc578063095ea7b31461014757806318160ddd1461017d57806323b872dd146101a2578063313ce567146101de57806342966c681461020757806370a082311461023157806379cc67901461026257806395d89b4114610298578063a9059cbb14610323578063cae9ca5114610347578063dd62ed3e146103c0575b600080fd5b34156100c757600080fd5b6100cf6103f7565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015257600080fd5b610169600160a060020a0360043516602435610495565b604051901515815260200160405180910390f35b341561018857600080fd5b6101906104c6565b60405190815260200160405180910390f35b34156101ad57600080fd5b610169600160a060020a03600435811690602435166044356104cc565b604051901515815260200160405180910390f35b34156101e957600080fd5b6101f1610544565b60405160ff909116815260200160405180910390f35b341561021257600080fd5b61016960043561054d565b604051901515815260200160405180910390f35b341561023c57600080fd5b610190600160a060020a03600435166105d9565b60405190815260200160405180910390f35b341561026d57600080fd5b610169600160a060020a03600435166024356105eb565b604051901515815260200160405180910390f35b34156102a357600080fd5b6100cf6106c8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010c5780820151818401525b6020016100f3565b50505050905090810190601f1680156101395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032e57600080fd5b610345600160a060020a0360043516602435610766565b005b341561035257600080fd5b61016960048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061077695505050505050565b604051901515815260200160405180910390f35b34156103cb57600080fd5b610190600160a060020a03600435811690602435166108aa565b60405190815260200160405180910390f35b60008054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048d5780601f106104625761010080835404028352916020019161048d565b820191906000526020600020905b81548152906001019060200180831161047057829003601f168201915b505050505081565b600160a060020a03338116600090815260056020908152604080832093861683529290522081905560015b92915050565b60035481565b600160a060020a0380841660009081526005602090815260408083203390941683529290529081205482111561050157600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220805483900390556105398484846108c7565b5060015b9392505050565b60025460ff1681565b600160a060020a0333166000908152600460205260408120548290101561057357600080fd5b600160a060020a03331660008181526004602052604090819020805485900390556003805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b919050565b60046020526000908152604090205481565b600160a060020a0382166000908152600460205260408120548290101561061157600080fd5b600160a060020a038084166000908152600560209081526040808320339094168352929052205482111561064457600080fd5b600160a060020a038084166000818152600460209081526040808320805488900390556005825280832033909516835293905282902080548590039055600380548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b92915050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048d5780601f106104625761010080835404028352916020019161048d565b820191906000526020600020905b81548152906001019060200180831161047057829003601f168201915b505050505081565b6107713383836108c7565b5b5050565b6000836107838185610495565b156108a15780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561083a5780820151818401525b602001610821565b50505050905090810190601f1680156108675780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561088857600080fd5b6102c65a03f1151561089957600080fd5b505050600191505b5b509392505050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a03831615156108de57600080fd5b600160a060020a0384166000908152600460205260409020548290101561090457600080fd5b600160a060020a0383166000908152600460205260409020548281011161092a57600080fd5b50600160a060020a0380831660008181526004602052604080822080549488168084528284208054888103909155938590528154870190915591909301927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a038084166000908152600460205260408082205492871682529020540181146109c757fe5b5b505050505600a165627a7a72305820afcd2e496c90ced90d96012acfd925f4c5505f88cfd11381339ee4b11d5851570029


mv_USA_devnull
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 15, 2017, 01:12:20 AM
 #923


1. I will release an update with the smart contract later.

2. Equis doesn't use a smart contract - It uses an API/JSON of the blockchain to determine valid deposits and withdrawals so the smart contract is completely valid if it's the same.

3. If this was a scam I would have dumped my tokens and made over $100,000.  I have not dumped anything and am still distributing the tokens.

4. eBitcoincash is not a scam. It is currently postponed because a huge amount of applicants signed up with multiple addresses.

I am tired of people calling this a scam. I was up for 3 days straight trying to get this project off the ground and went to a hospital with an IV because I had passed out from working instead of eating. Please join the telegram group if you have any issues. The devs are much more active in there and will answer all of your questions.

If it's not a scam then upload the smart contract sourcecode NOW. This takes less than a minute.

Or at least explain how it comes that those three projects share the same contract code without its sourcecode being published anywhere publicly? Are those three project related to the same creators (you) or not? Where did you/they get the sourcecode from?


Ok. Give me 10 minutes and the source code will be up.

10 mins are over, where is the sourcecode?

Looking at your bitcointalk profile I saw that you really are the creator of all those tokens. I didn't even check it before because I thought you would of course have used different accounts.

Even if you are not scamming or hyping, do you really think you can manage that many projects at once?
DraGonD
Full Member
***
Offline Offline

Activity: 416
Merit: 103


View Profile
October 15, 2017, 01:14:32 AM
 #924

If crypto credit cards are illegal, then how do you explain big succesful projects like CENTRA card and Pay 10x?

They have a licence by financial services, the emphasis being on licence

It is a heavily regulated industry. Centra has signed up with Visa/Mastercard. Monaco,TenX did the same.

Read the whitepaper's and T&C's. Don't be lazy!

In order to use the platforms to exchange & spend crypto=fiat, you have to have legal applications, be regulated and sign up for the actual systems/platforms to be able to spend the currency.

Which means entering into financial agreements with the banks/institutions.

I swear, most people on this forum sounds like a teenager and know nothing about the real world and how the system operates.


PS: To grown ups reading. If you want to read something funny, please read the T&C's of CENTRA!  It is beyond a joke. No protection at all for investors + people can loose everything without legal recourse.
Bit off-topic but it needs to be pointed out.

ninjagod (OP)
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
October 15, 2017, 01:18:18 AM
 #925


10 mins are over, where is the sourcecode?

Looking at your bitcointalk profile I saw that you really are the creator of all those tokens. I didn't even check it before because I thought you would of course have used different accounts.

Even if you are not scamming or hyping, do you really think you can manage that many projects at once?

https://github.com/EthereumCashOriginal/SmartContract/tree/master

And no, of course, I cant manage all those projects at once! But, Equis was a failed project and nobody invested. eBitcoinCash is currently postponed. So my time is really only given to this one project.
Battle1doom
Member
**
Offline Offline

Activity: 182
Merit: 10


View Profile
October 15, 2017, 01:22:44 AM
 #926


10 mins are over, where is the sourcecode?

Looking at your bitcointalk profile I saw that you really are the creator of all those tokens. I didn't even check it before because I thought you would of course have used different accounts.

Even if you are not scamming or hyping, do you really think you can manage that many projects at once?

https://github.com/EthereumCashOriginal/SmartContract/tree/master

And no, of course, I cant manage all those projects at once! But, Equis was a failed project and nobody invested. eBitcoinCash is currently postponed. So my time is really only given to this one project.

Good to hear, that should clear the air  Smiley
crafty
Full Member
***
Offline Offline

Activity: 336
Merit: 111


Bitcore (BTX) - The Future is Now


View Profile
October 15, 2017, 01:23:15 AM
 #927

Hi Ninjagod, sent you multiple PMs with no response. Can you please check them? Thanks in advance for your time.

Battle1doom
Member
**
Offline Offline

Activity: 182
Merit: 10


View Profile
October 15, 2017, 01:25:17 AM
 #928

Hi Ninjagod, sent you multiple PMs with no response. Can you please check them? Thanks in advance for your time.

Log in to Telegram and state your business there, that is where the dev responds to questions the fastest. He has stated this many times over. He can't be everywhere at once you know. It's best to have one official clear channel for communication.
Dido.el
Member
**
Offline Offline

Activity: 138
Merit: 10

You only need to be right once....


View Profile
October 15, 2017, 01:25:42 AM
 #929

How can we join the Round 4 of Airdrop ? and how can we register four bounties ...it's rally hard to get informations from this topic

Il est surprenant ce don't est capable l'Homme
Battle1doom
Member
**
Offline Offline

Activity: 182
Merit: 10


View Profile
October 15, 2017, 01:28:14 AM
 #930

Javinco and Dido - please use Telegram.
Battle1doom
Member
**
Offline Offline

Activity: 182
Merit: 10


View Profile
October 15, 2017, 01:34:57 AM
 #931

Source code link (Github) is now accesible from the OP at the first page of the thread.
cryptolord21
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
October 15, 2017, 01:37:03 AM
 #932

Good day dev how to participate in your 4th airdrop? If i have chance to join,  i'm really interested to join.
ninjagod (OP)
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
October 15, 2017, 01:37:49 AM
 #933

Javinco and Dido - please use Telegram.

Correct. I have over 440 messages on bitcointalk. I cant reply to them because it is too slow. Send me a message on Telegram - Ill reply within an hour. If I am sleeping or away, there are four other devs in the Telegram group who will help you out  Smiley.
ArminH
Full Member
***
Offline Offline

Activity: 219
Merit: 101


View Profile
October 15, 2017, 01:48:33 AM
 #934

If crypto credit cards are illegal, then how do you explain big succesful projects like CENTRA card and Pay 10x?

ArminH and his many multiple accounts runs a FUD operation here, he has been going at it for 28+ hours now. Just ignore whatever he says, he is here on a FUDmission.

It's getting ridiculous. Everybody knows you are part of the scammers.
FUD is just scammers cheap excuse.
You don't even know what FUD means. There is no competing project, so tell me who would spread FUD?
I told you exactly the same before, but you didn't reply. All you're doing is spamming the same comments all time.

@ Whatta: you should be able to answer those questions on your own, but here's a hint: what do you think is the reason they both cooperate with financial institutions? Why are they bound to fiat, although representing cryptocurrencies?

@ ninjagod: So you want to tell us that you distributed the coins over 2 days and 2nd dump only happened because half of the people decided to sell their coins at the same time? Seriously?
If they sold their coins immediately on receipt like you say, rate would have dropped slow but constant, but it crashed.
The only thing I can see in Etherdelta is, that your account (which we know) didn't do the transaction. But only for this wallet. You can easily dump coins with another wallet.
I can't believe half of the people sold almost in the same second.
Btw: I'm not destroying your project. As I said already, I came here willing to invest. I just had some questions, but all I got was spam and insult.
If anybody damaged your project, it's the guys spamming and insulting (like battle1doom).
If serious concerns and good questions destroy your project, maybe it's not that well-conceived?
mhunt
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile WWW
October 15, 2017, 01:50:46 AM
 #935

Get outta here already no one cares what you have to say  arminH
ninjagod (OP)
Full Member
***
Offline Offline

Activity: 154
Merit: 100



View Profile
October 15, 2017, 01:52:12 AM
 #936

If crypto credit cards are illegal, then how do you explain big succesful projects like CENTRA card and Pay 10x?

ArminH and his many multiple accounts runs a FUD operation here, he has been going at it for 28+ hours now. Just ignore whatever he says, he is here on a FUDmission.

It's getting ridiculous. Everybody knows you are part of the scammers.
FUD is just scammers cheap excuse.
You don't even know what FUD means. There is no competing project, so tell me who would spread FUD?
I told you exactly the same before, but you didn't reply. All you're doing is spamming the same comments all time.

@ Whatta: you should be able to answer those questions on your own, but here's a hint: what do you think is the reason they both cooperate with financial institutions? Why are they bound to fiat, although representing cryptocurrencies?

@ ninjagod: So you want to tell us that you distributed the coins over 2 days and 2nd dump only happened because half of the people decided to sell their coins at the same time? Seriously?
If they sold their coins immediately on receipt like you say, rate would have dropped slow but constant, but it crashed.
The only thing I can see in Etherdelta is, that your account (which we know) didn't do the transaction. But only for this wallet. You can easily dump coins with another wallet.
I can't believe half of the people sold almost in the same second.
Btw: I'm not destroying your project. As I said already, I came here willing to invest. I just had some questions, but all I got was spam and insult.
If anybody damaged your project, it's the guys spamming and insulting (like battle1doom).
If serious concerns and good questions destroy your project, maybe it's not that well-conceived?

YES. PLEASE DO YOUR RESEARCH!!! I sent 1500 airdrops about 4 hours ago. They are the ones who dumped because I airdropped to them whilst the price was high! Most of the 'serious' questions are ridiculous claims that have a legitimate answer if people did their research.
WhattaCOINcidence
Full Member
***
Offline Offline

Activity: 142
Merit: 100


View Profile
October 15, 2017, 02:00:33 AM
 #937

If crypto credit cards are illegal, then how do you explain big succesful projects like CENTRA card and Pay 10x?

ArminH and his many multiple accounts runs a FUD operation here, he has been going at it for 28+ hours now. Just ignore whatever he says, he is here on a FUDmission.

It's getting ridiculous. Everybody knows you are part of the scammers.
FUD is just scammers cheap excuse.
You don't even know what FUD means. There is no competing project, so tell me who would spread FUD?
I told you exactly the same before, but you didn't reply. All you're doing is spamming the same comments all time.

@ Whatta: you should be able to answer those questions on your own, but here's a hint: what do you think is the reason they both cooperate with financial institutions? Why are they bound to fiat, although representing cryptocurrencies?

@ ninjagod: So you want to tell us that you distributed the coins over 2 days and 2nd dump only happened because half of the people decided to sell their coins at the same time? Seriously?
If they sold their coins immediately on receipt like you say, rate would have dropped slow but constant, but it crashed.
The only thing I can see in Etherdelta is, that your account (which we know) didn't do the transaction. But only for this wallet. You can easily dump coins with another wallet.
I can't believe half of the people sold almost in the same second.
Btw: I'm not destroying your project. As I said already, I came here willing to invest. I just had some questions, but all I got was spam and insult.
If anybody damaged your project, it's the guys spamming and insulting (like battle1doom).
If serious concerns and good questions destroy your project, maybe it's not that well-conceived?

YES. PLEASE DO YOUR RESEARCH!!! I sent 1500 airdrops about 4 hours ago. They are the ones who dumped because I airdropped to them whilst the price was high! Most of the 'serious' questions are ridiculous claims that have a legitimate answer if people did their research.

You did a good job of calmly and politely defending yourself against this jackass. You handle even the rudest people in the telegram with repect and professionalism.

If i was you, i would expedite and get that white paper out ASAP after bounties to counter all this uncalled for FUD
Ydnar
Member
**
Offline Offline

Activity: 63
Merit: 10

Crypto Lover


View Profile
October 15, 2017, 02:12:03 AM
 #938

Quote
Insert Quote
Quote from: ninjagod on Today at 01:52:12 AM
Quote from: ArminH on Today at 01:48:33 AM
Quote from: Battle1doom on Today at 12:53:35 AM
Quote from: WhattaCOINcidence on Today at 12:50:00 AM
If crypto credit cards are illegal, then how do you explain big succesful projects like CENTRA card and Pay 10x?

ArminH and his many multiple accounts runs a FUD operation here, he has been going at it for 28+ hours now. Just ignore whatever he says, he is here on a FUDmission.

It's getting ridiculous. Everybody knows you are part of the scammers.
FUD is just scammers cheap excuse.
You don't even know what FUD means. There is no competing project, so tell me who would spread FUD?
I told you exactly the same before, but you didn't reply. All you're doing is spamming the same comments all time.

@ Whatta: you should be able to answer those questions on your own, but here's a hint: what do you think is the reason they both cooperate with financial institutions? Why are they bound to fiat, although representing cryptocurrencies?

@ ninjagod: So you want to tell us that you distributed the coins over 2 days and 2nd dump only happened because half of the people decided to sell their coins at the same time? Seriously?
If they sold their coins immediately on receipt like you say, rate would have dropped slow but constant, but it crashed.
The only thing I can see in Etherdelta is, that your account (which we know) didn't do the transaction. But only for this wallet. You can easily dump coins with another wallet.
I can't believe half of the people sold almost in the same second.
Btw: I'm not destroying your project. As I said already, I came here willing to invest. I just had some questions, but all I got was spam and insult.
If anybody damaged your project, it's the guys spamming and insulting (like battle1doom).
If serious concerns and good questions destroy your project, maybe it's not that well-conceived?

YES. PLEASE DO YOUR RESEARCH!!! I sent 1500 airdrops about 4 hours ago. They are the ones who dumped because I airdropped to them whilst the price was high! Most of the 'serious' questions are ridiculous claims that have a legitimate answer if people did their research.

You did a good job of calmly and politely defending yourself against this jackass. You handle even the rudest people in the telegram with repect and professionalism.

If i was you, i would expedite and get that white paper out ASAP after bounties to counter all this uncalled for FUD
Posted on: Today at 01:52:12 AM Posted by: ninjagod

I Agree - publish the whitepaper and this FUDDING shit will gone

my BTC address: 1DTe7gFr35JMXw8iiTekrE3sq5qmdJmecW
mv_USA_devnull
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 15, 2017, 02:15:44 AM
 #939


10 mins are over, where is the sourcecode?

Looking at your bitcointalk profile I saw that you really are the creator of all those tokens. I didn't even check it before because I thought you would of course have used different accounts.

Even if you are not scamming or hyping, do you really think you can manage that many projects at once?

https://github.com/EthereumCashOriginal/SmartContract/tree/master

And no, of course, I cant manage all those projects at once! But, Equis was a failed project and nobody invested. eBitcoinCash is currently postponed. So my time is really only given to this one project.

Could you please just upload the sourcecode to etherscan.io? This is where people normally look for the sourcecode of smart contracts.

https://etherscan.io/verifyContract?a=0x5d21ef5f25a985380b65c8e943a0082feda0db84

You have to use the same compiler settings you used when you deployed the contract.
mv_USA_devnull
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 15, 2017, 02:42:07 AM
 #940

By the way:


...The survey provider that was used, tracked the IP and Mac address (computer ID) of each applicant. ...


MAC is the address (let's say unique manufacturer, model and serial number) of the network adapter.

While it's possible to record the IP of a website visitor it is not possible to record his MAC address without further effort and even then it would be noticeable. IP is on layer 3 and MAC on layer 2. The only way to record the MAC address of a visitor is with some Internet Explorer activeX code, a java applet or something similar. It is not possible with javascript.

So how did you track the MAC addresses?
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 »
  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!