2025-03-19 14:52:13 +00:00
|
|
|
from electrum.simple_config import ConfigVar, SimpleConfig
|
|
|
|
|
|
2025-04-11 18:24:59 +02:00
|
|
|
SimpleConfig.SWAPSERVER_PORT = ConfigVar('plugins.swapserver.port', default=None, type_=int, plugin=__name__)
|
|
|
|
|
SimpleConfig.SWAPSERVER_FEE_MILLIONTHS = ConfigVar('plugins.swapserver.fee_millionths', default=5000, type_=int, plugin=__name__)
|
|
|
|
|
SimpleConfig.SWAPSERVER_ANN_POW_NONCE = ConfigVar('plugins.swapserver.ann_pow_nonce', default=0, type_=int, plugin=__name__)
|