You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1001 B
22 lines
1001 B
#!/usr/bin/env python3 |
|
|
|
from jmbase import jmprint |
|
from jmclient import YieldGeneratorBasic, ygmain |
|
|
|
"""THESE SETTINGS CAN SIMPLY BE EDITED BY HAND IN THIS FILE: |
|
""" |
|
|
|
ordertype = 'reloffer' # [string, 'reloffer' or 'absoffer'], which fee type to actually use |
|
cjfee_a = 500 # [satoshis, any integer] / absolute offer fee you wish to receive for coinjoins (cj) |
|
cjfee_r = '0.00002' # [fraction, any str between 0-1] / relative offer fee you wish to receive based on a cj's amount |
|
txfee = 0 # [satoshis, any integer] / the transaction fee contribution you're adding to coinjoin transactions |
|
nickserv_password = '' |
|
minsize = 100000 # [satoshis, any integer] / minimum size of your cj offer. Lower cj amounts will be disregarded |
|
gaplimit = 6 |
|
|
|
if __name__ == "__main__": |
|
ygmain(YieldGeneratorBasic, txfee=txfee, cjfee_a=cjfee_a, |
|
cjfee_r=cjfee_r, ordertype=ordertype, |
|
nickserv_password=nickserv_password, |
|
minsize=minsize, gaplimit=gaplimit) |
|
jmprint('done', "success")
|
|
|