2014-12-29 17:08:13 +00:00
|
|
|
#!/bin/python
|
|
|
|
#
|
|
|
|
# Cryptonote tipbot - coins specifications
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
coinspecs = {
|
|
|
|
"monero": {
|
|
|
|
"name": "Monero",
|
2015-02-09 23:52:32 +00:00
|
|
|
"symbol": "XMR",
|
2014-12-29 17:08:13 +00:00
|
|
|
"atomic_units": 1e12,
|
|
|
|
"denominations": [[1000000, 1, "piconero"], [1000000000, 1e6, "micronero"], [1000000000000, 1e9, "millinero"]],
|
2016-06-08 20:22:00 +00:00
|
|
|
"address_length": [[95, 95], [106, 106]], # min/max size of addresses
|
2014-12-29 17:08:13 +00:00
|
|
|
"address_prefix": ['4', '9'], # allowed prefixes of addresses
|
|
|
|
"min_withdrawal_fee": 10000000000,
|
|
|
|
"web_wallet_url": "https://mymonero.com/", # None is there's none
|
|
|
|
},
|
|
|
|
"ducknote": {
|
|
|
|
"name": "Darknote",
|
2015-02-09 23:52:32 +00:00
|
|
|
"symbol": "XDN",
|
2014-12-29 17:08:13 +00:00
|
|
|
"atomic_units": 1e8,
|
|
|
|
"denominations": [],
|
|
|
|
"address_length": [95, 98], # min/max size of addresses
|
|
|
|
"address_prefix": ['dd'], # allowed prefixes of addresses
|
|
|
|
"min_withdrawal_fee": 1000000,
|
|
|
|
"web_wallet_url": None,
|
|
|
|
},
|
|
|
|
"dashcoin": {
|
|
|
|
"name": "Dashcoin",
|
2015-02-09 23:52:32 +00:00
|
|
|
"symbol": "DSH",
|
2014-12-29 17:08:13 +00:00
|
|
|
"atomic_units": 1e8,
|
|
|
|
"denominations": [],
|
|
|
|
"address_length": [96], # min/max size of addresses
|
|
|
|
"address_prefix": ['D'], # allowed prefixes of addresses
|
|
|
|
"min_withdrawal_fee": 1000000,
|
|
|
|
"web_wallet_url": None,
|
2015-02-12 22:32:53 +00:00
|
|
|
},
|
|
|
|
"monerito": {
|
|
|
|
"name": "Monerito",
|
|
|
|
"symbol": "XMR",
|
|
|
|
"atomic_units": 1e6,
|
|
|
|
"denominations": [[1000000000000000000, 1000000, "moneritos"]],
|
|
|
|
"address_length": [95, 95], # min/max size of addresses
|
|
|
|
"address_prefix": ['4', '9'], # allowed prefixes of addresses
|
|
|
|
"min_withdrawal_fee": 10000000000,
|
|
|
|
"web_wallet_url": "https://mymonero.com/", # None is there's none
|
|
|
|
},
|
2014-12-29 17:08:13 +00:00
|
|
|
}
|
|
|
|
|