From 025aff333d23c6d95d69f0ec091de2e9cf3b8d31 Mon Sep 17 00:00:00 2001 From: moneromooo Date: Sun, 28 Dec 2014 10:57:33 +0000 Subject: [PATCH] Add a module for ducknote --- tipbot_ducknote.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tipbot_ducknote.py diff --git a/tipbot_ducknote.py b/tipbot_ducknote.py new file mode 100644 index 0000000..3923711 --- /dev/null +++ b/tipbot_ducknote.py @@ -0,0 +1,18 @@ +#!/bin/python +# +# Cryptonote tipbot - ducknote 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="Darknote" +coin=1e8 +coin_denominations = [] +address_length = [95, 98] # min/max size of addresses +address_prefix = ['dd'] # allowed prefixes of addresses +min_withdrawal_fee = 0.1 +web_wallet_url = None