config.sample.yaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. chains:
  2. lightlink_pegasus:
  3. geth_rpc_addr: https://replicator.pegasus.lightlink.io/rpc/v1
  4. contract_addr: 0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a
  5. # Keeper configuration for the chain
  6. reveal_delay_blocks: 0
  7. gas_limit: 500000
  8. min_keeper_balance: 100000000000000000
  9. # Provider configuration
  10. # How much to charge in fees
  11. fee: 1500000000000000
  12. # Multiplier for the priority fee estimate, as a percentage (i.e., 100 = no change).
  13. # Defaults to 100 if the field is omitted.
  14. priority_fee_multiplier_pct: 100
  15. # Configuration for dynamic fees under high gas prices. The keeper will set
  16. # on-chain fees to make between [min_profit_pct, max_profit_pct] of the max callback
  17. # cost in profit per transaction.
  18. min_profit_pct: 0
  19. target_profit_pct: 20
  20. max_profit_pct: 100
  21. # Historical commitments -- delete this block for local development purposes
  22. commitments:
  23. # prettier-ignore
  24. - seed: [219,125,217,197,234,88,208,120,21,181,172,143,239,102,41,233,167,212,237,106,37,255,184,165,238,121,230,155,116,158,173,48]
  25. chain_length: 10000
  26. original_commitment_sequence_number: 104
  27. provider:
  28. uri: http://localhost:8080/
  29. chain_length: 100000
  30. chain_sample_interval: 10
  31. # An ethereum wallet address and private key. Generate with `cast wallet new`
  32. address: 0xADDRESS
  33. private_key:
  34. # For local development, you can hardcode the private key here
  35. value: 0xabcd
  36. # For production, you can store the private key in a file.
  37. # file: provider-key.txt
  38. # A 32 byte random value in hexadecimal
  39. # Generate with `openssl rand -hex 32`
  40. secret:
  41. # For local development, you can hardcode the value here
  42. value: abcd
  43. # For production, you can store the private key in a file.
  44. # file: secret.txt
  45. # Set this to the address of your keeper wallet if you would like the keeper wallet to
  46. # be able to withdraw fees from the contract.
  47. fee_manager: 0xADDRESS
  48. keeper:
  49. # An ethereum wallet address and private key for running the keeper service.
  50. # This does not have to be the same key as the provider's key above.
  51. # Generate with `cast wallet new`.
  52. # The keeper private key can be omitted to run the webservice without the keeper.
  53. private_key:
  54. # For local development, you can hardcode the private key here
  55. value: 0xabcd
  56. # For production, you can store the private key in a file.
  57. # file: keeper-key.txt