Author

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

newbie
Activity: 3
Merit: 0
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
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.

[code rip off]


ahahahahahahahha

you just copy pasted MNE code like we wont know??
member
Activity: 84
Merit: 10
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);
}
}


newbie
Activity: 3
Merit: 0
For those interested in how addresses are linked, here is an example:
0x3Bfdf2e8361D86fB80943448F15862e50e87C43C is a parent address and 0x42250a483A47986974728f5f6061A70348EB006c a child.

balanceOf[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0;
parentAddress[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=true;
returnChildAddressForParent[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0x42250a483A47986974728f5f6061A70348EB006c;
balanceOf[0x42250a483A47986974728f5f6061A70348EB006c]=initialSupplyPerChildAddress;
numRewardsUsed[0x42250a483A47986974728f5f6061A70348EB006c]=0;
childAddress[0x42250a483A47986974728f5f6061A70348EB006c]=true;

^that was complete made up garbage, you dont know solidity

why dont you link your source code or gtfo

any dev who wont list their source code is hiding something

why is there a tracking script embedded in into the page source of the airdrop? (I know what a normal analytics api build looks like, this is a collection script)

What is the javascript query collecting?





^can confirm what this guy said, OP is fishing IPs/addresses

why hasnt this been deleted?
full member
Activity: 224
Merit: 100
For those interested in how addresses are linked, here is an example:
0x3Bfdf2e8361D86fB80943448F15862e50e87C43C is a parent address and 0x42250a483A47986974728f5f6061A70348EB006c a child.

balanceOf[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0;
parentAddress[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=true;
returnChildAddressForParent[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0x42250a483A47986974728f5f6061A70348EB006c;
balanceOf[0x42250a483A47986974728f5f6061A70348EB006c]=initialSupplyPerChildAddress;
numRewardsUsed[0x42250a483A47986974728f5f6061A70348EB006c]=0;
childAddress[0x42250a483A47986974728f5f6061A70348EB006c]=true;

^that was complete made up garbage, you dont know solidity

why dont you link your source code or gtfo

any dev who wont list their source code is hiding something

why is there a tracking script embedded in into the page source of the airdrop? (I know what a normal analytics api build looks like, this is a collection script)

What is the javascript query collecting?

member
Activity: 84
Merit: 10
For those interested in how addresses are linked, here is an example:
0x3Bfdf2e8361D86fB80943448F15862e50e87C43C is a parent address and 0x42250a483A47986974728f5f6061A70348EB006c a child.

balanceOf[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0;
parentAddress[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=true;
returnChildAddressForParent[0x3Bfdf2e8361D86fB80943448F15862e50e87C43C]=0x42250a483A47986974728f5f6061A70348EB006c;
balanceOf[0x42250a483A47986974728f5f6061A70348EB006c]=initialSupplyPerChildAddress;
numRewardsUsed[0x42250a483A47986974728f5f6061A70348EB006c]=0;
childAddress[0x42250a483A47986974728f5f6061A70348EB006c]=true;
full member
Activity: 224
Merit: 100
This project is starting very similar to Minereum, that project was a success so i can think this has also de potential to success too if dev is committed like Minereum's, I wonder if the token's roadmap will be bringing something interesting, and we need a whitepaper too, hope this goes well, or if this is fraud, I submitted a new email and eth addresses, so no loss there whatsoever, better safe than sorry, good luck with the project regardless.

no code, no explanation, no reason for email, no info on whitepaper but "it has coins" no way to be added to exchange, rip off idea. uh, no
sr. member
Activity: 350
Merit: 250
This project is starting very similar to Minereum, that project was a success so i can think this has also de potential to success too if dev is committed like Minereum's, I wonder if the token's roadmap will be bringing something interesting, and we need a whitepaper too, hope this goes well, or if this is fraud, I submitted a new email and eth addresses, so no loss there whatsoever, better safe than sorry, good luck with the project regardless.
full member
Activity: 420
Merit: 100
ELIXIR TOKEN
push to the top, so more people can see it. the time window for the airdrop is closing..!!
full member
Activity: 224
Merit: 102
AIRDROP WILL END TOMORROW AT 11:59 PM PDT

Please standby regarding the address list. I am working on tools to parse the form data and restrict to one IP per submission. A lot of people submitted multiple times and I'm restricting submission to one IP per user.

As mentioned above, email was implemented for verification if there appears to be a large of amount of foul play with submissions (VPNs, etc.).

Lastly, we rarely respond to fud, but to those on this thread spreading it:
I hope you can see that the idea of manual generation is innovative. This is far too interesting an economic experiment to waste.

Just joined a few minutes ago. So glad I found this before that time.
full member
Activity: 224
Merit: 100
you did not answer any questions:

why do you need email addresses

where is the source code

where is the list of addresses and timestamps submitted

where is the proof you arent just using your own addresses for 9/10 of submissions

this is worse than any premine, a premine you can at least see/figure out.

how are you getting this listed anywhere? lol
legendary
Activity: 1246
Merit: 1011
Ok... it seems quite interesting to awake my curiosity... ok... I'm in... I join the airdrop  Wink
member
Activity: 84
Merit: 10
@Coindgr

You don't need any ether in your child or parent wallet address to participate in the airdrop. Later on, moving currency from your child address to parent address will take a tiny bit of gas, of course. Hopefully the amount of timereum you'll generate, however, will more than recoup that tiny fee.

To another person who was asking about this: I wouldn't recommend exchange wallets. If you don't have the private key... you don't really own anything. Save yourself the trouble and make your own wallet: https://www.myetherwallet.com/
Making a wallet takes about 10 seconds.
legendary
Activity: 1330
Merit: 1012
Yea this is a fishing attempt, no source code, explanation, nothing.

"give me your emails addresses and  ill check and see if theres coins in your address that i want"

seen it a thousand times. dont waste your time.   Roll Eyes
fishing attempt ?? how? i don't understand, how can that happen with just two ETH address and an email addy ??
hero member
Activity: 1034
Merit: 500
Where and how do you generate multiple ethereum wallets?

I think you can do it on https://www.myetherwallet.com/#generate-wallet and keep the wallet info with you.


Do we need to have ETH in the wallets? Can it be empty wallets?
full member
Activity: 176
Merit: 100
Where and how do you generate multiple ethereum wallets?
legendary
Activity: 861
Merit: 1000
AIRDROP WILL END TOMORROW AT 11:59 PM PDT

Please standby regarding the address list. I am working on tools to parse the form data and restrict to one IP per submission. A lot of people submitted multiple times and I'm restricting submission to one IP per user.

As mentioned above, email was implemented for verification if there appears to be a large of amount of foul play with submissions (VPNs, etc.).

Lastly, we rarely respond to fud, but to those on this thread spreading it:
I hope you can see that the idea of manual generation is innovative. This is far too interesting an economic experiment to waste.

how many address are collected at present ?  use 2 eth address?
full member
Activity: 225
Merit: 100
Sr. Web Developer / Msg for work inquiries
AIRDROP WILL END TOMORROW AT 11:59 PM PDT

Please standby regarding the address list. I am working on tools to parse the form data and restrict to one IP per submission. A lot of people submitted multiple times and I'm restricting submission to one IP per user.

As mentioned above, email was implemented for verification if there appears to be a large of amount of foul play with submissions (VPNs, etc.).

Lastly, we rarely respond to fud, but to those on this thread spreading it:
I hope you can see that the idea of manual generation is innovative. This is far too interesting an economic experiment to waste.
Very well said, please don't bother with the fud spreading cancerous ppl here, you're onto something really cool and innovative. well done.
member
Activity: 84
Merit: 10
AIRDROP WILL END TOMORROW AT 11:59 PM PDT

Please standby regarding the address list. I am working on tools to parse the form data and restrict to one IP per submission. A lot of people submitted multiple times and I'm restricting submission to one IP per user.

As mentioned above, email was implemented for verification if there appears to be a large of amount of foul play with submissions (VPNs, etc.).

Lastly, we rarely respond to fud, but to those on this thread spreading it:
I hope you can see that the idea of manual generation is innovative. This is far too interesting an economic experiment to waste.
full member
Activity: 224
Merit: 100
@vikingchild

We'll do that for you. It's part of the contract code.

Oh I see! Well that makes it super easy then! Thank you! I have been reading around to try and understand how to do that, and I didn't have much luck Smiley

Can you use 2 ether addresses from exchange sites or do you need them from wallets such as myetherwallet?

Br,
Jump to: