Author

Topic: [ANN] TIMEREUM (TME) VERSION 2.0: "ELIXIR" (ELIX) RELEASED (NEW THREAD) - page 140. (Read 126691 times)

sr. member
Activity: 1175
Merit: 275
Quote
I don't uderstand why people are FUDding so much.

I guess you are not referring to me.

Quote
Everyone is accepted into this airdrop

I know

I could not get to the second page and i will like to know if the form is delivered or not; there should be a way to do that, may be google doc to check if you addresses were registered.
member
Activity: 77
Merit: 10
A novel idea, is the AIRDRO over?
legendary
Activity: 1750
Merit: 1004
I have added my 2 ethereum addresses and submit but my internet is very slow though i saw thank you on the upper part of my browser but it does not display another page.

How do i know that i am accepted or not, please provide an answer because i will not like to miss this parent-child offer.

Everyone is accepted into this airdrop because there is no deadline as dev is trying to collect email addresses of crypto related people to sell out that data. Better avoid to input your personal email for this airdrop.
hero member
Activity: 742
Merit: 500
I don't uderstand why people are FUDding so much.

You can make new mail and 2 empty ETH addresses in 1 min and participate if you're worried. It's not an encrypted .exe you need to download and install on your computer (like many other airdrops :d )

 This is obviously inspired by minerium, but not a simple clone, but includes interesting idea for distribution. And distribution should be limited because lots of people abused Minerium with tons of addresses.
sr. member
Activity: 1175
Merit: 275
I have added my 2 ethereum addresses and submit but my internet is very slow though i saw thank you on the upper part of my browser but it does not display another page.

How do i know that i am accepted or not, please provide an answer because i will not like to miss this parent-child offer.
legendary
Activity: 2114
Merit: 1693
C.D.P.E.M
One more airdrop, super news.
Looking forward for it, i like the incentive to wait and get more.

it would be intersting to make statistic and see if people are cashing out early or late.

in my case, i will wait a fair amount of time, probably note 10 years though hahah 
sr. member
Activity: 560
Merit: 251
Rumors are circulating among the crypto, the project is like a Minerium project. But will it be successful like Minerium? We will see it later, maybe 1 or 2 months ahead, after this project reached the market exchange
sr. member
Activity: 546
Merit: 250
Does this coin just aim to create more ETH addresses? Nothing more?
sr. member
Activity: 798
Merit: 262
I like the parent child concept. Joined the airdrop. can't wait to test it.
hero member
Activity: 658
Merit: 500
Please for the sake of spammers, don't make email address public, I used my primary address to filled the form. Antshares team made this mistake during their bounty program and some people harvest those emails for their use
legendary
Activity: 861
Merit: 1000
And for anyone interested, here is the code with only a few address pairs for testing. Start time will be updated to the start time when the contract is released.

pragma solidity ^0.4.10;

contract timereum {

string public name;
string public symbol;
uint8 public decimals;
uint256 public maxRewardUnitsAvailable;
uint256 public startTime;
uint256 public initialSupplyPerChildAddress;

mapping (address => uint256) public balanceOf;
mapping (address => bool) public parentAddress;
mapping (address => bool) public childAddress;
mapping (address => address) public returnChildAddressForParent;
mapping (address => uint256) public numRewardsUsed;

event Transfer(address indexed from, address indexed to, uint256 value);

function timereum() {

name = "timereum";
symbol = "TME";
decimals = 18;
initialSupplyPerChildAddress = 1000000000000000000;
maxRewardUnitsAvailable=10;
startTime=1498929279;

balanceOf[0x1cBE51911e1BA60b2959297c8100a9bE2d4CdCF4]=0;
parentAddress[0x1cBE51911e1BA60b2959297c8100a9bE2d4CdCF4]=true;
returnChildAddressForParent[0x1cBE51911e1BA60b2959297c8100a9bE2d4CdCF4]=0x18E77BEE1511f4c89b47722bB1D45F82dE229b45;
balanceOf[0x18E77BEE1511f4c89b47722bB1D45F82dE229b45]=initialSupplyPerChildAddress;
numRewardsUsed[0x18E77BEE1511f4c89b47722bB1D45F82dE229b45]=0;
childAddress[0x18E77BEE1511f4c89b47722bB1D45F82dE229b45]=true;

balanceOf[0x2F6Ef3FEa45D465D13451B8A8230bB147923D967]=0;
parentAddress[0x2F6Ef3FEa45D465D13451B8A8230bB147923D967]=true;
returnChildAddressForParent[0x2F6Ef3FEa45D465D13451B8A8230bB147923D967]=0xE84426C7E7cF88889C64aaa805F9CdFaa1162cad;
balanceOf[0xE84426C7E7cF88889C64aaa805F9CdFaa1162cad]=initialSupplyPerChildAddress;
numRewardsUsed[0xE84426C7E7cF88889C64aaa805F9CdFaa1162cad]=0;
childAddress[0xE84426C7E7cF88889C64aaa805F9CdFaa1162cad]=true;

balanceOf[0x963B9c6Ac15Df256cBAf353C7fde0725363890dD]=0;
parentAddress[0x963B9c6Ac15Df256cBAf353C7fde0725363890dD]=true;
returnChildAddressForParent[0x963B9c6Ac15Df256cBAf353C7fde0725363890dD]=0xF6B7206899747e136896078d8e4E4Cb02ad7020b;
balanceOf[0xF6B7206899747e136896078d8e4E4Cb02ad7020b]=initialSupplyPerChildAddress;
numRewardsUsed[0xF6B7206899747e136896078d8e4E4Cb02ad7020b]=0;
childAddress[0xF6B7206899747e136896078d8e4E4Cb02ad7020b]=true;

balanceOf[0xC704cC2d3643637C2876B3ebF2319dd9Bc0d78EB]=0;
parentAddress[0xC704cC2d3643637C2876B3ebF2319dd9Bc0d78EB]=true;
returnChildAddressForParent[0xC704cC2d3643637C2876B3ebF2319dd9Bc0d78EB]=0x880719a72393Db8d85B25De6032bFe5c15652Cd5;
balanceOf[0x880719a72393Db8d85B25De6032bFe5c15652Cd5]=initialSupplyPerChildAddress;
numRewardsUsed[0x880719a72393Db8d85B25De6032bFe5c15652Cd5]=0;
childAddress[0x880719a72393Db8d85B25De6032bFe5c15652Cd5]=true;

}

function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value) revert();
if (balanceOf[_to] + _value < balanceOf[_to]) revert();
if (parentAddress[_to])     {
    if (msg.sender==returnChildAddressForParent[_to])  {
        if (numRewardsUsed[msg.sender]            uint256 currDate=block.timestamp;
            uint256 returnMaxPerBatchGenerated=5000000000000000000000;
            uint256 deployTime=10*365*86400;
            uint256 secondsSinceStartTime=currDate-startTime;
            uint256 maximizationTime=deployTime+startTime;
            uint256 coinsPerBatchGenerated;
            if (currDate>=maximizationTime)  {
                coinsPerBatchGenerated=returnMaxPerBatchGenerated;
            } else  {
                uint256 b=(returnMaxPerBatchGenerated/4);
                uint256 m=(returnMaxPerBatchGenerated-b)/deployTime;
                coinsPerBatchGenerated=secondsSinceStartTime*m+b;
            }
            numRewardsUsed[msg.sender]+=1;
            balanceOf[msg.sender]+=coinsPerBatchGenerated;
        }
    }
}
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
}
}




http://imgur.com/Ei1h9k3

LOL you forgot to take MINEREUM out LMAO

I got it screencapped buddy,  u messed up
just quote here let people see , waitting the explain  Cheesy
full member
Activity: 224
Merit: 100
^Just tellin it like it is
hero member
Activity: 957
Merit: 766
And for anyone interested, here is the code with only a few address pairs for testing. Start time will be updated to the start time when the contract is released.

[ --snip-- ]


http://imgur.com/Ei1h9k3

LOL you forgot to take MINEREUM out LMAO

I got it screencapped buddy,  u messed up

Your screenshot is of a person with negative trust. This TimereumDev has no negative trust from here.

https://gyazo.com/670b6b97b3224808c99c84bbc6d563ec

^ I see it. sometimes updates differently for people at different times.



I don't: .

Anyone else?

It's depends of trust settings.

You can check the ratings click to "trust" and "Show ratings."

There are:

Code:
keyboardwalking 2017-07-11 0.00000000 Reference

fake airdrop linked to a page asking for addresses and emails

no source code for supposed coin

tracking java query script on his landing page

GET THIS GUY OUT OF HERE PLEASE
full member
Activity: 224
Merit: 102
And for anyone interested, here is the code with only a few address pairs for testing. Start time will be updated to the start time when the contract is released.

[ --snip-- ]


http://imgur.com/Ei1h9k3

LOL you forgot to take MINEREUM out LMAO

I got it screencapped buddy,  u messed up

Your screenshot is of a person with negative trust. This TimereumDev has no negative trust from here.

https://gyazo.com/670b6b97b3224808c99c84bbc6d563ec

^ I see it. sometimes updates differently for people at different times.



I don't: .

Anyone else?
full member
Activity: 154
Merit: 100
@coinomayo

Obviously this is inspired by Minereum, but the child-address pair idea is mine.

I've been working on and testing this for two weeks, so please bug off and stop with the harassing.


Keep up the good work i would like to see where this goes. (I am a fan of minereum and the parent child aspect seems interesting.)
full member
Activity: 224
Merit: 100
And for anyone interested, here is the code with only a few address pairs for testing. Start time will be updated to the start time when the contract is released.

[ --snip-- ]


http://imgur.com/Ei1h9k3

LOL you forgot to take MINEREUM out LMAO

I got it screencapped buddy,  u messed up

Your screenshot is of a person with negative trust. This TimereumDev has no negative trust from here.

https://gyazo.com/670b6b97b3224808c99c84bbc6d563ec

^ I see it. sometimes updates differently for people at different times.

full member
Activity: 224
Merit: 100
@coinomayo

Obviously this is inspired by Minereum, but the child-address pair idea is mine.

I've been working on and testing this for two weeks, so please bug off and stop with the harassing.


youve been testing it for weeks yet you forget to take minereum name out of the code

hmmmmmmmmm

you want money.

this coin will not work, you wont get it added anywhere,  and every poor soul who wasnt protected going to your site is most likely at risk

-1

full member
Activity: 224
Merit: 102
And for anyone interested, here is the code with only a few address pairs for testing. Start time will be updated to the start time when the contract is released.

[ --snip-- ]


http://imgur.com/Ei1h9k3

LOL you forgot to take MINEREUM out LMAO

I got it screencapped buddy,  u messed up

Your screenshot is of a person with negative trust. This TimereumDev has no negative trust from here.
member
Activity: 84
Merit: 10
@coinomayo

Obviously this is inspired by Minereum, but the child-address pair idea is my own.

I've been testing this and working on the website for a while, so please stop with the harassing.

And you also have negative trust.
full member
Activity: 224
Merit: 100
https://github.com/minereum/Minereum/blob/master/minereum.sol

^ he copied like every single section from the MNE github source, didnt even change enough for it to work as intended, or even close

i bet he launches an ER 20 token with his dumb timereum name using the MINEREUM ER 20 service and will tell everyone to buy it and send their coins to X address to get their coins

no way this will work
Jump to: