depolymerization

wire gateway for Bitcoin/Ethereum
Log | Files | Refs | Submodules | README | LICENSE

depolymerizer-bitcoin.conf (2120B)


      1 [depolymerizer-bitcoin]
      2 # Bitcoin wallet address to advertise
      3 WALLET =
      4 
      5 # Legal entity that is associated with the Bitcoin wallet
      6 NAME = 
      7 
      8 [depolymerizer-bitcoin-worker]
      9 # Name of the wallet to sync
     10 WALLET_NAME = 
     11 
     12 # Password of the encrypted wallet
     13 PASSWORD = 
     14 
     15 # Number of blocks to consider a transactions durable
     16 CONFIRMATION = 6
     17 
     18 # An additional fee to deduce from the bounced amount
     19 # BOUNCE_FEE = BTC:0
     20 
     21 # Number of worker's loops before worker shutdown (0 means never)
     22 LIFETIME = 0
     23 
     24 # Delay in seconds before bumping an unconfirmed transaction fee (0 means never)
     25 BUMP_DELAY = 0
     26 
     27 # RPC server address
     28 RPC_BIND = 127.0.0.1:8332
     29 
     30 # RPC authentication scheme, this can either can be basic or cookie
     31 RPC_AUTH_METHOD = cookie
     32 
     33 # Path to the bitcoind cookie file
     34 RPC_COOKIE_FILE = $HOME/.bitcoin/.cookie
     35 
     36 # User name for basic authentication scheme
     37 # RPC_USERNAME =
     38 
     39 # Password for basic authentication scheme
     40 # RPC_PASSWORD =
     41   
     42 [depolymerizer-bitcoin-httpd]
     43 # How "depolymerizer-bitcoin serve" serves its API, this can either be tcp or unix
     44 SERVE = tcp
     45 
     46 # Port on which the HTTP server listens, e.g. 9967. Only used if SERVE is tcp.
     47 PORT = 8080
     48 
     49 # Which IP address should we bind to?  E.g. ``127.0.0.1`` or ``::1``for loopback. Only used if SERVE is tcp.
     50 BIND_TO = 0.0.0.0
     51 
     52 # Which unix domain path should we bind to? Only used if SERVE is unix.
     53 # UNIXPATH = depolymerizer-bitcoin.sock
     54 
     55 # What should be the file access permissions for UNIXPATH? Only used if SERVE is unix.
     56 # UNIXPATH_MODE = 660
     57 
     58 # Number of requests to serve before server shutdown (0 means never)
     59 LIFETIME = 0
     60 
     61 [depolymerizer-bitcoin-httpd-wire-gateway-api]
     62 # Whether to serve the Wire Gateway API
     63 ENABLED = NO
     64 
     65 # Authentication scheme, this can either can be basic, bearer or none.
     66 AUTH_METHOD = bearer
     67 
     68 # User name for basic authentication scheme
     69 # USERNAME =
     70 
     71 # Password for basic authentication scheme
     72 # PASSWORD =
     73 
     74 # Token for bearer authentication scheme
     75 TOKEN =
     76 
     77 
     78 [depolymerizer-bitcoindb-postgres]
     79 # DB connection string
     80 CONFIG = postgres:///depolymerizer-bitcoin
     81 
     82 # Where are the SQL files to setup our tables?
     83 SQL_DIR = ${DATADIR}/sql/