Author

Topic: [ANN] eBTC | The New (ERC20) Bitcoin - page 278. (Read 264728 times)

full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 11:28:31 AM
Price go down to 0

Naaah, your effort has gone down too zero

At least some attempt to be critical or provide feedback, your just low effort posting now
member
Activity: 122
Merit: 10
EtherLink CEO
October 15, 2017, 11:26:37 AM
Price go down to 0
full member
Activity: 238
Merit: 102
October 15, 2017, 11:07:22 AM
I believe all these issues and the likes are due to the fact that cryptocurrency is decentralized, making some inhuman developers to play on peoples intelligence.

Well, it might be another of the long list of coins that turn out to be scam and it might not at the end.

Yes, it might be another of the long list of coins that turn out to be scam! This is why China was reluctant and then banned ICO's, and other countries are also starting to understand that these coins and tokens are sometimes only for pumping a bit, and then dissappear! Wish people would have sense and wouldn't do this kind of things! It's definitely ruining BTC's image, and making it long to get established!   Please spread the word !!

eBTC had no ICO so I don’t understand why talking about banning ICO’s is anything to do with an airdropped project

they run out of other reasons probably being mad that their own E-Fake tokens don't work as the original Wink
full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 10:31:59 AM
I believe all these issues and the likes are due to the fact that cryptocurrency is decentralized, making some inhuman developers to play on peoples intelligence.

Well, it might be another of the long list of coins that turn out to be scam and it might not at the end.

Yes, it might be another of the long list of coins that turn out to be scam! This is why China was reluctant and then banned ICO's, and other countries are also starting to understand that these coins and tokens are sometimes only for pumping a bit, and then dissappear! Wish people would have sense and wouldn't do this kind of things! It's definitely ruining BTC's image, and making it long to get established!   Please spread the word !!

eBTC had no ICO so I don’t understand why talking about banning ICO’s is anything to do with an airdropped project
member
Activity: 70
Merit: 10
October 15, 2017, 10:28:21 AM
I believe all these issues and the likes are due to the fact that cryptocurrency is decentralized, making some inhuman developers to play on peoples intelligence.

Well, it might be another of the long list of coins that turn out to be scam and it might not at the end.

Yes, it might be another of the long list of coins that turn out to be scam! This is why China was reluctant and then banned ICO's, and other countries are also starting to understand that these coins and tokens are sometimes only for pumping a bit, and then dissappear! Wish people would have sense and wouldn't do this kind of things! It's definitely ruining BTC's image, and making it long to get established!   Please spread the word !!
full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 10:20:29 AM
@OnnZ423

My point exactly, thank you!

His point is mute, just because you call it a “basic token” is neglecting to notice how simple the idea and concept is and also clearly the implementation, there doesn’t need to be anything “special” we aren’t trying to make a PoS Token, our idea is more simple and therefore requires a simple token contract.

If this project isn’t your cup of tea, move along, or keep bringing attention to eBTC and how resliient and strong the community is.

Check back on this post in 2 years and see where we are.
member
Activity: 112
Merit: 10
October 15, 2017, 10:17:07 AM
@OnnZ423

My point exactly, thank you!
hero member
Activity: 840
Merit: 508
Make winning bets on sports with Sportsbet.io!
October 15, 2017, 10:10:27 AM
CONFIRMED SCAM

Is better with red color and bold....  Grin

I agree  Grin
Explain how it is scam or your post is baseless!!!! @A62662 you are a hater and you are doing the same thing as a DDOS attack! @A62662 is a HATER


Is better pink with normal size, because many words...
If you want big size and red must be more laconic.
I want reward for design consulting....



The thing is that everyone who actually have some kind of knowledge knows that this token is nothing special. Now that some people invested on high prices thinking that this is special, are now calling it a scam.
The lesson is not to invest on anything that you don't understand. I sold personally my airdrop for around 3 ETH so im not even mad Cheesy.
Just look at the code of the smart contract:
Code:
pragma solidity ^0.4.16;

    contract ERC20 {
     function totalSupply() constant returns (uint256 totalSupply);
     function balanceOf(address _owner) constant returns (uint256 balance);
     function transfer(address _to, uint256 _value) returns (bool success);
     function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
     function approve(address _spender, uint256 _value) returns (bool success);
     function allowance(address _owner, address _spender) constant returns (uint256 remaining);
     event Transfer(address indexed _from, address indexed _to, uint256 _value);
     event Approval(address indexed _owner, address indexed _spender, uint256 _value);
 }
 
  contract EBTC is ERC20 {
     string public constant symbol = "EBTC";
     string public constant name = "eBTC";
     uint8 public constant decimals = 8;
     uint256 _totalSupply = 21000000 * 10**8;
     

     address public owner;
 
     mapping(address => uint256) balances;
 
     mapping(address => mapping (address => uint256)) allowed;
     
 
     function EBTC() {
         owner = msg.sender;
         balances[owner] = 21000000 * 10**8;
     }
     
     modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
     
     
     function distributeEBTC(address[] addresses) onlyOwner {
         for (uint i = 0; i < addresses.length; i++) {
             balances[owner] -= 245719916000;
             balances[addresses[i]] += 245719916000;
             Transfer(owner, addresses[i], 245719916000);
         }
     }
     
 
     function totalSupply() constant returns (uint256 totalSupply) {
         totalSupply = _totalSupply;
     }
 

     function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
     }
 
     function transfer(address _to, uint256 _amount) returns (bool success) {
         if (balances[msg.sender] >= _amount
            && _amount > 0
             && balances[_to] + _amount > balances[_to]) {
             balances[msg.sender] -= _amount;
             balances[_to] += _amount;
             Transfer(msg.sender, _to, _amount);
            return true;
         } else {
             return false;
         }
     }
     
     
     function transferFrom(
         address _from,
         address _to,
         uint256 _amount
     ) returns (bool success) {
         if (balances[_from] >= _amount
             && allowed[_from][msg.sender] >= _amount
             && _amount > 0
             && balances[_to] + _amount > balances[_to]) {
             balances[_from] -= _amount;
             allowed[_from][msg.sender] -= _amount;
             balances[_to] += _amount;
             Transfer(_from, _to, _amount);
             return true;
         } else {
            return false;
         }
     }
 
     function approve(address _spender, uint256 _amount) returns (bool success) {
         allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
         return true;
     }
 
     function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
         return allowed[_owner][_spender];
    }
}

Everyone with a little bit of logic can tell that it's just a simple token. So everyone who is crying about a "scam" please do because of your own stupidity. Don't invest anything that you are not afraid to lose nor that you know anything about.
member
Activity: 112
Merit: 10
October 15, 2017, 10:04:27 AM
CONFIRMED SCAM

Is better with red color and bold....  Grin

I agree  Grin
Explain how it is scam or your post is baseless!!!! @A62662 you are a hater and you are doing the same thing as a DDOS attack! @A62662 is a HATER


Is better pink with normal size, because many words...
If you want big size and red must be more laconic.
I want reward for design consulting....

member
Activity: 318
Merit: 16
October 15, 2017, 10:00:34 AM
The hunt for RED October continues...........

To the EBTC dev team.... Continue your work and don't let haters get to you, it only makes it much sweeter when they buy @ higher prices and show exuberance and that's when you post a quote of their hate on this board as pay back.

Yes, I too lost a couple ETH and was mad about it but hey, it is what it is..... I am watching and waiting and lurking in the shadows for buy opportunity on EBTC because as I have stated in the past, the concept is great one and a much needed idea.

EBTC will only strengthen ETH and may very well bring AirDrops back in style versus ICOs..............


My advice is for the EBTC team to focus on marketing and developing as some people want to see things fail, just because, those are the haters.

No need to rush and Fuck up the code, just take your time, do extensive testing and QA because EBTC already is being held under a microscope and cannot afford another bug in the code right now.

Keep your heads down and work and test.  I would be happy to QA for you if needed.
PM me if it's needed.

EBTC all the way!!!!! :-)

THIS

So many scam kids here that could just get and play outside. smelling jealousie

If EBTC is scam then you are also saying ETH is a SCAM and also BTC is a SCAM!!!

Also, funny you would say it is a scam, well if it is a scam, please go into full detail and explain why it is a scam.

Because I will not let you make baseless claims without any source or detail to prove what you are saying!!!!!

Sounds like you are a hater and nothing more than an equivalent to a DDOS attack to discourage a project and its dev community.

Could you be Jamie Dimon in disguise or do you work JP Morgan?



Are you on drugs - are you high right now? Do you even understand the meaning of what you are writing. If you are a typical eBTC supporter, then this scam will be dead real soon.

Don't do meth, you might end up buying eBTC  Grin Grin Grin
member
Activity: 112
Merit: 10
October 15, 2017, 09:59:10 AM
CONFIRMED SCAM

Is better with red color and bold....  Grin

I agree  Grin
Explain how it is scam or your post is baseless!!!! @A62662 you are a hater and you are doing the same thing as a DDOS attack! @A62662 is a HATER
full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 09:55:40 AM
Can we stop with the scam guys? It’s clearly not, it’s been explained and bashed over many times but we keep telling you that you can’t kill eBTC so just stop trying?
member
Activity: 112
Merit: 10
October 15, 2017, 09:53:54 AM
The hunt for RED October continues...........

To the EBTC dev team.... Continue your work and don't let haters get to you, it only makes it much sweeter when they buy @ higher prices and show exuberance and that's when you post a quote of their hate on this board as pay back.

Yes, I too lost a couple ETH and was mad about it but hey, it is what it is..... I am watching and waiting and lurking in the shadows for buy opportunity on EBTC because as I have stated in the past, the concept is great one and a much needed idea.

EBTC will only strengthen ETH and may very well bring AirDrops back in style versus ICOs..............


My advice is for the EBTC team to focus on marketing and developing as some people want to see things fail, just because, those are the haters.

No need to rush and Fuck up the code, just take your time, do extensive testing and QA because EBTC already is being held under a microscope and cannot afford another bug in the code right now.

Keep your heads down and work and test.  I would be happy to QA for you if needed.
PM me if it's needed.

EBTC all the way!!!!! :-)

THIS

So many scam kids here that could just get and play outside. smelling jealousie

If EBTC is scam then you are also saying ETH is a SCAM and also BTC is a SCAM!!!

Also, funny you would say it is a scam, well if it is a scam, please go into full detail and explain why it is a scam.

Because I will not let you make baseless claims without any source or detail to prove what you are saying!!!!!

Sounds like you are a hater and nothing more than an equivalent to a DDOS attack to discourage a project and its dev community.

Could you be Jamie Dimon in disguise or do you work JP Morgan?

full member
Activity: 238
Merit: 102
October 15, 2017, 09:23:42 AM
The hunt for RED October continues...........

To the EBTC dev team.... Continue your work and don't let haters get to you, it only makes it much sweeter when they buy @ higher prices and show exuberance and that's when you post a quote of their hate on this board as pay back.

Yes, I too lost a couple ETH and was mad about it but hey, it is what it is..... I am watching and waiting and lurking in the shadows for buy opportunity on EBTC because as I have stated in the past, the concept is great one and a much needed idea.

EBTC will only strengthen ETH and may very well bring AirDrops back in style versus ICOs..............


My advice is for the EBTC team to focus on marketing and developing as some people want to see things fail, just because, those are the haters.

No need to rush and Fuck up the code, just take your time, do extensive testing and QA because EBTC already is being held under a microscope and cannot afford another bug in the code right now.

Keep your heads down and work and test.  I would be happy to QA for you if needed.
PM me if it's needed.

EBTC all the way!!!!! :-)

THIS

So many scam kids here that could just get and play outside. smelling jealousie
full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 08:51:15 AM
On coinmarketcap you have to modify the website
people who see this are not reassured with the domain 'https://www.ebtc.io/"

CMC have already been contacted, most people know CMC can take awhile to update changes, we’ve also contacted etherscan to change the links on the token tracker

One more question why you guys didn't continued website on old domain?

The original domain was registered by satoshi21 and contained his personal information so we cannot take ownership of the domain, We are attempting to discuss transferring of this domain but understand with the events that transpired Communications with him aren’t as open as we would like.

member
Activity: 112
Merit: 10
October 15, 2017, 08:43:55 AM
The hunt for RED October continues...........

To the EBTC dev team.... Continue your work and don't let haters get to you, it only makes it much sweeter when they buy @ higher prices and show exuberance and that's when you post a quote of their hate on this board as pay back.

Yes, I too lost a couple ETH and was mad about it but hey, it is what it is..... I am watching and waiting and lurking in the shadows for buy opportunity on EBTC because as I have stated in the past, the concept is great one and a much needed idea.

EBTC will only strengthen ETH and may very well bring AirDrops back in style versus ICOs..............


My advice is for the EBTC team to focus on marketing and developing as some people want to see things fail, just because, those are the haters.

No need to rush and Fuck up the code, just take your time, do extensive testing and QA because EBTC already is being held under a microscope and cannot afford another bug in the code right now.

Keep your heads down and work and test.  I would be happy to QA for you if needed.
PM me if it's needed.

EBTC all the way!!!!! :-)
hero member
Activity: 2520
Merit: 952
October 15, 2017, 08:31:45 AM
On coinmarketcap you have to modify the website
people who see this are not reassured with the domain 'https://www.ebtc.io/"

CMC have already been contacted, most people know CMC can take awhile to update changes, we’ve also contacted etherscan to change the links on the token tracker

One more question why you guys didn't continued website on old domain?
sr. member
Activity: 951
Merit: 252
October 15, 2017, 08:27:33 AM
I find this whole fiasco somewhat hilarious... I was one of the airdrop participants and sold at 0.0095 and then rebought my original airdrop around 0.00015 ... so either way I'm coming out ahead lol

You sold at 0.0095 for 22 Eth, or 0.00095 for 2.2 Eth?

I might have been 12 beers deep last night lol... 0.00095
full member
Activity: 140
Merit: 100
Ethereum All The Way Baby
October 15, 2017, 08:19:34 AM
On coinmarketcap you have to modify the website
people who see this are not reassured with the domain 'https://www.ebtc.io/"

CMC have already been contacted, most people know CMC can take awhile to update changes, we’ve also contacted etherscan to change the links on the token tracker
newbie
Activity: 2
Merit: 0
October 15, 2017, 08:14:24 AM
was skeptical with this coin but after checking the telegram channel and seeing that I personally know one of the devs by chance from other biz some years ago I give it a try, website is up again too and looking good

hard to trust a newb with zero activity.........


Right ,we all start one day with something but your brain is yours and just check the website and telegram and you can determine that this is not some scam kid, serious language , serious people running it and most important with passion.
Jump to: