[Feat] Remove flattened contracts (#640)

* remove TokenBridgeFlatten and L2MessageServiceLineaMainnet

* remove contracts/deploy/04_deploy_L2MessageServiceV1Deployed.ts

* delete 04_deploy_L2MessageServiceImplementation

* give floating pragma to
IntegrationTestTrueVerifier.sol

* added deployed-artifacts

* added versioning to tokenbridge + l2messageservice artifacts

* revert bridge-ui changes

* fix typechain imports in e2e tests

* more artifact typechain fixes

* deploy contracts -> v1

* Revert "deploy contracts -> v1"

This reverts commit 34314bbad26a6c44e1ef311552f63f52275495f8.

* redo add v1 to artifact deployment scripts after merge main

* restore deleted files

* more pr adjustments

* empty to prompt ci
This commit is contained in:
kyzooghost
2025-02-05 00:53:43 +11:00
committed by GitHub
parent 1a811f452d
commit 5fbd7ed9aa
21 changed files with 5403 additions and 11765 deletions

View File

@@ -3,7 +3,7 @@ import assert from "assert";
import { AbstractSigner, BaseContract, BlockTag, TransactionReceipt, TransactionRequest, Wallet, ethers } from "ethers";
import path from "path";
import { exec } from "child_process";
import { L2MessageService, TokenBridge, LineaRollupV6 } from "../typechain";
import { L2MessageServiceV1 as L2MessageService, TokenBridgeV1 as TokenBridge, LineaRollupV6 } from "../typechain";
import {
PayableOverrides,
TypedContractEvent,

View File

@@ -5,8 +5,8 @@ import {
BridgedToken__factory,
DummyContract,
DummyContract__factory,
L2MessageService,
L2MessageService__factory,
L2MessageServiceV1 as L2MessageService,
L2MessageServiceV1__factory as L2MessageService__factory,
LineaRollupV6,
LineaRollupV6__factory,
OpcodeTestContract,
@@ -17,8 +17,8 @@ import {
TestContract__factory,
TestERC20,
TestERC20__factory,
TokenBridge,
TokenBridge__factory,
TokenBridgeV1 as TokenBridge,
TokenBridgeV1__factory as TokenBridge__factory,
} from "../../typechain";
import { AccountManager } from "./accounts/account-manager";