sneakaprince
Supporter
- 16,540
- 20,309
Even more mad at myself for not just pulling out a week ago now.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Even more mad at myself for not just pulling out a week ago now.
If I'm holding my coins for at least a couple of years, should I be worried?
Realistically it’s hard to say no. It all depends on your price points. I’m at the point where it’s like fine, tank completely and make it ridiculously easy to double my positions. I need to start trading around a core more. Hodl’ing is too hard to do with this volatility.If I'm holding my coins for at least a couple of years, should I be worried?
Right...I should've been more specific. Like could these cryptos just dissolve, especially the more popular ones? Some might not recall or know about e-gold in the early 2000's, and this is starting to remind me of it.Realistically it’s hard to say no. It all depends on your price points. I’m at the point where it’s like fine, tank completely and make it ridiculously easy to double my positions. I need to start trading around a core more. Hodl’ing is too hard to do with this volatility.
- 3.1.5 (b) Cryptocurrencies:
- (i) Wallets: Apps may facilitate virtual currency storage, provided they are offered by developers enrolled as an organization.
- (ii) Mining: Apps may not mine for cryptocurrencies unless the processing is performed off device (e.g. cloud-based mining).
- (iii) Exchanges: Apps may facilitate transactions or transmissions of cryptocurrency on an approved exchange, provided they are offered by the exchange itself.
- (iv) Initial Coin Offerings: Apps facilitating Initial Coin Offerings (“ICOs”), cryptocurrency futures trading, and other crypto-securities or quasi-securities trading must come from established banks, securities firms, futures commission merchants (“FCM”), or other approved financial institutions and must comply with all applicable law.
- (v) Cryptocurrency apps may not offer currency for completing tasks, such as downloading other apps, encouraging other users to download, posting to social networks, etc.
Apple blocked Binance from the App Store.https://developer.apple.com/app-store/review/guidelines/
Binance water yew dooeng. Get your **** on the App Store already
Also, XRP rebranding?
https://ripple.com/xrp/
HUGE NEWS: ETH NOT A SECURITY!!!
This could be the rocket we need. DYOR!!!
GET IN NOW.... $505 ETH!!!
https://finance.yahoo.com/news/sec-announces-ether-not-security-162658147.html
Apple blocked Binance from the App Store.
This is another pump fake...
Btc going back to 6k by the weekend...
Will load up when it's at 5,9--....
Long term gains for the short minded investors.... don't sell
This is where BTC is currently.
const SHA256 = require('crypto-js/sha256');
class Block {
constructor(index, timestamp, data, previousHash = '') {
this.index = index;
this.timestamp = timestamp;
this.data = data;
this.previousHash = previousHash;
this.hash = this.calculateHash();
}
calculateHash() {
return SHA256(this.index = this.previousHash + this.timestamp + JSON.stringify(this.data)).toString();
}
}
class Blockchain {
constructor() {
this.chain = [this.createGenesisBlock()];
}
createGenesisBlock() {
return new Block(0, "01/01/2018", "Genesis block", "0");
}
getLatestBlock() {
return this.chain[this.chain.length - 1];
}
addBlock(newBlock) {
newBlock.previousHash = this.getLatestBlock().hash;
newBlock.hash = newBlock.calculateHash();
this.chain.push(newBlock);
}
isChainValid() {
for (let i = 1; i < this.chain.length; i++) {
const currentBlock = this.chain;
const previousBlock = this.chain[i - 1];
if (currentBlock.hash !== currentBlock.calculateHash()) {
return false;
}
if (currentBlock.previousHash !== previousBlock.hash) {
return false;
}
}
return true;
}
}
let primeCoin = new Blockchain();
primeCoin.addBlock(new Block(1, "06/13/2018", {
amount: 4
}));
primeCoin.addBlock(new Block(2, "06/14/2018", {
amount: 10
}));
console.log(JSON.stringify(primeCoin, null, 4));
console.log('Is blockchain valid?' + primeCoin.isChainValid());
// console.log(JSON.stringify(primeCoin, null, 4));