Skip to content

Commit

Permalink
fix readme and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kovalgek committed Jan 20, 2025
1 parent 1c143fb commit 14046bd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ RUN foundryup
RUN chmod +x ./initialize.sh && ./initialize.sh

ENTRYPOINT ["yarn", "start"]

CMD ["./configs/unichain_sepolia.yaml"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Overview

**Multichain Automaton** is a sophisticated deployment and verification script designed to streamline the **deployment of stETH/wstETH [custom token bridge following reference architecture](https://docs.lido.fi/token-guides/wsteth-bridging-guide#reference-architecture-and-permissions-setup) solutions on OP Stack-compatible networks** such as OP Mainnet, Base, Zircuit, and Mode. It utilizes recommended initialization parameters and automates the verification of deployment artifacts.
**Multichain Automaton** is a sophisticated deployment and verification script designed to streamline the **deployment of stETH/wstETH [custom token bridge following reference architecture](https://docs.lido.fi/token-guides/wsteth-bridging-guide#reference-architecture-and-permissions-setup) solutions on OP Stack-compatible networks** for example OP Mainnet, Base, Zircuit, and Mode. It utilizes recommended initialization parameters and automates the verification of deployment artifacts.

## Why Use Multichain Automaton?

Expand Down Expand Up @@ -61,7 +61,7 @@ yarn start ./path/to/config.yaml
### Docker

To сreate containe use this command with `linux/amd64` architecture:
To create the image use this command with `linux/amd64` architecture:

```bash
docker buildx build --platform linux/amd64 -t <build_name> .
Expand Down
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default [
"lido-l2-with-steth/*",
"governance-crosschain-bridges/*",
"hardhat.config.js",
"eslint.config.mjs"
"eslint.config.mjs",
"commitlint.config.js"
],
},
js.configs.recommended,
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ async function main() {
const { configPath, onlyCheck, onlyForkDeploy, showLogs } = parseCmdLineArgs();
console.log("Running script with");
console.log(` - configPath: ${configPath}`);
console.log(` - onlyCheck: ${onlyCheck === true ? true : false }`);
console.log(` - onlyForkDeploy: ${onlyForkDeploy === true ? true : false }`);
console.log(` - showLogs: ${showLogs === true ? true : false }`);
console.log(` - onlyCheck: ${!!onlyCheck}`);
console.log(` - onlyForkDeploy: ${!!onlyForkDeploy}`);
console.log(` - showLogs: ${!!showLogs}`);

const { mainConfig, mainConfigDoc }: { mainConfig: MainConfig, mainConfigDoc: YAML.Document } = loadYamlConfig(configPath);

Expand Down
2 changes: 1 addition & 1 deletion src/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export interface Context {
}
},
{
name: "Verififcation",
name: "Verification",
action: async (_, logCallback) => {
await runVerificationScript({
config: "l1_live_deployment_args.json",
Expand Down

0 comments on commit 14046bd

Please sign in to comment.