GlobalConstants.sol 361 Bytes
Newer Older
1 2 3
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

4 5
/// @title GlobalConstants
/// @notice A set of constants.
6
contract GlobalConstants {
7
    /// @notice Mainnet chain id.
8 9
    uint256 constant MAINNET = 1;

10
    /// @notice Goerli chain id.
11 12
    uint256 constant GOERLI = 5;

13
    /// @notice Optimism Goerli chain id.
14 15
    uint256 constant OP_GOERLI = 420;
}