Jaroco
Member
Offline
Activity: 82
Merit: 10
|
|
August 08, 2016, 10:12:45 PM |
|
Hi, is Krypton opensource?
No answer, but don't worry, i found the code on bitbucket. Last edited on the release day. Anonym developers. And these claims about beeing the choice of uni.lu to use your coin to do research on blockchain applications. I haven't heard or read anything about this cooperation, and i am from Luxembourg. The truth is one phone call away. Will update. read this: https://www.dropbox.com/s/fktgrs90iw2ijv4/Krypton%20Letter%202907_2016.docx?dl=0I read it, and there is no name of the person who send it, nor is there a name or a signature op the expediteur..... That's one thing which makes me unconfortable.....
|
|
|
|
sesko
|
|
August 08, 2016, 10:16:51 PM |
|
Hi, is Krypton opensource?
No answer, but don't worry, i found the code on bitbucket. Last edited on the release day. Anonym developers. And these claims about beeing the choice of uni.lu to use your coin to do research on blockchain applications. I haven't heard or read anything about this cooperation, and i am from Luxembourg. The truth is one phone call away. Will update. read this: https://www.dropbox.com/s/fktgrs90iw2ijv4/Krypton%20Letter%202907_2016.docx?dl=0I read it, and there is no name of the person who send it, nor is there a name or a signature op the expediteur..... That's one thing which makes me unconfortable..... We would like to invite KRYPTON to participate in this Lab by contributing to a cutting edge and vendor-neutral testbed for designing, developing, prototyping and val idating multiple testbed solutions within the main FinTech research areas pursued by SnT. This is exactly why we would be very interested to develop a win-win partnership with KRYPTON. See enclosed a summary with a draft concept for how we co uld develop a co -operation or the Luxembourg and European markets. Yours sincerely, Karl Johannesson
|
|
|
|
Jaroco
Member
Offline
Activity: 82
Merit: 10
|
|
August 08, 2016, 10:18:05 PM |
|
Does Krypton work together with Lux Fintech Lab?
|
|
|
|
Jaroco
Member
Offline
Activity: 82
Merit: 10
|
|
August 08, 2016, 10:20:54 PM |
|
Hi, is Krypton opensource?
No answer, but don't worry, i found the code on bitbucket. Last edited on the release day. Anonym developers. And these claims about beeing the choice of uni.lu to use your coin to do research on blockchain applications. I haven't heard or read anything about this cooperation, and i am from Luxembourg. The truth is one phone call away. Will update. read this: https://www.dropbox.com/s/fktgrs90iw2ijv4/Krypton%20Letter%202907_2016.docx?dl=0I read it, and there is no name of the person who send it, nor is there a name or a signature op the expediteur..... That's one thing which makes me unconfortable..... We would like to invite KRYPTON to participate in this Lab by contributing to a cutting edge and vendor-neutral testbed for designing, developing, prototyping and val idating multiple testbed solutions within the main FinTech research areas pursued by SnT. This is exactly why we would be very interested to develop a win-win partnership with KRYPTON. See enclosed a summary with a draft concept for how we co uld develop a co -operation or the Luxembourg and European markets. Yours sincerely, Karl Johannesson Thanks, will email him, an if i get a confirmation, i will invest. Thanks!
|
|
|
|
pwpwpw
|
|
August 09, 2016, 12:12:18 AM |
|
Hi, is Krypton opensource?
No answer, but don't worry, i found the code on bitbucket. Last edited on the release day. Anonym developers. And these claims about beeing the choice of uni.lu to use your coin to do research on blockchain applications. I haven't heard or read anything about this cooperation, and i am from Luxembourg. The truth is one phone call away. Will update. Goodguy Jaroco! will wait your update
|
|
|
|
covertress (OP)
|
|
August 09, 2016, 11:50:14 AM Last edit: September 21, 2016, 06:12:58 PM by covertress |
|
Good morning, Krypton! Is everyone ready for the first smart contract? I've had several coin developers coming to me asking if I could help them create their own coin. Well, I have a better solution for them, one that benefits Krypton also. That solution is to create a side chain of KR, in essence, a token or colored coin for them. Here's the smart contract to do this: contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }
contract MyToken { /* Public variables of the token */ string public standard = 'Token 0.1'; string public name; string public symbol; uint8 public decimals; 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);
/* Initializes contract with initial supply tokens to the creator of the contract */ function MyToken( uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol ) { balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens totalSupply = initialSupply; // Update total supply name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes decimals = decimalUnits; // Amount of decimals for display purposes msg.sender.send(msg.value); // Send back any ether sent accidentally }
/* Send coins */ function transfer(address _to, uint256 _value) { if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows balanceOf[msg.sender] -= _value; // Subtract from the sender balanceOf[_to] += _value; // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place }
/* Allow another contract to spend some tokens in your behalf */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowance[msg.sender][_spender] = _value; tokenRecipient spender = tokenRecipient(_spender); spender.receiveApproval(msg.sender, _value, this, _extraData); return true; }
/* A contract attempts to get the coins */ function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (balanceOf[_from] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows if (_value > allowance[_from][msg.sender]) throw; // Check allowance balanceOf[_from] -= _value; // Subtract from the sender balanceOf[_to] += _value; // Add the same to the recipient allowance[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; }
/* This unnamed function is called whenever someone tries to send ether to it */ function () { throw; // Prevents accidental sending of KR } }
The only difference in how KR works from ETH at this time is this: KR contracts must be deployed from the command line. There are Krypton notes in the document, Beginning Solidity Development, that explain how to compile and deploy contracts. https://docs.google.com/document/d/1Xn1frVpyjBJI0KCJt94Nok_meQY0o3Xd6yZUxSE-gUM/edit#heading=h.p65zjxf2oav4Here is the original documentation from ETH: https://www.ethereum.org/token### All of the above is in this Google document: https://docs.google.com/document/d/1_P9YRcxAXopotvlY_ruYueyNsvpGOKYpu-U_EFp445U/edit?usp=sharingAny developers now wanting to create their own coin can easily do this right now. Enjoy, people! And don't forget to re-tweet about it! Please. https://twitter.com/covertress/status/762984989084581888
|
|
|
|
|
|
TrueAnon
Legendary
Offline
Activity: 1120
Merit: 1000
|
|
August 09, 2016, 07:45:18 PM |
|
Wow, congrats
|
|
|
|
vella85
|
|
August 09, 2016, 10:48:58 PM |
|
Well done dev and this is what we have all been patiently waiting for. Wow! look at the price of KR today yp 71.67% at 21,876 sats. What do those people think now who said KR would crash back down to 5,000 sats lol Keep up the good work dev! and congrats on this achievement and may there be many more. Also just finished Re-tweeting your Tweets.
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
TonySon
|
|
August 10, 2016, 05:15:05 AM Last edit: August 10, 2016, 05:40:53 AM by TonySon |
|
|
|
|
|
vella85
|
|
August 10, 2016, 06:02:58 AM |
|
KR's price is still rising now over 33,000 sats. It's been a crazy 12 hours and it doesn't look like stopping any time soon. If this keeps up KR will be in the top 100 crypto currencies which will be a great achievement and then the next goal is to make the top 50.
All aboard the rocket ship to the moon.
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
cebb
|
|
August 10, 2016, 06:40:22 AM |
|
I was skeptical of KR initially but with all the developments happening and good PR in place I think KR's market cap is too low and it should reach couple of millions easily in next few months.
P.S. I have bought a decent amount of KR today.
|
|
|
|
vella85
|
|
August 10, 2016, 07:05:12 AM |
|
I was skeptical of KR initially but with all the developments happening and good PR in place I think KR's market cap is too low and it should reach couple of millions easily in next few months.
P.S. I have bought a decent amount of KR today.
Yes good things are now happening with KR and guess what everyone KR is now in the top 100 crypto currencies. Congrats on this wonderful achievement dev. Now lets break into the top 50.
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
goldmaxx
|
|
August 10, 2016, 07:15:37 AM |
|
Easy 2 million market cap in a few days... (and more later ;-) )
Regards
Goldmaxx
|
|
|
|
|
pwpwpw
|
|
August 10, 2016, 04:11:56 PM |
|
you don't need to spam poloniex, once you have enough volume, they will want in for the profit.
|
|
|
|
covertress (OP)
|
|
August 10, 2016, 04:30:28 PM |
|
you don't need to spam poloniex, once you have enough volume, they will want in for the profit.
KR's volume on Bittrex is nearly 100K BTC, as you can see. That should be high enough to get Poloniex's attention.
|
|
|
|
PatCash79
|
|
August 10, 2016, 06:00:53 PM |
|
Stephanie Kent is the best PM/dev I've seen in ages. That alone will make krypton succeed and become a top 10 coin.
|
|
|
|
xenxex
|
|
August 10, 2016, 07:40:25 PM |
|
Stephanie Kent is the best PM/dev I've seen in ages. That alone will make krypton succeed and become a top 10 coin.
You are right. I know that since I met her here in bct... You are doing a phenomenal job sweetheart..
|
|
|
|
|