github.com/ethereum-optimism/optimism@v1.7.2/packages/chain-mon/.env.example (about)

     1  ###############################################################################
     2  #                               ↓ balance-mon ↓                               #
     3  ###############################################################################
     4  
     5  # RPC pointing to network to monitor balances on
     6  BALANCE_MON__RPC=
     7  
     8  # JSON array in the format [{ "address": <address>, "nickname": <nickname> }, ... ]
     9  BALANCE_MON__ACCOUNTS=
    10  
    11  
    12  ###############################################################################
    13  #                              ↓ multisig-mon ↓                               #
    14  ###############################################################################
    15  
    16  # RPC pointing to network to monitor safe nonces on
    17  MULTISIG_MON__RPC=
    18  
    19  # JSON array in the format [{ "address": <address>, "nickname": <nickname> }, ... ]
    20  MULTISIG_MON__ACCOUNTS=
    21  
    22  
    23  ###############################################################################
    24  #                               ↓ wallet-mon ↓                                #
    25  ###############################################################################
    26  
    27  # RPC pointing to network to monitor
    28  WALLET_MON__RPC=
    29  
    30  # The block number to start monitoring from
    31  # Defaults to the first bedrock block if unset.
    32  WALLET_MON__START_BLOCK_NUMBER=
    33  
    34  ###############################################################################
    35  #                               ↓ drippie-mon ↓                               #
    36  ###############################################################################
    37  
    38  # RPC pointing to network where Drippie is deployed
    39  DRIPPIE_MON__RPC=
    40  
    41  # Address of the Drippie contract
    42  DRIPPIE_MON__DRIPPIE_ADDRESS=
    43  
    44  ###############################################################################
    45  #                                  ↓  wd-mon  ↓                               #
    46  ###############################################################################
    47  
    48  # RPCs pointing to a base chain and Optimism chain
    49  TWO_STEP_MONITOR__L1_RPC_PROVIDER=
    50  TWO_STEP_MONITOR__L2_RPC_PROVIDER=
    51  
    52  # The block number to start monitoring from
    53  TWO_STEP_MONITOR__START_BLOCK_NUMBER=
    54  
    55  ###############################################################################
    56  #                               ↓  fault-mon  ↓                               #
    57  ###############################################################################
    58  
    59  #  --l1rpcprovider                Provider for interacting with L1 (env: FAULT_DETECTOR__L1_RPC_PROVIDER)
    60  FAULT_DETECTOR__L1_RPC_PROVIDER=
    61  #  --l2rpcprovider                Provider for interacting with L2 (env: FAULT_DETECTOR__L2_RPC_PROVIDER)
    62  FAULT_DETECTOR__L2_RPC_PROVIDER=
    63  #  --bedrock                      Whether or not the service is running against a Bedrock chain (env: FAULT_DETECTOR__BEDROCK)
    64  BEDROCK=true
    65  
    66  ###############################################################################
    67  #                        ↓ initialized-upgraded-mon ↓                         #
    68  ###############################################################################
    69  
    70  # RPC pointing to network to monitor
    71  INITIALIZED_UPGRADED_MON__RPC=
    72  
    73  # The block number to start monitoring from
    74  # Defaults to the first bedrock block if unset.
    75  INITIALIZED_UPGRADED_MON__START_BLOCK_NUMBER=
    76  
    77  # JSON array in the format [{ "label": <string>, "address": <address> }, ... ]
    78  INITIALIZED_UPGRADED_MON__CONTRACTS=
    79  
    80  # Optional Params
    81  
    82  #  --startbatchindex              Batch index to start checking from. For bedrock chains, this is the L2 height to start from (env: FAULT_DETECTOR__START_BATCH_INDEX)
    83  # FAULT_DETECTOR__START_BATCH_INDEX=
    84  #  --optimismportaladdress        [Custom Bedrock Chains] Deployed OptimismPortal contract address. Used to retrieve necessary info for output verification  (env: FAULT_DETECTOR__OPTIMISM_PORTAL_ADDRESS)
    85  # FAULT_DETECTOR__OPTIMISM_PORTAL_ADDRESS=
    86  #  --statecommitmentchainaddress  [Custom Legacy Chains] Deployed StateCommitmentChain contract address. Used to fetch necessary info for output verification. (env: FAULT_DETECTOR__STATE_COMMITMENT_CHAIN_ADDRESS)
    87  # FAULT_DETECTOR__STATE_COMMITMENT_CHAIN_ADDRESS=
    88  #  --loopintervalms               Loop interval in milliseconds, only applies if service is set to loop (env: FAULT_DETECTOR__LOOP_INTERVAL_MS)
    89  # FAULT_DETECTOR__LOOP_INTERVAL_MS=
    90  #  --port                         Port for the app server (env: FAULT_DETECTOR__PORT)
    91  # FAULT_DETECTOR__PORT=
    92  #  --hostname                     Hostname for the app server (env: FAULT_DETECTOR__HOSTNAME)
    93  # FAULT_DETECTOR__HOSTNAME=
    94  #  --loglevel                     Log level (env: FAULT_DETECTOR__LOG_LEVEL)
    95  # FAULT_DETECTOR__LOG_LEVEL=