Commit 6973a39c authored by Corey Rice's avatar Corey Rice

docs: Remove runtime target from docstrings

The run time target is captured by the folder structure of the contracts package
parent 12b153ab
...@@ -33,7 +33,6 @@ import { ...@@ -33,7 +33,6 @@ import {
* from L2 onto L1. In the event that a message sent from L1 to L2 is rejected for exceeding the L2 * from L2 onto L1. In the event that a message sent from L1 to L2 is rejected for exceeding the L2
* epoch gas limit, it can be resubmitted via this contract's replay function. * epoch gas limit, it can be resubmitted via this contract's replay function.
* *
* Runtime target: EVM
*/ */
contract L1CrossDomainMessenger is contract L1CrossDomainMessenger is
IL1CrossDomainMessenger, IL1CrossDomainMessenger,
......
...@@ -19,7 +19,6 @@ import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.s ...@@ -19,7 +19,6 @@ import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.s
* tokens that are in use on L2. It synchronizes a corresponding L2 Bridge, informing it of deposits * tokens that are in use on L2. It synchronizes a corresponding L2 Bridge, informing it of deposits
* and listening to it for newly finalized withdrawals. * and listening to it for newly finalized withdrawals.
* *
* Runtime target: EVM
*/ */
contract L1StandardBridge is IL1StandardBridge, CrossDomainEnabled { contract L1StandardBridge is IL1StandardBridge, CrossDomainEnabled {
using SafeERC20 for IERC20; using SafeERC20 for IERC20;
......
...@@ -18,7 +18,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol"; ...@@ -18,7 +18,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
* The CTC also allows any account to 'enqueue' an L2 transaction, which will require that the * The CTC also allows any account to 'enqueue' an L2 transaction, which will require that the
* Sequencer will eventually append it to the rollup state. * Sequencer will eventually append it to the rollup state.
* *
* Runtime target: EVM
*/ */
contract CanonicalTransactionChain is ICanonicalTransactionChain, Lib_AddressResolver { contract CanonicalTransactionChain is ICanonicalTransactionChain, Lib_AddressResolver {
/************* /*************
......
...@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol"; ...@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
* 2. Stores queued transactions for the Canonical Transaction Chain * 2. Stores queued transactions for the Canonical Transaction Chain
* 3. Stores chain state batches for the State Commitment Chain * 3. Stores chain state batches for the State Commitment Chain
* *
* Runtime target: EVM
*/ */
contract ChainStorageContainer is IChainStorageContainer, Lib_AddressResolver { contract ChainStorageContainer is IChainStorageContainer, Lib_AddressResolver {
/************* /*************
......
...@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol"; ...@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
* Elements here have a 1:1 correspondence with transactions in the CTC, and should be the unique * Elements here have a 1:1 correspondence with transactions in the CTC, and should be the unique
* state root calculated off-chain by applying the canonical transactions one by one. * state root calculated off-chain by applying the canonical transactions one by one.
* *
* Runtime target: EVM
*/ */
contract StateCommitmentChain is IStateCommitmentChain, Lib_AddressResolver { contract StateCommitmentChain is IStateCommitmentChain, Lib_AddressResolver {
/************* /*************
......
...@@ -12,7 +12,6 @@ import { Lib_AddressResolver } from "../../libraries/resolver/Lib_AddressResolve ...@@ -12,7 +12,6 @@ import { Lib_AddressResolver } from "../../libraries/resolver/Lib_AddressResolve
* @dev This contract is, for now, a stub of the "real" BondManager that does nothing but * @dev This contract is, for now, a stub of the "real" BondManager that does nothing but
* allow the "OVM_Proposer" to submit state root batches. * allow the "OVM_Proposer" to submit state root batches.
* *
* Runtime target: EVM
*/ */
contract BondManager is IBondManager, Lib_AddressResolver { contract BondManager is IBondManager, Lib_AddressResolver {
/** /**
......
...@@ -9,7 +9,6 @@ import { ICrossDomainMessenger } from "./ICrossDomainMessenger.sol"; ...@@ -9,7 +9,6 @@ import { ICrossDomainMessenger } from "./ICrossDomainMessenger.sol";
* @dev Helper contract for contracts performing cross-domain communications * @dev Helper contract for contracts performing cross-domain communications
* *
* Compiler used: defined by inheriting contract * Compiler used: defined by inheriting contract
* Runtime target: defined by inheriting contract
*/ */
contract CrossDomainEnabled { contract CrossDomainEnabled {
/************* /*************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment