Skip to content
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

Add zkSync #141

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ POLYGON_PROVIDER_URL=
POLYGON_ETHERSCAN_API_KEY=
SCROLL_PROVIDER_URL=
SCROLL_ETHERSCAN_API_KEY=
ZKSYNC_PROVIDER_URL=
CELO_PROVIDER_URL=
CELO_ETHERSCAN_API_KEY=
LINEA_PROVIDER_URL=
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ dist
cache
artifacts
typechain-types
out
cache-zk
artifacts-zk
deployments-zk

deployments/mainnet/solcInputs/*
deployments/optimism/solcInputs/*
Expand All @@ -17,6 +19,7 @@ deployments/arbitrum-one/solcInputs/*
deployments/arbitrum-nova/solcInputs/*
deployments/polygon/solcInputs/*
deployments/scroll/solcInputs/*
deployments/zksync/solcInputs/*
deployments/celo/solcInputs/*
deployments/linea/solcInputs/*
deployments/sepolia/solcInputs/*
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,23 @@ Version 1.3.0:
* Contract: [0x8314bc1B2f7F286cb4f0323FE7119C0F99D4A083](https://scrollscan.com/address/0x8314bc1B2f7F286cb4f0323FE7119C0F99D4A083)
* Deployment and ABI: [Indexer.json](./deployments/scroll/Indexer.json)

#### zkSync

Version 1.3.0:

* **EAS**:
* Contract: [0x21d8d4eE83b80bc0Cc0f2B7df3117Cf212d02901](https://explorer.zksync.io/address/0x21d8d4eE83b80bc0Cc0f2B7df3117Cf212d02901)
* Deployment and ABI: [EAS.json](./deployments/zksync/EAS.json)
* **SchemaRegistry**:
* Contract: [0xB8566376dFe68B76FA985D5448cc2FbD578412a2](https://explorer.zksync.io/address/0xB8566376dFe68B76FA985D5448cc2FbD578412a2)
* Deployment and ABI: [SchemaRegistry.json](./deployments/zksync/SchemaRegistry.json)
* **EIP712Proxy**:
* Contract: [0x8E8F79e9A1Cd4da7bD2f15e5B0a4B4a613E37C5a](https://explorer.zksync.io/address/0x8E8F79e9A1Cd4da7bD2f15e5B0a4B4a613E37C5a)
* Deployment and ABI: [EIP712Proxy.json](./deployments/zksync/EIP712Proxy.json)
* **Indexer**:
* Contract: [0x8AdA7852df64A66ca89EFc82144e6be71Bd53B4E](https://explorer.zksync.io/address/0x8AdA7852df64A66ca89EFc82144e6be71Bd53B4E)
* Deployment and ABI: [Indexer.json](./deployments/zksync/Indexer.json)

#### Celo

Version 1.3.0:
Expand Down
1 change: 1 addition & 0 deletions data/NamedAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const NamedAccounts = {
[DeploymentNetwork.ArbitrumNova]: deployer,
[DeploymentNetwork.Polygon]: deployer,
[DeploymentNetwork.Scroll]: deployer,
[DeploymentNetwork.ZKSync]: deployer,
[DeploymentNetwork.Celo]: deployer,
[DeploymentNetwork.Linea]: deployer,
[DeploymentNetwork.Sepolia]: deployer,
Expand Down
1 change: 1 addition & 0 deletions deployments/zksync/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
324
8 changes: 8 additions & 0 deletions deployments/zksync/.migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"000001-registry": 1714515518,
"000002-eas": 1714515524,
"000003-register-initial-schemas": 1714515978,
"000004-name-initial-schemas": 1714516445,
"000005-eip712-proxy": 1714516451,
"000006-indexer": 1714516456
}
Loading
Loading