Advertisement
Guest User

Untitled

a guest
Sep 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.61 KB | None | 0 0
  1. ChainID: 'default'
  2. RegistryVersion: 2
  3. LogDestination: 'file://loom2.log'
  4. LoomLogLevel: 'debug'
  5. ContractLogLevel: 'debug'
  6. BlockchainLogLevel: 'error'
  7. EVMAccountsEnabled: true
  8. TransferGateway:
  9.   # Enables the Transfer Gateway Go contract, must be the same on all nodes.
  10.   ContractEnabled: true
  11.   # Enables the in-process Transfer Gateway Oracle.
  12.   OracleEnabled: true
  13.   # NOTE: Ganache seems to drop websocket connections after a few seconds of inactivity, when
  14.   #       running the tests with the Oracle running out of process the Ganache websocket connection
  15.   #       often times out while the tests are waiting for the Oracle to do something. So better to
  16.   #       use the HTTP endpoint for testing.
  17.   EthereumURI: 'http://ropsten.infura.io/v3/d44c093bfa5845a98b63c4af54c7bf9a' #http://159.89.25.195:8545'
  18.   MainnetContractHexAddress: '0x65d50A9478e5FD68D775A94754190DB171585906'
  19.   MainnetPrivateKeyPath: 'oracle_eth_priv.key'
  20.   DAppChainPrivateKeyPath: 'oracle_priv.key'
  21.   DAppChainReadURI: 'http://localhost:46658/query'
  22.   DAppChainWriteURI: 'http://localhost:46658/rpc'
  23.   # Websocket URI that should be used to subscribe to DAppChain events (only used for tests atm).
  24.   DAppChainEventsURI: 'ws://localhost:46658/queryws'
  25.   # These control how often the Oracle will poll the blockchains for events.
  26.   DAppChainPollInterval: 1 # seconds
  27.   MainnetPollInterval: 1 # seconds
  28.   OracleLogLevel: 'debug'
  29.   OracleLogDestination: 'file://oracle.log'
  30.   # Number of seconds to wait before starting the Oracle.
  31.   OracleStartupDelay: 5
  32.   # Number of seconds to wait between reconnection attempts.
  33.   OracleReconnectInterval: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement