Skip to content

Commit

Permalink
Readme and comment updated
Browse files Browse the repository at this point in the history
  • Loading branch information
matjazv committed Nov 9, 2023
1 parent fefaad3 commit 75fe16e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ curl -L https://foundry.paradigm.xyz | bash

This will install `Foundryup`, then simply follow the instructions on-screen, which will make the `foundryup` command available in your CLI. Running `foundryup` by itself will install the latest (nightly) precompiled binaries: `forge`, `cast`, `anvil`, and `chisel`.

### Cloning the Lisk Smart Contracts Repository
To download all the necessary project files and libraries, execute the following commands:
```shell
git clone https://github.com/LiskHQ/lisk-contracts.git
```
Inside newly created `lisk-contracts` directory:
```shell
git submodule update --init --recursive
```

## Deployment on Private Test Network

**NOTE**: In a private test network, it's only possible to deploy smart contracts for the **Ethereum L1** network.
Expand Down
2 changes: 1 addition & 1 deletion script/L2LiskToken.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ contract L2LiskTokenScript is Script {
Utils.L1AddressesConfig memory l1AddressesConfig = utils.readL1AddressesFile();
console2.log("L1 Lisk token address: %s", l1AddressesConfig.L1LiskToken);

// deploy L1LiskToken contract
// deploy L2LiskToken contract
vm.startBroadcast(deployerPrivateKey);
L2LiskToken l2LiskToken = new L2LiskToken(L2_STANDARD_BRIDGE, l1AddressesConfig.L1LiskToken, "Lisk", "LSK", 18);
vm.stopBroadcast();
Expand Down

0 comments on commit 75fe16e

Please sign in to comment.