From 7217a0966d4258594e09ad8b33e84ed037e7691f Mon Sep 17 00:00:00 2001 From: moneromooo Date: Sun, 28 Dec 2014 11:04:20 +0000 Subject: [PATCH] Add a dashcoin spec module --- tipbot_dashcoin.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tipbot_dashcoin.py diff --git a/tipbot_dashcoin.py b/tipbot_dashcoin.py new file mode 100644 index 0000000..1b44278 --- /dev/null +++ b/tipbot_dashcoin.py @@ -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