Author

Topic: [ANN] INTENSE COIN - Blockchain backed decentralized VPN - Hybrid PoW - page 209. (Read 235822 times)

hero member
Activity: 952
Merit: 516
Have you thought about adding intensecoin to a decentralized exchange like https://waveswallet.io/
I think that would definitely push the price


cryptopia would be better and even better bittrex

Bittrex is one of the worst exchanges right now, they have blocked hundreds of thousands of accounts. Not a good idea to trade there. Exchanges will come, patience.
legendary
Activity: 1176
Merit: 1000
INTENSE COIN is now start moving fast growing. This is what I've been waiting the VPN project. What about VPS project? I hope VPS is included in this project, that would be more better. Good luck ITNS.


Best Regards


Okane Satoshi
https://altmining.blogspot.com/
sr. member
Activity: 504
Merit: 254
Hi DEV team, is there any chanse to put 2FA on wallet?
 
Regards

Interesting idea. The wallets already offer options for password encryption so adding 2FA might be overkill.


2FA would be an excellent additional layer IMHO. If a user gets their system compromised by a keylogger virus, 2FA would still render the wallet useless even if the attacker gains both the wallet files and the encryption password.


Official pool update (http://intensecoin.com/pool/): Pool payout frequency reduced to once every 2 hours to reduce transaction issues for users. If users inputs in their wallets are comprised of only very small amounts of coins, it becomes a challenge to send large amounts of coins in one transaction later.

Excellent news! On the same subject, is there a way to consolidate inputs within the wallet? I've been mining ITNS since September and probably have many thousands of small inputs by now.
jr. member
Activity: 557
Merit: 5
Have you thought about adding intensecoin to a decentralized exchange like https://waveswallet.io/
I think that would definitely push the price


Why would you want to push the price up ?
We are mining with very low difficulty right now. A price increase will bring the vulture to the party and kill mining for small miners and take it all !!!
newbie
Activity: 28
Merit: 0
Began to move! Something is coming!
sr. member
Activity: 379
Merit: 250
Have you thought about adding intensecoin to a decentralized exchange like https://waveswallet.io/
I think that would definitely push the price


cryptopia would be better and even better bittrex
newbie
Activity: 24
Merit: 0
Have you thought about adding intensecoin to a decentralized exchange like https://waveswallet.io/
I think that would definitely push the price
full member
Activity: 219
Merit: 121
Lethean Developer
Hi DEV team, is there any chanse to put 2FA on wallet?
 
Regards

Interesting idea. The wallets already offer options for password encryption so adding 2FA might be overkill.


--

Official pool update (http://intensecoin.com/pool/): Pool payout frequency reduced to once every 2 hours to reduce transaction issues for users. If users inputs in their wallets are comprised of only very small amounts of coins, it becomes a challenge to send large amounts of coins in one transaction later.
jr. member
Activity: 129
Merit: 5
Hi DEV team, is there any chanse to put 2FA on wallet?
 
Regards
newbie
Activity: 42
Merit: 0
You can get the difficulty, reward and other stuff from the json api. Every pool has that. For example:
http://intensecoin.de:8117/stats
Look under network


very useful hint, thank you very much Smiley


Just to add on that. Query from the pool you are using the current difficulty, hashrate, etc.
Official pool is: http://45.32.171.89:8111/stats

Now, you can calculate your profitabily as:
If you are mining x H/s

Code:
profit = hashrate * 86400 / stats['network']['difficulty'] * stats['network']['reward']
coins = profit / stats['config']['coinUnits']

Also, note 1KH/s = 1024 H/s, 1MHash = 1024 KH/s = 1024*1024 H/s and so on! Multiply by 1024 not 1000.

For example, suppose you are at 1KH/s (1024 H/s) then you've got (more or less at writing time this values are correct):
Code:
profit = 1024 * 86400 / 312742295 * 162898140711 = 4.60832614 * 10^10
coins = 4.60832614 * 10^10 / 100000000 = 4.60832614 * 10^(10-8) = 460 ITNS/day

(yeah, already at 300M difficulty...)

Now, you can query
https://stocks.exchange/api2/ticker
And use ITNS ticker to find current change is 0.00000033 btc/ITNS, so
Code:
btc = coins * 0.00000033 = 460 * 0.00000033 = 0.0001518

You can even calculate the average block time (in seconds) on your current pool by:
Code:
estimate = stats['network']['difficulty'] / stats['pool']['hashrate']
newbie
Activity: 48
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?

i'm getting difficulty values for other coins via their JSON API, it would be helpfull..at least for me


https://coinmarketcap.com/currencies/intensecoin/#charts here see the cost of the coin.
https://intense.hashvault.pro/# Here you can see how many coins you can get.
do not need whattomine.
whattomine is evil.

thanks, I know these sites, but to see the difficulty/other values is not enough for me, I need to work with these values and it's hard to grab them directly from web page, JSON is much more convenient..for example I want to have one month ITNS diff chart, or want to stop mining if difficulty is too high, etc.

You can get the difficulty, reward and other stuff from the json api. Every pool has that. For example:
http://intensecoin.de:8117/stats
Look under network


very useful hint, thank you very much Smiley
newbie
Activity: 24
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?

i'm getting difficulty values for other coins via their JSON API, it would be helpfull..at least for me


https://coinmarketcap.com/currencies/intensecoin/#charts here see the cost of the coin.
https://intense.hashvault.pro/# Here you can see how many coins you can get.
do not need whattomine.
whattomine is evil.

thanks, I know these sites, but to see the difficulty/other values is not enough for me, I need to work with these values and it's hard to grab them directly from web page, JSON is much more convenient..for example I want to have one month ITNS diff chart, or want to stop mining if difficulty is too high, etc.

You can get the difficulty, reward and other stuff from the json api. Every pool has that. For example:
http://intensecoin.de:8117/stats
Look under network
newbie
Activity: 48
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?

i'm getting difficulty values for other coins via their JSON API, it would be helpfull..at least for me


https://coinmarketcap.com/currencies/intensecoin/#charts here see the cost of the coin.
https://intense.hashvault.pro/# Here you can see how many coins you can get.
do not need whattomine.
whattomine is evil.

thanks, I know these sites, but to see the difficulty/other values is not enough for me, I need to work with these values and it's hard to grab them directly from web page, JSON is much more convenient..for example I want to have one month ITNS diff chart, or want to stop mining if difficulty is too high, etc.
newbie
Activity: 33
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?

i'm getting difficulty values for other coins via their JSON API, it would be helpfull..at least for me


https://coinmarketcap.com/currencies/intensecoin/#charts here see the cost of the coin.
https://intense.hashvault.pro/# Here you can see how many coins you can get.
do not need whattomine.
whattomine is evil.
newbie
Activity: 48
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?

i'm getting difficulty values for other coins via their JSON API, it would be helpfull..at least for me
sr. member
Activity: 463
Merit: 250
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?
So he could destroy the profit from mining.
newbie
Activity: 33
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks


what for !?
newbie
Activity: 48
Merit: 0
hello, would it be possible to list ITNS on whattomine.com? thanks
hero member
Activity: 952
Merit: 516
Just want to konw when be the new exchange

Don't be so eager for a new exchange. Stocks.exchange is not great but does the job. Eventually more exchanges will adopt intense coin but for now let them focus on development.
member
Activity: 224
Merit: 12
Pls Donate Merit :)
Go to the moon! Tongue

Nice Job!
Jump to: