Bitcoin Forum
May 06, 2024, 07:01:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 ... 212 »
  Print  
Author Topic: [OLD][CSC]CasinoCoin ♠ A Digital Currency For The Regulated Online Gaming Sector  (Read 343061 times)
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
April 24, 2015, 04:07:42 PM
 #1061

I wonder what's happened to user casinocoin? Undecided I see he's been active, but no words from him.

he's probably busy with some IRL  stuff

Moving to Puerto Rico...
1715022097
Hero Member
*
Offline Offline

Posts: 1715022097

View Profile Personal Message (Offline)

Ignore
1715022097
Reply with quote  #2

1715022097
Report to moderator
1715022097
Hero Member
*
Offline Offline

Posts: 1715022097

View Profile Personal Message (Offline)

Ignore
1715022097
Reply with quote  #2

1715022097
Report to moderator
1715022097
Hero Member
*
Offline Offline

Posts: 1715022097

View Profile Personal Message (Offline)

Ignore
1715022097
Reply with quote  #2

1715022097
Report to moderator
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715022097
Hero Member
*
Offline Offline

Posts: 1715022097

View Profile Personal Message (Offline)

Ignore
1715022097
Reply with quote  #2

1715022097
Report to moderator
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
April 28, 2015, 10:03:06 AM
 #1062

Anyone here try burstcoin mining? Seems novel.

Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
April 29, 2015, 08:59:00 AM
 #1063

News article from today:
http://www.newsbtc.com/2015/04/28/bitcoin-attracts-tax-haven-jurisdictions/

The online gambling industry is currently one of the industries raising more profits in the online sector. The idea of using virtual currencies to fund online accounts has been growing and the gambling industry doesn’t want to miss the train. Much like the gambling industry did before the digital currency is now attracting a lot of tax haven jurisdictions.

Digital currency attracted the interest of many administrations in various jurisdictions.

The Isle of Man is one of the finest examples. The Isle of Man, or Mann, is a self-governing British Crown dependency located in the Irish Sea between the islands of Great Britain and Ireland. The United Kingdom is responsible for representing the island in international forums while the island’s own parliament and government have competence over all domestic matters. Mann is widely known to be a safe haven for the Gambling industry. The online gambling industry has grown since 2001 to $20bn in annual revenue. The latest Ernst & Young research points out to the fact that online gambling accounted for 8% of the national income on the Isle in 2010, providing nearly 700 jobs. Now, Mann authorities are seeking to provide a safe haven for digital currency projects and other related businesses as well.

With this move, Mann authorities intend to have a similar economic boom in its early embrace of the online gambling and electronic gaming industry. Many other Tax-haven jurisdictions are certainly soon to follow!

The Isle of Man’s head of operations for digital development, Brian Donegan stated the Isle of Man’s government is still moving ahead to put measures in place to help the digital currency industry thrive. Donegan believes bitcoin is an opportunity and feels that support could achieve similar growth, given the combination of resources the jurisdiction offers.

While Belgium and the United Kingdom have adopted a more progressive attitude to bitcoin trade, other countries, including Estonia and Poland introduced 20% and 23% VAT respectively on digital currency-related trade activities.

Spain is also another region where the bitcoin industry is still waiting for the confirmation that digital currencies will be Value Added Tax-free. The application of VAT to bitcoin services is still very unclear in the European Union. If confirmed, the exemption will open Spain’s doors as a safe haven to the digital currency industry.



Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 05, 2015, 10:19:46 AM
 #1064

Hi everyone,
I've finished building a docker container that comes with the following features:

1. based on Debian:wheezy
2. current casinocoind wallet v1.3
3. fully configured with monit to ensure the service stays running
4. on first run it will generate a unique rpc user and rpc password
5. comes bootstrapped with approximately 91k blocks for faster sync
6. starting the container starts monit and casinocoind

In addition to publishing the docker container to docker-registry, I will also post the Dockerfile here for your review and if you would like, you can compile your own container. Wink

Making Casinocoin available in a docker container means that a user can download it and have a running, fully configured and bootstrapped instance of the wallet in a matter of minutes. For integration, testing, etc - this should prove to be a very useful tool.

This is the first container I've published publicly. If anyone finds any issues with the container or the instructions, please tell me, so i can correct them. I'm pushing the container now while I post this. It should be larger than 1Gb. SO, it may be an hour or so until it's available to pull.

Enjoy!

Goldseal Wink

Resources:

Casinocoin Docker Container: https://registry.hub.docker.com/u/qwerty55/casinocoin/

Docker Application: https://www.docker.com/

Docker Hub (registry): https://registry.hub.docker.com/


Instructions:

1. Install Docker on your server or workstation: https://docs.docker.com/installation/

2. Execute:
   docker run -i -t qwerty55/casinocoin:v1.3.0

3. Once attached to the container, casinocoin should take about 1 minute to read the blocks and be available for use.

4. Try out the following:
  monit status
  casinocoind getinfo


If anyone is interested in makign their own docker container form scratch, here's the dockerfile that I created. This would go into a new directory such as: /usr/src/tmp/Dockerfile and then you should copy .casinocoin from a working installation into /usr/src/tmp/casinocoin without the DOT. Finally, to prepare that directory, remove the wallet.dat and remove the rpcuser and rpcpassword entries from the config. If you do not wish to bootstrap the docker container with blocks, then strip out everything from "ADD casinocoin casinocoin" down. Wink

Once the directory and Dockerfile are complete, just run the following to build and run it locally:

cd /usr/src/tmp && docker build -t casinocoin .
docker run -t -i casinocoin


Dockerfile:


Code:
FROM debian:wheezy

# File Author / Maintainer
MAINTAINER qwerty55

RUN apt-get update
RUN apt-get install time -y
RUN time apt-get upgrade -y
RUN time apt-get install -y git build-essential libssl-dev libdb5.1-dev libdb5.1++-dev libboost-all-dev libqrencode-dev
WORKDIR /usr/src
RUN git clone https://github.com/casinocoin/casinocoin.git
WORKDIR /usr/src/casinocoin/src
RUN make -f makefile.unix -e PIE=1
RUN mv casinocoind /usr/bin
RUN chmod 755 /usr/bin/casinocoind
WORKDIR /root/
RUN rm -rf /usr/src/casinocoin
RUN apt-get remove build-essential -y
RUN apt-get install monit uuid-runtime apt-utils -y
RUN echo "check process casinocoind with pidfile /var/run/casinocoind.pid" > /etc/monit/conf.d/casinocoin
RUN echo "   start program = \"/usr/bin/casinocoind -pid=/var/run/casinocoind.pid -datadir=/root/.casinocoin --daemon\"" >> /etc/monit/conf.d/casinocoin
RUN echo "   stop  program = \"/usr/bin/casinocoind stop\"" >> /etc/monit/conf.d/casinocoin
RUN echo "   if failed port 57950 for 3 cycles then restart" >> /etc/monit/conf.d/casinocoin
RUN echo "   if 50 restarts within 50 cycles then timeout" >> /etc/monit/conf.d/casinocoin
RUN echo "set daemon 600" > /etc/monit/monitrc
RUN echo "set mailserver localhost" >> /etc/monit/monitrc
RUN echo "set logfile /var/log/monit.log" >> /etc/monit/monitrc
RUN echo "set idfile /var/lib/monit/id" >> /etc/monit/monitrc
RUN echo "set statefile /var/lib/monit/state" >> /etc/monit/monitrc
RUN echo "set eventqueue" >> /etc/monit/monitrc
RUN echo "  basedir /var/lib/monit/events" >> /etc/monit/monitrc
RUN echo "  slots 100" >> /etc/monit/monitrc
RUN echo "set httpd port 2812 and" >> /etc/monit/monitrc
RUN echo "  use address localhost" >> /etc/monit/monitrc
RUN echo "  allow localhost" >> /etc/monit/monitrc
RUN echo "set alert root@localhost" >> /etc/monit/monitrc
RUN echo "include /etc/monit/conf.d/*" >> /etc/monit/monitrc
RUN echo "START=yes" > /etc/default/monit
RUN touch /var/lib/monit/state
RUN chmod 777 /var/lib/monit/state
RUN update-rc.d monit defaults add
WORKDIR ~/
ADD casinocoin casinocoin
RUN mv casinocoin /root/.casinocoin
RUN echo 'echo "rpcuser=`uuidgen`" >> ~/.casinocoin/casinocoin.conf' > /root/cherrypop
RUN echo 'echo "rpcpassword=`uuidgen`" >> ~/.casinocoin/casinocoin.conf' >> /root/cherrypop
RUN chmod 755 /root/cherrypop
RUN echo "/root/cherrypop" >> /etc/bash.bashrc
RUN echo "rm -f /root/cherrypop" >> /etc/bash.bashrc
RUN echo "/usr/bin/casinocoind -pid=/var/run/casinocoind.pid -datadir=/root/.casinocoin --daemon" >> /etc/bash.bashrc
RUN echo "/etc/init.d/monit start" >> /etc/bash.bashrc
RUN echo "sed -i '/cherrypop/d' /etc/bash.bashrc" >> /etc/bash.bashrc


Moving to Puerto Rico...
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
May 05, 2015, 07:32:12 PM
Last edit: May 05, 2015, 07:44:59 PM by veertje
 #1065

Nice Goldseal  Smiley Can I just install this on my pc where my wallet is and make a .bat file to run with "docker run -i -t qwerty55/casinocoin:v1.3.0" in it?

It is a one time attachement to the docker?

--------------------------------------------------------
By the way: when I have sent coins, often the wallet stalls for half a minute after hitting the send-button. Is that because of the 1 GB storage in Appdata/roaming/casinocoin folder? Does it help with a docker do you think?

I have f.e. a Guldencoin wallet and no problems there. (293 MB storage in Appdata/roaming/Guldencoin)

Keep up the good work!
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 05, 2015, 11:07:29 PM
 #1066

Nice Goldseal  Smiley Can I just install this on my pc where my wallet is and make a .bat file to run with "docker run -i -t qwerty55/casinocoin:v1.3.0" in it?

It is a one time attachement to the docker?

--------------------------------------------------------
By the way: when I have sent coins, often the wallet stalls for half a minute after hitting the send-button. Is that because of the 1 GB storage in Appdata/roaming/casinocoin folder? Does it help with a docker do you think?

I have f.e. a Guldencoin wallet and no problems there. (293 MB storage in Appdata/roaming/Guldencoin)

Keep up the good work!


As a fair warning, if you want to persist a specific key, you may want to commit the image or remove the cherrypop  script and commit the image. If you want to mount your wallet.dat form the host, you should ad a COPY directive to the docker file and remove everything from cherrypop down and rebuild the image.  Something like:

COPY c:\path to wallet\wallet.dat /root/.casinocoin/wallet.dat



 In the current configuration the key may change when the container is booted if you don't don't modify it and save it. So, make sure you back up the wallet.dat when this image comes up or commit the image at the very least.

Other than that, give it a shot and give me some feedback on how you'd like it modified. I can make changes.


Pretty cool though. I tested yesterday and I could get a bootstrapped, running client from nothing after 5 min of downloading from Dockerhub. If you want to adapt it for use in a web application, it's really flexible.

Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 06, 2015, 11:28:37 PM
 #1067

Nice Goldseal  Smiley Can I just install this on my pc where my wallet is and make a .bat file to run with "docker run -i -t qwerty55/casinocoin:v1.3.0" in it?

It is a one time attachement to the docker?

--------------------------------------------------------
By the way: when I have sent coins, often the wallet stalls for half a minute after hitting the send-button. Is that because of the 1 GB storage in Appdata/roaming/casinocoin folder? Does it help with a docker do you think?

I have f.e. a Guldencoin wallet and no problems there. (293 MB storage in Appdata/roaming/Guldencoin)

Keep up the good work!



What is this stalling issue? Does this happen in the windows GUI?

Moving to Puerto Rico...
paulkt
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
May 07, 2015, 04:26:39 AM
 #1068

Just noticed that Cryptsy has not updated Casinocoin info. Here is what showed up:

   Currency Name: CasinoCoin
Currency Code: CSC
Algorithm: Scrypt
Difficulty: 123.15082470
Network Hashrate: 167.31Mbps
USD Value: $0.0006157634 each (Estimated)
CasinoCoin Description

Buy your Casino coin on the worlds premier Bitcoin Exchange.

CasinoCoin is an open source, peer-to-peer digital currency specifically designed for online casino gaming.

As a decentralized crypto currency, CasinoCoin offers the solution to help fill this void. Consider CasinoCoin as a universal casino chip that is easily transferable between online casino gaming applications, exchanges and peers. Imagine using CasinoCoin at your favorite online poker sites, then instantly transfer your winnings over to your favorite online casino to play Blackjack. How about a friendly wager over a game of chess? This is all possible with CasinoCoin.

CasinoCoin is an open source, peer-to-peer digital currency specifically designed for online casino gaming. It is a platform independent crypto currency that is easily transferable between gaming applications, exchanges and peers. CasinoCoin can simply be summed up as universal casino chips.

Mission Statement
Central to the goal of CasinoCoin is to help make online casino gaming accessible to all by removing barriers. The success and strength of CasinoCoin rely on three main pillars: active and talented developers, fostering community, and trust through transparency.

CasinoCoin Specifications

proof-of-work algorithm
30 second block time targets
336 million total coins
720 blocks to retarget difficulty
50 coins per block, halves every 3,153,600 blocks (~3 years)
fair launch, absolutely no premine
CasinoCoin Links

Source Code: GitHub

Block Explorer: Block Explorer

CasinoCoin Markets
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
May 07, 2015, 09:06:26 AM
 #1069

What is this stalling issue? Does this happen in the windows GUI?

I 've tried to install, but virtualbox wouldn't install here.

Hope someone else can test it.
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 07, 2015, 11:36:11 PM
 #1070

What is this stalling issue? Does this happen in the windows GUI?

I 've tried to install, but virtualbox wouldn't install here.

Hope someone else can test it.

Docker container works for you correct?

Moving to Puerto Rico...
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
May 08, 2015, 06:35:22 AM
Last edit: May 09, 2015, 08:53:47 AM by veertje
 #1071

What is this stalling issue? Does this happen in the windows GUI?

I 've tried to install, but virtualbox wouldn't install here.

Hope someone else can test it.

Docker container works for you correct?

I installed Docker only. When starting Boot2docker, the screen quits after some time. It only is starting initialising and then quits.
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 10, 2015, 12:18:19 AM
 #1072

What is this stalling issue? Does this happen in the windows GUI?

I 've tried to install, but virtualbox wouldn't install here.

Hope someone else can test it.

Docker container works for you correct?

I installed Docker only. When starting Boot2docker, the screen quits after some time. It only is starting initialising and then quits.

I've never used boot2docker. Although docker should be enough be itself.

Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 11, 2015, 09:31:15 AM
 #1073

lol. I love how someone is going out of their way to push this coin down on cryptsy. too funny.

Moving to Puerto Rico...
veertje
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


View Profile
May 11, 2015, 02:25:55 PM
 #1074

lol. I love how someone is going out of their way to push this coin down on cryptsy. too funny.

I buy every now and then a little. Good branding name!
Marec4
Sr. Member
****
Offline Offline

Activity: 417
Merit: 313



View Profile
May 12, 2015, 09:15:42 AM
 #1075

Same here. Would be great if someday some "Big Brand" Casino picks it up and starts using CasinoCoin.
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 18, 2015, 05:54:24 AM
 #1076

Same here. Would be great if someday some "Big Brand" Casino picks it up and starts using CasinoCoin.

It's just a matter of time. The coin is very stable and it's not going away. Wink


Moving to Puerto Rico...
Marec4
Sr. Member
****
Offline Offline

Activity: 417
Merit: 313



View Profile
May 19, 2015, 06:09:00 AM
Last edit: May 19, 2015, 06:19:28 AM by Marec4
 #1077

CasinoCoin showing positive trend in Coinwarz http://www.coinwarz.com/cryptocurrency. Currently in pos 17.

GoldSeal, can you add the docker container informatsion into CasinoCoin Reddit page. Also we should update the facebook page and maybe create Twitter page and update the pages constantly.
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 20, 2015, 11:58:40 PM
 #1078

CasinoCoin showing positive trend in Coinwarz http://www.coinwarz.com/cryptocurrency. Currently in pos 17.

GoldSeal, can you add the docker container informatsion into CasinoCoin Reddit page. Also we should update the facebook page and maybe create Twitter page and update the pages constantly.

I don't have access to make the change on reddit. probably best to msg casinocoin and ask him to make the change.


Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 21, 2015, 01:31:19 AM
 #1079

We need some people to put up more gambling sites. Anyone working on this?

Moving to Puerto Rico...
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
May 21, 2015, 05:38:11 AM
 #1080

volume has really picked up last few days on cryptsy. Hopefully it means we're shaking a mid-size holder form the tree and he'll be out soon where he can't continue creating persistent damage to the price of the coin. Looks like this account has been dumping some 700k+ coins last few days.

Moving to Puerto Rico...
Pages: « 1 ... 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 ... 212 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!