From d495f5bddd73517b2252ed1d0b4f34a03a702c73 Mon Sep 17 00:00:00 2001 From: Lukasz Kosiak Date: Mon, 13 Oct 2025 22:46:24 +0800 Subject: [PATCH] proxy for ZWAP deployed --- .../experimental/ERC20ProxyForZRC2/.env.example | 8 ++++++++ contracts/experimental/ERC20ProxyForZRC2/README.md | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 contracts/experimental/ERC20ProxyForZRC2/.env.example diff --git a/contracts/experimental/ERC20ProxyForZRC2/.env.example b/contracts/experimental/ERC20ProxyForZRC2/.env.example new file mode 100644 index 000000000..484cd7f17 --- /dev/null +++ b/contracts/experimental/ERC20ProxyForZRC2/.env.example @@ -0,0 +1,8 @@ +# This is required to deploy contracts through scripts and used as non-evm deployer in tests +PRIVATE_KEY=0x # + +# Below a set of variables required to run tests +TEST_KEY_1=0x # Deploys on evm side +TEST_KEY_2=0x # Plays user role +# CACHED_ZRC2=0x +# CACHED_ERC20=0x \ No newline at end of file diff --git a/contracts/experimental/ERC20ProxyForZRC2/README.md b/contracts/experimental/ERC20ProxyForZRC2/README.md index eb90e5c84..8c36ade0f 100644 --- a/contracts/experimental/ERC20ProxyForZRC2/README.md +++ b/contracts/experimental/ERC20ProxyForZRC2/README.md @@ -1,7 +1,19 @@ # ERC20ProxyForZRC2 Contract +## Intro + These contracts allow ZRC-2 tokens to look like ERC-20 tokens. +## Deployed proxies + +| name | ZRC2 address | ERC20 proxy address | isBurnable | +|------|--------------------------------------------|--------------------------------------------|-----| +| ZWAP | zil1p5suryq6q647usxczale29cu3336hhp376c627 | 0xf54e97D672196CdC5a580338149e009Cef4d5A81 | yes | + +TODO some proxies were deployed in the past and are not listed here. Find them and add to the list + +## How to use + Unless you want to build using the `zilliqa-developer` version of `zilliqa-js`, or you encounter missing modules issues while running tests, install our dependencies with: ```shell