coinomayo
Newbie
Offline
Activity: 3
Merit: 0
|
|
July 11, 2017, 01:24:06 AM |
|
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 somethingwhy 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?
|
|
|
|
TimereumDev (OP)
|
|
July 11, 2017, 01:27:28 AM Last edit: July 11, 2017, 01:47:01 AM by TimereumDev |
|
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]<maxRewardUnitsAvailable) { 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); } }
|
|
|
|
keyboardwalking
|
|
July 11, 2017, 01:41:54 AM |
|
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??
|
|
|
|
coinomayo
Newbie
Offline
Activity: 3
Merit: 0
|
|
July 11, 2017, 01:45:31 AM |
|
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]<maxRewardUnitsAvailable) { 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/Ei1h9k3LOL you forgot to take MINEREUM out LMAO I got it screencapped buddy, u messed up
|
|
|
|
keyboardwalking
|
|
July 11, 2017, 01:47:54 AM |
|
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
|
|
|
|
TimereumDev (OP)
|
|
July 11, 2017, 01:50:52 AM |
|
@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.
|
|
|
|
Coiner_
|
|
July 11, 2017, 01:54:00 AM |
|
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/Ei1h9k3LOL 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.
|
|
|
|
keyboardwalking
|
|
July 11, 2017, 01:54:39 AM |
|
@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
|
|
|
|
keyboardwalking
|
|
July 11, 2017, 01:55:43 AM |
|
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/Ei1h9k3LOL 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.
|
|
|
|
JustMissed
|
|
July 11, 2017, 02:00:11 AM |
|
@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.)
|
|
|
|
Coiner_
|
|
July 11, 2017, 02:00:43 AM |
|
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/Ei1h9k3LOL 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?
|
|
|
|
r1d1
|
|
July 11, 2017, 03:13:35 AM |
|
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/Ei1h9k3LOL 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: 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
|
|
|
|
|
Ingramtg
Legendary
Offline
Activity: 861
Merit: 1000
|
|
July 11, 2017, 05:04:52 AM |
|
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]<maxRewardUnitsAvailable) { 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/Ei1h9k3LOL you forgot to take MINEREUM out LMAO I got it screencapped buddy, u messed up just quote here let people see , waitting the explain
|
|
|
|
thepo1m
|
|
July 11, 2017, 05:19:59 AM |
|
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
|
|
|
|
pynetx
|
|
July 11, 2017, 06:07:40 AM |
|
I like the parent child concept. Joined the airdrop. can't wait to test it.
|
|
|
|
europesss
|
|
July 11, 2017, 06:59:27 AM |
|
Does this coin just aim to create more ETH addresses? Nothing more?
|
|
|
|
adarwis
|
|
July 11, 2017, 07:05:37 AM |
|
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
|
|
|
|
guigui371
Legendary
Offline
Activity: 2114
Merit: 1693
C.D.P.E.M
|
|
July 11, 2017, 08:23:49 AM |
|
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
|
it ain't much but it's honest work
|
|
|
tinyteapot
|
|
July 11, 2017, 09:32:02 AM |
|
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.
|
|
|
|
|