Skip to content

Commit 6973a39

Browse files
committed
docs: Remove runtime target from docstrings
The run time target is captured by the folder structure of the contracts package
1 parent 12b153a commit 6973a39

7 files changed

Lines changed: 0 additions & 7 deletions

File tree

packages/contracts/contracts/L1/messaging/L1CrossDomainMessenger.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ import {
3333
* from L2 onto L1. In the event that a message sent from L1 to L2 is rejected for exceeding the L2
3434
* epoch gas limit, it can be resubmitted via this contract's replay function.
3535
*
36-
* Runtime target: EVM
3736
*/
3837
contract L1CrossDomainMessenger is
3938
IL1CrossDomainMessenger,

packages/contracts/contracts/L1/messaging/L1StandardBridge.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.s
1919
* tokens that are in use on L2. It synchronizes a corresponding L2 Bridge, informing it of deposits
2020
* and listening to it for newly finalized withdrawals.
2121
*
22-
* Runtime target: EVM
2322
*/
2423
contract L1StandardBridge is IL1StandardBridge, CrossDomainEnabled {
2524
using SafeERC20 for IERC20;

packages/contracts/contracts/L1/rollup/CanonicalTransactionChain.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
1818
* The CTC also allows any account to 'enqueue' an L2 transaction, which will require that the
1919
* Sequencer will eventually append it to the rollup state.
2020
*
21-
* Runtime target: EVM
2221
*/
2322
contract CanonicalTransactionChain is ICanonicalTransactionChain, Lib_AddressResolver {
2423
/*************

packages/contracts/contracts/L1/rollup/ChainStorageContainer.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
1919
* 2. Stores queued transactions for the Canonical Transaction Chain
2020
* 3. Stores chain state batches for the State Commitment Chain
2121
*
22-
* Runtime target: EVM
2322
*/
2423
contract ChainStorageContainer is IChainStorageContainer, Lib_AddressResolver {
2524
/*************

packages/contracts/contracts/L1/rollup/StateCommitmentChain.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { IChainStorageContainer } from "./IChainStorageContainer.sol";
1919
* Elements here have a 1:1 correspondence with transactions in the CTC, and should be the unique
2020
* state root calculated off-chain by applying the canonical transactions one by one.
2121
*
22-
* Runtime target: EVM
2322
*/
2423
contract StateCommitmentChain is IStateCommitmentChain, Lib_AddressResolver {
2524
/*************

packages/contracts/contracts/L1/verification/BondManager.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import { Lib_AddressResolver } from "../../libraries/resolver/Lib_AddressResolve
1212
* @dev This contract is, for now, a stub of the "real" BondManager that does nothing but
1313
* allow the "OVM_Proposer" to submit state root batches.
1414
*
15-
* Runtime target: EVM
1615
*/
1716
contract BondManager is IBondManager, Lib_AddressResolver {
1817
/**

packages/contracts/contracts/libraries/bridge/CrossDomainEnabled.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { ICrossDomainMessenger } from "./ICrossDomainMessenger.sol";
99
* @dev Helper contract for contracts performing cross-domain communications
1010
*
1111
* Compiler used: defined by inheriting contract
12-
* Runtime target: defined by inheriting contract
1312
*/
1413
contract CrossDomainEnabled {
1514
/*************

0 commit comments

Comments
 (0)