darkzorger
Sr. Member
Offline
Activity: 302
Merit: 251
Ego Sum Qui Sum
|
|
August 12, 2016, 05:22:57 PM |
|
excellent work of all participants involved in the project! I wish good luck and a further successful development of krypton
|
| | | | [ | | | | ] | | ✓ POW/POS ✓ ANONIMITY ✓ TRANSACTIONS ✓ SECURITY | | |
|
|
|
|
vella85
|
|
August 12, 2016, 10:58:00 PM |
|
I love the look of the new explorer and don't forget to let Coinmarket Cap know so they can update the KR listing. Keep up the good work and I've also re-tweeted this.
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
|
allsir
|
|
August 13, 2016, 05:04:20 PM |
|
lol, it is already overbought for polo
|
|
|
|
|
amacar2
Legendary
Offline
Activity: 1120
Merit: 1008
CryptoTalk.Org - Get Paid for every Post!
|
|
August 13, 2016, 07:09:04 PM |
|
Wow, haven't checked krypton trading for few months and now it got skyrocketed but sad for me i sold majority of my KR holding at 5000 satoshi range. But whatever i have left in my hand, i will be holding them atleast till next year.
|
|
|
|
Embat
|
|
August 13, 2016, 08:33:14 PM |
|
Awesome work! Great work guys I admire the project too. Congratulations Stephanie, no doubt Krypton will be a great currency> I made a request to Poloniex to add it too. Much request much interest. Let's show Poloniex that we want Krypton on theur exchange.
|
|
|
|
allsir
|
|
August 14, 2016, 09:06:51 PM |
|
no more power to hold price , and it is going slowly again back till swap price
|
|
|
|
covertress (OP)
|
|
August 14, 2016, 09:21:20 PM |
|
I just finished recording an AWESOME radio show with @Prints and @Lootz (in slack) from Core Radio! The link will be posted ASAP... after a little sound quality editing! Please stand by. Meanwhile, why not join Krypton's slack to chat? http://slack.krypton.rocks
|
|
|
|
vella85
|
|
August 14, 2016, 10:37:43 PM |
|
I just finished recording an AWESOME radio show with @Prints and @Lootz (in slack) from Core Radio! The link will be posted ASAP... after a little sound quality editing! Please stand by. Meanwhile, why not join Krypton's slack to chat? http://slack.krypton.rocksWell done covertress! More great PR for Krypton, the word is finally get out to the people and more and more people out there are starting to know KR. I'm hoping some of my buy orders fill as I believe this is only a small set back in the price before it starts to go back up again. And who knows this time we could hit 0.50
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
|
|
|
kilo17
Legendary
Offline
Activity: 980
Merit: 1001
aka "whocares"
|
|
August 15, 2016, 08:02:24 AM |
|
So I mined some blocks with a Ubuntu setup and I am having problems accessing the wallet. I am doing the following and cannot seem to get it to work and was hoping someone could shed some light on it:
./gkr attach
It shows the Coinbase etc as I would expect. Then I do the usual things like the following and get errors:
gkr.coinbase gives me gkr is not defined
or
gkr.getBalance('OxMyWalletAddy') which also yields gkr is not defined
Any help would be appreciated
|
Bitcoin Will Only Succeed If The Community That Supports It Gets Support - Support Home Miners & Mining
|
|
|
Mariuszeq
Newbie
Offline
Activity: 32
Merit: 0
|
|
August 15, 2016, 11:18:36 AM |
|
So I mined some blocks with a Ubuntu setup and I am having problems accessing the wallet. I am doing the following and cannot seem to get it to work and was hoping someone could shed some light on it:
./gkr attach
It shows the Coinbase etc as I would expect. Then I do the usual things like the following and get errors:
gkr.coinbase gives me gkr is not defined
or
gkr.getBalance('OxMyWalletAddy') which also yields gkr is not defined
Any help would be appreciated
modules: admin:1.0 db:1.0 debug:1.0 kr:1.0 miner:1.0 net:1.0 personal:1.0 shh:1.0 txpool:1.0 web3:1.0 It's kr not gkr, so: kr; kr.coinbase; kr.accounts; web3.fromWei(kr.getBalance(kr.coinbase), "krypton");
|
|
|
|
covertress (OP)
|
|
August 15, 2016, 01:12:22 PM |
|
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. If you need assistance, shinohai is available to help you for a small fee. He can be reached on irc freenode #Kryptoncoin. You can also ping shinohai through Krypton's slack. http://slack.krypton.rocks . Enjoy, people! And don't forget to re-tweet about it! Please. https://twitter.com/covertress/status/762984989084581888Good morning, Krypton! We already have a first coin project that is being added to the KR blockchain (that we know of.) No one is required to inform me when they want to use this smart contract to create their own coin but, it would be nice if you did and introduced your project here. In addition, dear developers, if you do create your own KR-flavored coin, I will offer you a subdomain name of Krypton.Rocks in order to help promote your project. Example: www.YourCoin.Krypton.RocksIf you're interested, please drop by Krypton's slack and post about your project in the #development room. We in the Krypton Community would all be interested to learn more about your project and/or offer advice on coin creation. Hope to see you in slack! http://slack.krypton.rocks
|
|
|
|
Loft
|
|
August 15, 2016, 01:23:21 PM |
|
I made the right decision to join KR community 3 weeks ago!
|
|
|
|
covertress (OP)
|
|
August 15, 2016, 04:33:07 PM |
|
So I mined some blocks with a Ubuntu setup and I am having problems accessing the wallet. I am doing the following and cannot seem to get it to work and was hoping someone could shed some light on it:
./gkr attach
It shows the Coinbase etc as I would expect. Then I do the usual things like the following and get errors:
gkr.coinbase gives me gkr is not defined
or
gkr.getBalance('OxMyWalletAddy') which also yields gkr is not defined
Any help would be appreciated
modules: admin:1.0 db:1.0 debug:1.0 kr:1.0 miner:1.0 net:1.0 personal:1.0 shh:1.0 txpool:1.0 web3:1.0 It's kr not gkr, so: kr; kr.coinbase; kr.accounts; web3.fromWei(kr.getBalance(kr.coinbase), "krypton"); It seems to me, kilo17, that you have downloaded gkr and the KR QT GUI wallet but have not created an account yet. The first time (and only the first time) you run gkr, you need to launch it with this command so that it creates your account address. The password that you will be asked for will be your password to lock/unlock your wallet. Write this password down and keep it in a safe place. From here on, whenever you want to run the Krypton wallet, you must run gkr.exe first, then run the KR QT wallet. If you have questions, please join Krypton's slack: http://slack.krypton.rocks
|
|
|
|
|
|