Skip to content

Commit

Permalink
Merge pull request #118 from ethereum-attestation-service/scroll-testnet
Browse files Browse the repository at this point in the history
Deploy to Scroll Sepolia
  • Loading branch information
lbeder authored Dec 1, 2023
2 parents 22887ce + 103c7de commit 0d644b4
Show file tree
Hide file tree
Showing 23 changed files with 8,662 additions and 435 deletions.
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ETHEREUM_BASE_GOERLI_PROVIDER_URL=
ETHEREUM_ARBITRUM_GOERLI_PROVIDER_URL=
ETHEREUM_POLYGON_MUMBAI_PROVIDER_URL=
ETHEREUM_LINEA_GOERLI_PROVIDER_URL=
ETHEREUM_SCROLL_SEPOLIA_PROVIDER_URL=
ETHERSCAN_API_KEY=
MAX_FEE=
MAX_PRIORITY_FEE=
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ deployments/base-goerli/solcInputs/*
deployments/arbitrum-goerli/solcInputs/*
deployments/polygon-mumbai/solcInputs/*
deployments/linea-goerli/solcInputs/*
deployments/scroll-sepolia/solcInputs/*
deployments/hardhat/*
!deployments/hardhat/.chainId

Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,23 @@ Version 1.2.0:
* Contract: [0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797](https://goerli.lineascan.build/address/0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797)
* Deployment and ABI: [SchemaRegistry.json](./deployments/linea-goerli/SchemaRegistry.json)

#### Scroll Sepolia

Version 1.3.0:

* **EAS**:
* Contract: [0xaEF4103A04090071165F78D45D83A0C0782c2B2a](https://sepolia.scrollscan.com/address/0xaEF4103A04090071165F78D45D83A0C0782c2B2a)
* Deployment and ABI: [EAS.json](./deployments/scroll-sepolia/EAS.json)
* **SchemaRegistry**:
* Contract: [0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797](https://sepolia.scrollscan.com/address/0x55D26f9ae0203EF95494AE4C170eD35f4Cf77797)
* Deployment and ABI: [SchemaRegistry.json](./deployments/scroll-sepolia/SchemaRegistry.json)
* **EIP712Proxy**:
* Contract: [0xB3574f76b1720E61FdA98702c7016674CD6Eaa7b](https://sepolia.scrollscan.com/address/0xB3574f76b1720E61FdA98702c7016674CD6Eaa7b)
* Deployment and ABI: [EIP712Proxy.json](./deployments/scroll-sepolia/EIP712Proxy.json)
* **Indexer**:
* Contract: [0x7C2cb1eDC328491da52de2a0afc44D3B0Ae7ee17](https://sepolia.scrollscan.com/address/0x7C2cb1eDC328491da52de2a0afc44D3B0Ae7ee17)
* Deployment and ABI: [Indexer.json](./deployments/scroll-sepolia/Indexer.json)

## Installation

```sh
Expand Down
5 changes: 5 additions & 0 deletions data/NamedAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ const lineaGoerli = (address: string) => ({
[DeploymentNetwork.LineaGoerli]: address
});

const scrollSepolia = (address: string) => ({
[DeploymentNetwork.ScrollSepolia]: address
});

export const NamedAccounts = {
deployer: {
...mainnet(deployer),
Expand All @@ -65,6 +69,7 @@ export const NamedAccounts = {
...arbitrumGoerli(deployer),
...polygonMumbai(deployer),
...lineaGoerli(deployer),
...scrollSepolia(deployer),
[DeploymentNetwork.Hardhat]: 0
}
};
1 change: 1 addition & 0 deletions deployments/scroll-sepolia/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
534351
9 changes: 9 additions & 0 deletions deployments/scroll-sepolia/.migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"000001-registry": 1701365148,
"000002-eas": 1701365159,
"000003-register-initial-schemas": 1701365446,
"000004-name-initial-schemas": 1701365734,
"000005-eip712-proxy": 1701365744,
"000006-indexer": 1701365771,
"000100-test-seed": 1701365890
}
Loading

0 comments on commit 0d644b4

Please sign in to comment.