Skip to content

Notes on different contract parameters #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions zq2/docs/staking/delegatedstaking.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ forge verify-contract 0x7A0b7e6D24eDe78260c9ddBD98e828B0e11A8EA2 ERC1967Proxy \
$(cast calldata "initialize(address)" 0x15fc323DFE5D5DCfbeEdc25CEcbf57f676634d77))
```

Where:

* `0x7A0b7e6D24eDe78260c9ddBD98e828B0e11A8EA2` — Proxy contract address
* `0x7C623e01c5ce2e313C223ef2aEc1Ae5C6d12D9DD` — Implementation contract address
* `0x15fc323DFE5D5DCfbeEdc25CEcbf57f676634d77` — Signer address (i.e. the contract owner who deployed the contract)

### 🔹 Deploying **LiquidDelegation** Contract

```bash
Expand Down Expand Up @@ -107,6 +113,13 @@ $(cast calldata "initialize(address,string,string)" \
0x15fc323DFE5D5DCfbeEdc25CEcbf57f676634d77 Name Symbol))
```

Where:

* `0x7A0b7e6D24eDe78260c9ddBD98e828B0e11A8EA2` — Proxy contract address
* `0x7C623e01c5ce2e313C223ef2aEc1Ae5C6d12D9DD` — Implementation contract address
* `0x15fc323DFE5D5DCfbeEdc25CEcbf57f676634d77` — Signer address (i.e. the contract owner who deployed the contract)
* `Name` and `Symbol` — Token metadata provided during deployment (e.g., `"Zilliqa LST"`, `"zLST"`)

### 📝 Notes

* Ensure that your `remappings.txt` includes the local path to the ZQ2 repository, otherwise you may encounter errors during contract verification. For example:
Expand Down