bitcoin-atm

bitcoin atm for pyc inc.

git clone https://9o.is/git/bitcoin-atm.git

application.conf

(2862B)


      1 
      2 chimera {
      3   guid = "53f5121cd59af03d4de2111a"
      4   secret = "Di1Z&aD7cQ*SQn$GzGo@TVG1Net%$mgU"
      5   name = "Crispins"
      6   currency = "USD"
      7   userDb = "http://127.0.0.1:8080"
      8   
      9   ad {
     10     productName = "NameOfProduct"
     11     productMsg = "Have a glass of wine. Only available with bitcoin."
     12   }
     13   
     14   aws {
     15     accessKey = "AKIAJ6BOKSG2IE7CCNFA"
     16     secretKey = "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"
     17   }
     18   
     19   techsupport {
     20     phone = "(305) 735-1799"
     21     email = "techsupport@pycbitcoin.com"
     22   }
     23   
     24   twilio {
     25     sid = "ACd274394cab1dc918b9968a7eac6f3a86"
     26     token = "626b39c421774a7facdf4071ed996c32"
     27     phone = "+15675100344"
     28   }
     29   
     30   twitter = "https://twitter.com/pyc_inc"
     31   facebook = "https://www.facebook.com/pycinc"
     32   gplus = "https://plus.google.com/b/113129814840501272637/113129814840501272637/about"
     33 }
     34 
     35 mailer {
     36   smtp {
     37     host = "email-smtp.us-east-1.amazonaws.com"
     38     port = 587
     39     ssl = off
     40     tls = on
     41     socket-connection-timeout = 60 seconds
     42     socket-timeout = 60 seconds
     43     username = "AKIAJWWQZGDQNKKQ5R6A"
     44     password = "Aqkt/DTWFNxifk6B45+245JT0ZVHHusE2TwA+QdLhfue"
     45     
     46     from {
     47       name = "PYC"
     48       email = "noreply@pycbitcoin.com"
     49     }
     50   }
     51 }
     52 
     53 bitcoin {
     54 
     55   wallet = "BlockChain"
     56   ticker = "BitStamp"
     57   
     58   btcwallet {
     59     wallet-uri = "wss://localhost:8332/ws"
     60     rpc-user = "jcabrra"
     61     rpc-pass = "ZBrGj5RBGnip"
     62     wallet-pass = "GlwNO5dm7qa1"
     63     keystore-file = "src/main/resources/btcwallet_keystore.jks"
     64     keystore-pass = "keystorepass"
     65   }
     66   
     67   blockchain {
     68     wallet-uri = "https://rpc.blockchain.info"
     69     rpc-user = "c83ff98f-1208-4167-bb2f-48d7a9773194"
     70     rpc-pass = "Pe6MK1kqeZIa"
     71     wallet-pass = "GlwNO5dm7qa1"
     72   }
     73 }
     74 
     75 akka {
     76   #extensions = ["kamon.statsd.StatsD", "kamon.metric.Metrics"]
     77   loggers = ["akka.event.Logging$DefaultLogger", "inc.pyc.chimera.lycia.Logger"]
     78   loglevel = "DEBUG"
     79   
     80   remote {
     81     # do not log remote messages since we will be sending logs to Lycia
     82     log-sent-messages = off
     83     log-received-messages = off
     84   }
     85   
     86   actor {
     87     debug {
     88       fsm = on
     89     }
     90   }
     91   
     92   log-dead-letters = off
     93   log-dead-letters-during-shutdown = off
     94 }
     95 
     96 
     97 kamon {
     98   metrics {
     99     filters = [
    100       {
    101         actor {
    102           includes = [ "*" ]
    103           excludes = []
    104         }
    105       },
    106       {
    107         trace {
    108           includes = [ "*" ]
    109           excludes = []
    110         }
    111       }
    112     ]
    113   }
    114   
    115   trace {
    116   	ask-pattern-tracing = true
    117   }
    118   
    119   weaver {
    120     verbose = false
    121     debug = false
    122     showWeaveInfo = false
    123     showWarn = false
    124   }
    125   
    126   statsd {
    127     
    128     hostname = "54.88.126.106"
    129     port = 8125
    130     flush-interval = 1 second
    131     max-packet-size = 1024 bytes
    132     report-system-metrics = true
    133 
    134 
    135     includes {
    136       actor      =  [ "*" ]
    137       trace      =  [ "*" ]
    138       dispatcher =  [ "*" ]
    139     }
    140     
    141     simple-metric-key-generator {
    142       application = "chimera"
    143     }
    144   }
    145 }