Skip to content

Commit

Permalink
chore: forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Aug 9, 2024
1 parent 1bd9a94 commit bcc48f9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions script/14_CorrectBootstrapErrors.s.sol
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
pragma solidity ^0.8.19;

import {UpgradeableBeacon} from "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";
import {TransparentUpgradeableProxy} from "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";

import {ProxyAdmin} from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
import {TransparentUpgradeableProxy} from "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
import {ITransparentUpgradeableProxy} from "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";

import "../src/core/BeaconProxyBytecode.sol";
import {Bootstrap} from "../src/core/Bootstrap.sol";
import {ClientChainGateway} from "../src/core/ClientChainGateway.sol";
import {ICustomProxyAdmin} from "../src/interfaces/ICustomProxyAdmin.sol";

import "../src/core/ExoCapsule.sol";
import {Vault} from "../src/core/Vault.sol";
import {ICustomProxyAdmin} from "../src/interfaces/ICustomProxyAdmin.sol";

import {BaseScript} from "./BaseScript.sol";
import {ILayerZeroEndpointV2} from "@layerzero-v2/protocol/contracts/interfaces/ILayerZeroEndpointV2.sol";
Expand Down Expand Up @@ -96,7 +98,8 @@ contract CorrectBootstrapErrors is BaseScript {
vm.serializeAddress(clientChainContracts, "beaconProxyBytecode", address(beaconProxyBytecode));
vm.serializeAddress(clientChainContracts, "bootstrapLogic", address(bootstrapLogic));
vm.serializeAddress(clientChainContracts, "bootstrap", address(bootstrap));
string memory clientChainContractsOutput = vm.serializeAddress(clientChainContracts, "beaconOracle", address(beaconOracle));
string memory clientChainContractsOutput =
vm.serializeAddress(clientChainContracts, "beaconOracle", address(beaconOracle));

string memory deployedContracts = "deployedContracts";
string memory finalJson = vm.serializeString(deployedContracts, "clientChain", clientChainContractsOutput);
Expand Down

0 comments on commit bcc48f9

Please sign in to comment.