Bitcoin Forum
June 22, 2024, 01:23:28 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 »  All
  Print  
Author Topic: [ANN] [KMDICE] [dPoW] KMDice - First minable decentralized dice game.  (Read 22078 times)
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
October 27, 2018, 05:47:44 PM
 #41


If I mine to my KMD address is there some guidance on how to see and transfer coins?


Just import your KMD address private key to KMDICE wallet. Its available in Agama now so you should be able to do it pretty easily.
and1_89
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 27, 2018, 11:12:46 PM
 #42

Selling KMDICE@0.35kmd
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
October 28, 2018, 12:18:36 PM
 #43

So that everyone knows, we have a bounty for best instructional youtube video on how to play dice:

layer1gfx
Legendary
*
Offline Offline

Activity: 2128
Merit: 1109

Graphic Design & Translation - BTC accepted here!


View Profile WWW
October 28, 2018, 01:02:25 PM
 #44

nice project, will keep an eye on it. a german translation of your ANN thread could be posted in the subforum if you like.
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 02, 2018, 05:53:14 PM
 #45

http://kmdice.bet/

Here is a little website
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 06, 2018, 11:16:36 AM
 #46

New snapshot done at block 27000. This snapshot will be airdroped 1:1 once the dice code is fixed and new chain is done.
Decker
Member
**
Offline Offline

Activity: 119
Merit: 61


View Profile
November 09, 2018, 09:57:18 PM
 #47


siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 11, 2018, 02:39:32 PM
 #48

GOOD NEWS EVERYONE!


KMDICE is back!!!

The code now is about 10000x more efficient!


BET AWAY ALL YOU WANT!
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 11, 2018, 06:53:53 PM
Last edit: November 11, 2018, 07:06:09 PM by siulynotb
 #49

100K transactions in the last 24 hours!



https://www.dexstats.info/blocktivity.php?chain=KMDICE


siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 17, 2018, 01:46:21 PM
 #50

We want to proudly announce that KMDICE has been added to digitalprice.io for BTC and KMD pairs: https://digitalprice.io/order?url=kmdice-kmd
toogoody
Jr. Member
*
Offline Offline

Activity: 588
Merit: 1


View Profile
November 28, 2018, 09:36:53 PM
 #51

List of KMDice mining pools with live stats & hashrate distribution

https://miningpoolstats.stream/kmdice
cryptochristo
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
November 29, 2018, 04:37:34 AM
 #52

What do I use this token for? Where are the dice games?
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
November 29, 2018, 11:10:06 AM
 #53

We want to proudly announce that KMDICE has been added to digitalprice.io for BTC and KMD pairs: https://digitalprice.io/order?url=kmdice-kmd

unfortunately no one buys it (

ID: 45043
price:0.00000240 BTC
Amount 1,103.59149353 BZC

maybe someone wants to buy?


The coin just got listed a few days ago. The exchange is also fairly new and has little volume. The most active trading pair so far is KMDICE/KMD.

Also, dice game gui is still in the works and so far it only can be played using command line.
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
December 02, 2018, 01:36:43 PM
 #54

For anyone interested in playing dice from command line in a automated way i share this script that will repeat a bet with the parameters specified when executed.

You will need to sync the KMDICE chain and start it using the -pubkey= parameter. Once the chain is synced you can create a file called ./dicebet give executable privilege and run it with the parameters ./dicebet amount odds

example:
Code:
$ ./dicebet 0.1 5


Code:
#!/bin/bash 

while true; do
sleep 2
echo "KMDICE"

cd ~/komodo/src
getinfo=$(./komodo-cli -ac_name=KMDICE getinfo)
balance=$(echo $getinfo | jq -r '.balance')
echo 'Wallet balance:' $balance
entropy=$(./komodo-cli -ac_name=KMDICE diceinfo 5be49570c56d036abb08b6d084da93a8a86f58fc48db4a1086be95540d752d6f)
entropytx=$(echo $entropy | jq -r '.entropytxs')
echo 'Entropy txs available:' $entropytx
bet=$(./komodo-cli -ac_name=KMDICE dicebet KMDICE 5be49570c56d036abb08b6d084da93a8a86f58fc48db4a1086be95540d752d6f  $1 $2)
bet_hex=$(echo $bet | jq -r '.hex')
bet_txid=$(./komodo-cli -ac_name=KMDICE sendrawtransaction $bet_hex)
echo $bet_txid
echo $bet_txid >> ~/bets.txt
        echo "$bet_txid" > ~/bettxid.txt
echo "Waiting bet tx to confirm"
while true; do
bet_status=$(komodo-cli -ac_name=KMDICE dicestatus KMDICE 5be49570c56d036abb08b6d084da93a8a86f58fc48db4a1086be95540d752d6f $bet_txid)
betStatus_result=$(echo $bet_status | jq -r '.status')
betAmount_result=$(echo $bet_status | jq -r '.won')
if [[ ! $betStatus_result =~ "bet still pending" ]]; then
break
fi
sleep .5
done
if [ "$betAmount_result" != "null" ]; then echo $betAmount_result
fi
echo $betStatus_result
echo $betStatus_result >> ~/bets.txt
done


If someone is interested in knowing more, dont hesitate to ask.

A complete wallet plus dice game gui is in the works and we hope to have it available for public use on Q1 2019. Thanks for your attention and support.
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
January 15, 2019, 12:54:21 AM
 #55

Our new website is out:

http://kmdice.bet/
stoat
Sr. Member
****
Offline Offline

Activity: 686
Merit: 270


FREEDOM RESERVE


View Profile WWW
January 15, 2019, 01:21:40 AM
 #56

Our new website is out:

http://kmdice.bet/

Nice site. Not quite finished.

FREEDOMRESERVEFree currency for the British Isles
Visit our website for more info

<-- Click here!
FREEDOMRESERVE By the People and for the People
siulynotb (OP)
Member
**
Offline Offline

Activity: 79
Merit: 54


View Profile
January 15, 2019, 09:15:36 AM
 #57

Our new website is out:

http://kmdice.bet/

Nice site. Not quite finished.

A work in progress.
Cryptofist
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
February 20, 2019, 05:55:49 AM
 #58


Website is looking great! I'm looking forward to testing the GUI as soon as possible. Are there any other upcoming plans here for KMDice ?
prigo
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
February 25, 2019, 09:12:20 AM
 #59

any well explained link how to play and install the game on windows ? too many commands for installing game on era when it should be just click "next" to install and plug and play .


minerja
Sr. Member
****
Offline Offline

Activity: 1248
Merit: 297


View Profile
February 25, 2019, 10:01:06 AM
 #60

Hi,

Which version of Equihash please?
J
Pages: « 1 2 [3] 4 »  All
  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!