Search content
Sort by

Showing 20 of 42 results by rev2
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ⚡ ⚡ ⚡ SchillingCoin - Austria's take on the cryptocurrency world ⚡ ⚡ ⚡
by
rev2
on 05/09/2018, 12:53:30 UTC
Dear community,

we're happy to announce that we're going to be added to crex24 exchange.

More informations to come soon.


Greetings
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ⚡ ⚡ ⚡ SchillingCoin - Austria's take on the cryptocurrency world ⚡ ⚡ ⚡
by
rev2
on 10/08/2018, 09:22:45 UTC
what exchange do you have plan to list? And how about your coin price sir?
Do you have any bounty or airdrop campign? I am very impressive about your project and I think your coin can grow up its price

Right now we're only on crypto-bridge, but we're looking forward to get listed on 2-3 other exchanges.

Unfortunately we can't give out any names right now.

Bounty & Airdrop will follow next week/s

Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ⚡ ⚡ ⚡ SchillingCoin - Austria's take on the cryptocurrency world ⚡ ⚡ ⚡
by
rev2
on 14/07/2018, 10:19:57 UTC
Hello! I am from Austria!

How i can buy or mine the Coin?

And where i can use?

Thanks

We're still working at being listed on an exchange, but for now you could use this external partner which is selling OES directly through an online shop: www.mc99.com/shop

On our website https://www.schillingcoin.com/haendler you can lookup all the locations where SchillingCoin is accepted.

That is abandoned project nobody is active into this thread so you really want to mine this coin without any support from exchanges. Look over the official website that is still into local language even after couple of months they are not able to arrange translation to make it global.

We  just finished the website, the project has been 100% revived, the old website has been therefor deleted, which included an english version.

Since we're focusing primarily on our national market, we had to create the page in german first.

English translation of the website should go live in the next week.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ⚡ ⚡ ⚡ SchillingCoin - Austria's take on the cryptocurrency world ⚡ ⚡ ⚡
by
rev2
on 03/07/2018, 09:26:02 UTC
Dear Users,

we would like to inform you that the project has been successfully revived. Since a lot of exchanges require the bitcointalk-thread, we decided to update this aswell. Also we tought this might help to reduce the amount of people that get confused by this old thread.

We have removed all the previous informations about the project, since we moved over from Neo to a Peercoin Fork.

All ICO participants have been informed and  refunded a few weeks after the ICO started.


Now we decided to revive the project, but this time without an ICO. We plan on funding the project through donations and investors. For this the need of an ICO is eliminated.


Check out the main post for informations and resources.



Post
Topic
Board Altcoin Discussion
Re: Compiling Mac Clients for ANY Alt Coin, Your Choice!
by
rev2
on 15/06/2018, 19:52:12 UTC
Can someone compile this wallet right here:

https://github.com/schillingcoin/schillingcoin
Post
Topic
Board Altcoin Discussion
Creating PeerCoin Genesis Block - Help needed
by
rev2
on 09/04/2018, 12:44:08 UTC
Hello there,

I'm experimenting around with the creation of my own genesis block / own chain of peercoin. Unfortunately the only tutorial for this is for PeerShares, which is not maintained anymore.

From what I've read on forums and combined with the peershares tutorial, this is what I did, which unfortunately does not succeeed:

main.cpp commented out line 3222:

Code:
//hashGenesisBlock = uint256("00008d0d88095d31f6dbdbcf80f6e51f71adf2be15740301f5e05cc0f3b2d2c0");

main.cpp changed pszTimestamp on line 3271:
Code:
const char* pszTimestamp = "NYT 9-4-18 Facebooks Other Critics: Its Viral Stars";


Compiling goes OK, I get this since the hashMerkleRoot is the old one from peercoin chain

Quote
/peercoin/src$ ./peercoind
peercoind: main.cpp:3310: bool InitBlockIndex(): Assertion `block.hashMerkleRoot == uint256("0x3c2d8f85fab4d17aac558cc648a1a58acff0de6deb890c29985690052c5993c2")' failed.
Aborted (core dumped)

And the content of my debug.log:

Quote
> 2018-04-09 11:57:45 Opened LevelDB successfully
> 2018-04-09 11:57:45 Peercoin Network: genesis=0x0000000032fe677166d5 nBitsLimit=0x1d00ffff nBitsInitial=0x1c00ffff nStakeMinAge=2592000 nCoinbaseMaturity=500 nModifierInterval=21600
> 2018-04-09 11:57:45 LoadBlockIndexDB(): last block file = 0
> 2018-04-09 11:57:45 LoadBlockIndexDB(): synchronized checkpoint not read
> 2018-04-09 11:57:45 LoadBlockIndexDB(): synchronized checkpoint 0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3
> 2018-04-09 11:57:45 LoadBlockIndexDB(): transaction index disabled
> 2018-04-09 11:57:45 Initializing databases...
> 2018-04-09 11:57:45 ba2c38d635163680e895cf4edf86153ccd73fab8fbcd73b00f3b4daefe21f3a4
> 2018-04-09 11:57:45 0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3
> 2018-04-09 11:57:45 e947fc6a60eadcf5b9a891fd23633f44e42e5d70d2fd5390e7f0a016f45e60dc

from debug.log i retrieve the hashMerkleRoot which should be the last value (last line) and add it to line 3310 in main.cpp:

Code:
assert(block.hashMerkleRoot == uint256("0x72617357890cf4285cbfd9eaeebf6f25db7057b2b678cd8f5bfaa3080193e74f"));


Now I recompile again, get the genesisBlockHash from the debug file: in this case it should be (?): 2018-04-09 12:31:09 0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3 and add it to main.cpp line 3222:

Code:
hashGenesisBlock = uint256("0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3");


After last compile, this is my error:

Quote
> bibz@bibz-u:~/peercoin/src$ ./peercoind
> peercoind: main.cpp:3312: bool InitBlockIndex(): Assertion `hash == hashGenesisBlock' failed.
> Aborted (core dumped)

and debug.log:

Quote
> 2018-04-09 12:31:09 Peercoin version v0.6.2ppc-dirty (2018-03-10 20:21:14 +0300)
> 2018-04-09 12:31:09 Using OpenSSL version OpenSSL 1.0.2g  1 Mar 2016
> 2018-04-09 12:31:09 Default data directory /home/bibz/.peercoin
> 2018-04-09 12:31:09 Using data directory /home/bibz/.peercoin
> 2018-04-09 12:31:09 Using at most 125 connections (1024 file descriptors available)
> 2018-04-09 12:31:09 Using 12 threads for script verification
> 2018-04-09 12:31:09 init message: Verifying wallet...
> 2018-04-09 12:31:09 dbenv.open LogDir=/home/bibz/.peercoin/database ErrorFile=/home/bibz/.peercoin/db.log
> 2018-04-09 12:31:09 Bound to [::]:9901
> 2018-04-09 12:31:09 Bound to 0.0.0.0:9901
> 2018-04-09 12:31:09 init message: Loading block index...
> 2018-04-09 12:31:09 Opening LevelDB in /home/bibz/.peercoin/blocks/index
> 2018-04-09 12:31:09 Opened LevelDB successfully
> 2018-04-09 12:31:09 Opening LevelDB in /home/bibz/.peercoin/chainstate
> 2018-04-09 12:31:09 Opened LevelDB successfully
> 2018-04-09 12:31:09 Peercoin Network: genesis=0x0000000032fe677166d5 nBitsLimit=0x1d00ffff nBitsInitial=0x1c00ffff nStakeMinAge=2592000 nCoinbaseMaturity=500 nModifierInterval=21600
> 2018-04-09 12:31:09 LoadBlockIndexDB(): last block file = 0
> 2018-04-09 12:31:09 LoadBlockIndexDB(): synchronized checkpoint not read
> 2018-04-09 12:31:09 LoadBlockIndexDB(): synchronized checkpoint 0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3
> 2018-04-09 12:31:09 LoadBlockIndexDB(): transaction index enabled
> 2018-04-09 12:31:09 Initializing databases...
> 2018-04-09 12:31:09 dc4cee563966e3aae37f8cab2cbc716204f81d21ca5298bbc718a2089e76f095
> 2018-04-09 12:31:09 0000000032fe677166d54963b62a4677d8957e87c508eaa4fd7eb1c880cd27e3
> 2018-04-09 12:31:09 72617357890cf4285cbfd9eaeebf6f25db7057b2b678cd8f5bfaa3080193e74f
> 2018-04-09 12:31:09 CBlock(hash=dc4cee563966e3aae37f8cab2cbc716204f81d21ca5298bbc718a2089e76f095, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=72617357890cf4285cbfd9eaeebf6f25db7057b2b678cd8f5bfaa3080193e74f, nTime=1523275630, nBits=1d00ffff, nNonce=2179302059, vtx=1, vchBlockSig=)
> 2018-04-09 12:31:09   Coinbase(hash=72617357890cf4285cbfd9eaeebf6f25db7057b2b678cd8f5bfaa3080193e74f, nTime=1523275630, ver=1, vin.size=1, vout.size=1, nLockTime=0)
>     CTxIn(COutPoint(0000000000000000000000000000000000000000000000000000000000000000, 4294967295), coinbase 04ffff001d020f27334e595420392d342d31382046616365626f6f6b73204f74686572204372697 46963733a2049747320566972616c205374617273)
>     CTxOut(empty)
>   vMerkleTree: 72617357890cf4285cbfd9eaeebf6f25db7057b2b678cd8f5bfaa3080193e74f


What am I doing wrong? Did I pick up the wrong genesisHash from debug.log? And what is the difference between

printf("%s\n", hash.ToString().c_str());

and

printf("%s\n", hashGenesisBlock.ToString().c_str());


The latter should be the hash of the genesis block which I need in line 3222, right?

Thanks in advance for the help. I'd be glad to setup a small tutorial / guide after I figure out what the problem is.


PS: I know this got asked way too often, but noone of the threads are for peercoin. Also the python script that generates the genesisblock fails for me. Probably since this is a PoW/PoS hybrid?
Post
Topic
Board Mining (Deutsch)
Re: Vorbestellung P102-100 GPU`s
by
rev2
on 05/04/2018, 08:10:50 UTC
Vorsicht geboten an alle Käufer. Dieses Unternehmen stinkt durch und durch nach Scam. Die Texte auf deren Webseite sind zu 80% kopiert. Wink

Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SPK] SPARKS | NO ICO | Masternodes 50% | Neoscrypt |
by
rev2
on 26/01/2018, 13:23:31 UTC
Another shit coin? No response to anybody who has been asking for help regarding wallet sync issues, Myself and atleast 4 or 5 others cannot get wallets to sync it has been on all day, says no block source available.... Does anybody care about this coin? Seems not!  Huh

1. Open windows explorer, go to %APPDATA%
2. Open Sparks folder
3. Edit Sparks.conf, if it does not exist, create it
4. Add the nodes you can find here to it: https://altminer.net/explorer/peers?id=2049

Save and restart wallet. Now you should be connecting.


What a great coin.... Great responsive community willing to help a bloke out...

Thanks for the tip i did what you said and after all day 16 hours not syncing its now synchronising with network

Somebody give this man a medal....! Thanks again.... Looking forward to sticking around this project

No problem, glad you could work it out. I know that feeling well too good when you try everything but it doesn't work..

For the future: If your wallet does not sync, mostly it is because there are no nodes found. Try googling for "addnodes" + your coin name and you'll find some.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SPK] SPARKS | NO ICO | Masternodes 50% | Neoscrypt |
by
rev2
on 26/01/2018, 12:39:18 UTC
Another shit coin? No response to anybody who has been asking for help regarding wallet sync issues, Myself and atleast 4 or 5 others cannot get wallets to sync it has been on all day, says no block source available.... Does anybody care about this coin? Seems not!  Huh

1. Open windows explorer, go to %APPDATA%
2. Open Sparks folder
3. Edit Sparks.conf, if it does not exist, create it
4. Add the nodes you can find here to it: https://altminer.net/explorer/peers?id=2049

Save and restart wallet. Now you should be connecting.
Post
Topic
Board Mining (Altcoins)
Re: KFA2 GeForce GTX 1070 EX 8GB
by
rev2
on 29/12/2017, 22:01:05 UTC
i have 2 of those kfa2 1070 ex overclocked them to +190 core and +740 mem clock and 85% powerlimit getting around 480 to 500 soll in zec and about 30,5 mhs ethereum in dualmining with sia dcri set to 60 no impact on ethash... its a good card for the price its 100€ cheaper here than a 1070 from msi gigabyte and so on ... only contra is 1 8 pin + 1 6pin power connector so if you build a rig be sure to have enough pcie power connectors i also so have some gigabyte 7x 1070 2 fan oc version this card has only 1 8 pin connector and does almost the same hashrate than kfa2 1070 ex with same overclocking... sorry 4 bad english

so what about temperature for gigabyte and kfa2 ?

My KFA2 goes on +100 clock, +250 memory to ~67 celsius.

Above settings deliever 28mh/s (ethereum with claymore miner)

Since I've got 2 monitors attached and use the computer while mining, I can't go higher, otherwise the system gets unstable.
Post
Topic
Board Economics
Re: Amazon and Bitcoin
by
rev2
on 29/12/2017, 20:12:49 UTC
Amazon used to accept btc in the past but later they stopped accepting btc as their mode of payment as the value of the btc is not stable and they fear that they might have some kind of loss if they continue accepting btc as it is a virtual currency and its market changes every now and then and they are not ready to accept it but there are alternative website and online shopping web page which accept btc as their mode of payment.You can even buy amazon product from an alternative web site named purse.io and make payment via btc its already being used by lot of people and so you don't have to wait for a day so that Amazon restart accepting btc.


Wait a minute, when did Amazon accept BTC? Never heard about this...
Post
Topic
Board Altcoins (Deutsch)
Re: 2018 wird das Jahr von ???
by
rev2
on 29/12/2017, 19:52:09 UTC
Wie bereits erwähnt würde ich auch darauf tippen, dass Ethereum einen Anteil verliert, dadurch, dass ICOs auf Währungen gehalten werden wie NEO etc.

Aber einen wirklichen Favoriten für 2018 habe ich nicht wirklich... Nach diesem Jahr bin ich sowieso der Meinung, dass man nur wenn man wirklich 100% seiner Zeit darin steckt, eventuell einen guten Treffer landen kann..  Roll Eyes
Post
Topic
Board Tokens (Altcoins)
Re: [ANN] [ICO] LaLa World : An ecosystem for migrants and their families
by
rev2
on 29/12/2017, 19:42:47 UTC
The world deserves more of this kind of projects. Good job!
Post
Topic
Board Hardware
Re: Avalon A7 announced
by
rev2
on 30/10/2017, 22:20:26 UTC
Ordered 5 pieces, 2 were DOA. Now I'll have to wait till they write me back. Hopefully they have good support  Cry
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [ICO] Ethereum dApp Builder, No Coding, Easy to Customize! - ICO Nov 9
by
rev2
on 30/10/2017, 22:17:03 UTC
Please some more details about pre-sale and funds allocation.
Post
Topic
Board Bitcoin Discussion
Re: How did you first hear about bitcoin?
by
rev2
on 30/10/2017, 22:10:37 UTC
First time 2012, some news report about a shady marketplace. Sparked my interest what this weird thing "bitcoin" is..
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BCC] Bitconnect Coin - Decentralized Cryptocurrency
by
rev2
on 30/10/2017, 11:15:26 UTC
Where can I find a up-to-date roadmap for this?
Post
Topic
Board Economics
Re: Which country would be the first to eliminate fiat and convert to crypto fully?
by
rev2
on 29/10/2017, 14:20:10 UTC
I would say Japan. Regarding technology they have the most balls to have this done.. European countries maybe Sweden, but I really don't see that happening very soon here..
Post
Topic
Board Speculation
Re: Difficulty jumps 21%
by
rev2
on 29/10/2017, 10:20:51 UTC
As some others have already stated, this is most probably because of the price increase. The higher the price, the profitabler mining becomes.

But yeah, 21% is quite a lot.
Post
Topic
Board Altcoin Discussion
Re: WARNING: PAJEET EthereumPlatinum SCAM! DO NOT FALL FOR THIS!
by
rev2
on 28/10/2017, 23:37:26 UTC
thanks for the heads up!