Add a dashcoin spec module

This commit is contained in:
moneromooo 2014-12-28 11:04:20 +00:00
parent 025aff333d
commit 7217a0966d
1 changed files with 18 additions and 0 deletions

18
tipbot_dashcoin.py Normal file
View File

@ -0,0 +1,18 @@
#!/bin/python
#
# Cryptonote tipbot - dashcoin setup
# Copyright 2014 moneromooo
#
# The Cryptonote tipbot is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
coin_name="Dashcoin"
coin=1e8
coin_denominations = []
address_length = [96] # min/max size of addresses
address_prefix = ['D'] # allowed prefixes of addresses
min_withdrawal_fee = 0.01
web_wallet_url = None